
       

        /* ===== INTRO SECTION ===== */
        .wbc-intro {
            padding: 90px 0 70px;
            background: var(--white);
            position: relative;
            overflow: hidden;
        }

        .wbc-intro::before {
            content: '';
            position: absolute;
            top: -120px;
            right: -120px;
            width: 420px;
            height: 420px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(31,77,184,0.06) 0%, transparent 70%);
            pointer-events: none;
        }

        .wbc-intro .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(31,77,184,0.08);
            color: var(--theme-color);
            font-family: 'Quicksand', sans-serif;
            font-weight: 700;
            font-size: 13px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 7px 18px;
            border-radius: 50px;
            margin-bottom: 18px;
        }

        .wbc-intro .section-badge span {
            width: 8px;
            height: 8px;
            background: var(--theme-color-2);
            border-radius: 50%;
            display: inline-block;
        }

        .wbc-intro h2 {
            font-family: 'Quicksand', sans-serif;
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 800;
            color: var(--header);
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .wbc-intro h2 em {
            font-style: normal;
            color: var(--theme-color);
        }

        .wbc-intro p {
            font-size: 16px;
            color: var(--text);
            line-height: 1.85;
            max-width: 560px;
        }

        .wbc-intro-img {
            position: relative;
        }

        .wbc-intro-img img {
            width: 100%;
            border-radius: 24px;
            object-fit: cover;
            height: 420px;
        }

        .wbc-intro-img .floating-stat {
            position: absolute;
            background: var(--white);
            border-radius: 16px;
            padding: 14px 20px;
            box-shadow: 0 10px 40px rgba(31,77,184,0.15);
            display: flex;
            align-items: center;
            gap: 12px;
            animation: floatUp 3s ease-in-out infinite;
        }

        .wbc-intro-img .floating-stat.stat-1 {
            bottom: 30px;
            left: -20px;
        }

        .wbc-intro-img .floating-stat.stat-2 {
            top: 30px;
            right: -20px;
            animation-delay: 1.5s;
        }

        .floating-stat .stat-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: rgba(31,77,184,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .floating-stat .stat-icon.orange {
            background: rgba(242,122,33,0.1);
        }

        .floating-stat strong {
            font-family: 'Quicksand', sans-serif;
            font-size: 20px;
            font-weight: 800;
            color: var(--header);
            display: block;
            line-height: 1;
        }

        .floating-stat small {
            font-size: 12px;
            color: var(--text);
        }

        @keyframes floatUp {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }

        /* ===== WHAT WE DO SECTION ===== */
        .wbc-services {
            padding: 90px 0;
            background: linear-gradient(160deg, #F0F5FF 0%, var(--bg-2) 100%);
            position: relative;
            overflow: hidden;
        }

        .wbc-services::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--theme-color), var(--theme-color-2));
        }

        .section-title-wrap {
            text-align: center;
            margin-bottom: 55px;
        }

        .section-title-wrap .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(31,77,184,0.08);
            color: var(--theme-color);
            font-family: 'Quicksand', sans-serif;
            font-weight: 700;
            font-size: 13px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 7px 18px;
            border-radius: 50px;
            margin-bottom: 16px;
        }

        .section-title-wrap .section-badge span {
            width: 8px;
            height: 8px;
            background: var(--theme-color-2);
            border-radius: 50%;
            display: inline-block;
        }

        .section-title-wrap h2 {
            font-family: 'Quicksand', sans-serif;
            font-size: clamp(26px, 3.5vw, 38px);
            font-weight: 800;
            color: var(--header);
            margin-bottom: 14px;
        }

        .section-title-wrap h2 em {
            font-style: normal;
            color: var(--theme-color);
        }

        .section-title-wrap p {
            font-size: 16px;
            color: var(--text);
            max-width: 560px;
            margin: 0 auto;
            line-height: 1.75;
        }

        .service-card {
            background: var(--white);
            border-radius: 20px;
            padding: 36px 28px;
            height: 100%;
            border: 1.5px solid var(--border);
            transition: all 0.35s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background: linear-gradient(180deg, var(--theme-color), var(--theme-color-2));
            border-radius: 0 0 4px 4px;
            transition: height 0.35s ease;
        }

        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 50px rgba(31,77,184,0.12);
            border-color: transparent;
        }

        .service-card:hover::before {
            height: 100%;
        }

        .service-card .card-icon { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--theme-color); margin-bottom: 20px; background: rgba(31,77,184,0.08); transition: all 0.35s ease; }

        .service-card:hover .card-icon {
            background: var(--theme-color);
        }

        .service-card:hover .card-icon { background: var(--theme-color); color: var(--white); }

        .service-card h4 {
            font-family: 'Quicksand', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: var(--header);
            margin-bottom: 12px;
        }

        .service-card p {
            font-size: 14.5px;
            color: var(--text);
            line-height: 1.75;
            margin: 0;
        }

        .service-card .card-tag {
            display: inline-block;
            margin-top: 16px;
            font-size: 12px;
            font-weight: 700;
            font-family: 'Quicksand', sans-serif;
            color: var(--theme-color);
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        /* ===== WHY CHOOSE SECTION ===== */
        .wbc-why {
            padding: 90px 0;
            background: var(--white);
        }

        .why-visual {
            position: relative;
        }

        .why-visual .main-img {
            width: 100%;
            border-radius: 24px;
            object-fit: cover;
            height: 480px;
        }

        .why-visual .accent-shape {
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 160px;
            height: 160px;
            background: linear-gradient(135deg, var(--theme-color), #3B6FD0);
            border-radius: 24px;
            z-index: -1;
            opacity: 0.15;
        }

        .why-visual .experience-badge {
            position: absolute;
            top: 24px;
            left: 24px;
            background: var(--theme-color);
            color: var(--white);
            border-radius: 16px;
            padding: 16px 20px;
            text-align: center;
            font-family: 'Quicksand', sans-serif;
        }

        .why-visual .experience-badge strong {
            font-size: 32px;
            font-weight: 800;
            display: block;
            line-height: 1;
        }

        .why-visual .experience-badge span {
            font-size: 12px;
            font-weight: 600;
            opacity: 0.85;
        }

        .why-item {
            display: flex;
            gap: 18px;
            margin-bottom: 30px;
            align-items: flex-start;
        }

        .why-item:last-child {
            margin-bottom: 0;
        }

        .why-item .why-icon { width: 52px; height: 52px; flex-shrink: 0; border-radius: 14px; background: rgba(31,77,184,0.08); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--theme-color); transition: all 0.3s ease; }

        .why-item:hover .why-icon { background: var(--theme-color-2); color: var(--white); transform: scale(1.08); }

        .why-item h5 {
            font-family: 'Quicksand', sans-serif;
            font-size: 16px;
            font-weight: 700;
            color: var(--header);
            margin-bottom: 6px;
        }

        .why-item p {
            font-size: 14px;
            color: var(--text);
            line-height: 1.7;
            margin: 0;
        }

        /* ===== COMFORT SECTION ===== */
        .wbc-comfort {
            padding: 90px 0;
            background: var(--bg-3);
            position: relative;
            overflow: hidden;
        }

        .wbc-comfort::before {
            content: '';
            position: absolute;
            top: -200px;
            left: -200px;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(31,77,184,0.3) 0%, transparent 65%);
            pointer-events: none;
        }

        .wbc-comfort::after {
            content: '';
            position: absolute;
            bottom: -150px;
            right: -100px;
            width: 350px;
            height: 350px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(242,122,33,0.2) 0%, transparent 65%);
            pointer-events: none;
        }

        .wbc-comfort .section-title-wrap h2,
        .wbc-comfort .section-title-wrap p {
            color: var(--white);
        }

        .wbc-comfort .section-title-wrap p {
            opacity: 0.75;
        }

        .comfort-card {
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 20px;
            padding: 36px 28px;
            text-align: center;
            transition: all 0.35s ease;
            backdrop-filter: blur(10px);
            height: 100%;
        }

        .comfort-card:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(31,77,184,0.5);
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.3);
        }

        .comfort-card .comfort-num {
            font-family: 'Quicksand', sans-serif;
            font-size: 48px;
            font-weight: 800;
            color: rgba(31,77,184,0.3);
            line-height: 1;
            margin-bottom: 16px;
            transition: color 0.3s ease;
        }

        .comfort-card:hover .comfort-num {
            color: var(--theme-color-2);
        }

        .comfort-card .comfort-icon { width: 70px; height: 70px; border-radius: 20px; background: rgba(31,77,184,0.2); display: flex; align-items: center; justify-content: center; font-size: 26px; color: rgba(255,255,255,0.85); margin: 0 auto 20px; transition: all 0.35s ease; }

        .comfort-card:hover .comfort-icon { background: var(--theme-color); color: var(--white); }

        .comfort-card h4 {
            font-family: 'Quicksand', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 12px;
        }

        .comfort-card p {
            font-size: 14px;
            color: rgba(255,255,255,0.6);
            line-height: 1.75;
            margin: 0;
        }

        /* ===== CTA SECTION ===== */
        .wbc-cta {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--theme-color) 0%, #153b9a 100%);
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .wbc-cta::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -80px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(255,255,255,0.05);
            pointer-events: none;
        }

        .wbc-cta::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -50px;
            width: 250px;
            height: 250px;
            border-radius: 50%;
            background: rgba(242,122,33,0.1);
            pointer-events: none;
        }

        .wbc-cta h2 {
            font-family: 'Quicksand', sans-serif;
            font-size: clamp(24px, 3.5vw, 38px);
            font-weight: 800;
            color: var(--white);
            margin-bottom: 16px;
        }

        .wbc-cta p {
            font-size: 16px;
            color: rgba(255,255,255,0.8);
            max-width: 500px;
            margin: 0 auto 36px;
            line-height: 1.75;
        }

        .wbc-cta .btn-white {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--white);
            color: var(--theme-color);
            font-family: 'Quicksand', sans-serif;
            font-weight: 700;
            font-size: 15px;
            padding: 14px 32px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 8px 30px rgba(0,0,0,0.2);
        }

        .wbc-cta .btn-white:hover {
            background: var(--theme-color-2);
            color: var(--white);
            transform: translateY(-3px);
        }

        .wbc-cta .btn-outline-white {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: transparent;
            color: var(--white);
            font-family: 'Quicksand', sans-serif;
            font-weight: 700;
            font-size: 15px;
            padding: 14px 32px;
            border-radius: 50px;
            border: 2px solid rgba(255,255,255,0.4);
            text-decoration: none;
            transition: all 0.3s ease;
            margin-left: 14px;
        }

        .wbc-cta .btn-outline-white:hover {
            background: rgba(255,255,255,0.1);
            border-color: var(--white);
            transform: translateY(-3px);
        }

        /* ===== MILESTONE STRIP ===== */
        .wbc-milestone {
            padding: 50px 0;
            background: var(--white);
            border-bottom: 1px solid var(--border);
        }

        .milestone-item {
            text-align: center;
            padding: 10px 20px;
        }

        .milestone-item strong {
            font-family: 'Quicksand', sans-serif;
            font-size: clamp(30px, 4vw, 44px);
            font-weight: 800;
            color: var(--theme-color);
            display: block;
            line-height: 1;
            margin-bottom: 6px;
        }

        .milestone-item strong span {
            color: var(--theme-color-2);
        }

        .milestone-item p {
            font-size: 14px;
            color: var(--text);
            margin: 0;
            font-weight: 500;
        }

        .milestone-divider {
            width: 1px;
            height: 60px;
            background: var(--border);
            display: flex;
            align-self: center;
        }

        /* ===== VACCINATION SCHEDULE TEASER ===== */
        .wbc-vax {
            padding: 90px 0;
            background: linear-gradient(160deg, var(--bg-2) 0%, #EFF4FF 100%);
        }

        .vax-timeline {
            position: relative;
            padding-left: 28px;
        }

        .vax-timeline::before {
            content: '';
            position: absolute;
            left: 10px;
            top: 12px;
            bottom: 12px;
            width: 2px;
            background: linear-gradient(180deg, var(--theme-color), var(--theme-color-2));
            border-radius: 2px;
        }

        .vax-item {
            position: relative;
            margin-bottom: 28px;
            padding-left: 20px;
        }

        .vax-item:last-child {
            margin-bottom: 0;
        }

        .vax-item::before {
            content: '';
            position: absolute;
            left: -18px;
            top: 8px;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--white);
            border: 3px solid var(--theme-color);
            transition: all 0.3s ease;
        }

        .vax-item:hover::before {
            background: var(--theme-color-2);
            border-color: var(--theme-color-2);
            transform: scale(1.2);
        }

        .vax-item .vax-age {
            display: inline-flex;
            align-items: center;
            background: var(--theme-color);
            color: var(--white);
            font-family: 'Quicksand', sans-serif;
            font-weight: 700;
            font-size: 11px;
            letter-spacing: 1px;
            text-transform: uppercase;
            padding: 4px 12px;
            border-radius: 50px;
            margin-bottom: 8px;
        }

        .vax-item h5 {
            font-family: 'Quicksand', sans-serif;
            font-size: 15px;
            font-weight: 700;
            color: var(--header);
            margin-bottom: 4px;
        }

        .vax-item p {
            font-size: 13.5px;
            color: var(--text);
            margin: 0;
        }

        /* ===== TEAM CARD ===== */
        .wbc-team {
            padding: 90px 0;
            background: var(--white);
        }

        .doctor-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            border: 1.5px solid var(--border);
            transition: all 0.35s ease;
            text-align: center;
        }

        .doctor-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 50px rgba(31,77,184,0.12);
        }

        .doctor-card .doc-img-wrap {
            background: linear-gradient(160deg, #EFF4FF, var(--bg-2));
            padding: 30px 30px 0;
        }

        .doctor-card .doc-img-wrap img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--white);
            box-shadow: 0 8px 24px rgba(31,77,184,0.12);
        }

        .doctor-card .doc-info {
            padding: 20px;
        }

        .doctor-card h4 {
            font-family: 'Quicksand', sans-serif;
            font-size: 17px;
            font-weight: 800;
            color: var(--header);
            margin-bottom: 4px;
        }

        .doctor-card .doc-spec {
            font-size: 13px;
            color: var(--theme-color);
            font-weight: 600;
            margin-bottom: 12px;
        }

        .doctor-card .doc-rating {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
            font-size: 13px;
            color: var(--ratting);
            font-weight: 700;
        }

        /* RESPONSIVE */
        @media (max-width: 991px) {
            .wbc-intro-img .floating-stat.stat-1,
            .wbc-intro-img .floating-stat.stat-2 {
                display: none;
            }

            .milestone-divider { display: none; }

            .wbc-cta .btn-outline-white {
                margin-left: 0;
                margin-top: 12px;
            }
        }

        @media (max-width: 767px) {
            .wbc-intro, .wbc-services, .wbc-why, .wbc-comfort,
            .wbc-vax, .wbc-team, .wbc-cta { padding: 60px 0; }

            .wbc-comfort .section-title-wrap h2 { font-size: 26px; }

            .why-visual { margin-bottom: 40px; }

            .wbc-intro-img img { height: 280px; }
        }
 
      
        .wbc-editorial {
            padding: 20px 0 20px;
            background: var(--white);
        }

        .editorial-main-title {
            font-family: 'Quicksand', sans-serif;
            font-size: clamp(24px, 3.5vw, 36px);
            font-weight: 800;
            color: var(--header);
            line-height: 1.25;
            margin-bottom: 20px;
        }

        .editorial-lead {
            font-family: 'Quicksand', sans-serif;
            font-size: 16.5px;
            font-weight: 600;
            color: var(--header);
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .editorial-body {
            font-size: 15px;
            color: var(--text);
            line-height: 1.9;
            margin-bottom: 14px;
        }

        .editorial-body strong {
            color: var(--header);
            font-weight: 700;
        }

        .editorial-sidebar {
            display: flex;
            flex-direction: column;
            gap: 12px;
            position: sticky;
            top: 100px;
        }

        .sidebar-stat-card {
            background: linear-gradient(135deg, #F0F5FF, var(--bg-2));
            border: 1.5px solid var(--border);
            border-radius: 16px;
            padding: 16px 20px;
            display: flex;
            align-items: center;
            gap: 14px;
            transition: all 0.3s ease;
        }

        .sidebar-stat-card:hover {
            border-color: var(--theme-color);
            transform: translateX(4px);
            box-shadow: 0 8px 24px rgba(31, 77, 184, 0.1);
        }

        .sscard-icon {
            font-size: 26px;
            flex-shrink: 0;
            width: 46px;
            height: 46px;
            background: rgba(31, 77, 184, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--theme-color);
        }

        .sscard-num {
            font-family: 'Quicksand', sans-serif;
            font-size: 22px;
            font-weight: 800;
            color: var(--theme-color);
            line-height: 1;
            margin-bottom: 3px;
        }

        .sscard-num span {
            font-size: 14px;
            color: var(--theme-color-2);
        }

        .sscard-label {
            font-size: 12px;
            color: var(--text);
            font-weight: 600;
        }

        .editorial-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--border), var(--theme-color), var(--border), transparent);
            margin: 50px 0;
        }

        .editorial-block__title {
            font-family: 'Quicksand', sans-serif;
            font-size: clamp(18px, 2.5vw, 26px);
            font-weight: 800;
            color: var(--header);
            margin-bottom: 16px;
            padding-left: 16px;
            border-left: 4px solid var(--theme-color);
            line-height: 1.3;
        }

        .editorial-highlight-box {
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(31, 77, 184, 0.05);
            border: 1.5px solid rgba(31, 77, 184, 0.15);
            border-radius: 12px;
            padding: 14px 20px;
            margin: 20px 0 8px;
        }

        .ehb-icon {
            font-size: 22px;
            flex-shrink: 0;
            color: var(--theme-color-2);
        }

        .editorial-highlight-box p {
            margin: 0;
            font-size: 15px;
            color: var(--header);
        }

        .eligibility-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            background: var(--white);
            border: 1.5px solid var(--border);
            border-radius: 12px;
            padding: 14px 16px;
            font-size: 14px;
            color: var(--text);
            line-height: 1.6;
            transition: all 0.3s ease;
            height: 100%;
        }

        .eligibility-item:hover {
            border-color: var(--theme-color);
            background: #F0F5FF;
            transform: translateY(-2px);
        }

        .eli-check {
            width: 26px;
            height: 26px;
            flex-shrink: 0;
            border-radius: 8px;
            background: var(--theme-color);
            color: var(--white);
            font-size: 11px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 1px;
        }

        .monitoring-card {
            background: linear-gradient(145deg, #F7FBFF, var(--bg-2));
            border: 1.5px solid var(--border);
            border-radius: 16px;
            padding: 22px 18px;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
        }

        .monitoring-card:hover .mc-icon {
            background: var(--theme-color);
            color: var(--white);
        }

        .monitoring-card:hover {
            border-color: var(--theme-color);
            box-shadow: 0 10px 30px rgba(31, 77, 184, 0.1);
            transform: translateY(-4px);
        }

        .mc-icon {
            font-size: 28px;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: rgba(31, 77, 184, 0.08);
            border-radius: 16px;
            color: var(--theme-color);
            margin-left: auto;
            margin-right: auto;
            transition: all 0.3s;
        }

        .monitoring-card h6 {
            font-family: 'Quicksand', sans-serif;
            font-size: 14px;
            font-weight: 700;
            color: var(--header);
            margin-bottom: 8px;
        }

        .monitoring-card p {
            font-size: 13px;
            color: var(--text);
            line-height: 1.65;
            margin: 0;
        }

        .nutrition-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 24px;
        }

        .nutrition-pills span {
            background: var(--bg-2);
            border: 1.5px solid rgba(31, 77, 184, 0.12);
            color: var(--header);
            font-family: 'Quicksand', sans-serif;
            font-weight: 700;
            font-size: 13px;
            padding: 8px 18px;
            border-radius: 50px;
            transition: all 0.3s ease;
            cursor: default;
            display: inline-flex;
            align-items: center;
            gap: 7px;
        }

        .nutrition-pills span:hover {
            background: var(--theme-color);
            color: var(--white);
            border-color: var(--theme-color);
            transform: translateY(-2px);
        }

        @media (max-width: 991px) {
            .editorial-sidebar {
                flex-direction: row;
                flex-wrap: wrap;
            }

            .sidebar-stat-card {
                flex: 1 1 calc(50% - 6px);
            }
        }

        @media (max-width: 575px) {
            .sidebar-stat-card {
                flex: 1 1 100%;
            }

            .wbc-editorial {
                padding: 50px 0 30px;
            }
        }
 
       
        /* ===== WHAT IS SECTION ===== */
        .wbc-what {
            padding: 20px 0;
            background: var(--white);
            position: relative;
        }

        .wbc-what__badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(31, 77, 184, 0.08);
            color: var(--theme-color);
            font-family: 'Quicksand', sans-serif;
            font-weight: 700;
            font-size: 13px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 7px 18px;
            border-radius: 50px;
            margin-bottom: 18px;
        }

        .wbc-what__badge .dot {
            width: 8px;
            height: 8px;
            background: var(--theme-color-2);
            border-radius: 50%;
            display: inline-block;
        }

        .wbc-what__title {
            font-family: 'Quicksand', sans-serif;
            font-size: clamp(26px, 3.5vw, 38px);
            font-weight: 800;
            color: var(--header);
            line-height: 1.25;
            margin-bottom: 18px;
        }

        .wbc-what__title span {
            color: var(--theme-color);
        }

        .wbc-what__lead {
            font-size: 17px;
            color: var(--header);
            font-weight: 600;
            line-height: 1.7;
            margin-bottom: 16px;
            font-family: 'Quicksand', sans-serif;
        }

        .wbc-what__body {
            font-size: 15px;
            color: var(--text);
            line-height: 1.85;
            margin-bottom: 14px;
        }

        .wbc-what__tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 24px;
        }

        .wbc-what__tags span {
            background: var(--bg-2);
            color: var(--header);
            font-family: 'Quicksand', sans-serif;
            font-weight: 700;
            font-size: 13px;
            padding: 7px 16px;
            border-radius: 50px;
            border: 1px solid rgba(31, 77, 184, 0.12);
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 7px;
        }

        .wbc-what__tags span:hover {
            background: var(--theme-color);
            color: var(--white);
            border-color: var(--theme-color);
        }

        /* WHO CARDS */
        .wbc-who-cards {
            background: linear-gradient(145deg, #F0F5FF, #EEF9E6);
            border-radius: 24px;
            padding: 36px 32px;
            border: 1.5px solid var(--border);
        }

        .wbc-who__header h4 {
            font-family: 'Quicksand', sans-serif;
            font-size: 20px;
            font-weight: 800;
            color: var(--header);
            margin-bottom: 10px;
        }

        .wbc-who__header p {
            font-size: 14px;
            color: var(--text);
            margin-bottom: 24px;
            line-height: 1.7;
        }

        .wbc-who__list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .wbc-who__list li {
            display: flex;
            gap: 14px;
            align-items: flex-start;
        }

        .check-icon {
            width: 28px;
            height: 28px;
            flex-shrink: 0;
            border-radius: 8px;
            background: var(--theme-color);
            color: var(--white);
            font-size: 13px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 2px;
        }

        .wbc-who__list li strong {
            font-family: 'Quicksand', sans-serif;
            font-size: 15px;
            font-weight: 700;
            color: var(--header);
            display: block;
            margin-bottom: 3px;
        }

        .wbc-who__list li p {
            font-size: 13.5px;
            color: var(--text);
            margin: 0;
            line-height: 1.6;
        }

        /* ===== JOURNEY SECTION ===== */
        .wbc-journey {
            padding: 90px 0;
            background: linear-gradient(160deg, #F0F5FF, var(--bg-2));
        }

        .wbc-journey__track {
            position: relative;
            margin-top: 20px;
        }

        .journey-step {
            background: var(--white);
            border-radius: 20px;
            padding: 32px 26px;
            border: 1.5px solid var(--border);
            height: 100%;
            position: relative;
            overflow: hidden;
            transition: all 0.35s ease;
        }

        .journey-step::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--theme-color), var(--theme-color-2));
            transition: width 0.4s ease;
        }

        .journey-step:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 50px rgba(31, 77, 184, 0.12);
        }

        .journey-step:hover .journey-step__icon {
            background: var(--theme-color);
            color: var(--white);
        }

        .journey-step:hover::after {
            width: 100%;
        }

        .journey-step__num {
            font-family: 'Quicksand', sans-serif;
            font-size: 42px;
            font-weight: 800;
            color: rgba(31, 77, 184, 0.08);
            line-height: 1;
            margin-bottom: 8px;
            transition: color 0.3s;
        }

        .journey-step:hover .journey-step__num {
            color: rgba(242, 122, 33, 0.2);
        }

        .journey-step__icon {
            font-size: 24px;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 56px;
            height: 56px;
            background: rgba(31, 77, 184, 0.08);
            border-radius: 16px;
            color: var(--theme-color);
            transition: all 0.3s;
        }

        .journey-step h5 {
            font-family: 'Quicksand', sans-serif;
            font-size: 17px;
            font-weight: 700;
            color: var(--header);
            margin-bottom: 10px;
        }

        .journey-step p {
            font-size: 14px;
            color: var(--text);
            line-height: 1.75;
            margin: 0;
        }

        /* ===== AFTERCARE SECTION ===== */
        .wbc-aftercare {
            padding: 90px 0;
            background: var(--white);
        }

        .aftercare-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 28px;
        }

        .aftercare-item {
            display: flex;
            gap: 14px;
            align-items: flex-start;
            background: linear-gradient(135deg, #F0F5FF, var(--bg-2));
            border-radius: 16px;
            padding: 18px;
            border: 1px solid var(--border);
            transition: all 0.3s;
        }

        .aftercare-item:hover .aftercare-icon {
            background: var(--theme-color);
            color: var(--white);
        }

        .aftercare-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(31, 77, 184, 0.1);
        }

        .aftercare-icon {
            font-size: 20px;
            flex-shrink: 0;
            width: 46px;
            height: 46px;
            background: rgba(31, 77, 184, 0.08);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--theme-color);
        }

        .aftercare-item strong {
            font-family: 'Quicksand', sans-serif;
            font-size: 14px;
            font-weight: 700;
            color: var(--header);
            display: block;
            margin-bottom: 4px;
        }

        .aftercare-item p {
            font-size: 13px;
            color: var(--text);
            margin: 0;
            line-height: 1.6;
        }

        /* COST BOX */
        .wbc-cost-box {
            background: var(--bg-3);
            border-radius: 24px;
            padding: 40px 36px;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .wbc-cost-box::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -80px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(31, 77, 184, 0.3);
            pointer-events: none;
        }

        .cost-box__head h4 {
            font-family: 'Quicksand', sans-serif;
            font-size: 22px;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 10px;
        }

        .cost-box__head p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.65);
            margin-bottom: 28px;
            line-height: 1.7;
        }

        .cost-rows {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .cost-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .cost-row:last-child {
            border-bottom: none;
        }

        .cost-row__label {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .cost-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .cost-dot.blue {
            background: var(--theme-color);
        }

        .cost-dot.orange {
            background: var(--theme-color-2);
        }

        .cost-dot.green {
            background: #22C55E;
        }

        .cost-row__label strong {
            font-family: 'Quicksand', sans-serif;
            font-size: 14px;
            font-weight: 600;
            color: var(--white);
        }

        .cost-row__tag {
            background: rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            font-size: 11px;
            font-family: 'Quicksand', sans-serif;
            font-weight: 700;
            letter-spacing: 0.5px;
            padding: 4px 12px;
            border-radius: 50px;
            white-space: nowrap;
        }

        .cost-box__note {
            display: flex;
            gap: 10px;
            align-items: flex-start;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 12px;
            padding: 16px;
            margin-top: 24px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.6;
        }

        .cost-box__note i {
            color: var(--theme-color-2);
            margin-top: 2px;
            flex-shrink: 0;
        }

        .cost-box__cta {
            display: block;
            text-align: center;
            background: var(--theme-color-2);
            color: var(--white);
            font-family: 'Quicksand', sans-serif;
            font-weight: 700;
            font-size: 15px;
            padding: 14px 28px;
            border-radius: 12px;
            margin-top: 24px;
            text-decoration: none;
            transition: all 0.3s;
        }

        .cost-box__cta:hover {
            background: #d96a12;
            color: var(--white);
            transform: translateY(-2px);
        }

        /* ===== INTERACTION SECTION ===== */
        .wbc-interaction {
            padding: 90px 0;
            background: linear-gradient(160deg, var(--bg-2) 0%, #EFF4FF 100%);
        }

        .interaction-highlights {
            display: flex;
            gap: 0;
            margin-top: 32px;
            background: var(--white);
            border-radius: 16px;
            padding: 24px;
            border: 1.5px solid var(--border);
        }

        .ih-item {
            flex: 1;
            text-align: center;
        }

        .ih-num {
            font-family: 'Quicksand', sans-serif;
            font-size: 28px;
            font-weight: 800;
            color: var(--theme-color);
            line-height: 1;
            margin-bottom: 6px;
        }

        .ih-label {
            font-size: 12px;
            color: var(--text);
            font-weight: 600;
        }

        .ih-divider {
            width: 1px;
            background: var(--border);
            margin: 0 16px;
        }

        /* ACCORDION */
        .accordion-wrap {
            background: var(--white);
            border-radius: 24px;
            padding: 36px 32px;
            border: 1.5px solid var(--border);
        }

        .accordion-heading {
            font-family: 'Quicksand', sans-serif;
            font-size: 20px;
            font-weight: 800;
            color: var(--header);
            margin-bottom: 24px;
        }

        .wbc-accordion {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .wbc-acc__item {
            border: 1.5px solid var(--border);
            border-radius: 14px;
            overflow: hidden;
            transition: border-color 0.3s;
        }

        .wbc-acc__item.active {
            border-color: var(--theme-color);
        }

        .wbc-acc__header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px;
            cursor: pointer;
            user-select: none;
            gap: 12px;
        }

        .wbc-acc__header span {
            font-family: 'Quicksand', sans-serif;
            font-size: 15px;
            font-weight: 700;
            color: var(--header);
            line-height: 1.4;
        }

        .wbc-acc__arrow {
            font-size: 11px;
            color: var(--theme-color);
            flex-shrink: 0;
            transition: transform 0.3s;
        }

        .wbc-acc__item.active .wbc-acc__arrow {
            transform: rotate(180deg);
        }

        .wbc-acc__body {
            display: none;
            padding: 0 20px 18px;
        }

        .wbc-acc__item.active .wbc-acc__body {
            display: block;
        }

        .wbc-acc__body p {
            font-size: 14px;
            color: var(--text);
            line-height: 1.8;
            margin: 0;
        }

        /* ===== CHOOSE SECTION ===== */
        .wbc-choose {
            padding: 90px 0;
            background: var(--white);
        }

        .choose-card {
            background: var(--white);
            border-radius: 20px;
            padding: 36px 28px;
            border: 1.5px solid var(--border);
            height: 100%;
            transition: all 0.35s ease;
            position: relative;
            overflow: hidden;
        }

        .choose-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 80px;
            height: 80px;
            border-radius: 0 20px 0 80px;
            background: linear-gradient(135deg, rgba(31, 77, 184, 0.05), rgba(242, 122, 33, 0.05));
            transition: all 0.35s;
        }

        .choose-card:hover {
            transform: translateY(-6px);
            border-color: var(--theme-color);
            box-shadow: 0 20px 50px rgba(31, 77, 184, 0.12);
        }

        .choose-card:hover .choose-card__icon {
            background: var(--theme-color);
            color: var(--white);
        }

        .choose-card:hover::before {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, rgba(31, 77, 184, 0.1), rgba(242, 122, 33, 0.08));
        }

        .choose-card__icon {
            font-size: 24px;
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: rgba(31, 77, 184, 0.08);
            border-radius: 16px;
            color: var(--theme-color);
            transition: all 0.3s;
        }

        .choose-card h5 {
            font-family: 'Quicksand', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: var(--header);
            margin-bottom: 12px;
        }

        .choose-card p {
            font-size: 14.5px;
            color: var(--text);
            line-height: 1.8;
            margin: 0;
        }

        /* RESPONSIVE */
        @media (max-width: 767px) {

            .wbc-what,
            .wbc-journey,
            .wbc-aftercare,
            .wbc-interaction,
            .wbc-choose {
                padding: 20px 0;
            }

            .aftercare-grid {
                grid-template-columns: 1fr;
            }

            .interaction-highlights {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .ih-divider {
                width: 100%;
                height: 1px;
                margin: 0;
            }

            .wbc-who-cards {
                padding: 24px 20px;
            }

            .accordion-wrap {
                padding: 24px 20px;
            }

            .wbc-cost-box {
                padding: 28px 24px;
            }
        }
   
