/* ===================================
   CSS Reset & Variables
   =================================== */

:root {
    /* Colors */
    --color-primary: #3a5ba0;
    --color-primary-dark: #1c2b52;
    --color-primary-darker: #0f1a36;
    --color-accent: #e6f0ff;
    --color-accent-hover: #cfe0ff;
    --color-white: #FFFFFF;
    --color-text-light: rgba(255, 255, 255, 0.9);
    --color-text-muted: rgba(255, 255, 255, 0.7);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;

    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-sm: 0.875rem;      /* 14px - for labels/meta text only */
    --font-size-base: 1rem;        /* 16px - minimum for body text */
    --font-size-lg: 1.125rem;      /* 18px */
    --font-size-xl: 1.25rem;       /* 20px */
    --font-size-2xl: 1.5rem;       /* 24px */
    --font-size-3xl: 2rem;         /* 32px */
    --font-size-4xl: 2.5rem;       /* 40px */
    --font-size-5xl: 3rem;         /* 48px */
    --font-size-6xl: 3.5rem;       /* 56px - reduced from 64px for better readability */

    /* Layout */
    --max-width: 1200px;
    --nav-height: 80px;

    /* Transitions */
    --transition-base: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

/* ===================================
   Hero Section
   =================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1;
}

.hero__background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: fadeIn 2s ease-out forwards;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(58, 91, 160, 0.85) 0%,
        rgba(28, 43, 82, 0.9) 50%,
        rgba(15, 26, 54, 0.95) 100%
    );
}

/* ===================================
   Navigation
   =================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: var(--spacing-sm) 0;
    transition: background-color 0.4s ease,
                box-shadow 0.4s ease,
                opacity 0.3s ease;
}

.nav.hidden {
    opacity: 0;
    pointer-events: none;
}

.nav.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: var(--spacing-sm) 0;
    opacity: 1;
    pointer-events: all;
}

.nav.scrolled .nav__link {
    color: var(--color-primary-dark);
}

.nav.scrolled .nav__link:hover {
    color: var(--color-primary);
}

.nav.scrolled .nav__link::after {
    background-color: var(--color-primary);
}

.nav.scrolled .nav__cta {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.nav.scrolled .nav__cta:hover {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
}

/* White hamburger for transparent nav on index page */
.nav:not(.scrolled):not(.nav--solid) .nav__toggle-icon,
.nav:not(.scrolled):not(.nav--solid) .nav__toggle-icon::before,
.nav:not(.scrolled):not(.nav--solid) .nav__toggle-icon::after {
    background-color: var(--color-white);
}

.nav__container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.nav__logo {
    display: flex;
    align-items: center;
    z-index: 10000;
    flex-shrink: 0;
}

.nav__logo-image {
    height: 40px;
    width: auto;
    display: block;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--spacing-xs);
    z-index: 10002; /* Above menu (10001) and logo (10000) */
}

.nav__toggle-icon {
    position: relative;
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-primary-dark);
    transition: var(--transition-base);
}

.nav__toggle-icon::before,
.nav__toggle-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 25px;
    height: 2px;
    background-color: var(--color-primary-dark);
    transition: var(--transition-base);
}

.nav__toggle-icon::before {
    top: -8px;
}

.nav__toggle-icon::after {
    top: 8px;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.nav__link {
    font-size: var(--font-size-base);
    font-weight: 400;
    color: var(--color-text-light);
    position: relative;
    padding: var(--spacing-xs) 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width var(--transition-base);
}

.nav__link:hover {
    color: var(--color-white);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__cta {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background-color: var(--color-white);
    color: var(--color-primary);
    font-weight: 600;
    font-size: var(--font-size-base);
    border-radius: 12px 0 12px 0;
    transition: var(--transition-base);
    white-space: nowrap;
}

.nav__cta:hover {
    background-color: var(--color-accent);
    color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(58, 91, 160, 0.3);
}

/* ===================================
   Hero Content
   =================================== */

.hero__content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: var(--spacing-xl) 0 var(--spacing-3xl) 0;
}

.hero__container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    width: 100%;
}

.hero__layout {
    display: flex;
    flex-direction: column;
}

.hero__left {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero__title {
    font-size: var(--font-size-6xl);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-white);
    animation: fadeInLeft 0.8s ease-out;
    display: flex;
    flex-direction: column;
}

.hero__title-line {
    display: block;
}

.hero__subtitle {
    font-size: var(--font-size-6xl);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    margin: 0;
    animation: fadeInLeft 0.8s ease-out 0.2s both;
}

.hero__subtitle-line {
    display: block;
}

.hero__bottom {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-xl);
}

.hero__right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    animation: fadeInRight 0.8s ease-out 0.4s both;
}

.hero__description {
    font-size: var(--font-size-lg);
    color: var(--color-white);
    line-height: 1.7;
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 1rem 2rem;
    background-color: var(--color-accent);
    color: var(--color-primary-dark);
    font-weight: 600;
    font-size: var(--font-size-lg);
    border-radius: 12px 0 12px 0;
    transition: var(--transition-base);
    align-self: flex-start;
}

.hero__cta:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(230, 240, 255, 0.4);
}

.hero__cta-icon {
    transition: transform var(--transition-base);
}

.hero__cta:hover .hero__cta-icon {
    transform: translateX(5px);
}

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

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0.5;
    }
    to {
        opacity: 1;
    }
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1.0);
    }
    50% {
        transform: scale(1.02);
    }
}

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

.video-section {
    position: relative;
    width: 100%;
    overflow: visible;
    z-index: 10;
}

.video-section__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.video-section__media {
    position: relative;
    overflow: visible;
    margin-top: -40px;
    z-index: 50;
}

.video-section__thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}

