/* Hero Section Styles */

.homepage {
    width: 100%;
}

.hero-section {
    background-color: #eef4ff;
    padding: 60px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin-inline: auto;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 60px;
    align-items: center;
    background-color: white;
    padding: 50px;
    border-radius: 30px;
}

/* Image */
.hero-image-wrapper {
    grid-column: 2;
    grid-row: 1 / 3;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Content */
.hero-content {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-badge-wrapper {
    display: flex;
    margin-bottom: 10px;
}

/* About Card */
.hero-about-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    /* box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08); */
    text-align: right;
}

.hero-about-card-desktop {
    grid-column: 2;
    grid-row: 2;
}

.hero-about-card-mobile {
    display: none;
}

.hero-about-title {
    font-size: 24px;
    font-weight: 700;
    color: #374151;
    margin: 0 0 16px 0;
}

.hero-about-description {
    font-size: 14px;
    line-height: 1.8;
    color: #878792;
    margin: 0 0 20px 0;
}

.hero-about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: #eef4ff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: hsl(217 91% 60%);
}

.hero-about-bullet {
    color: hsl(217 91% 60%);
    font-size: 10px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    background: linear-gradient(to right, hsl(217 91% 60%), hsl(210 100% 56%));
    color: white;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.hero-badge-icon {
    flex-shrink: 0;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    color: #374151;
    line-height: 1.2;
    text-align: right;
    margin: 0;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
    text-align: right;
    margin: 0;
}

.hero-description-secondary {
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
    text-align: right;
    margin: 0;
    font-weight: 500;
}

/* Stats Grid */
.hero-stats-grid {
    grid-column: 1;
    grid-row: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.hero-stat-card {
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.hero-stat-icon {
    color: hsl(217 91% 60%);
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
}

.hero-stat-number {
    font-size: 36px;
    font-weight: 700;
    color: hsl(217 91% 60%);
    margin-bottom: 8px;
}

.hero-stat-label {
    font-size: 14px;
    color: #878792;
    line-height: 1.4;
}

/* Rating */
.hero-rating {
    grid-column: 1;
    grid-row: 3;
    text-align: center;
    margin-top: 20px;
}

.hero-stars {
    font-size: 32px;
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.hero-star {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.hero-rating-text {
    font-size: 16px;
    color: #374151;
    font-weight: 600;
    margin: 0;
}

/* Calendly CTA */
.hero-calendly-cta {
    grid-column: 1;
    grid-row: 4;
    background: linear-gradient(135deg, #eef4ff 0%, #f0f9ff 100%);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    margin: 20px 0;
    border: 2px solid hsl(217 91% 60% / 0.2);
}

.hero-calendly-title {
    font-size: 24px;
    font-weight: 700;
    color: #374151;
    margin: 0 0 12px 0;
}

.hero-calendly-description {
    font-size: 15px;
    color: #878792;
    line-height: 1.6;
    margin: 0 0 24px 0;
}

.hero-calendly-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(to right, hsl(217 91% 60%), hsl(210 100% 56%));
    color: white;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.hero-calendly-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.hero-calendly-button svg {
    flex-shrink: 0;
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .hero-container {
        gap: 40px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-stats-grid {
        gap: 16px;
    }

    .hero-stat-card {
        padding: 24px 16px;
    }

    .hero-stat-number {
        font-size: 32px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hero-section {
        padding: 0 0 40px;
        min-height: auto;
    }

    .hero-container {
        display: block;
        padding: 10px;
    }

    .hero-image-wrapper {
        position: static;
        margin-bottom: 30px;
    }

    .hero-content {
        margin-bottom: 30px;
    }

    .hero-about-card-desktop {
        display: none;
    }

    .hero-about-card-mobile {
        display: block;
        padding: 24px;
        text-align: center;
        margin-top: 20px;
    }

    .hero-stats-grid {
        margin: 0 auto 30px;
    }

    .hero-rating {
        margin-top: 0;
    }

    .hero-badge-wrapper {
        justify-content: center;
    }

    .hero-badge {
        font-size: 14px;
        padding: 10px 24px;
    }

    .hero-title {
        font-size: 40px;
        text-align: center;
    }

    .hero-description,
    .hero-description-secondary {
        font-size: 15px;
        text-align: center;
    }

    .hero-stat-card {
        padding: 24px 20px;
    }

    .hero-about-title {
        font-size: 20px;
    }

    .hero-about-description {
        font-size: 13px;
    }

    .hero-about-badge {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-stat-number {
        font-size: 28px;
    }

    .hero-stat-label {
        font-size: 13px;
    }

    .hero-stars {
        font-size: 28px;
    }

    .hero-calendly-cta {
        padding: 24px;
        margin: 30px 0;
    }

    .hero-calendly-title {
        font-size: 20px;
    }

    .hero-calendly-description {
        font-size: 14px;
    }

    .hero-calendly-button {
        font-size: 16px;
        padding: 14px 28px;
    }
}

/* ===================================
   Scroll Animations
   =================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Initial hidden state */
.scroll-animate-item {
    opacity: 0;
    transform: translateY(40px);
}

/* Animate when visible */
.scroll-animate-item.is-visible {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Staggered animation delays */
.scroll-animate-item[data-delay="0"].is-visible {
    animation-delay: 0ms;
}

.scroll-animate-item[data-delay="150"].is-visible {
    animation-delay: 150ms;
}

.scroll-animate-item[data-delay="300"].is-visible {
    animation-delay: 300ms;
}

.scroll-animate-item[data-delay="450"].is-visible {
    animation-delay: 450ms;
}

.scroll-animate-item[data-delay="600"].is-visible {
    animation-delay: 600ms;
}

.scroll-animate-item[data-delay="750"].is-visible {
    animation-delay: 750ms;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .scroll-animate-item {
        opacity: 1;
        transform: none;
        animation: none !important;
    }
}

/* ===================================
   Promotion Banner Section
   =================================== */

.promotion-banner {
    background-color: #eef4ff;
    padding: 60px 20px;
    max-width: 750px;
    margin-inline: auto;
}

.promotion-banner-container {
    background: linear-gradient(135deg, hsl(217 91% 60%), hsl(210 100% 56%));
    border-radius: 30px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.3);
}

.promotion-banner-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.promotion-banner-content {
    flex: 1;
    text-align: center;
}

.promotion-banner-title {
    font-size: 28px;
    font-weight: 900;
    color: white;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.promotion-banner-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.6;
}

.promotion-banner-button {
    flex-shrink: 0;
    background: white;
    color: hsl(217 91% 60%);
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.promotion-banner-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.promotion-banner-button:active {
    transform: translateY(0);
}

/* Tablet */
@media (max-width: 1024px) {
    .promotion-banner-container {
        padding: 50px 40px;
        gap: 30px;
    }

    .promotion-banner-icon {
        width: 70px;
        height: 70px;
    }

    .promotion-banner-title {
        font-size: 28px;
    }

    .promotion-banner-subtitle {
        font-size: 16px;
    }

    .promotion-banner-button {
        padding: 16px 32px;
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .promotion-banner {
        padding: 40px 0;
    }

    .promotion-banner-container {
        flex-direction: column;
        padding: 40px 30px;
        text-align: center;
        gap: 24px;
    }

    .promotion-banner-icon {
        width: 60px;
        height: 60px;
    }

    .promotion-banner-content {
        text-align: center;
    }

    .promotion-banner-title {
        font-size: 24px;
    }

    .promotion-banner-subtitle {
        font-size: 15px;
    }

    .promotion-banner-button {
        width: 100%;
        padding: 16px 24px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .promotion-banner-container {
        padding: 30px 20px;
    }

    .promotion-banner-title {
        font-size: 20px;
    }

    .promotion-banner-subtitle {
        font-size: 14px;
    }
}

/* ===================================
   Why Us Section
   =================================== */

.why-us-section {
    background-color: #eef4ff;
    padding: 60px 20px;
    max-width: 1200px;
    margin-inline: auto;
}

.why-us-container {
    border-radius: 30px;
    padding: 50px;
}

.why-us-header {
    text-align: center;
    margin-bottom: 50px;
}

.why-us-title {
    font-size: 40px;
    font-weight: 900;
    color: #374151;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.why-us-subtitle {
    font-size: 18px;
    color: #878792;
    margin: 0;
    line-height: 1.6;
}

.why-us-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-us-card {
    background: #eef4ff;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-us-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.why-us-card-icon {
    width: 100px;
    height: 100px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: hsl(217 91% 60%);
}

.why-us-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #374151;
    margin: 0 0 16px 0;
    line-height: 1.4;
}

.why-us-card-description {
    font-size: 15px;
    color: #878792;
    margin: 0;
    line-height: 1.7;
}

/* Tablet */
@media (max-width: 1024px) {
    .why-us-container {
        padding: 40px;
    }

    .why-us-title {
        font-size: 36px;
    }

    .why-us-subtitle {
        font-size: 16px;
    }

    .why-us-cards {
        gap: 24px;
    }

    .why-us-card {
        padding: 32px 24px;
    }

    .why-us-card-icon {
        width: 90px;
        height: 90px;
    }

    .why-us-card-title {
        font-size: 20px;
    }

    .why-us-card-description {
        font-size: 14px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .why-us-section {
        padding: 40px 0;
    }

    .why-us-container {
        padding: 30px 20px;
    }

    .why-us-header {
        margin-bottom: 40px;
    }

    .why-us-title {
        font-size: 28px;
    }

    .why-us-subtitle {
        font-size: 15px;
    }

    .why-us-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-us-card {
        padding: 30px 24px;
    }

    .why-us-card-icon {
        width: 80px;
        height: 80px;
    }

    .why-us-card-title {
        font-size: 19px;
    }

    .why-us-card-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .why-us-title {
        font-size: 24px;
    }

    .why-us-subtitle {
        font-size: 14px;
    }

    .why-us-card-title {
        font-size: 18px;
    }

    .why-us-card-description {
        font-size: 13px;
    }
}

/* ===================================
   Our Courses Section
   =================================== */

.our-courses-section {
    background-color: #eef4ff;
    padding: 60px 20px;
    max-width: 1200px;
    margin-inline: auto;
}

.our-courses-container {
    background-color: white;
    border-radius: 30px;
    padding: 50px;
}

.our-courses-header {
    text-align: center;
    margin-bottom: 50px;
}

.our-courses-title {
    font-size: 40px;
    font-weight: 900;
    color: #374151;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.our-courses-subtitle {
    font-size: 16px;
    color: #878792;
    margin: 0;
    line-height: 1.8;
    max-width: 900px;
    margin-inline: auto;
}

.our-courses-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.our-courses-card {
    background: #f9fafb;
    border: 2px solid #eef4ff;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.our-courses-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: hsl(217 91% 60%);
}

.our-courses-card-icon {
    width: 80px;
    height: 80px;
    background: white;
    border: 2px solid #eef4ff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: hsl(217 91% 60%);
}

.our-courses-card-title {
    font-size: 28px;
    font-weight: 900;
    color: #374151;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.our-courses-card-description {
    font-size: 15px;
    color: #878792;
    margin: 0;
    line-height: 1.8;
    text-align: right;
}

.our-courses-card-description strong {
    color: #374151;
    font-weight: 700;
}

.our-courses-cta {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.our-courses-button {
    background: #f97316;
    color: white;
    font-size: 18px;
    font-weight: 700;
    padding: 16px 48px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.our-courses-button:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.our-courses-button:active {
    transform: translateY(0);
}

/* Tablet */
@media (max-width: 1024px) {
    .our-courses-container {
        padding: 40px;
    }

    .our-courses-title {
        font-size: 36px;
    }

    .our-courses-subtitle {
        font-size: 15px;
    }

    .our-courses-cards {
        gap: 24px;
    }

    .our-courses-card {
        padding: 32px 24px;
    }

    .our-courses-card-icon {
        width: 70px;
        height: 70px;
    }

    .our-courses-card-title {
        font-size: 24px;
    }

    .our-courses-card-description {
        font-size: 14px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .our-courses-section {
        padding: 40px 0;
    }

    .our-courses-container {
        padding: 30px 20px;
    }

    .our-courses-header {
        margin-bottom: 40px;
    }

    .our-courses-title {
        font-size: 28px;
    }

    .our-courses-subtitle {
        font-size: 14px;
    }

    .our-courses-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .our-courses-card {
        padding: 30px 24px;
    }

    .our-courses-card-icon {
        width: 70px;
        height: 70px;
    }

    .our-courses-card-title {
        font-size: 22px;
    }

    .our-courses-card-description {
        font-size: 14px;
        text-align: center;
    }

    .our-courses-cta {
        margin-top: 40px;
    }

    .our-courses-button {
        font-size: 16px;
        padding: 14px 40px;
    }
}

@media (max-width: 480px) {
    .our-courses-title {
        font-size: 24px;
    }

    .our-courses-subtitle {
        font-size: 13px;
    }

    .our-courses-card-title {
        font-size: 20px;
    }

    .our-courses-card-description {
        font-size: 13px;
    }

    .our-courses-cta {
        margin-top: 30px;
    }

    .our-courses-button {
        font-size: 15px;
        padding: 12px 32px;
    }
}

/* ===================================
   Benefits Section
   =================================== */

.benefits-section {
    background-color: #eef4ff;
    padding: 60px 20px;
    max-width: 1200px;
    margin-inline: auto;
}

.benefits-container {
    background-color: white;
    border-radius: 30px;
    padding: 50px;
}

.benefits-header {
    text-align: center;
    margin-bottom: 50px;
}

.benefits-title {
    font-size: 40px;
    font-weight: 900;
    color: hsl(217 91% 60%);
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.benefits-subtitle {
    font-size: 18px;
    color: #878792;
    margin: 0;
    line-height: 1.6;
}

.benefits-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefits-card {
    background: rgba(59, 130, 246, 0.05);
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefits-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.benefits-card-icon {
    width: 80px;
    height: 80px;
    background: hsl(217 91% 60%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
}

.benefits-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #374151;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.benefits-card-description {
    font-size: 14px;
    color: #878792;
    margin: 0;
    line-height: 1.6;
}

/* Tablet */
@media (max-width: 1024px) {
    .benefits-container {
        padding: 40px;
    }

    .benefits-title {
        font-size: 36px;
    }

    .benefits-subtitle {
        font-size: 16px;
    }

    .benefits-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .benefits-card {
        padding: 28px 20px;
    }

    .benefits-card-icon {
        width: 70px;
        height: 70px;
    }

    .benefits-card-title {
        font-size: 17px;
    }

    .benefits-card-description {
        font-size: 13px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .benefits-section {
        padding: 40px 0;
    }

    .benefits-container {
        padding: 30px 20px;
    }

    .benefits-header {
        margin-bottom: 40px;
    }

    .benefits-title {
        font-size: 28px;
    }

    .benefits-subtitle {
        font-size: 15px;
    }

    .benefits-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefits-card {
        padding: 28px 24px;
    }

    .benefits-card-icon {
        width: 70px;
        height: 70px;
    }

    .benefits-card-title {
        font-size: 17px;
    }

    .benefits-card-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .benefits-title {
        font-size: 24px;
    }

    .benefits-subtitle {
        font-size: 14px;
    }

    .benefits-card-icon {
        width: 60px;
        height: 60px;
    }

    .benefits-card-title {
        font-size: 16px;
    }

    .benefits-card-description {
        font-size: 13px;
    }
}

/* ===================================
   Testimonials Section
   =================================== */

.testimonials-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin-inline: auto;
}

.testimonials-container {
    border-radius: 30px;
    padding: 50px;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-title {
    font-size: 40px;
    font-weight: 900;
    color: #374151;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.testimonials-title-brand {
    color: hsl(217 91% 60%);
}

.testimonials-subtitle {
    font-size: 16px;
    color: #878792;
    margin: 0 0 12px 0;
}

.testimonials-rating-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.testimonials-stars {
    display: flex;
    gap: 4px;
}

.testimonials-star {
    font-size: 24px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.testimonials-rating-number {
    font-size: 24px;
    font-weight: 900;
    color: #374151;
}

.testimonials-rating-label {
    font-size: 16px;
    color: #878792;
}

.testimonials-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonials-card {
    background: #fafbff;
    border: 1px solid #eef4ff;
    border-radius: 20px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonials-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.testimonials-card-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    justify-content: center;
}

.testimonials-card-star {
    font-size: 20px;
}

.testimonials-card-text {
    font-size: 15px;
    color: #374151;
    line-height: 1.7;
    margin: 0 0 20px 0;
    text-align: center;
}

.testimonials-card-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 0 0 16px 0;
}

.testimonials-card-author {
    font-size: 18px;
    font-weight: 700;
    color: #374151;
    margin: 0 0 6px 0;
    text-align: center;
}

.testimonials-card-role {
    font-size: 13px;
    color: #878792;
    margin: 0;
    text-align: center;
}

/* Tablet */
@media (max-width: 1024px) {
    .testimonials-container {
        padding: 40px;
    }

    .testimonials-title {
        font-size: 36px;
    }

    .testimonials-subtitle {
        font-size: 15px;
    }

    .testimonials-rating-number {
        font-size: 22px;
    }

    .testimonials-rating-label {
        font-size: 15px;
    }

    .testimonials-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .testimonials-card {
        padding: 26px;
    }

    .testimonials-card-text {
        font-size: 14px;
    }

    .testimonials-card-author {
        font-size: 17px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 40px 0;
    }

    .testimonials-container {
        padding: 30px 20px;
    }

    .testimonials-header {
        margin-bottom: 40px;
    }

    .testimonials-title {
        font-size: 28px;
    }

    .testimonials-subtitle {
        font-size: 14px;
    }

    .testimonials-rating-display {
        flex-direction: column;
        gap: 8px;
    }

    .testimonials-stars {
        gap: 2px;
    }

    .testimonials-star {
        font-size: 20px;
    }

    .testimonials-rating-number {
        font-size: 20px;
    }

    .testimonials-rating-label {
        font-size: 14px;
    }

    .testimonials-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .testimonials-card {
        padding: 24px;
    }

    .testimonials-card-text {
        font-size: 14px;
        text-align: center;
    }

    .testimonials-card-author {
        font-size: 16px;
        text-align: center;
    }

    .testimonials-card-role {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .testimonials-title {
        font-size: 24px;
    }

    .testimonials-card-text {
        font-size: 13px;
    }

    .testimonials-card-author {
        font-size: 15px;
    }

    .testimonials-card-role {
        font-size: 12px;
    }
}

/* ===================================
   Video Section
   =================================== */

.video-section {
    background-color: #eef4ff;
    padding: 60px 20px;
    max-width: 1200px;
    margin-inline: auto;
    display: none;
}

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-wrapper {
    width: 100%;
    max-width: 500px;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.video-player {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 9/16;
    object-fit: cover;
}

/* Tablet */
@media (max-width: 1024px) {
    .video-section {
        padding: 50px 20px;
    }

    .video-wrapper {
        max-width: 450px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .video-section {
        display: block;
        padding: 40px 0;
    }

    .video-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .video-section {
        padding: 30px 0;
    }
}

/* ===================================
   Contact Section
   =================================== */

.contact-section {
    background-color: #eef4ff;
    padding: 60px 20px;
    max-width: 1200px;
    margin-inline: auto;
}

.contact-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* CTA Section */
.contact-cta {
    text-align: center;
}

.contact-cta-title {
    font-size: 40px;
    font-weight: 900;
    color: #374151;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.contact-cta-title-highlight {
    color: hsl(217 91% 60%);
}

.contact-cta-subtitle {
    font-size: 16px;
    color: #878792;
    margin: 0 0 32px 0;
    line-height: 1.6;
}

.contact-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-cta-button {
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.contact-cta-button-primary {
    background: linear-gradient(135deg, hsl(217 91% 60%), hsl(210 100% 56%));
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.contact-cta-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.contact-cta-button-secondary {
    background: white;
    color: #374151;
    border: 2px solid #e5e7eb;
}

.contact-cta-button-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: hsl(217 91% 60%);
}

.contact-cta-note {
    font-size: 14px;
    color: #878792;
    margin: 0;
}

/* Contact Cards */
.contact-cards-title {
    font-size: 32px;
    font-weight: 900;
    color: #374151;
    text-align: center;
    margin: 0 0 40px 0;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-card {
    background: white;
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: hsl(217 91% 60%);
}

.contact-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #374151;
    margin: 0 0 12px 0;
}

.contact-card-description {
    font-size: 14px;
    color: #878792;
    margin: 0 0 20px 0;
}

.contact-card-link {
    display: inline-block;
    padding: 12px 28px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-card-link:hover {
    background: hsl(217 91% 60%);
    color: white;
    border-color: hsl(217 91% 60%);
}

/* Tablet */
@media (max-width: 1024px) {
    .contact-cta-title {
        font-size: 36px;
    }

    .contact-cta-subtitle {
        font-size: 15px;
    }

    .contact-cta-button {
        padding: 16px 32px;
        font-size: 16px;
    }

    .contact-cards-title {
        font-size: 28px;
    }

    .contact-cards-grid {
        gap: 20px;
    }

    .contact-card {
        padding: 32px 24px;
    }

    .contact-card-icon {
        width: 70px;
        height: 70px;
    }

    .contact-card-title {
        font-size: 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .contact-section {
        padding: 40px 16px;
    }

    .contact-container {
        gap: 50px;
    }

    .contact-cta-title {
        font-size: 28px;
    }

    .contact-cta-subtitle {
        font-size: 14px;
    }

    .contact-cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .contact-cta-button {
        width: 100%;
        padding: 16px 24px;
        font-size: 16px;
    }

    .contact-cta-note {
        font-size: 13px;
    }

    .contact-cards-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-card {
        padding: 30px 24px;
    }

    .contact-card-icon {
        width: 70px;
        height: 70px;
    }

    .contact-card-title {
        font-size: 19px;
    }

    .contact-card-link {
        font-size: 13px;
        padding: 10px 24px;
    }
}

@media (max-width: 480px) {
    .contact-cta-title {
        font-size: 24px;
    }

    .contact-card-link {
        font-size: 12px;
        word-break: break-all;
    }
}