.video-section__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-section__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
}

.video-section__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: transform var(--transition-base);
    z-index: 10;
}

.video-section__play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-section__play-btn svg {
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.video-section__content {
    background: linear-gradient(135deg,
        var(--color-primary) 0%,
        var(--color-primary-dark) 100%
    );
    padding: var(--spacing-3xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: fadeIn 1s ease-out;
}

.video-section__label {
    font-size: var(--font-size-sm);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--spacing-md);
    display: block;
}

.video-section__title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-white);
    margin-bottom: var(--spacing-lg);
}

.video-section__text {
    font-size: var(--font-size-lg);
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-xl);
}

.video-section__text strong {
    font-weight: 700;
    color: var(--color-white);
}

.video-section__link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--color-white);
    font-size: var(--font-size-base);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
}

.video-section__link:hover {
    color: var(--color-accent);
    gap: var(--spacing-sm);
}

.video-section__link svg {
    transition: transform var(--transition-base);
}

.video-section__link:hover svg {
    transform: translateX(5px);
}

/* Brush highlight effect - animates on load */
.brush-highlight {
    position: relative;
    display: inline-block;
    z-index: 1;
    color: var(--color-white);
    font-weight: 600;
}

.brush-highlight::before {
    content: '';
    position: absolute;
    left: -8px;
    right: -8px;
    top: 20%;
    bottom: 10%;
    background: var(--color-accent);
    opacity: 0;
    z-index: -1;
    transform: rotate(-1deg) skew(-2deg) scaleX(0);
    transform-origin: left center;
    border-radius: 8px 12px 10px 14px / 14px 10px 12px 8px;
}

.brush-highlight.animate::before {
    animation: brushReveal 1.2s ease-out forwards;
}

@keyframes brushReveal {
    0% {
        transform: rotate(-1deg) skew(-2deg) scaleX(0);
        opacity: 0;
    }
    100% {
        transform: rotate(-1deg) skew(-2deg) scaleX(1);
        opacity: 0.35;
    }
}

/* Sequential icon animations for Why Choose items - triggered on scroll */
.why-choose__item.animate:nth-child(1) .why-choose__icon {
    animation: iconActivate 0.6s ease-out 0s forwards;
}

.why-choose__item.animate:nth-child(2) .why-choose__icon {
    animation: iconActivate 0.6s ease-out 0.3s forwards;
}

.why-choose__item.animate:nth-child(3) .why-choose__icon {
    animation: iconActivate 0.6s ease-out 0.6s forwards;
}

.why-choose__item.animate:nth-child(4) .why-choose__icon {
    animation: iconActivate 0.6s ease-out 0.9s forwards;
}

@keyframes iconActivate {
    0% {
        background-color: transparent;
        color: var(--color-primary);
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        background-color: var(--color-primary);
        color: var(--color-white);
        transform: scale(1.1);
    }
}

/* Card slide-in animation */
@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-60px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(60px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInBottom {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cards that need animation start hidden */
.faq__card,
.leadership__card,
.why-partner__item,
.join-network__card,
.vbe-card {
    opacity: 0;
    transform: translateY(40px);
}

/* Features items - directional initial positions */
.features__item {
    opacity: 0;
}

.features__item:nth-child(1),
.features__item:nth-child(4) {
    transform: translateX(-60px);
}

.features__item:nth-child(2),
.features__item:nth-child(5) {
    transform: translateY(60px);
}

.features__item:nth-child(3),
.features__item:nth-child(6) {
    transform: translateX(60px);
}

/* Animate cards when in view */
.faq__card.animate,
.leadership__card.animate,
.why-partner__item.animate,
.join-network__card.animate,
.vbe-card.animate {
    animation: slideInUp 0.6s ease-out forwards;
}

/* Features items with directional animations */
.features__item.animate:nth-child(1),
.features__item.animate:nth-child(4) {
    animation: slideInLeft 0.6s ease-out forwards;
}

.features__item.animate:nth-child(3),
.features__item.animate:nth-child(6) {
    animation: slideInRight 0.6s ease-out forwards;
}

.features__item.animate:nth-child(2),
.features__item.animate:nth-child(5) {
    animation: slideInBottom 0.6s ease-out forwards;
}

/* Sequential delays for cards in grids */
.faq__card.animate:nth-child(1) { animation-delay: 0s; }
.faq__card.animate:nth-child(2) { animation-delay: 0.1s; }
.faq__card.animate:nth-child(3) { animation-delay: 0.2s; }
.faq__card.animate:nth-child(4) { animation-delay: 0.3s; }
.faq__card.animate:nth-child(5) { animation-delay: 0.4s; }
.faq__card.animate:nth-child(6) { animation-delay: 0.5s; }
.faq__card.animate:nth-child(7) { animation-delay: 0.6s; }
.faq__card.animate:nth-child(8) { animation-delay: 0.7s; }

.features__item.animate:nth-child(1) { animation-delay: 0s; }
.features__item.animate:nth-child(2) { animation-delay: 0.1s; }
.features__item.animate:nth-child(3) { animation-delay: 0.2s; }
.features__item.animate:nth-child(4) { animation-delay: 0.3s; }
.features__item.animate:nth-child(5) { animation-delay: 0.4s; }
.features__item.animate:nth-child(6) { animation-delay: 0.5s; }

/* How It Works items don't slide in - only icons animate */

.leadership__card.animate:nth-child(1) { animation-delay: 0s; }
.leadership__card.animate:nth-child(2) { animation-delay: 0.2s; }

.why-partner__item.animate:nth-child(1) { animation-delay: 0s; }
.why-partner__item.animate:nth-child(2) { animation-delay: 0.15s; }
.why-partner__item.animate:nth-child(3) { animation-delay: 0.3s; }
.why-partner__item.animate:nth-child(4) { animation-delay: 0.45s; }

.join-network__card.animate:nth-child(1) { animation-delay: 0s; }
.join-network__card.animate:nth-child(2) { animation-delay: 0.15s; }
.join-network__card.animate:nth-child(3) { animation-delay: 0.3s; }

.vbe-card.animate:nth-child(1) { animation-delay: 0s; }
.vbe-card.animate:nth-child(2) { animation-delay: 0.15s; }
.vbe-card.animate:nth-child(3) { animation-delay: 0.3s; }
.vbe-card.animate:nth-child(4) { animation-delay: 0.45s; }

/* Sequential icon animations for How It Works - triggered on scroll */
.how-it-works__item.animate:nth-child(1) .how-it-works__icon {
    animation: iconActivate 0.6s ease-out 0s forwards;
}

.how-it-works__item.animate:nth-child(2) .how-it-works__icon {
    animation: iconActivate 0.6s ease-out 0.3s forwards;
}

.how-it-works__item.animate:nth-child(3) .how-it-works__icon {
    animation: iconActivate 0.6s ease-out 0.6s forwards;
}

.how-it-works__item.animate:nth-child(4) .how-it-works__icon {
    animation: iconActivate 0.6s ease-out 0.9s forwards;
}

/* ===================================
   Features Section
   =================================== */

.features {
    position: relative;
    width: 100%;
    padding: var(--spacing-3xl) 0;
    z-index: 20;
    background: linear-gradient(to bottom,
        #F1F3F7 0%,
        #F1F3F7 calc(100% - 200px),
        #F1F4F7 calc(100% - 190px),
        #F2F4F8 calc(100% - 180px),
        #F2F5F8 calc(100% - 170px),
        #F3F5F9 calc(100% - 160px),
        #F3F6F9 calc(100% - 150px),
        #F4F6FA calc(100% - 140px),
        #F4F7FA calc(100% - 130px),
        #F5F7FB calc(100% - 120px),
        #F5F8FB calc(100% - 110px),
        #F6F8FC calc(100% - 100px),
        #F7F9FC calc(100% - 90px),
        #F8F9FD calc(100% - 80px),
        #F8FAFD calc(100% - 70px),
        #F9FAFE calc(100% - 60px),
        #FAFBFE calc(100% - 50px),
        #FBFCFE calc(100% - 40px),
        #FCFDFF calc(100% - 30px),
        #FDFDFF calc(100% - 20px),
        #FEFEFF calc(100% - 10px),
        #FFFFFF 100%
    );
    overflow: hidden;
}


.features__header {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg) var(--spacing-3xl) var(--spacing-lg);
    text-align: center;
    position: relative;
    z-index: 1;
}

.features__header-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.features__header-subheading {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.features__header-subheading .brush-highlight {
    color: var(--color-primary-dark);
}

.features__header-subheading .brush-highlight::before {
    background: var(--color-primary);
    opacity: 0.2;
}

.features__header-text {
    font-size: var(--font-size-lg);
    color: var(--color-primary-dark);
    opacity: 0.85;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.features__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.features__item {
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-lg);
    position: relative;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.features__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    z-index: 10;
}

/* First row: dark to light */
.features__item:nth-child(1) {
    background: var(--color-primary-dark);
}

.features__item:nth-child(2) {
    background: var(--color-primary);
}

.features__item:nth-child(3) {
    background: #5a7dc8;
}

/* Second row: light to medium */
.features__item:nth-child(4) {
    background: #5a7dc8;
}

.features__item:nth-child(5) {
    background: var(--color-primary-dark);
}

.features__item:nth-child(6) {
    background: var(--color-primary);
}

.features__icon {
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: var(--transition-base);
    flex-shrink: 0;
}

.features__icon i {
    font-size: 2.5rem;
}

.features__item:hover .features__icon {
    background-color: var(--color-white);
    border-color: var(--color-white);
    color: var(--color-primary-dark);
}

.features__title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-white);
    margin: 0;
}

.features__text {
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.features__link {
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--color-white);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.4);
    text-underline-offset: 4px;
    transition: var(--transition-base);
}

.features__link:hover {
    color: var(--color-accent);
    text-decoration-color: var(--color-accent);
    transform: translateX(5px);
}

/* ===================================
   Why Choose Section
   =================================== */

.why-choose {
    position: relative;
    width: 100%;
    padding: var(--spacing-3xl) 0;
    background: var(--color-white);
    z-index: 1;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/doctor-finger-background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scaleX(-1);
    opacity: 0.4;
    z-index: 0;
}

.why-choose::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.994) 10px,
        rgba(255, 255, 255, 0.988) 20px,
        rgba(255, 255, 255, 0.976) 30px,
        rgba(255, 255, 255, 0.953) 40px,
        rgba(255, 255, 255, 0.924) 50px,
        rgba(255, 255, 255, 0.898) 60px,
        rgba(255, 255, 255, 0.863) 70px,
        rgba(255, 255, 255, 0.826) 80px,
        rgba(255, 255, 255, 0.784) 90px,
        rgba(255, 255, 255, 0.742) 100px,
        rgba(255, 255, 255, 0.695) 110px,
        rgba(255, 255, 255, 0.648) 120px,
        rgba(255, 255, 255, 0.6) 130px,
        rgba(255, 255, 255, 0.55) 140px,
        rgba(255, 255, 255, 0.525) 160px,
        rgba(255, 255, 255, 0.512) 180px,
        rgba(255, 255, 255, 0.5) 200px,
        rgba(255, 255, 255, 0.5) 100%
    );
    z-index: 0;
}

.why-choose__container {
    position: relative;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    z-index: 1;
}

.why-choose__left {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.why-choose__label {
    font-size: var(--font-size-sm);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary);
    display: block;
}

.why-choose__title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary-dark);
    margin: 0;
}

.why-choose__tagline {
    font-size: var(--font-size-xl);
    font-weight: 600;
    line-height: 1.4;
    color: var(--color-primary);
    margin: 0;
    font-style: italic;
}

.why-choose__content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    padding: var(--spacing-xl) 0;
}

.why-choose__links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.why-choose__link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.why-choose__link:hover {
    color: var(--color-primary-dark);
}

.why-choose__link:hover svg {
    transform: translateX(5px);
}

.why-choose__link svg {
    transition: transform 0.3s ease;
}

.why-choose__text {
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--color-primary-dark);
    opacity: 0.8;
    margin: 0;
}

.why-choose__text strong {
    color: var(--color-primary);
    font-weight: 600;
}

.why-choose__text--navy {
    color: #1C2B52 !important;
    font-weight: 700;
    opacity: 1;
}

.why-choose__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.why-choose__list li {
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--color-primary-dark);
    opacity: 0.8;
    padding-left: var(--spacing-lg);
    position: relative;
}

.why-choose__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.2rem;
}

.why-choose__piechart {
    position: relative;
    width: 300px;
    height: 300px;
    margin: var(--spacing-lg) 0;
    margin-bottom: calc(var(--spacing-lg) * 2);
}

.pie-slices-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.pie-slice {
    position: absolute;
    width: 100%;
    height: 100%;
    clip-path: polygon(50% 50%, 50% 0%, 100% 0%, 100% 50%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pie-slice-1 {
    background: linear-gradient(135deg, #1c2b52 0%, #2a4070 100%);
    transform: rotate(0deg);
}

.pie-slice-2 {
    background: linear-gradient(135deg, #3a5ba0 0%, #4a6bb0 100%);
    transform: rotate(90deg);
}

.pie-slice-3 {
    background: linear-gradient(135deg, #5a7dc8 0%, #6a8dd8 100%);
    transform: rotate(180deg);
}

.pie-slice-4 {
    background: linear-gradient(135deg, #7a9de8 0%, #8aadff 100%);
    transform: rotate(270deg);
}

/* SVG curved text */
.pie-text-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.pie-curved-text {
    fill: white;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1.5px;
}

/* Annotations at NE, SE, SW, NW positions (45° angles) */
.pie-annotation {
    position: absolute;
    max-width: 170px;
    z-index: 15;
}

.pie-annotation-text {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.4;
}

/* Position annotations just outside circle at diagonal positions */
.pie-annotation-ne {
    top: 20px;
    right: -190px;
    text-align: left;
}

.pie-annotation-se {
    bottom: 20px;
    right: -190px;
    text-align: left;
}

.pie-annotation-sw {
    bottom: 20px;
    left: -190px;
    text-align: right;
}

.pie-annotation-nw {
    top: 20px;
    left: -190px;
    text-align: right;
}

.pie-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.pie-label {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    line-height: 1;
}

.pie-sublabel {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-top: 0.25rem;
}

.why-choose__right {
    display: flex;
    justify-content: flex-end;
}

.why-choose__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    max-width: 600px;
    width: 100%;
}

.why-choose__item {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    gap: var(--spacing-sm);
}

.why-choose__icon {
    width: 80px;
    height: 80px;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: var(--transition-base);
    flex-shrink: 0;
}

.why-choose__icon i {
    font-size: 2rem;
}

.why-choose__item:hover .why-choose__icon {
    background-color: transparent;
    color: var(--color-primary);
    transform: scale(1);
}

.why-choose__item-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-primary-dark);
    margin: 0;
}

.why-choose__item-text {
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-primary-dark);
    opacity: 0.7;
    margin: 0;
}

/* ===================================
   Pattern Section
   =================================== */

.pattern-section {
    position: relative;
    background: linear-gradient(180deg,
        rgba(230, 240, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.5) 100%
    );
    min-height: 400px;
    overflow: hidden;
    z-index: 30;
}

.pattern-section::before {
    content: '0 1 0 0 1 1 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 0 0 1 1 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 0 0 1 1 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 0 0 1 1 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 0 0 1 1 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 0 0 1 1 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 0 0 1 1 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 0 0 1 1 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 0 0 1 1 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 1 0 0 1 1 0 1 0 1 1 0 0 1 0 1 1 0 0 1';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-primary);
    opacity: 0.15;
    word-wrap: break-word;
    line-height: 2.5;
    letter-spacing: 0.8em;
    padding: var(--spacing-xl);
    z-index: 0;
    pointer-events: none;
}

.pattern-section__container {
    position: relative;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--spacing-3xl) var(--spacing-lg);
    z-index: 1;
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 768px) {
    :root {
        --font-size-6xl: 2.25rem;   /* 36px on mobile */
        --font-size-4xl: 2rem;      /* 32px on mobile */
        --font-size-3xl: 1.75rem;   /* 28px on mobile */
        --spacing-3xl: 3rem;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--color-primary-darker);
        flex-direction: column;
        padding: calc(var(--nav-height) + var(--spacing-lg)) var(--spacing-lg);
        gap: var(--spacing-md);
        transition: right var(--transition-base);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        align-items: flex-start;
        z-index: 10001; /* Slides over logo (10000) */
    }

    .nav__menu.active {
        right: 0;
    }

    /* Force white text in mobile menu regardless of scroll state */
    .nav__menu .nav__link {
        color: var(--color-text-light) !important;
    }

    .nav__menu .nav__link:hover {
        color: var(--color-white) !important;
    }

    /* Mobile menu CTA button styling */
    .nav__menu .nav__cta {
        background-color: var(--color-accent) !important;
        color: var(--color-primary-dark) !important;
    }

    .nav__menu .nav__cta:hover {
        background-color: var(--color-accent-hover) !important;
        color: var(--color-primary-dark) !important;
    }

    /* Hamburger to X animation */
    .nav__toggle[aria-expanded="true"] .nav__toggle-icon {
        background-color: transparent;
    }

    .nav__toggle[aria-expanded="true"] .nav__toggle-icon::before {
        top: 0;
        transform: rotate(45deg);
        background-color: var(--color-white) !important;
    }

    .nav__toggle[aria-expanded="true"] .nav__toggle-icon::after {
        top: 0;
        transform: rotate(-45deg);
        background-color: var(--color-white) !important;
    }

    .nav__link {
        font-size: var(--font-size-lg);
        width: 100%;
        padding: var(--spacing-sm) 0;
    }

    .nav__cta {
        display: none;
    }

    .hero__container {
        padding: 0 var(--spacing-md);
    }

    .hero__layout {
        text-align: center;
    }

    .hero__left {
        align-items: center;
    }

    .hero__title {
        font-size: var(--font-size-5xl);  /* Increased from 4xl (40px) to 5xl (48px) */
    }

    .hero__subtitle {
        font-size: var(--font-size-5xl);  /* Increased from 4xl (40px) to 5xl (48px) */
    }

    .hero__bottom {
        flex-direction: column;
        gap: var(--spacing-lg);
        align-items: center;
    }

    .hero__description {
        font-size: var(--font-size-lg);  /* Increased from base (16px) to lg (18px) */
    }

    .hero__cta {
        align-self: center;
    }

    .video-section__container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .video-section__media {
        min-height: 400px;
        margin-top: 0;
    }

    .video-section__content {
        padding: var(--spacing-xl);
    }

    .video-section__title {
        font-size: var(--font-size-2xl);
    }

    .video-section__text {
        font-size: var(--font-size-base);
    }

    .pattern-section {
        min-height: 300px;
    }

    .pattern-section::before {
        font-size: var(--font-size-lg);
        letter-spacing: 0.5em;
    }
}

@media (max-width: 1024px) {
    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features {
        padding: var(--spacing-xl) 0;
    }

    .features__header {
        padding: 0 var(--spacing-lg) var(--spacing-xl) var(--spacing-lg);
    }

    .features__header-title {
        font-size: var(--font-size-2xl);
    }

    .features__header-text {
        font-size: var(--font-size-lg);
    }

    .features__grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        border-radius: 0;
        box-shadow: none;
        overflow: visible;
    }

    .features__item {
        padding: var(--spacing-xl) var(--spacing-lg);
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .features__icon {
        width: 80px;
        height: 80px;
    }

    .features__icon i {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .why-choose__container {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .why-choose__right {
        justify-content: center;
    }

    .why-choose__grid {
        max-width: 100%;
    }

    .why-choose__item {
        align-items: center;
        text-align: center;
    }

    .why-choose__title {
        font-size: var(--font-size-2xl);
    }
}

@media (max-width: 480px) {
    :root {
        --font-size-6xl: 2rem;      /* 32px on small mobile */
        --font-size-4xl: 1.75rem;   /* 28px on small mobile */
        --font-size-3xl: 1.5rem;    /* 24px on small mobile */
    }

    .hero__title {
        font-size: var(--font-size-6xl);
    }

    .hero__subtitle {
        font-size: var(--font-size-6xl);
    }

    .hero__cta {
        width: 100%;
        justify-content: center;
    }

    .features__header-title {
        font-size: var(--font-size-xl);
    }

    .features__header-text {
        font-size: var(--font-size-base);
    }

    .features__icon {
        width: 70px;
        height: 70px;
    }

    .features__icon i {
        font-size: 1.75rem;
    }

    .why-choose__grid {
        grid-template-columns: 1fr;
    }

    .why-choose__icon {
        width: 70px;
        height: 70px;
    }

    .why-choose__icon i {
        font-size: 1.75rem;
    }
}

/* ===================================
   Why Value Page Styles
   =================================== */

/* Solid Navigation for Internal Pages */
.nav--solid {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: var(--spacing-sm) 0;
}

/* Desktop menu links - dark text on white background */
.nav--solid .nav__link {
    color: var(--color-primary-dark);
}

.nav--solid .nav__link--active {
    color: var(--color-primary);
    font-weight: 600;
}

.nav--solid .nav__cta {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* Page Header */
.page-header {
    padding: calc(var(--nav-height) + var(--spacing-3xl)) 0 var(--spacing-3xl);
    background: var(--color-white);
    text-align: center;
}

.page-header__container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.page-header__title {
    font-size: var(--font-size-5xl);
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-md);
}

.page-header__subtitle {
    font-size: var(--font-size-xl);
    color: var(--color-primary-dark);
    font-weight: 400;
    opacity: 0.8;
}

/* CIN Section */
.cin-section {
    position: relative;
    padding: var(--spacing-3xl) 0;
    background: var(--color-white);
    z-index: 10;
}

.cin-section__container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.cin-section__title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--color-primary-dark);
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.cin-section__intro {
    max-width: 800px;
    margin: 0 auto var(--spacing-md);
    text-align: center;
}

.cin-section__text {
    font-size: var(--font-size-lg);
    line-height: 1.8;
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-md);
}

.cin-section__text--navy {
    color: #1C2B52 !important;
    font-weight: 700;
}

.cin-section__piechart-wrapper {
    display: flex;
    justify-content: center;
    padding: var(--spacing-lg) 0;
}

/* VBE Section */
.vbe-section {
    position: relative;
    padding: calc(var(--nav-height) + var(--spacing-3xl)) 0 var(--spacing-3xl);
    min-height: 100vh;
}

.vbe-section::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('../images/hero/doctor-network-resized.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
}

.vbe-section::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(28, 43, 82, 0.95) 0%, rgba(58, 91, 160, 0.92) 100%);
    z-index: -1;
}

.vbe-section__container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.vbe-section__title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--color-white);
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.vbe-section__content {
    max-width: 900px;
    margin: 0 auto var(--spacing-3xl);
}

.vbe-section__text {
    font-size: var(--font-size-lg);
    line-height: 1.8;
    color: var(--color-white);
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
}

.vbe-section__text strong {
    color: var(--color-accent);
    font-weight: 700;
}

.vbe-section__text--highlight {
    font-weight: 600;
    color: var(--color-white);
    opacity: 1;
}

/* VBE Cards */
.vbe-section__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-3xl);
}

.vbe-card {
    background: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vbe-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.vbe-card__icon {
    width: 80px;
    height: 80px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    transition: background-color 0.3s ease;
}

.vbe-card:hover .vbe-card__icon {
    background: var(--color-primary-dark);
}

.vbe-card__icon i {
    font-size: 2rem;
    color: var(--color-white);
}

.vbe-card__title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-md);
}

.vbe-card__text {
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--color-primary-dark);
    opacity: 0.8;
}

/* Responsive - Why Value Page */
@media (max-width: 768px) {
    .page-header {
        padding: calc(var(--nav-height) + var(--spacing-xl)) 0 var(--spacing-xl);
    }

    .page-header__title {
        font-size: var(--font-size-3xl);
    }

    .page-header__subtitle {
        font-size: var(--font-size-base);
    }

    .vbe-section__cards {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .cin-section__piechart-wrapper {
        padding: var(--spacing-lg) 0;
    }
}

/* ===================================
   How It Works Section
   =================================== */

.how-it-works {
    position: relative;
    padding: var(--spacing-3xl) 0;
    background: var(--color-white);
    z-index: 10;
}

.how-it-works__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.how-it-works__title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--color-primary-dark);
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.how-it-works__summary {
    font-size: var(--font-size-lg);
    color: var(--color-primary-dark);
    opacity: 0.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto var(--spacing-3xl);
    line-height: 1.6;
}

.how-it-works__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.how-it-works__item {
    background: var(--color-white);
    padding: var(--spacing-xl);
    border-right: 1px solid #E5E7EB;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 1;
    transform: translateY(0);
}

.how-it-works__item:last-child {
    border-right: none;
}

.how-it-works__item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    height: 4px;
    background: var(--color-primary-darker);
    border-radius: 0;
    transition: all 1.2s ease;
}

.how-it-works__item:hover::after {
    left: 0;
    right: 0;
}

.how-it-works__icon {
    width: 80px;
    height: 80px;
    background: transparent;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.how-it-works__item:hover .how-it-works__icon {
    transform: scale(1);
}

.how-it-works__icon i {
    font-size: 2rem;
}

.how-it-works__item-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--color-primary-dark);
    margin: 0 0 var(--spacing-md);
}

.how-it-works__item-text {
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--color-primary-dark);
    opacity: 0.8;
    margin: 0;
}

/* ===================================
   FAQ Section
   =================================== */

.faq {
    position: relative;
    padding: var(--spacing-2xl) 0;
    background: #F1F3F7;
    z-index: 10;
}

.faq__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.faq__title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--color-primary-dark);
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.faq__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.faq__card {
    background: var(--color-white);
    border-radius: 12px;
    padding: var(--spacing-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.faq__card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    bottom: 50%;
    width: 4px;
    background: var(--color-primary-darker);
    border-radius: 0;
    transition: all 1.2s ease;
}

.faq__card:hover::before {
    top: 0;
    bottom: 0;
    border-radius: 12px 0 0 12px;
}

.faq__question-wrapper {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.faq__icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq__icon i {
    font-size: 1rem;
    color: var(--color-white);
}

.faq__question {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--color-primary-dark);
    margin: 0;
    flex: 1;
}

.faq__answer {
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--color-primary-dark);
    opacity: 0.8;
    margin: 0;
}

/* ===================================
   Join the Network Section
   =================================== */

.join-network {
    position: relative;
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, var(--color-primary-darker) 0%, var(--color-primary-dark) 100%);
    z-index: 10;
}

.join-network__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.join-network__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: start;
}

.join-network__left {
    color: var(--color-white);
}

.join-network__left h2 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--spacing-lg);
    line-height: 1.3;
}

.join-network__left > p {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: var(--spacing-2xl);
}

.join-network__contact-cards {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.join-network__card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    transition: background 0.3s ease;
}

.join-network__card:hover {
    background: rgba(255, 255, 255, 0.15);
}

.join-network__card-icon {
    width: 60px;
    height: 60px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.join-network__card-icon i {
    font-size: 1.5rem;
    color: var(--color-primary);
}

.join-network__card h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--color-white);
    margin: 0 0 var(--spacing-xs);
}

.join-network__card p {
    font-size: var(--font-size-base);
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.join-network__link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.join-network__link:hover {
    color: var(--color-white);
    text-decoration: underline;
}

.join-network__right {
    background: var(--color-white);
    border-radius: 12px;
    padding: var(--spacing-lg);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.join-network__right iframe {
    min-height: 600px;
    border-radius: 8px;
}

/* ===================================
   Footer
   =================================== */

.footer {
    background: var(--color-primary-darker);
    color: var(--color-white);
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
    position: relative;
    z-index: 10;
}

.footer__container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-3xl);
    margin-bottom: var(--spacing-3xl);
}

.footer__column {
    display: flex;
    flex-direction: column;
}

.footer__logo {
    width: 180px;
    height: auto;
    margin-bottom: var(--spacing-md);
}

.footer__tagline {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.footer__social {
    display: flex;
    gap: var(--spacing-sm);
}

.footer__social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: var(--font-size-lg);
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.footer__social-link:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

.footer__heading {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--color-white);
    margin: 0 0 var(--spacing-lg);
}

.footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer__link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: var(--font-size-base);
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer__link:hover {
    color: var(--color-white);
    padding-left: 5px;
}

.footer__address {
    font-style: normal;
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-base);
    line-height: 1.8;
}

.footer__address p {
    margin: 0 0 var(--spacing-xs);
}

.footer__phone {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__phone:hover {
    color: var(--color-white);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-lg);
    text-align: center;
}

.footer__copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--font-size-sm);
    margin: 0;
}

/* Responsive - New Sections */
@media (max-width: 1024px) {
    .how-it-works__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .how-it-works__title,
    .faq__title,
    .join-network__title {
        font-size: var(--font-size-3xl);
    }

    .how-it-works__grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .faq__grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .join-network__content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .join-network__left {
        order: 1;
    }

    .join-network__right {
        order: 2;
    }

    .join-network__subtitle {
        font-size: var(--font-size-lg);
    }

    .join-network__form iframe {
        min-height: 500px;
    }
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }
}

@media (max-width: 768px) {
    .footer {
        padding: var(--spacing-xl) 0 var(--spacing-lg);
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .footer__logo {
        width: 150px;
    }

    .footer__column:first-child {
        text-align: center;
        align-items: center;
    }

    .footer__social {
        justify-content: center;
    }
}

/* ===================================
   About Page Styles
   =================================== */

/* About Hero Section */
.about-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: visible;
}

.about-hero__split {
    display: flex;
    height: 100%;
    width: 100%;
}

.about-hero__left {
    position: relative;
    width: 50%;
    background: var(--color-primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-3xl);
    overflow: hidden;
}

.about-hero__gradient-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    pointer-events: none;
}

.about-hero__gradient-shape--1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(90, 125, 200, 0.5) 0%, rgba(58, 91, 160, 0.3) 100%);
    top: -200px;
    right: -100px;
    transform: rotate(-45deg);
}

.about-hero__gradient-shape--2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(225deg, rgba(58, 91, 160, 0.4) 0%, rgba(28, 43, 82, 0.2) 100%);
    bottom: -150px;
    left: -50px;
    transform: rotate(30deg);
}

.about-hero__text {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.about-hero__label {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: var(--spacing-lg);
    display: block;
    opacity: 0.9;
}

.about-hero__title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--color-white);
    margin: 0;
    line-height: 1.3;
}

.about-hero__right {
    width: 50%;
    overflow: hidden;
}

.about-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-hero__scroll {
    position: absolute;
    bottom: 0;
    left: 33.33%;
    transform: translate(-50%, 50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-primary-darker);
    border: none;
    color: var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.about-hero__scroll:hover {
    background: var(--color-primary);
    transform: translate(-50%, 50%) scale(1.1);
}

.about-hero__scroll svg {
    width: 24px;
    height: 24px;
}

/* About Content Section */
.about-content {
    position: relative;
    padding: 120px 0;
    background: var(--color-white);
    z-index: 1;
}

.about-content__container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-2xl);
}

.about-content__grid {
    display: grid;
    grid-template-columns: 45% 1fr;
    gap: 80px;
    align-items: start;
}

.about-content__left {
    position: relative;
}

.about-content__intro {
    font-size: var(--font-size-2xl);
    line-height: 1.6;
    color: var(--color-primary-darker);
    font-weight: 500;
    margin: 0;
}

.about-content__right {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.about-content__paragraph {
    font-size: var(--font-size-base);
    line-height: 1.9;
    color: var(--color-primary-dark);
    opacity: 0.7;
    margin: 0;
}

.about-content__paragraph strong {
    color: var(--color-primary-dark);
    font-weight: 600;
    opacity: 1;
}

/* Leadership Section */
.leadership {
    position: relative;
    padding: var(--spacing-3xl) 0;
    background: #F1F3F7;
    z-index: 1;
}

.leadership__container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.leadership__title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--color-primary-dark);
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.leadership__intro {
    font-size: var(--font-size-lg);
    color: var(--color-primary-dark);
    opacity: 0.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-3xl);
    line-height: 1.6;
}

.leadership__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-3xl);
}

.leadership__card {
    background: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.leadership__logo {
    width: 100%;
    max-width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
}

.leadership__logo--dual {
    max-width: 280px;
    height: auto;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.leadership__logo-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.leadership__logo-image--chiroedge {
    max-height: 60px;
    width: auto;
}

.leadership__powered-by {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.leadership__powered-text {
    font-size: var(--font-size-sm);
    color: var(--color-primary-dark);
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.leadership__logo-image--mac {
    max-height: 40px;
    width: auto;
}

.leadership__card-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--color-primary-dark);
    margin: 0 0 var(--spacing-sm);
}

.leadership__card-subtitle {
    font-size: var(--font-size-sm);
    color: var(--color-primary-dark);
    opacity: 0.7;
    margin: 0 0 var(--spacing-md);
    font-style: italic;
}

.leadership__card-link {
    color: var(--color-primary-dark);
    text-decoration: none;
    transition: color var(--transition-base);
}

.leadership__card-link:hover {
    color: var(--color-primary);
}

.leadership__text-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-base);
    border-bottom: 1px solid transparent;
}

.leadership__text-link:hover {
    color: var(--color-primary-dark);
    border-bottom-color: var(--color-primary-dark);
}

.leadership__card-text {
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--color-primary-dark);
    opacity: 0.8;
    margin: 0;
}

.leadership__credentials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    max-width: 900px;
    margin: 0 auto;
}

.leadership__stat {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: var(--spacing-xl);
    border-radius: 12px;
    text-align: center;
    color: var(--color-white);
}

.leadership__stat-number {
    font-size: var(--font-size-5xl);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.leadership__stat-label {
    font-size: var(--font-size-base);
    opacity: 0.9;
}

/* Why Partner Section */
.why-partner {
    position: relative;
    padding: var(--spacing-3xl) 0;
    background: var(--color-white);
    z-index: 1;
}

.why-partner__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.why-partner__title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--color-primary-dark);
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.why-partner__summary {
    font-size: var(--font-size-lg);
    color: var(--color-primary-dark);
    opacity: 0.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto var(--spacing-3xl);
    line-height: 1.6;
}

.why-partner__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-radius: 12px;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.why-partner__item {
    background: var(--color-white);
    padding: var(--spacing-2xl);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    transition: transform 0.3s ease;
}

.why-partner__item:nth-child(1) {
    background: linear-gradient(135deg, #1c2b52 0%, #1c2b52 100%);
    color: var(--color-white);
}

.why-partner__item:nth-child(2) {
    background: linear-gradient(135deg, #3a5ba0 0%, #3a5ba0 100%);
    color: var(--color-white);
    border-right: none;
}

.why-partner__item:nth-child(3) {
    background: linear-gradient(135deg, #5a7dc8 0%, #5a7dc8 100%);
    color: var(--color-white);
    border-bottom: none;
}

.why-partner__item:nth-child(4) {
    background: var(--color-white);
    color: var(--color-primary-dark);
    border-right: none;
    border-bottom: none;
    box-shadow: inset 0 0 0 1px rgba(58, 91, 160, 0.15);
}

.why-partner__item:nth-child(4) .why-partner__icon {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.why-partner__item:nth-child(4) .why-partner__icon i {
    color: var(--color-white);
}

.why-partner__item:nth-child(4)::after {
    background: rgba(58, 91, 160, 0.3);
}

.why-partner__item:nth-child(4) .why-partner__item-title,
.why-partner__item:nth-child(4) .why-partner__item-text {
    color: var(--color-primary-dark);
}

.why-partner__item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 0;
    transition: all 1.2s ease;
}

.why-partner__item:hover::after {
    left: 0;
    right: 0;
}

.why-partner__icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    transition: transform 0.3s ease, background 0.3s ease;
}

.why-partner__item:hover .why-partner__icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.why-partner__icon i {
    font-size: 2rem;
    color: var(--color-white);
}

.why-partner__item-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--color-white);
    margin: 0 0 var(--spacing-md);
}

.why-partner__item-text {
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--color-white);
    opacity: 0.9;
    margin: 0;
}

/* About CTA Section */
.about-cta {
    position: relative;
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, var(--color-primary-darker) 0%, var(--color-primary-dark) 100%);
    z-index: 1;
}

.about-cta__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    text-align: center;
}

.about-cta__title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--spacing-lg);
}

.about-cta__subtitle {
    font-size: var(--font-size-xl);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: var(--spacing-2xl);
}

.about-cta__button {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 1rem 2rem;
    background-color: var(--color-accent);
    color: var(--color-primary-dark);
    font-weight: 600;
    font-size: var(--font-size-lg);
    border-radius: 12px 0 12px 0;
    text-decoration: none;
    transition: var(--transition-base);
}

.about-cta__button:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(230, 240, 255, 0.4);
}

.about-cta__button svg {
    transition: transform var(--transition-base);
}

.about-cta__button:hover svg {
    transform: translateX(5px);
}

.about-cta__contact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    max-width: 900px;
    margin: 0 auto;
}

.about-cta__card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    transition: background 0.3s ease;
}

.about-cta__card:hover {
    background: rgba(255, 255, 255, 0.15);
}

.about-cta__card-icon {
    width: 50px;
    height: 50px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-cta__card-icon i {
    font-size: 1.25rem;
    color: var(--color-primary);
}

.about-cta__card-content {
    text-align: left;
}

.about-cta__card-title {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--color-white);
    margin: 0 0 var(--spacing-xs);
}

.about-cta__card-text {
    font-size: var(--font-size-base);
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* About Page Responsive */
@media (max-width: 1024px) {
    .leadership__grid {
        grid-template-columns: 1fr;
    }

    .why-partner__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-cta__contact {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: auto;
        min-height: 600px;
    }

    .about-hero__split {
        flex-direction: column;
    }

    .about-hero__left,
    .about-hero__right {
        width: 100%;
    }

    .about-hero__left {
        padding: var(--spacing-2xl) var(--spacing-lg);
        min-height: 350px;
    }

    .about-hero__right {
        min-height: 300px;
    }

    .about-hero__title {
        font-size: var(--font-size-3xl);  /* Increased from 2xl (24px) to 3xl (32px) */
    }

    .about-hero__scroll {
        left: 50%;
    }

    .about-content {
        padding: 80px 0;
    }

    .about-content__container {
        padding: 0 var(--spacing-lg);
    }

    .about-content__grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .about-content__intro {
        font-size: var(--font-size-xl);
    }

    .about-content__paragraph {
        font-size: var(--font-size-base);
    }

    .leadership__title,
    .why-partner__title,
    .about-cta__title {
        font-size: var(--font-size-3xl);
    }

    .leadership__credentials {
        grid-template-columns: 1fr;
    }

    .why-partner__grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .why-partner__item {
        border-right: none;
    }

    .about-cta__subtitle {
        font-size: var(--font-size-lg);
    }
}
