@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* =============================================
   First SECTION — FULLY RESPONSIVE
   ============================================= */

/* ============================================
   second Section CSS
   ============================================ */
.stats-divider-section {
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    
    width: 100%;
    padding: 40px 0;
    position: relative;
    z-index: 10;
    overflow: visible;
    background: transparent;
    isolation: isolate;
    
    /* Uses the same --divider-overlap variable from :root */
    margin-top: calc(-1 * var(--divider-overlap, 100px));
}

.stats-divider-section *,
.stats-divider-section *::before,
.stats-divider-section *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* --- WRAPPER — MATCHES HERO CONTAINER EXACTLY --- */
.stats-strip-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--container-padding, 24px);
}
.stats-divider-section {
    --container-max-width: 1400px;
}


/* --- STRIP CARD --- */
.stats-divider-section .stats-strip {
    position: relative;
    width: 100%;
    background: var(--color-primary, #21514B);
    border-radius: 20px;

    /* FORCE HEIGHT */
    padding-top: 70px !important;
    padding-bottom: 70px !important;
    padding-left: clamp(20px, 3vw + 10px, 56px);
    padding-right: clamp(20px, 3vw + 10px, 56px);

    box-shadow: 
        0 4px 6px -1px rgba(33, 81, 75, 0.1),
        0 10px 20px -5px rgba(33, 81, 75, 0.2),
        0 25px 50px -12px rgba(33, 81, 75, 0.25),
        0 0 0 1px rgba(87, 186, 145, 0.1);

    z-index: 20;
    overflow: hidden;
}


.stats-strip::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.stats-strip::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

/* --- INNER CONTAINER --- */
.stats-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- HEADING --- */
.stats-heading {
    text-align: center;
    margin-bottom: clamp(24px, 2vw + 8px, 36px);
    opacity: 0;
    animation: statsFadeSlideUp 0.5s ease-out forwards;
}

.stats-heading-title {
    font-size: clamp(20px, 1.8vw + 8px, 36px);
    font-weight: 800;
    color: var(--color-white, #ffffff);
    letter-spacing: -0.5px;
    margin: 0;
    line-height: 1.2;
}

.stats-heading-subtitle {
    font-size: clamp(11px, 0.7vw + 4px, 14px);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
}

/* --- STATS GRID --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: clamp(24px, 2vw + 8px, 36px);
    column-gap: clamp(16px, 1.5vw + 4px, 28px);
    justify-content: center;
}

/* --- STAT ITEM --- */
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    position: relative;
    padding-left: clamp(12px, 1vw + 4px, 20px);
    opacity: 0;
    animation: statsFadeSlideUp 0.6s ease-out forwards;
}

.stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: clamp(35px, 3vw + 10px, 50px);
    background: var(--color-white, #ffffff);
    border-radius: 0;
    transition: all 0.3s ease;
}

.stat-item:hover::before {
    height: clamp(45px, 4vw + 10px, 60px);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
}

/* --- STAT TYPOGRAPHY --- */
.stat-number {
    font-size: clamp(28px, 3vw + 8px, 56px);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;

    letter-spacing: -0.5px; /* reduce negative spacing */
    font-variant-numeric: tabular-nums; /* equal width digits */

    color: var(--color-white, #ffffff);

    display: inline-flex; /* change from flex */
    justify-content: center;
    align-items: baseline;
    gap: 2px;

    min-width: 140px; /* prevents width jump */
    transition: transform 0.3s ease;
}


.stat-number .count {
    display: inline-block;
}

.stat-number .suffix,
.stat-number .divider {
    font-size: clamp(16px, 1.8vw + 4px, 34px);
    font-weight: 700;
    opacity: 0.9;
    letter-spacing: 0;
}

.stat-item:hover .stat-number {
    transform: translateY(-4px);
}

.stat-label {
    font-size: clamp(10px, 0.7vw + 4px, 14px);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color 0.3s ease;
}

.stat-item:hover .stat-label {
    color: var(--color-white, #ffffff);
}

/* --- ANIMATION --- */
@keyframes statsFadeSlideUp {
    0%   { opacity: 0; transform: translateY(24px); }
    100% { opacity: 1; transform: translateY(0); }
}

.stat-item:nth-child(1) { animation-delay: 0.10s; }
.stat-item:nth-child(2) { animation-delay: 0.15s; }
.stat-item:nth-child(3) { animation-delay: 0.20s; }
.stat-item:nth-child(4) { animation-delay: 0.25s; }
.stat-item:nth-child(5) { animation-delay: 0.30s; }
.stat-item:nth-child(6) { animation-delay: 0.35s; }
.stat-item:nth-child(7) { animation-delay: 0.40s; }
.stat-item:nth-child(8) { animation-delay: 0.45s; }

/* =============================================
   RESPONSIVE — STATS DIVIDER
   Inherits --container-max-width, --container-padding,
   and --divider-overlap from :root set in hero section
   ============================================= */

/* --- ULTRA WIDE (1920px+) --- */
@media (min-width: 1920px) {
    .stats-strip {
        padding: 52px 72px;
    }
    
    .stats-container {
        max-width: 1500px;
    }
}

/* --- LARGE DESKTOP (1440px - 1919px) --- */
@media (min-width: 1440px) and (max-width: 1919px) {
    .stats-strip {
        padding: 48px 64px;
    }
    
    .stats-container {
        max-width: 1300px;
    }
}

/* --- TABLET LANDSCAPE (768px - 1023px) --- */
@media (max-width: 1023px) {
    .stats-divider-section {
        padding: 30px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* --- TABLET PORTRAIT (600px - 767px) --- */
@media (max-width: 767px) {
    .stats-divider-section {
        padding: 24px 0;
    }
    
    .stats-strip {
        border-radius: 16px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- MOBILE LARGE (480px - 599px) --- */
@media (max-width: 599px) {
    .stats-divider-section {
        padding: 20px 0;
    }
    
    .stats-strip {
        border-radius: 14px;
    }
}

/* --- MOBILE (360px - 479px) --- */
@media (max-width: 479px) {
    .stats-divider-section {
        padding: 16px 0;
    }
    
    .stats-strip {
        border-radius: 12px;
    }
    
    .stat-item::before {
        width: 2px;
    }
}

/* --- EXTRA SMALL MOBILE (<360px) --- */
@media (max-width: 359px) {
    .stats-strip {
        border-radius: 10px;
    }
    
    .stats-grid {
        row-gap: 20px;
        column-gap: 12px;
    }
}



/* ============================================
   Third Section CSS
   ============================================ */
/* ===== DENIAL MANAGEMENT SECTION - SCOPED STYLES ===== */
.dm-section-wrapper {
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
    width: 100%;
    isolation: isolate;
    clear: both;
    --dm-primary: #58bb92;
    --dm-primary-dark: #469d7a;
    --dm-accent: #21514B;
    --dm-light-bg: #f6f7f7;
    --dm-white: #ffffff;
    --dm-gray-50: #fcfdfd;
    --dm-gray-100: #f1f3f2;
    --dm-gray-200: #e5e7eb;
    --dm-gray-400: #9ca3af;
    --dm-gray-600: #6c7f77;
    --dm-gray-700: #4b5563;
    --dm-red: #ef4444;
    --dm-blue: #3b82f6;
}

.dm-section-wrapper *,
.dm-section-wrapper *::before,
.dm-section-wrapper *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.dm-main-section {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: var(--dm-light-bg);
}

/* ===== HERO SECTION ===== */
.dm-hero {
    margin-bottom: 60px;
}

.dm-page-heading {
    max-width: 900px;
    margin-bottom: 50px;
}

.dm-main-title {
    color: var(--dm-accent);
    font-size: 36px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.dm-subtitle {
    color: var(--dm-gray-600);
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
}

/* ===== TWO COLUMN LAYOUT ===== */
.dm-two-col-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Left Column - Process */
.dm-process-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dm-process-content {
    background: var(--dm-white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.dm-process-title {
    color: var(--dm-accent);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.dm-process-desc {
    color: var(--dm-gray-700);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.dm-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dm-checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dm-accent);
    font-size: 15px;
    font-weight: 500;
}

.dm-check-icon {
    color: var(--dm-primary);
    font-size: 20px;
    flex-shrink: 0;
}

/* Right Column - Stats Card */
.dm-stats-card {
    background: var(--dm-white);
    border: 1px solid var(--dm-gray-200);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.dm-stats-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--dm-gray-100);
    margin-bottom: 28px;
}

.dm-stats-icon {
    color: var(--dm-primary);
    font-size: 24px;
}

.dm-stats-heading {
    color: var(--dm-accent);
    font-size: 18px;
    font-weight: 700;
}

.dm-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 20px;
}

.dm-stat-item {
    text-align: center;
}

.dm-stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--dm-primary);
    line-height: 1;
    letter-spacing: -0.02em;
    display: block;
    margin-bottom: 8px;
}

.dm-stat-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--dm-gray-600);
    line-height: 1.4;
    display: block;
}

.dm-stats-source {
    padding-top: 20px;
    border-top: 1px solid var(--dm-gray-100);
    font-size: 12px;
    color: var(--dm-gray-400);
    font-style: italic;
    text-align: center;
}

/* ===== THREE CARD SECTION ===== */
.dm-three-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 60px;
}

.dm-info-card {
    background: var(--dm-gray-50);
    border: 1px solid var(--dm-gray-200);
    border-radius: 12px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.dm-info-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.dm-card-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.dm-card-icon-red {
    background: rgba(239, 68, 68, 0.1);
    color: var(--dm-red);
}

.dm-card-icon-blue {
    background: rgba(59, 130, 246, 0.1);
    color: var(--dm-blue);
}

.dm-card-icon-green {
    background: rgba(88, 187, 146, 0.15);
    color: var(--dm-primary-dark);
}

.dm-card-title {
    color: var(--dm-accent);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.dm-card-desc {
    color: var(--dm-gray-600);
    font-size: 14px;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 16px;
}

.dm-card-footer {
    padding-top: 16px;
    border-top: 1px solid var(--dm-gray-100);
}

.dm-badge-risk {
    font-size: 11px;
    font-weight: 700;
    color: var(--dm-red);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Process Steps */
.dm-process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 16px 0;
}

.dm-step {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dm-step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.15);
    color: var(--dm-blue);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dm-step-text {
    font-size: 14px;
    color: var(--dm-gray-700);
    font-weight: 500;
}

.dm-step-divider {
    height: 16px;
    margin-left: 14px;
    border-left: 2px dashed var(--dm-gray-200);
}

/* Our Approach Card (Special) */
.dm-card-special {
    background: linear-gradient(135deg, #f0fdf9 0%, #ecfdf5 100%);
    border: 1px solid rgba(88, 187, 146, 0.2);
    position: relative;
    overflow: hidden;
}

.dm-card-special::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(88, 187, 146, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.dm-cta-button {
    width: 100%;
    height: 48px;
    border-radius: 10px;
    background: var(--dm-primary);
    color: var(--dm-white);
    border: none;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(88, 187, 146, 0.25);
    margin-top: auto;
}

.dm-cta-button:hover {
    background: var(--dm-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(88, 187, 146, 0.35);
}

.dm-cta-button span {
    font-size: 18px;
}

/* ===== FINAL CTA BANNER ===== */
.dm-cta-banner {
    margin-top: 60px;
    width: 100%;
    min-height: 250px; /* ✅ instead of fixed height */
    height: auto;      /* ✅ auto grow */
    border-radius: 16px;
    position: relative;
    overflow: visible; /* safer */
    background: linear-gradient(135deg, var(--dm-accent) 0%, var(--dm-primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}


.dm-cta-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
}

.dm-cta-title {
    color: var(--dm-white);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
}

.dm-cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 28px;
}

.dm-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.dm-btn-primary {
    background: var(--dm-white);
    color: var(--dm-accent);
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.dm-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.dm-btn-secondary {
    background: transparent;
    color: var(--dm-white);
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    border: 2px solid var(--dm-white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dm-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

@media (max-width: 768px) {

    .dm-cta-banner {
        padding: 40px 18px;
        overflow: visible;
    }

    .dm-cta-title {
        font-size: 22px;
    }

    .dm-cta-text {
        font-size: 14px;
    }

    .dm-cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 14px;
        width: 100%;
    }

    .dm-btn-primary,
    .dm-btn-secondary {
        width: 100%;
    }
}



/* ===== TABLET RESPONSIVE ===== */
@media (min-width: 768px) {
    .dm-main-section {
        padding: 80px 40px;
    }

    .dm-main-title {
        font-size: 48px;
    }

    .dm-subtitle {
        font-size: 20px;
    }

    .dm-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .dm-stat-item {
        text-align: left;
    }

    .dm-three-card-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .dm-cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .dm-cta-title {
        font-size: 36px;
    }
}

/* ===== DESKTOP RESPONSIVE ===== */
@media (min-width: 1024px) {
    .dm-main-section {
        padding: 100px 60px;
    }

    .dm-two-col-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: start;
    }

    .dm-main-title {
        font-size: 54px;
    }

    .dm-cta-banner {
        height: 280px;
    }
}

/* ===== PSEUDO-ICONS (Unicode symbols as fallback) ===== */
.dm-icon {
    display: inline-block;
    font-style: normal;
    line-height: 1;
}

.dm-icon-check::before { content: '✓'; }
.dm-icon-warning::before { content: '⚠'; }
.dm-icon-process::before { content: '⚙'; }
.dm-icon-graph::before { content: '📊'; }
.dm-icon-arrow::before { content: '→'; }


/* ============================================
   Fourth Section CSS
   ============================================ */
 #ms-landscape-2026 {
        /* Left to Right Gradient */
        background: linear-gradient(90deg, #21514B 0%, #57BA91 100%);
        padding: 80px 20px;
        color: #ffffff;
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        line-height: 1.6;
        position: relative;
        overflow: hidden;
        box-sizing: border-box;
    }

    #ms-landscape-2026 *,
    #ms-landscape-2026 *::before,
    #ms-landscape-2026 *::after {
        box-sizing: border-box;
    }

    /* Container */
    #ms-landscape-2026 .ms-container {
        max-width: 1100px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    /* ============================================
       HEADER STYLES
       ============================================ */

    #ms-landscape-2026 .ms-header-block {
        text-align: center;
        margin-bottom: 50px;
    }

    #ms-landscape-2026 h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin: 0 0 40px 0;
        line-height: 1.2;
        color: #ffffff;
        text-align: center;
    }

    #ms-landscape-2026 .ms-highlight {
        color: #bbf7d0;
    }

    #ms-landscape-2026 h3 {
        font-size: 1.5rem;
        font-weight: 600;
        margin: 0 0 15px 0;
        color: #ffffff;
    }

    #ms-landscape-2026 p {
        margin: 0 0 20px 0;
        color: #f0fdf4;
        font-size: 1.125rem;
    }

    #ms-landscape-2026 strong {
        font-weight: 700;
        color: #ffffff;
        text-decoration: underline;
        text-decoration-color: #57BA91;
        text-decoration-thickness: 2px;
        text-underline-offset: 3px;
    }

    /* ============================================
       TOP GRID LAYOUT
       ============================================ */

    #ms-landscape-2026 .ms-grid-row {
        display: flex;
        gap: 50px;
        margin-bottom: 60px;
        align-items: center;
    }

    #ms-landscape-2026 .ms-text-col {
        flex: 3;
    }

    #ms-landscape-2026 .ms-stats-col {
        flex: 2;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    /* ============================================
       WHITE STAT CARDS WITH GREEN OUTLINE
       ============================================ */

    #ms-landscape-2026 .ms-glass-card {
        background: #ffffff;
        border: 3px solid #57BA91;
        padding: 30px 25px;
        border-radius: 16px;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        position: relative;
        overflow: hidden;
    }

    #ms-landscape-2026 .ms-glass-card::before {
        content: '';
        position: absolute;
        top: 8px;
        left: 8px;
        right: 8px;
        bottom: 8px;
        border: 1px solid rgba(87, 186, 145, 0.3);
        border-radius: 10px;
        pointer-events: none;
    }

    #ms-landscape-2026 .ms-glass-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    }

    #ms-landscape-2026 .ms-stat-number {
        display: inline;
        font-size: 3.5rem;
        font-weight: 800;
        color: #57BA91;
        line-height: 1;
    }

    #ms-landscape-2026 .ms-stat-suffix {
        font-size: 2rem;
        font-weight: 700;
        color: #57BA91;
    }

    #ms-landscape-2026 .ms-stat-label {
        display: block;
        font-size: 1rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #21514B;
        margin-top: 10px;
        margin-bottom: 8px;
    }

    #ms-landscape-2026 .ms-stat-desc {
        display: block;
        font-size: 0.875rem;
        color: #57BA91;
        font-weight: 500;
    }

    /* ============================================
       CMS CARD - NEW DESIGN
       ============================================ */

    #ms-landscape-2026 .ms-cms-card {
        background: #ffffff;
        border-radius: 16px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
        overflow: hidden;
        position: relative;
    }

    #ms-landscape-2026 .ms-cms-accent-bar {
        height: 6px;
        background: linear-gradient(90deg, #57BA91 0%, #21514B 100%);
        width: 100%;
    }

    #ms-landscape-2026 .ms-cms-inner {
        padding: 40px;
    }

    /* Alert Callout */
    #ms-landscape-2026 .ms-alert-callout {
        background: #f8fafc;
        border-radius: 12px;
        padding: 28px;
        margin-bottom: 40px;
        border-left: 4px solid #f59e0b;
        position: relative;
        overflow: hidden;
    }

    #ms-landscape-2026 .ms-alert-glow {
        position: absolute;
        top: -20px;
        right: -20px;
        width: 100px;
        height: 100px;
        background: #fbbf24;
        opacity: 0.1;
        border-radius: 50%;
        filter: blur(30px);
    }

    #ms-landscape-2026 .ms-alert-flex {
        display: flex;
        gap: 20px;
        position: relative;
        z-index: 1;
    }

    #ms-landscape-2026 .ms-alert-icon-wrap {
        flex-shrink: 0;
    }

    #ms-landscape-2026 .ms-alert-icon {
        color: #d97706;
        display: block;
    }

    #ms-landscape-2026 .ms-alert-body {
        flex: 1;
    }

    #ms-landscape-2026 .ms-alert-title {
        font-size: 1.35rem;
        font-weight: 700;
        color: #1f2937;
        margin: 0 0 16px 0;
        line-height: 1.4;
    }

    #ms-landscape-2026 .ms-alert-badge {
        display: inline-block;
        color: #21514B;
        font-weight: 500;
        font-size: 1rem;
    }

    #ms-landscape-2026 .ms-alert-text {
        color: #4b5563;
        font-size: 1rem;
        line-height: 1.7;
    }

    #ms-landscape-2026 .ms-alert-text p {
        color: #4b5563;
        font-size: 1rem;
        margin: 0 0 12px 0;
    }

    #ms-landscape-2026 .ms-alert-text p:last-child {
        margin-bottom: 0;
    }

    #ms-landscape-2026 .ms-alert-text strong {
        color: #1f2937;
        text-decoration: none;
    }

    /* WISeR Box */
    #ms-landscape-2026 .ms-wiser-box {
        background: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: 10px;
        padding: 18px;
        margin-top: 20px;
    }

    #ms-landscape-2026 .ms-wiser-box p {
        color: #4b5563;
        font-size: 0.95rem;
        margin: 0;
        line-height: 1.6;
    }

    #ms-landscape-2026 .ms-wiser-label {
        color: #21514B;
        display: block;
        margin-bottom: 6px;
        text-decoration: none;
        font-size: 0.9rem;
    }

    /* ============================================
       SOLUTION & CTA SECTION
       ============================================ */

    #ms-landscape-2026 .ms-solution-section {
        text-align: center;
        max-width: 700px;
        margin: 0 auto;
    }

    #ms-landscape-2026 .ms-solution-content {
        margin-bottom: 32px;
    }

    #ms-landscape-2026 .ms-solution-title {
        font-size: 1.75rem;
        font-weight: 700;
        color: #1f2937;
        margin: 0 0 16px 0;
    }

    #ms-landscape-2026 .ms-solution-text {
        font-size: 1.1rem;
        color: #4b5563;
        line-height: 1.7;
        margin: 0;
    }

    /* CTA Section */
    #ms-landscape-2026 .ms-cta-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    #ms-landscape-2026 .ms-cta-label {
        font-size: 0.8rem;
        font-weight: 600;
        color: #6b7280;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin: 0 0 8px 0;
    }

    #ms-landscape-2026 .ms-cta-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: linear-gradient(135deg, #21514B 0%, #2d6b5f 100%);
        color: #ffffff;
        padding: 18px 36px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        box-shadow: 0 8px 24px rgba(33, 81, 75, 0.3);
        position: relative;
        overflow: hidden;
    }

    #ms-landscape-2026 .ms-cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 32px rgba(33, 81, 75, 0.4);
        background: linear-gradient(135deg, #1a433e 0%, #21514B 100%);
    }

    #ms-landscape-2026 .ms-cta-text {
        position: relative;
        z-index: 2;
    }

    #ms-landscape-2026 .ms-cta-arrow {
        transition: transform 0.3s ease;
        position: relative;
        z-index: 2;
    }

    #ms-landscape-2026 .ms-cta-button:hover .ms-cta-arrow {
        transform: translateX(5px);
    }

    /* Shimmer Effect */
    #ms-landscape-2026 .ms-cta-shimmer {
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        z-index: 1;
    }

    #ms-landscape-2026 .ms-cta-button:hover .ms-cta-shimmer {
        animation: msShimmer 1.5s infinite;
    }

    @keyframes msShimmer {
        0% {
            left: -100%;
        }
        100% {
            left: 100%;
        }
    }

    #ms-landscape-2026 .ms-cta-subtext {
        font-size: 0.8rem;
        color: #9ca3af;
        margin: 8px 0 0 0;
    }

    /* ============================================
       NUMBER COUNTING ANIMATION STYLES
       ============================================ */

    #ms-landscape-2026 .ms-stat-number.counting {
        transition: none;
    }

    /* ============================================
       RESPONSIVE DESIGN
       ============================================ */

    @media (max-width: 900px) {
        #ms-landscape-2026 .ms-grid-row {
            flex-direction: column;
            gap: 40px;
        }

        #ms-landscape-2026 .ms-stats-col {
            width: 100%;
            flex-direction: row;
        }

        #ms-landscape-2026 .ms-glass-card {
            flex: 1;
        }

        #ms-landscape-2026 .ms-cms-inner {
            padding: 30px;
        }
    }

    @media (max-width: 768px) {
        #ms-landscape-2026 {
            padding: 60px 16px;
        }

        #ms-landscape-2026 h2 {
            font-size: 1.85rem;
        }

        #ms-landscape-2026 .ms-stat-number {
            font-size: 2.5rem;
        }

        #ms-landscape-2026 .ms-stat-suffix {
            font-size: 1.5rem;
        }

        #ms-landscape-2026 .ms-alert-flex {
            flex-direction: column;
            gap: 16px;
        }

        #ms-landscape-2026 .ms-alert-title {
            font-size: 1.2rem;
        }

        #ms-landscape-2026 .ms-alert-badge {
            display: block;
            margin-top: 4px;
        }

        #ms-landscape-2026 .ms-solution-title {
            font-size: 1.4rem;
        }

        #ms-landscape-2026 .ms-cta-button {
            width: 100%;
            padding: 16px 28px;
            font-size: 1rem;
        }
    }

    @media (max-width: 480px) {
        #ms-landscape-2026 .ms-stats-col {
            flex-direction: column;
        }

        #ms-landscape-2026 .ms-glass-card {
            padding: 25px 20px;
        }

        #ms-landscape-2026 .ms-stat-number {
            font-size: 2.25rem;
        }

        #ms-landscape-2026 .ms-cms-inner {
            padding: 24px 20px;
        }

        #ms-landscape-2026 .ms-alert-callout {
            padding: 20px;
        }

        #ms-landscape-2026 .ms-wiser-box {
            padding: 14px;
        }
    }

    /* ============================================
       ACCESSIBILITY
       ============================================ */

    @media (prefers-reduced-motion: reduce) {
        #ms-landscape-2026 .ms-glass-card,
        #ms-landscape-2026 .ms-cta-button,
        #ms-landscape-2026 .ms-cta-arrow {
            transition: none;
        }

        #ms-landscape-2026 .ms-glass-card:hover,
        #ms-landscape-2026 .ms-cta-button:hover {
            transform: none;
        }

        #ms-landscape-2026 .ms-cta-button:hover .ms-cta-shimmer {
            animation: none;
        }

        #ms-landscape-2026 .ms-stat-number {
            /* Disable counting animation for reduced motion */
        }
    }

    /* ============================================
       PRINT STYLES
       ============================================ */

    @media print {
        #ms-landscape-2026 {
            background: white !important;
            color: black !important;
            padding: 20px;
        }

        #ms-landscape-2026 h2,
        #ms-landscape-2026 h3,
        #ms-landscape-2026 .ms-highlight,
        #ms-landscape-2026 .ms-stat-number,
        #ms-landscape-2026 .ms-stat-label {
            color: black !important;
        }

        #ms-landscape-2026 .ms-glass-card,
        #ms-landscape-2026 .ms-cms-card {
            box-shadow: none;
            border: 1px solid #ccc;
        }

        #ms-landscape-2026 .ms-cta-button {
            background: #333 !important;
        }
}

/* ============================================
   Fifth Section CSS
   ============================================ */
.section-5-denials {
    padding: 80px 0;
    background-color: #f8fafc;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.section-5-denials * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.section-5-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

.section-5-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-5-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #21514B;
    margin-bottom: 16px;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.section-5-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.75;
    font-weight: 400;
}

.section-5-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 96px 48px;
}

/* Card Styles */
.denial-card {
    position: relative;
}

.denial-card-inner {
    position: relative;
    z-index: 10;
    background-color: #ffffff;
    border: 4px solid #57BA91;
    border-radius: 16px;
    box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.08), 0 15px 15px -5px rgba(0, 0, 0, 0.03);
    padding: 16px 32px 48px 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.denial-card:hover .denial-card-inner {
    background-color: rgba(248, 250, 252, 0.5);
}

.denial-card-header {
    background-color: #21514B;
    color: #ffffff;
    border-radius: 8px;
    padding: 16px 24px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    margin-top: -40px;
    margin-bottom: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.denial-card:hover .denial-card-header {
    transform: translateY(-8px);
}

.denial-card-header h3 {
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: 0.025em;
    margin: 0;
    color: #ffffff;
}

.denial-card-body {
    font-size: 0.875rem;
    line-height: 1.75;
    letter-spacing: 0.025em;
    color: #6b7280;
    font-weight: 400;
    flex-grow: 1;
}

.denial-badge {
    position: absolute;
    bottom: -24px;
    right: -16px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #57BA91;
    box-shadow: 0 10px 15px -3px rgba(87, 186, 145, 0.5), 0 4px 6px -2px rgba(87, 186, 145, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: transform 0.3s ease;
}

.denial-card:hover .denial-badge {
    transform: scale(1.1);
}

.denial-badge span {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.25rem;
}

/* CTA Section */
.section-5-cta {
    margin-top: 96px;
    text-align: center;
    padding: 64px 48px;
    background: linear-gradient(135deg, #21514B 0%, #2d6b62 100%);
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(33, 81, 75, 0.25);
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif !important;
}

.section-5-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(87, 186, 145, 0.1);
    border-radius: 50%;
    font-family: 'Poppins', sans-serif !important;
}

.section-5-cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(87, 186, 145, 0.08);
    border-radius: 50%;
    font-family: 'Poppins', sans-serif !important;
}

.section-5-cta-content {
    position: relative;
    z-index: 1;
    font-family: 'Poppins', sans-serif !important;
}

.section-5-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.025em;
}

.section-5-cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 32px auto;
    line-height: 1.75;
    font-weight: 400;
    font-family: 'Poppins', sans-serif !important;
}



.cta-button-wrapper {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #57BA91;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px -5px rgba(87, 186, 145, 0.5);
    border: none;
    cursor: pointer;
}

.cta-button-primary:hover {
    background-color: #4aa87f;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(87, 186, 145, 0.6);
    color: #ffffff;
    text-decoration: none;
}

.cta-button-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: transparent;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
}

.cta-button-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-3px);
    color: #ffffff;
    text-decoration: none;
}

.cta-button-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .section-5-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 80px 32px;
    }
    
    .section-5-title {
        font-size: 2rem;
    }
    
    .section-5-cta {
        padding: 56px 40px;
    }
    
    .section-5-cta h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .section-5-denials {
        padding: 60px 0;
    }
    
    .section-5-header {
        margin-bottom: 60px;
    }
    
    .section-5-grid {
        grid-template-columns: 1fr;
        gap: 64px 0;
        max-width: 480px;
        margin: 0 auto;
    }
    
    .section-5-title {
        font-size: 1.625rem;
        padding: 0 8px;
    }
    
    .section-5-subtitle {
        font-size: 1rem;
        padding: 0 8px;
    }
    
    .section-5-cta {
        padding: 48px 24px;
        margin-top: 72px;
        border-radius: 16px;
    }
    
    .section-5-cta h3 {
        font-size: 1.5rem;
    }
    
    .section-5-cta p {
        font-size: 1rem;
    }
    
    .cta-button-primary,
    .cta-button-secondary {
        padding: 14px 28px;
        font-size: 0.9375rem;
        width: 100%;
        justify-content: center;
    }
    
    .cta-button-wrapper {
        flex-direction: column;
        gap: 12px;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .section-5-denials {
        padding: 48px 0;
    }
    
    .section-5-container {
        padding: 0 12px;
    }
    
    .section-5-title {
        font-size: 1.375rem;
    }
    
    .section-5-header {
        margin-bottom: 48px;
    }
    
    .denial-card-inner {
        padding: 16px 20px 44px 20px;
    }
    
    .denial-card-header {
        padding: 14px 16px;
        margin-top: -36px;
        margin-bottom: 20px;
    }
    
    .denial-card-header h3 {
        font-size: 1rem;
    }
    
    .denial-card-body {
        font-size: 0.8125rem;
    }
    
    .denial-badge {
        width: 48px;
        height: 48px;
        bottom: -20px;
        right: -12px;
    }
    
    .denial-badge span {
        font-size: 1.0625rem;
    }
    
    .section-5-cta {
        padding: 40px 20px;
        margin-top: 56px;
    }
    
    .section-5-cta h3 {
        font-size: 1.25rem;
    }
    
    .section-5-cta p {
        font-size: 0.9375rem;
        margin-bottom: 24px;
    }
}

/* ============================================
   Sixth Section CSS
   ============================================ */

    .section-6-master-detail {
        padding: 0;
        background: #F9FAFB;
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }

    .section-6-master-detail * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    /* Section Header - Integrated with section */
    .section-6-header-bar {
        background: #F9FAFB;
        padding: 60px 32px 40px;
    }

    .section-6-header-inner {
        max-width: 1600px;
        margin: 0 auto;
        text-align: center;
    }

    .section-6-header-text {
        max-width: 720px;
        margin: 0 auto;
    }

    .section-6-header-text h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #111827;
        margin-bottom: 16px;
        letter-spacing: -0.025em;
        line-height: 1.2;
    }

    .section-6-header-text p {
        font-size: 1.0625rem;
        color: #6b7280;
        line-height: 1.7;
    }

    .section-6-badge {
        display: inline-block;
        background: rgba(87, 186, 145, 0.15);
        color: #21514B;
        padding: 8px 16px;
        border-radius: 9999px;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-top: 20px;
    }

    /* Main Layout Container - Fixed spacing for all resolutions */
    .section-6-layout {
        display: flex;
        min-height: 680px;
        max-width: 1920px;
        margin: 0 auto;
        padding: 0 clamp(24px, 4vw, 80px);
    }

    /* Ultra-wide screens (2560x900) */
    @media (min-width: 2200px) {
        .section-6-layout {
            max-width: 2200px;
            padding: 0 120px;
        }
    }

    /* Hide radio inputs - positioned off-screen to prevent scroll jump */
    .section-6-radio-group {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .section-6-master-detail input[type="radio"],
    .section-6-master-detail input[type="checkbox"] {
        position: fixed;
        opacity: 0;
        pointer-events: none;
        top: -9999px;
        left: -9999px;
    }

    /* Sidebar Navigation */
    .section-6-sidebar {
        width: clamp(320px, 22vw, 420px);
        flex-shrink: 0;
        background: #F9FAFB;
        overflow-y: auto;
        padding: clamp(20px, 2vw, 32px);
    }

    .section-6-nav {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .section-6-nav-item {
        display: block;
        width: 100%;
        text-align: left;
        padding: 18px 20px;
        border-radius: 16px;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(0, 0, 0, 0.04);
        background: #ffffff;
        position: relative;
        /* Lifted shadow effect for all nav items */
        box-shadow: 
            0 1px 2px rgba(0, 0, 0, 0.02),
            0 2px 4px rgba(0, 0, 0, 0.04),
            0 4px 8px rgba(0, 0, 0, 0.04),
            0 8px 16px rgba(0, 0, 0, 0.02);
    }

    .section-6-nav-item:hover {
        transform: translateY(-3px) translateX(2px);
        box-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.03),
            0 4px 8px rgba(0, 0, 0, 0.06),
            0 8px 16px rgba(0, 0, 0, 0.06),
            0 16px 32px rgba(0, 0, 0, 0.04);
        border-color: rgba(87, 186, 145, 0.15);
    }

    /* Capsule styling - default state with #57BA91 */
    .section-6-nav-item .nav-code {
        display: inline-block;
        background: #57BA91;
        color: #ffffff;
        font-size: 0.6875rem;
        font-weight: 700;
        padding: 5px 14px;
        border-radius: 9999px;
        margin-bottom: 8px;
        letter-spacing: 0.04em;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 2px 6px rgba(87, 186, 145, 0.25);
    }

    .section-6-nav-item .nav-title {
        display: block;
        font-size: 0.9rem;
        font-weight: 600;
        color: #374151;
        line-height: 1.45;
        transition: all 0.3s ease;
    }

    /* Active state for nav items - Gradient left to right */
    #cause-1:checked ~ .section-6-layout .section-6-sidebar label[for="cause-1"],
    #cause-2:checked ~ .section-6-layout .section-6-sidebar label[for="cause-2"],
    #cause-3:checked ~ .section-6-layout .section-6-sidebar label[for="cause-3"],
    #cause-4:checked ~ .section-6-layout .section-6-sidebar label[for="cause-4"],
    #cause-5:checked ~ .section-6-layout .section-6-sidebar label[for="cause-5"],
    #cause-6:checked ~ .section-6-layout .section-6-sidebar label[for="cause-6"],
    #cause-7:checked ~ .section-6-layout .section-6-sidebar label[for="cause-7"],
    #cause-8:checked ~ .section-6-layout .section-6-sidebar label[for="cause-8"] {
        background: linear-gradient(90deg, #21514B 0%, #57BA91 100%);
        border-color: transparent;
        box-shadow: 
            0 4px 8px rgba(33, 81, 75, 0.15),
            0 8px 16px rgba(33, 81, 75, 0.2),
            0 16px 32px rgba(87, 186, 145, 0.15);
        transform: translateY(-2px) translateX(4px);
    }

    /* When active - capsule becomes white with dark green text */
    #cause-1:checked ~ .section-6-layout .section-6-sidebar label[for="cause-1"] .nav-code,
    #cause-2:checked ~ .section-6-layout .section-6-sidebar label[for="cause-2"] .nav-code,
    #cause-3:checked ~ .section-6-layout .section-6-sidebar label[for="cause-3"] .nav-code,
    #cause-4:checked ~ .section-6-layout .section-6-sidebar label[for="cause-4"] .nav-code,
    #cause-5:checked ~ .section-6-layout .section-6-sidebar label[for="cause-5"] .nav-code,
    #cause-6:checked ~ .section-6-layout .section-6-sidebar label[for="cause-6"] .nav-code,
    #cause-7:checked ~ .section-6-layout .section-6-sidebar label[for="cause-7"] .nav-code,
    #cause-8:checked ~ .section-6-layout .section-6-sidebar label[for="cause-8"] .nav-code {
        background: #ffffff;
        color: #21514B;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    #cause-1:checked ~ .section-6-layout .section-6-sidebar label[for="cause-1"] .nav-title,
    #cause-2:checked ~ .section-6-layout .section-6-sidebar label[for="cause-2"] .nav-title,
    #cause-3:checked ~ .section-6-layout .section-6-sidebar label[for="cause-3"] .nav-title,
    #cause-4:checked ~ .section-6-layout .section-6-sidebar label[for="cause-4"] .nav-title,
    #cause-5:checked ~ .section-6-layout .section-6-sidebar label[for="cause-5"] .nav-title,
    #cause-6:checked ~ .section-6-layout .section-6-sidebar label[for="cause-6"] .nav-title,
    #cause-7:checked ~ .section-6-layout .section-6-sidebar label[for="cause-7"] .nav-title,
    #cause-8:checked ~ .section-6-layout .section-6-sidebar label[for="cause-8"] .nav-title {
        color: #ffffff;
    }

    /* Main Content Area */
    .section-6-content {
        flex: 1;
        background: #F9FAFB;
        overflow-y: auto;
        padding: clamp(32px, 4vw, 56px) clamp(32px, 5vw, 80px);
    }

    .section-6-content-inner {
        max-width: 960px;
        margin: 0 auto;
    }

    /* Content Panels - Hide all by default */
    .content-panel {
        display: none;
    }

    /* Show active panel */
    #cause-1:checked ~ .section-6-layout .section-6-content #panel-1,
    #cause-2:checked ~ .section-6-layout .section-6-content #panel-2,
    #cause-3:checked ~ .section-6-layout .section-6-content #panel-3,
    #cause-4:checked ~ .section-6-layout .section-6-content #panel-4,
    #cause-5:checked ~ .section-6-layout .section-6-content #panel-5,
    #cause-6:checked ~ .section-6-layout .section-6-content #panel-6,
    #cause-7:checked ~ .section-6-layout .section-6-content #panel-7,
    #cause-8:checked ~ .section-6-layout .section-6-content #panel-8 {
        display: block;
        animation: panelFadeIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    @keyframes panelFadeIn {
        from {
            opacity: 0;
            transform: translateY(12px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Panel Header */
    .panel-header {
        padding-bottom: 36px;
        margin-bottom: 36px;
    }

    .panel-title-row {
        display: flex;
        align-items: flex-start;
        gap: 24px;
    }

    /* Panel code badge with gradient */
    .panel-code-badge {
        width: 76px;
        height: 76px;
        background: linear-gradient(135deg, #21514B 0%, #57BA91 100%);
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        font-size: 1rem;
        font-weight: 700;
        flex-shrink: 0;
        box-shadow: 0 10px 28px -6px rgba(33, 81, 75, 0.45),
                    0 4px 10px -2px rgba(87, 186, 145, 0.3);
        letter-spacing: 0.01em;
    }

    .panel-title-content {
        flex: 1;
        padding-top: 6px;
    }

    .panel-title-content h3 {
        font-size: 1.875rem;
        font-weight: 700;
        color: #111827;
        line-height: 1.25;
        margin-bottom: 14px;
        letter-spacing: -0.02em;
    }

    .panel-title-content p {
        font-size: 1rem;
        color: #6b7280;
        line-height: 1.7;
    }

    /* Cards Grid */
    .panel-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(20px, 2.5vw, 28px);
        margin-bottom: 28px;
    }

    /* Challenge Card - Lifted with shadow */
    .challenge-card {
        background: #ffffff;
        padding: clamp(24px, 2.5vw, 32px);
        border-radius: 20px;
        border: 1px solid rgba(0, 0, 0, 0.04);
        position: relative;
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 
            0 1px 2px rgba(0, 0, 0, 0.02),
            0 4px 8px -2px rgba(0, 0, 0, 0.06),
            0 12px 24px -4px rgba(0, 0, 0, 0.08),
            0 24px 48px -8px rgba(0, 0, 0, 0.06);
    }

    .challenge-card:hover {
        transform: translateY(-6px);
        box-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.02),
            0 8px 16px -4px rgba(0, 0, 0, 0.08),
            0 20px 40px -8px rgba(0, 0, 0, 0.12),
            0 32px 64px -12px rgba(0, 0, 0, 0.1);
    }

    .card-header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 18px;
        padding-bottom: 16px;
        border-bottom: 1px solid #f3f4f6;
    }

    .card-icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .card-icon.challenge {
        background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    }

    .card-icon.challenge svg {
        width: 20px;
        height: 20px;
        fill: #ef4444;
    }

    .card-icon.solution {
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(4px);
    }

    .card-icon.solution svg {
        width: 20px;
        height: 20px;
        fill: #ffffff;
    }

    .card-header h4 {
        font-size: 1rem;
        font-weight: 700;
        color: #111827;
        letter-spacing: -0.01em;
    }

    .challenge-card > p {
        font-size: 0.9375rem;
        color: #6b7280;
        line-height: 1.7;
    }

    /* Solution Card - Gradient with lifted shadow */
    .solution-card {
        background: linear-gradient(135deg, #21514B 0%, #57BA91 100%);
        padding: clamp(24px, 2.5vw, 32px);
        border-radius: 20px;
        position: relative;
        display: flex;
        flex-direction: column;
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 
            0 1px 2px rgba(33, 81, 75, 0.08),
            0 4px 8px -2px rgba(33, 81, 75, 0.15),
            0 12px 24px -4px rgba(33, 81, 75, 0.25),
            0 24px 48px -8px rgba(87, 186, 145, 0.2);
    }

    .solution-card:hover {
        transform: translateY(-6px);
        box-shadow: 
            0 2px 4px rgba(33, 81, 75, 0.1),
            0 8px 16px -4px rgba(33, 81, 75, 0.2),
            0 20px 40px -8px rgba(33, 81, 75, 0.35),
            0 32px 64px -12px rgba(87, 186, 145, 0.3);
    }

    .solution-card .card-header {
        border-bottom-color: rgba(255, 255, 255, 0.15);
    }

    .solution-card .card-header h4 {
        color: #ffffff;
    }

    .solution-card > p {
        font-size: 0.9375rem;
        color: rgba(255, 255, 255, 0.92);
        line-height: 1.7;
        flex: 1;
    }

    .solution-stats {
        margin-top: 28px;
        padding-top: 22px;
        border-top: 1px solid rgba(255, 255, 255, 0.18);
    }

    .stat-item {
        color: #ffffff;
    }

    .stat-label {
        font-size: 0.6875rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        opacity: 0.75;
        margin-bottom: 4px;
    }

    .stat-value {
        font-size: 2rem;
        font-weight: 700;
        letter-spacing: -0.02em;
    }

    /* Pro Tip Box - with rounded left accent bar */
    .pro-tip-box {
        background: linear-gradient(135deg, #f0f9f6 0%, #e6f4ef 100%);
        border: 1px solid rgba(87, 186, 145, 0.2);
        border-left: none;
        border-radius: 18px;
        padding: 24px 28px 24px 32px;
        display: flex;
        align-items: flex-start;
        gap: 18px;
        box-shadow: 0 2px 8px rgba(87, 186, 145, 0.08),
                    inset 0 1px 0 rgba(255, 255, 255, 0.8);
        position: relative;
        overflow: hidden;
    }

    /* Left accent bar with rounded corners */
    .pro-tip-box::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 6px;
        background: #21514B;
        border-radius: 18px 0 0 18px;
    }

    .pro-tip-icon-wrapper {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: rgba(33, 81, 75, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .pro-tip-icon {
        width: 24px;
        height: 24px;
        fill: #21514B;
    }

    .pro-tip-content h5 {
        font-size: 0.9rem;
        font-weight: 700;
        color: #21514B;
        margin-bottom: 8px;
        letter-spacing: -0.01em;
    }

    .pro-tip-content p {
        font-size: 0.875rem;
        color: #4b5563;
        line-height: 1.7;
    }

    /* Section CTA */
    .section-6-cta {
        background: #F9FAFB;
        padding: 60px 32px 80px;
        text-align: center;
    }

    .section-6-cta-inner {
        max-width: 700px;
        margin: 0 auto;
    }

    .section-6-cta-text {
        margin-bottom: 32px;
    }

    .section-6-cta-text h4 {
        font-size: 1.5rem;
        font-weight: 700;
        color: #111827;
        margin-bottom: 12px;
        letter-spacing: -0.02em;
    }

    .section-6-cta-text p {
        font-size: 1rem;
        color: #6b7280;
        line-height: 1.7;
    }

    .section-6-cta-button {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 18px 36px;
        background: linear-gradient(90deg, #21514B 0%, #57BA91 100%);
        color: #ffffff;
        font-size: 1rem;
        font-weight: 700;
        text-decoration: none;
        border-radius: 14px;
        border: none;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 
            0 4px 12px rgba(33, 81, 75, 0.25),
            0 8px 24px rgba(87, 186, 145, 0.2);
    }

    .section-6-cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 
            0 8px 20px rgba(33, 81, 75, 0.3),
            0 16px 40px rgba(87, 186, 145, 0.25);
    }

    .section-6-cta-button svg {
        width: 20px;
        height: 20px;
        fill: currentColor;
        transition: transform 0.3s ease;
    }

    .section-6-cta-button:hover svg {
        transform: translateX(4px);
    }

    /* Mobile Navigation Toggle */
    .mobile-nav-toggle {
        display: none;
        width: 100%;
        padding: 16px 24px;
        background: linear-gradient(90deg, #21514B 0%, #57BA91 100%);
        color: #ffffff;
        border: none;
        font-size: 0.9rem;
        font-weight: 600;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .mobile-nav-toggle svg {
        width: 22px;
        height: 22px;
        fill: currentColor;
    }

    /* Ultra-wide screen adjustments (2560x900) */
    @media (min-width: 2200px) {
        .section-6-header-bar {
            padding: 80px 32px 50px;
        }

        .section-6-sidebar {
            width: 440px;
            padding: 36px;
        }

        .section-6-content {
            padding: 60px 120px;
        }

        .section-6-content-inner {
            max-width: 1100px;
        }

        .panel-cards {
            gap: 32px;
        }

        .challenge-card,
        .solution-card {
            padding: 38px;
        }

        .section-6-nav-item {
            padding: 20px 24px;
        }

        .section-6-nav-item .nav-code {
            padding: 6px 16px;
            font-size: 0.75rem;
        }

        .section-6-nav-item .nav-title {
            font-size: 0.95rem;
        }

        .section-6-cta {
            padding: 80px 32px 100px;
        }
    }

    /* Large screens */
    @media (min-width: 1800px) and (max-width: 2199px) {
        .section-6-layout {
            padding: 0 80px;
        }

        .section-6-sidebar {
            width: 400px;
            padding: 30px;
        }

        .section-6-content {
            padding: 52px 90px;
        }

        .section-6-content-inner {
            max-width: 1000px;
        }
    }

    /* Medium-large screens */
    @media (min-width: 1400px) and (max-width: 1799px) {
        .section-6-layout {
            padding: 0 60px;
        }

        .section-6-sidebar {
            width: 380px;
            padding: 26px;
        }

        .section-6-content {
            padding: 48px 72px;
        }
    }

    /* Standard large screens */
    @media (min-width: 1200px) and (max-width: 1399px) {
        .section-6-layout {
            padding: 0 48px;
        }

        .section-6-sidebar {
            width: 360px;
            padding: 24px;
        }

        .section-6-content {
            padding: 44px 56px;
        }
    }

    /* Responsive Styles */
    @media (max-width: 1024px) {
        .section-6-layout {
            flex-direction: column;
            min-height: auto;
            padding: 0;
        }

        .section-6-header-bar {
            padding: 50px 24px 35px;
        }

        .section-6-header-text h2 {
            font-size: 2rem;
        }

        .mobile-nav-toggle {
            display: flex;
        }

        .section-6-sidebar {
            width: 100%;
            border-bottom: 1px solid #e5e7eb;
            max-height: 0;
            overflow: hidden;
            padding: 0;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        #mobile-toggle:checked ~ .section-6-layout .section-6-sidebar {
            max-height: 600px;
            padding: 20px;
            overflow-y: auto;
        }

        .section-6-content {
            padding: 36px 28px;
        }

        .panel-title-row {
            flex-direction: column;
            gap: 18px;
        }

        .panel-code-badge {
            width: 64px;
            height: 64px;
            font-size: 0.9375rem;
            border-radius: 14px;
        }

        .panel-title-content h3 {
            font-size: 1.5rem;
        }

        .panel-cards {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .section-6-cta {
            padding: 50px 24px 70px;
        }
    }

    @media (max-width: 768px) {
        .section-6-header-bar {
            padding: 40px 20px 30px;
        }

        .section-6-header-text h2 {
            font-size: 1.625rem;
        }

        .section-6-header-text p {
            font-size: 0.9375rem;
        }

        .section-6-content {
            padding: 28px 20px;
        }

        .panel-header {
            padding-bottom: 28px;
            margin-bottom: 28px;
        }

        .panel-title-content h3 {
            font-size: 1.375rem;
        }

        .panel-title-content p {
            font-size: 0.9375rem;
        }

        .challenge-card,
        .solution-card {
            padding: 26px;
            border-radius: 18px;
        }

        .card-header h4 {
            font-size: 0.9375rem;
        }

        .challenge-card > p,
        .solution-card > p {
            font-size: 0.875rem;
        }

        .pro-tip-box {
            flex-direction: column;
            gap: 12px;
            padding: 20px 22px 20px 28px;
            border-radius: 16px;
        }

        .pro-tip-box::before {
            border-radius: 16px 0 0 16px;
        }

        .pro-tip-icon-wrapper {
            width: 40px;
            height: 40px;
        }

        .pro-tip-icon {
            width: 20px;
            height: 20px;
        }

        .section-6-cta {
            padding: 40px 20px 60px;
        }

        .section-6-cta-text h4 {
            font-size: 1.25rem;
        }

        .section-6-cta-button {
            padding: 16px 28px;
            font-size: 0.9375rem;
            width: 100%;
            justify-content: center;
        }
    }

    @media (max-width: 480px) {
        .section-6-badge {
            display: none;
        }

        .section-6-header-text h2 {
            font-size: 1.375rem;
        }

        .panel-code-badge {
            width: 56px;
            height: 56px;
            font-size: 0.8125rem;
            border-radius: 12px;
        }

        .panel-title-content h3 {
            font-size: 1.25rem;
        }

        .stat-value {
            font-size: 1.625rem;
        }

        .card-icon {
            width: 38px;
            height: 38px;
        }

        .card-icon.challenge svg,
        .card-icon.solution svg {
            width: 18px;
            height: 18px;
        }

        .section-6-nav-item {
            padding: 16px 18px;
        }

        .section-6-nav-item .nav-code {
            padding: 4px 12px;
            font-size: 0.625rem;
        }

        .section-6-nav-item .nav-title {
            font-size: 0.8125rem;
        }

        .section-6-cta-text h4 {
            font-size: 1.125rem;
        }

        .section-6-cta-text p {
            font-size: 0.9375rem;
        }
}

/* ============================================
   Seven Section CSS
   ============================================ */


    .section-7-rapid-process {
        background: linear-gradient(90deg, #21514B 0%, #57BA91 100%);
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        position: relative;
        overflow: hidden;
        padding: 80px 0 100px;
    }

    .section-7-rapid-process * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    /* Background decorative elements */
    .section-7-bg-decor {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0.1;
        pointer-events: none;
        overflow: hidden;
    }

    .section-7-bg-decor::before {
        content: '';
        position: absolute;
        top: 10%;
        left: 5%;
        width: 300px;
        height: 300px;
        background: #ffffff;
        border-radius: 50%;
        filter: blur(80px);
    }

    .section-7-bg-decor::after {
        content: '';
        position: absolute;
        bottom: 10%;
        right: 5%;
        width: 400px;
        height: 400px;
        background: #57BA91;
        border-radius: 50%;
        filter: blur(100px);
    }

    /* Container */
    .section-7-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 5%;
        position: relative;
        z-index: 10;
    }

    /* Header */
    .section-7-header {
        text-align: center;
        margin-bottom: 80px;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    .section-7-header h2 {
        color: #ffffff;
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 700;
        line-height: 1.2;
        letter-spacing: -0.02em;
        margin-bottom: 24px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .section-7-header-intro {
        color: rgba(255, 255, 255, 0.9);
        font-size: clamp(1rem, 1.5vw, 1.125rem);
        line-height: 1.8;
        max-width: 800px;
        margin: 0 auto;
    }

    /* Timeline wrapper */
    .section-7-timeline {
        position: relative;
        max-width: 1100px;
        margin: 0 auto;
    }

    /* Vertical dashed line */
    .section-7-timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 6px;
        bottom: 6px;
        width: 2px;
        background: repeating-linear-gradient(
            to bottom,
            #ffffff 0px,
            #ffffff 8px,
            transparent 8px,
            transparent 16px
        );
        transform: translateX(-50%);
        z-index: 1;
    }

    /* Start and End dots */
    .section-7-timeline-dot-start,
    .section-7-timeline-dot-end {
        position: absolute;
        left: 50%;
        width: 8px;
        height: 8px;
        background: #ffffff;
        border-radius: 50%;
        transform: translateX(-50%);
        z-index: 2;
    }

    .section-7-timeline-dot-start {
        top: 0;
    }

    .section-7-timeline-dot-end {
        bottom: 0;
    }

    /* Timeline item - CHANGED: align-items from stretch to center */
    .section-7-timeline-item {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
        position: relative;
        margin-bottom: 60px;
    }

    .section-7-timeline-item:last-child {
        margin-bottom: 0;
    }

    /* Step number circle */
    .section-7-step-number {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 56px;
        height: 56px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: 700;
        z-index: 20;
        background: #ffffff;
        color: #57BA91;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        aspect-ratio: 1 / 1;
    }

    /* Content side */
    .section-7-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        text-align: left;
    }

    .section-7-timeline-item:nth-child(odd) .section-7-content {
        grid-column: 2;
        padding-left: 40px;
        text-align: left;
        align-items: flex-start;
    }

    .section-7-timeline-item:nth-child(even) .section-7-content {
        grid-column: 1;
        padding-right: 40px;
        text-align: left;
        align-items: flex-start;
    }

    /* Time capsule */
    .section-7-time-capsule {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 6px 14px;
        background: #ffffff;
        border-radius: 9999px;
        margin-bottom: 14px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .section-7-time-capsule .capsule-icon {
        width: 16px;
        height: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #21514B;
    }

    .section-7-time-capsule .capsule-icon svg {
        width: 100%;
        height: 100%;
        fill: currentColor;
    }

    .section-7-time-capsule span {
        font-size: 0.7rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: #21514B;
    }

    .section-7-content h3 {
        color: #ffffff;
        font-size: clamp(1.375rem, 2.2vw, 1.75rem);
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 14px;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .section-7-content p {
        color: rgba(255, 255, 255, 0.9);
        font-size: clamp(0.875rem, 1.1vw, 0.9375rem);
        line-height: 1.7;
        font-weight: 400;
    }

    /* ============================================
       CARD - FIXED: aspect-ratio drives size,
       card never stretches beyond its ratio
       ============================================ */
    .section-7-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 8px;
        box-shadow: 
            0 4px 6px rgba(0, 0, 0, 0.05),
            0 10px 20px rgba(0, 0, 0, 0.08),
            0 20px 40px rgba(0, 0, 0, 0.1);
        position: relative;
        overflow: hidden;
        width: 100%;
        aspect-ratio: 4 / 3;
        align-self: center;
    }

    .section-7-timeline-item:nth-child(odd) .section-7-card {
        grid-column: 1;
        grid-row: 1;
    }

    .section-7-timeline-item:nth-child(even) .section-7-card {
        grid-column: 2;
    }

    /* Card image - fills the card padding area completely */
    .section-7-card-image {
        position: absolute;
        top: 8px;
        left: 8px;
        right: 8px;
        bottom: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #f8fffe 0%, #e8f5f0 100%);
        border-radius: 10px;
        overflow: hidden;
    }

    .section-7-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* Placeholder icon when no image */
    .section-7-card-image-placeholder {
        width: 50px;
        height: 50px;
        opacity: 0.15;
        fill: #21514B;
    }

    /* CTA Section */
    .section-7-cta {
        text-align: center;
        margin-top: 80px;
    }

    .section-7-cta-text {
        color: rgba(255, 255, 255, 0.9);
        font-size: clamp(1rem, 1.5vw, 1.125rem);
        margin-bottom: 24px;
    }

    .section-7-cta-button {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 18px 36px;
        background: #ffffff;
        color: #21514B;
        font-size: 1rem;
        font-weight: 700;
        text-decoration: none;
        border-radius: 12px;
        border: none;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .section-7-cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
        background: #f8f8f8;
    }

    .section-7-cta-button svg {
        width: 20px;
        height: 20px;
        fill: currentColor;
        transition: transform 0.3s ease;
    }

    .section-7-cta-button:hover svg {
        transform: translateX(4px);
    }

    /* ============================================
       RESPONSIVE: SMALL LAPTOPS (769px - 1024px)
       ============================================ */
    @media (max-width: 1024px) and (min-width: 769px) {
        .section-7-rapid-process {
            padding: 60px 0 80px;
        }

        .section-7-header {
            margin-bottom: 60px;
        }

        .section-7-timeline-item {
            gap: 60px;
            margin-bottom: 50px;
        }

        .section-7-step-number {
            width: 48px;
            height: 48px;
            font-size: 1.375rem;
        }

        .section-7-timeline-item:nth-child(odd) .section-7-content {
            padding-left: 30px;
        }

        .section-7-timeline-item:nth-child(even) .section-7-content {
            padding-right: 30px;
        }
    }

    /* ============================================
       RESPONSIVE: TABLETS (768px and below)
       ============================================ */
    @media (max-width: 768px) {
        .section-7-rapid-process {
            padding: 50px 0 70px;
        }

        .section-7-header {
            margin-bottom: 50px;
        }

        .section-7-timeline::before {
            left: 24px;
            top: 4px;
            bottom: 4px;
        }

        .section-7-timeline-dot-start,
        .section-7-timeline-dot-end {
            left: 24px;
            width: 6px;
            height: 6px;
        }

        .section-7-timeline-item {
            grid-template-columns: 1fr;
            gap: 0;
            padding-left: 60px;
            margin-bottom: 40px;
        }

        .section-7-step-number {
            left: 24px;
            top: 20px;
            transform: translateX(-50%);
            width: 40px;
            height: 40px;
            font-size: 1.25rem;
        }

        .section-7-timeline-item:nth-child(odd) .section-7-content,
        .section-7-timeline-item:nth-child(even) .section-7-content {
            grid-column: 1;
            padding-left: 0;
            padding-right: 0;
            text-align: left;
            align-items: flex-start;
        }

        .section-7-card {
            display: none !important;
        }

        .section-7-content h3 {
            font-size: 1.25rem;
        }

        .section-7-cta {
            margin-top: 60px;
        }

        .section-7-cta-button {
            padding: 16px 28px;
            font-size: 0.9375rem;
        }
    }

    /* ============================================
       RESPONSIVE: PHONES (480px and below)
       ============================================ */
    @media (max-width: 480px) {
        .section-7-rapid-process {
            padding: 40px 0 60px;
        }

        .section-7-container {
            padding: 0 4%;
        }

        .section-7-header {
            margin-bottom: 40px;
        }

        .section-7-timeline::before {
            left: 20px;
            top: 3px;
            bottom: 3px;
        }

        .section-7-timeline-dot-start,
        .section-7-timeline-dot-end {
            left: 20px;
            width: 5px;
            height: 5px;
        }

        .section-7-timeline-item {
            padding-left: 50px;
            margin-bottom: 35px;
        }

        .section-7-step-number {
            left: 20px;
            top: 16px;
            width: 36px;
            height: 36px;
            font-size: 1.125rem;
        }

        .section-7-time-capsule {
            padding: 5px 10px;
        }

        .section-7-time-capsule span {
            font-size: 0.625rem;
        }

        .section-7-content h3 {
            font-size: 1.125rem;
        }

        .section-7-card {
            display: none !important;
        }

        .section-7-cta-button {
            padding: 14px 24px;
            font-size: 0.875rem;
            width: 100%;
            justify-content: center;
        }
    }

    /* Ultra-wide screens */
    @media (min-width: 1800px) {
        .section-7-container {
            max-width: 1400px;
        }

        .section-7-timeline-item {
            gap: 120px;
        }
    }

    @media (min-width: 2200px) {
        .section-7-rapid-process {
            padding: 100px 0 120px;
        }

        .section-7-container {
            max-width: 1600px;
        }

        .section-7-header {
            margin-bottom: 100px;
        }

        .section-7-timeline-item {
            gap: 140px;
            margin-bottom: 80px;
        }

        .section-7-card {
            padding: 10px;
        }

        .section-7-step-number {
            width: 64px;
            height: 64px;
            font-size: 1.75rem;
        }

        .section-7-timeline-dot-start,
        .section-7-timeline-dot-end {
            width: 10px;
            height: 10px;
        }
}



/* ============================================
   Eight Section CSS
   ============================================ */
/* ============================================
   BASE STYLES (Desktop - unchanged)
   ============================================ */
.s8-infographic-section {
  position: relative;
  width: 100%;
  padding: 80px 0 60px 0;
  background: #ffffff;
  overflow-x: hidden;
  z-index: 1;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.s8-infographic-section *,
.s8-infographic-section *::before,
.s8-infographic-section *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* — Section heading — */
.s8-section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 30px;
  padding: 0 20px;
}

.s8-section-header .s8-tag {
  display: inline-block;
  font-size: clamp(11px, 1.4vmin, 14px);
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #57BA91;
  margin-bottom: 12px;
  position: relative;
  padding: 0 0 6px 0;
}

.s8-section-header .s8-tag::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #57BA91, #4CA884);
  border-radius: 2px;
}

.s8-section-header h2 {
  font-size: clamp(24px, 4vmin, 40px);
  font-weight: 800;
  color: #2d3a45;
  line-height: 1.2;
  margin-bottom: 12px;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.s8-section-header h2 span {
  color: #57BA91;
}

.s8-section-header p {
  font-size: clamp(13px, 1.8vmin, 16px);
  color: #8b97a1;
  line-height: 1.6;
  max-width: 660px;
  margin: 0 auto;
}

/* — Root hex variables — */
.s8-infographic-section {
  --orange1: #57BA91;
  --orange2: #4CA884;
  --hexW: clamp(280px, 32vw, 400px);
  --hexH: calc(var(--hexW) * 0.866);
  --G: clamp(18px, 2.5vw, 32px);
  --dx: calc(var(--hexW) * 0.75 + var(--G) * 0.866);
  --dy-half: calc(var(--hexH) * 0.5 + var(--G) * 0.5);
  --dy-full: calc(var(--hexH) + var(--G));
}

.s8-stage {
  width: 100%;
  position: relative;
  overflow: visible;
  display: grid;
  place-items: center;
  background: #ffffff;
  padding: 10px 0 20px;
}

.s8-board {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: calc(var(--dy-full) * 2 + var(--hexH) + 40px);
  min-height: 600px;
}

.s8-hexWrap {
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--hexW);
  height: var(--hexH);
  transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y)));
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.s8-hexWrap:hover {
  transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y) - 6px));
}

/* ===== GREEN HEXAGONS (01, 03, 05) ===== */
.s8-hexWrap.s8-orange-wrap {
  filter:
    drop-shadow(8px 4px 8px rgba(0,0,0,.20))
    drop-shadow(6px 8px 12px rgba(0,0,0,.15))
    drop-shadow(4px 10px 16px rgba(0,0,0,.10));
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
}

.s8-hexWrap.s8-orange-wrap:hover {
  filter:
    drop-shadow(10px 6px 12px rgba(0,0,0,.24))
    drop-shadow(8px 12px 18px rgba(0,0,0,.18))
    drop-shadow(6px 14px 22px rgba(0,0,0,.12));
}

.s8-hexWrap.s8-orange-wrap::before {
  content: "";
  position: absolute;
  inset: -8px;
  background: linear-gradient(180deg, #ffffff 0%, #e8ecf0 100%);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  z-index: 0;
  border-radius: 4px;
}

.s8-hexWrap.s8-orange-wrap .s8-hex {
  position: absolute;
  inset: 0;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  background: linear-gradient(180deg, var(--orange1), var(--orange2));
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
  padding: 14% 18%;
  overflow: hidden;
}

/* ===== WHITE HEXAGONS (02, 04, 06, center) ===== */
.s8-hexWrap.s8-white-wrap {
  filter:
    drop-shadow(8px 4px 8px rgba(0,0,0,.18))
    drop-shadow(6px 8px 12px rgba(0,0,0,.14))
    drop-shadow(4px 10px 16px rgba(0,0,0,.10));
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
}

.s8-hexWrap.s8-white-wrap:hover {
  filter:
    drop-shadow(10px 6px 12px rgba(0,0,0,.22))
    drop-shadow(8px 12px 18px rgba(0,0,0,.16))
    drop-shadow(6px 14px 22px rgba(0,0,0,.12));
}

.s8-hexWrap.s8-white-wrap .s8-hex {
  position: absolute;
  inset: 0;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  background: linear-gradient(180deg, #fbfcfd, #edf1f5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
  padding: 14% 18%;
  overflow: hidden;
}

/* === Hex positions === */
.s8-p01 { --x: 0px;                    --y: calc(-1 * var(--dy-full)); }
.s8-p02 { --x: var(--dx);              --y: calc(-1 * var(--dy-half)); }
.s8-p03 { --x: var(--dx);              --y: var(--dy-half); }
.s8-p04 { --x: 0px;                    --y: var(--dy-full); }
.s8-p05 { --x: calc(-1 * var(--dx));   --y: var(--dy-half); }
.s8-p06 { --x: calc(-1 * var(--dx));   --y: calc(-1 * var(--dy-half)); }
.s8-pc  { --x: 0px;                    --y: 0px; }

/* ===== Content typography ===== */
.s8-hex-icon {
  width: clamp(40px, 3.2vw, 70px);
  height: clamp(40px, 3.2vw, 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(3px, 0.5vw, 6px);
  flex-shrink: 0;
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.s8-hexWrap:hover .s8-hex-icon {
  transform: scale(1.1);
  opacity: 1;
}

.s8-hex-icon svg {
  width: 300%;
  height: 300%;
}

.s8-hex-num {
  font-size: clamp(10px, 1.1vw, 13px);
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: clamp(1px, 0.3vw, 4px);
  line-height: 1;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.s8-orange-wrap .s8-hex-num {
  color: rgba(255, 255, 255, 0.5);
}

.s8-white-wrap .s8-hex-num {
  color: #57BA91;
  opacity: 0.7;
}

.s8-hex-title {
  font-size: clamp(12px, 1.45vw, 17px);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: clamp(3px, 0.5vw, 6px);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.s8-orange-wrap .s8-hex-title {
  color: #ffffff;
}

.s8-white-wrap .s8-hex-title {
  color: #2d3a45;
}

.s8-hex-desc {
  font-size: clamp(9px, 1.05vw, 13px);
  line-height: 1.4;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.s8-orange-wrap .s8-hex-desc {
  color: rgba(255, 255, 255, 0.88);
}

.s8-white-wrap .s8-hex-desc {
  color: #6b7b8a;
}

/* ===== TEXT ZOOM ON HOVER ===== */
.s8-hexWrap:hover .s8-hex-title {
  transform: scale(1.07);
}

.s8-hexWrap:hover .s8-hex-desc {
  transform: scale(1.04);
}

.s8-hexWrap:hover .s8-hex-num {
  transform: scale(1.07);
}

/* ===== Center hex special ===== */
.s8-center-hex .s8-hex {
  background: linear-gradient(180deg, #57BA91, #3d9470) !important;
  color: #fff !important;
}

.s8-center-hex .s8-hex-title {
  color: #ffffff !important;
  font-size: clamp(13px, 1.6vw, 18px);
}

.s8-center-hex .s8-hex-desc {
  color: rgba(255, 255, 255, 0.85) !important;
}

.s8-center-hex .s8-hex-num {
  color: rgba(255, 255, 255, 0.45) !important;
}

.s8-center-icon-wrap {
  width: clamp(38px, 3.5vw, 55px);
  height: clamp(38px, 3.5vw, 55px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(3px, 0.5vw, 6px);
  flex-shrink: 0;
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.s8-center-hex:hover .s8-center-icon-wrap {
  background: rgba(255, 255, 255, 0.28);
  transform: scale(1.08);
}

.s8-center-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ===== Subtle pulse on center hex ===== */
.s8-center-hex .s8-hex::after {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  background: rgba(255,255,255,0.06);
  animation: s8-pulse 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes s8-pulse {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

/* ===== CTA Area ===== */
.s8-cta-area {
  text-align: center;
  padding: 50px 20px 0;
  background: #ffffff;
}

.s8-cta-area .s8-cta-text {
  font-size: clamp(14px, 2vmin, 18px);
  color: #5c6770;
  margin-bottom: 24px;
  line-height: 1.55;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.s8-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #57BA91, #4CA884);
  color: #ffffff;
  font-size: clamp(14px, 1.8vmin, 17px);
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow:
    0 4px 15px rgba(87, 186, 145, 0.35),
    0 2px 6px rgba(87, 186, 145, 0.2);
  position: relative;
  overflow: hidden;
}

.s8-cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.s8-cta-btn:hover::before {
  left: 100%;
}

.s8-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 25px rgba(87, 186, 145, 0.45),
    0 4px 10px rgba(87, 186, 145, 0.25);
}

.s8-cta-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.s8-cta-btn:hover svg {
  transform: translateX(4px);
}

.s8-cta-sub {
  display: block;
  margin-top: 14px;
  font-size: clamp(11px, 1.3vmin, 13px);
  color: #8b97a1;
}

.s8-cta-sub svg {
  width: 14px;
  height: 14px;
  vertical-align: middle;
  margin-right: 4px;
}

/* ============================================
   RESPONSIVE: Large tablets / small desktops
   (901px–1100px) — Keep hex layout, shrink
   ============================================ */
@media (max-width: 1100px) {
  .s8-infographic-section {
    --hexW: clamp(240px, 28vw, 340px);
    --G: clamp(14px, 2vw, 26px);
  }

  .s8-hex-desc {
    font-size: clamp(8px, 0.95vw, 12px);
    line-height: 1.35;
  }

  .s8-hex-title {
    font-size: clamp(10px, 1.3vw, 15px);
  }

  .s8-hex-num {
    font-size: clamp(9px, 1vw, 12px);
  }

  .s8-hex-icon {
    width: clamp(28px, 2.8vw, 40px);
    height: clamp(28px, 2.8vw, 40px);
    margin-bottom: clamp(2px, 0.4vw, 5px);
  }

  .s8-center-icon-wrap {
    width: clamp(28px, 2.8vw, 40px);
    height: clamp(28px, 2.8vw, 40px);
  }
}

/* ============================================
   RESPONSIVE: TABLETS (601px–900px)
   Switch to CARD layout — no hex clip-path
   2-column grid of rounded cards
   ============================================ */
@media (max-width: 900px) {
  .s8-infographic-section {
    padding: 60px 0 40px;
  }

  .s8-board {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    height: auto !important;
    min-height: auto;
    padding: 0 24px;
    max-width: 700px;
    margin: 0 auto;
  }

  .s8-hexWrap {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100% !important;
    height: auto !important;
    filter: none !important;
  }

  .s8-hexWrap:hover {
    transform: translateY(-4px) !important;
  }

  /* Remove hex clip-path, use rounded cards */
  .s8-hexWrap.s8-orange-wrap::before {
    display: none;
  }

  .s8-hexWrap.s8-orange-wrap .s8-hex,
  .s8-hexWrap.s8-white-wrap .s8-hex {
    position: relative;
    inset: auto;
    clip-path: none;
    border-radius: 16px;
    padding: 28px 22px;
    min-height: auto;
    overflow: visible;
  }

  .s8-hexWrap.s8-orange-wrap .s8-hex {
    background: linear-gradient(180deg, var(--orange1), var(--orange2));
    box-shadow: 0 4px 20px rgba(87, 186, 145, 0.25);
  }

  .s8-hexWrap.s8-white-wrap .s8-hex {
    background: linear-gradient(180deg, #fbfcfd, #edf1f5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  /* Center hex pulse — remove hex clip on tablet */
  .s8-center-hex .s8-hex::after {
    clip-path: none;
    border-radius: 16px;
  }

  /* Order */
  .s8-p01 { order: 1; }
  .s8-p02 { order: 2; }
  .s8-p03 { order: 3; }
  .s8-p04 { order: 4; }
  .s8-p05 { order: 5; }
  .s8-p06 { order: 6; }
  .s8-pc  { order: 7; grid-column: 1 / -1; justify-self: center; max-width: 340px; }

  /* Typography — readable on tablet */
  .s8-hex-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 8px;
  }

  .s8-center-icon-wrap {
    width: 36px;
    height: 36px;
    margin-bottom: 8px;
  }

  .s8-hex-num {
    font-size: 11px;
    margin-bottom: 4px;
  }

  .s8-hex-title {
    font-size: 15px;
    line-height: 1.25;
    margin-bottom: 8px;
  }

  .s8-hex-desc {
    font-size: 13px;
    line-height: 1.5;
  }

  .s8-center-hex .s8-hex-title {
    font-size: 16px !important;
  }

  .s8-section-header {
    margin-bottom: 24px;
    padding: 0 24px;
  }

  .s8-section-header p {
    font-size: 14px;
  }

  .s8-cta-area {
    padding: 30px 24px 0;
  }

  /* Hover shadow for cards */
  .s8-hexWrap.s8-orange-wrap:hover {
    filter: none !important;
  }

  .s8-hexWrap.s8-white-wrap:hover {
    filter: none !important;
  }

  .s8-hexWrap.s8-orange-wrap:hover .s8-hex {
    box-shadow: 0 8px 30px rgba(87, 186, 145, 0.35);
  }

  .s8-hexWrap.s8-white-wrap:hover .s8-hex {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  }
}

/* ============================================
   RESPONSIVE: Large phones / small tablets
   (481px–600px) — Single column cards
   ============================================ */
@media (max-width: 600px) {
  .s8-infographic-section {
    padding: 50px 0 30px;
  }

  .s8-board {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 20px;
    max-width: 440px;
  }

  .s8-pc {
    grid-column: auto;
    max-width: 100%;
  }

  .s8-hexWrap.s8-orange-wrap .s8-hex,
  .s8-hexWrap.s8-white-wrap .s8-hex {
    padding: 24px 20px;
  }

  .s8-hex-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 6px;
  }

  .s8-center-icon-wrap {
    width: 32px;
    height: 32px;
    margin-bottom: 6px;
  }

  .s8-hex-num {
    font-size: 10px;
    margin-bottom: 3px;
  }

  .s8-hex-title {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .s8-hex-desc {
    font-size: 13px;
    line-height: 1.5;
  }

  .s8-center-hex .s8-hex-title {
    font-size: 16px !important;
  }

  .s8-section-header h2 {
    font-size: clamp(22px, 5.5vw, 32px);
  }

  .s8-section-header p {
    font-size: 13px;
  }

  .s8-section-header {
    padding: 0 20px;
  }

  .s8-cta-area {
    padding: 24px 20px 0;
  }

  .s8-cta-btn {
    padding: 14px 32px;
    font-size: 15px;
  }
}

/* ============================================
   RESPONSIVE: Small phones (≤ 400px)
   ============================================ */
@media (max-width: 400px) {
  .s8-infographic-section {
    padding: 40px 0 24px;
  }

  .s8-board {
    gap: 14px;
    padding: 0 16px;
  }

  .s8-hexWrap.s8-orange-wrap .s8-hex,
  .s8-hexWrap.s8-white-wrap .s8-hex {
    padding: 22px 18px;
    border-radius: 14px;
  }

  .s8-hex-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 5px;
  }

  .s8-center-icon-wrap {
    width: 28px;
    height: 28px;
    margin-bottom: 5px;
  }

  .s8-hex-num {
    font-size: 10px;
  }

  .s8-hex-title {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .s8-hex-desc {
    font-size: 12.5px;
    line-height: 1.45;
  }

  .s8-section-header {
    margin-bottom: 16px;
    padding: 0 16px;
  }

  .s8-section-header h2 {
    font-size: clamp(20px, 6vw, 28px);
  }

  .s8-cta-area {
    padding: 20px 16px 0;
  }

  .s8-cta-area .s8-cta-text {
    font-size: 14px;
  }

  .s8-cta-btn {
    padding: 12px 26px;
    font-size: 14px;
    gap: 8px;
  }

  .s8-cta-sub {
    font-size: 11px;
  }
}

/* ============================================
   Landscape phones
   ============================================ */
@media (max-height: 500px) and (orientation: landscape) {
  .s8-infographic-section {
    padding: 30px 0 20px;
  }

  .s8-section-header {
    margin-bottom: 14px;
  }

  .s8-section-header h2 {
    font-size: clamp(18px, 4vh, 28px);
    margin-bottom: 6px;
  }

  .s8-section-header p {
    font-size: clamp(11px, 2vh, 14px);
  }

  .s8-cta-area {
    padding: 16px 16px 0;
  }
}

/* ============================================
   SCROLL-TRIGGERED ENTRANCE ANIMATION
   ============================================ */
.s8-hexWrap {
  opacity: 0;
  transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y) + 30px));
}

.s8-hexWrap.s8-visible {
  opacity: 1;
  transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y)));
}

.s8-hexWrap.s8-visible:hover {
  transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y) - 6px));
}

.s8-p06 { transition: opacity 0.6s ease 0.05s, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.05s, filter 0.4s ease; }
.s8-p01 { transition: opacity 0.6s ease 0.15s, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s, filter 0.4s ease; }
.s8-p02 { transition: opacity 0.6s ease 0.25s, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.25s, filter 0.4s ease; }
.s8-p03 { transition: opacity 0.6s ease 0.35s, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.35s, filter 0.4s ease; }
.s8-p04 { transition: opacity 0.6s ease 0.45s, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.45s, filter 0.4s ease; }
.s8-p05 { transition: opacity 0.6s ease 0.55s, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.55s, filter 0.4s ease; }
.s8-pc  { transition: opacity 0.6s ease 0.65s, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.65s, filter 0.4s ease; }

/* Animation overrides for card layout (≤900px) */
@media (max-width: 900px) {
  .s8-hexWrap {
    opacity: 0;
    transform: translateY(30px) !important;
  }

  .s8-hexWrap.s8-visible {
    opacity: 1;
    transform: translateY(0) !important;
  }

  .s8-hexWrap.s8-visible:hover {
    transform: translateY(-4px) !important;
  }

  .s8-p01 { transition: opacity 0.5s ease 0.05s, transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94) 0.05s, filter 0.4s ease !important; }
  .s8-p02 { transition: opacity 0.5s ease 0.12s, transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94) 0.12s, filter 0.4s ease !important; }
  .s8-p03 { transition: opacity 0.5s ease 0.19s, transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94) 0.19s, filter 0.4s ease !important; }
  .s8-p04 { transition: opacity 0.5s ease 0.26s, transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94) 0.26s, filter 0.4s ease !important; }
  .s8-p05 { transition: opacity 0.5s ease 0.33s, transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94) 0.33s, filter 0.4s ease !important; }
  .s8-p06 { transition: opacity 0.5s ease 0.40s, transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94) 0.40s, filter 0.4s ease !important; }
  .s8-pc  { transition: opacity 0.5s ease 0.47s, transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94) 0.47s, filter 0.4s ease !important; }
}

/* ============================================
   ACCESSIBILITY — reduce motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .s8-hexWrap,
  .s8-hexWrap.s8-visible,
  .s8-cta-btn,
  .s8-cta-btn::before,
  .s8-hex-icon,
  .s8-center-icon-wrap,
  .s8-center-hex .s8-hex::after,
  .s8-hex-title,
  .s8-hex-desc,
  .s8-hex-num {
    transition: none !important;
    animation: none !important;
  }

  .s8-hexWrap {
    opacity: 1 !important;
    transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))) !important;
  }

  @media (max-width: 900px) {
    .s8-hexWrap {
      transform: translateY(0) !important;
    }
  }
}

/* ===== Focus visible for keyboard nav ===== */
.s8-cta-btn:focus-visible {
  outline: 3px solid #57BA91;
  outline-offset: 4px;
  box-shadow:
    0 4px 15px rgba(87, 186, 145, 0.35),
    0 0 0 6px rgba(87, 186, 145, 0.15);
}



 /* ===== SECTION 9 — HEALTHCARE PROVIDERS WE SERVE ===== */

    .s9-providers-section {
      position: relative;
      width: 100%;
      padding: 90px 16px 90px;
      background: linear-gradient(90deg, #21514B 0%, #57BA91 100%);
      background-attachment: fixed;
      background-size: cover;
      overflow: visible;
      z-index: 1;
      font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    }

    .s9-providers-section *,
    .s9-providers-section *::before,
    .s9-providers-section *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    /* ======================== */
    /*     SECTION HEADER       */
    /* ======================== */
    .s9-section-header {
      text-align: center;
      max-width: 820px;
      margin: 0 auto 50px;
      padding: 0 20px;
    }

    .s9-section-header .s9-tag {
      display: inline-block;
      font-size: clamp(10px, 1.3vmin, 13px);
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: 14px;
      position: relative;
      padding: 0 0 8px 0;
      font-family: 'Poppins', sans-serif;
    }

    .s9-section-header .s9-tag::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 40px;
      height: 2px;
      background: rgba(255, 255, 255, 0.4);
      border-radius: 2px;
    }

    .s9-section-header h2 {
      font-size: clamp(26px, 4.2vmin, 42px);
      font-weight: 800;
      color: #ffffff;
      line-height: 1.2;
      margin-bottom: 16px;
      font-family: 'Poppins', sans-serif;
    }

    .s9-section-header p {
      font-size: clamp(13px, 1.8vmin, 16px);
      color: rgba(255, 255, 255, 0.78);
      line-height: 1.65;
      max-width: 680px;
      margin: 0 auto;
    }

    /* ======================== */
    /*     GRID CONTAINER       */
    /* ======================== */
    .s9-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: clamp(16px, 2.5vw, 24px);
      width: 100%;
      max-width: 1100px;
      margin: 0 auto;
    }

    /* ======================== */
    /*     CARD BASE             */
    /* ======================== */
    .s9-card {
      background: #ffffff;
      border-radius: 2.5rem;
      position: relative;
      overflow: hidden;
      min-height: clamp(320px, 36vw, 400px);
      display: flex;
      flex-direction: column;
      padding: clamp(28px, 4vw, 48px);
      box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.08);
    }

    /* — Inner green border (inset) — */
    .s9-card::before {
      content: "";
      position: absolute;
      inset: 6px;
      border: 2px solid #57BA91;
      border-radius: calc(2.5rem - 6px);
      pointer-events: none;
      z-index: 5;
      opacity: 0.5;
      transition: opacity 0.4s ease;
    }

    .s9-card:hover::before {
      opacity: 0.9;
    }

    /* ======================== */
    /*     CARD CORNER VARIANTS  */
    /* ======================== */
    .s9-card-1 {
      border-bottom-right-radius: clamp(5rem, 12vw, 12rem);
    }
    .s9-card-1::before {
      border-bottom-right-radius: calc(clamp(5rem, 12vw, 12rem) - 6px);
    }

    .s9-card-2 {
      border-bottom-left-radius: clamp(5rem, 12vw, 12rem);
    }
    .s9-card-2::before {
      border-bottom-left-radius: calc(clamp(5rem, 12vw, 12rem) - 6px);
    }

    .s9-card-3 {
      border-top-right-radius: clamp(5rem, 12vw, 12rem);
    }
    .s9-card-3::before {
      border-top-right-radius: calc(clamp(5rem, 12vw, 12rem) - 6px);
    }

    .s9-card-4 {
      border-top-left-radius: clamp(5rem, 12vw, 12rem);
    }
    .s9-card-4::before {
      border-top-left-radius: calc(clamp(5rem, 12vw, 12rem) - 6px);
    }
    /* Desktop only – move 4th badge slightly right */
@media (min-width: 901px) {
  .s9-card-4 .s9-badge {
    transform: translateX(30px);
  }
}


    /* ======================== */
    /*     TOP ROW: NUM + ICON   */
    /* ======================== */
    .s9-card-topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: clamp(16px, 2.2vw, 26px);
      position: relative;
      z-index: 10;
    }

    /* — Number badge (left) — */
    .s9-badge {
      width: clamp(44px, 5vw, 62px);
      height: clamp(44px, 5vw, 62px);
      background: linear-gradient(145deg, #21514B, #2d6b5e);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2.5px solid rgba(87, 186, 145, 0.35);
      box-shadow:
        0 3px 10px rgba(33, 81, 75, 0.22),
        0 1px 4px rgba(0, 0, 0, 0.08);
      flex-shrink: 0;
    }

    .s9-badge span {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(18px, 2.2vw, 26px);
      font-weight: 800;
      color: #ffffff;
      line-height: 1;
    }

    /* — Icon (right) — */
    .s9-card-icon {
  width: clamp(42px, 5vw, 60px);
  height: clamp(42px, 5vw, 60px);
  opacity: 0.85;
}

    .s9-card-icon svg {
      width: 100%;
      height: 100%;
      fill: none;
      stroke: #57BA91;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* ======================== */
    /*     TEXT CONTENT + ZOOM   */
    /* ======================== */
    .s9-card-text-wrap {
      position: relative;
      z-index: 10;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      transition: transform 0.45s cubic-bezier(.25, .46, .45, .94);
      transform-origin: center top;
      will-change: transform;
    }

    .s9-card:hover .s9-card-text-wrap {
      transform: scale(1.04);
    }

    .s9-card-title {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(15px, 1.9vw, 22px);
      font-weight: 700;
      text-transform: uppercase;
      color: #1f2937;
      letter-spacing: -0.2px;
      line-height: 1.25;
      margin-bottom: clamp(8px, 1.2vw, 14px);
    }

    .s9-card-desc {
      font-size: clamp(12.5px, 1.4vw, 15px);
      line-height: 1.68;
      color: #4b5563;
      font-weight: 400;
    }

    /* ======================== */
    /*     BOTTOM STATEMENT      */
    /* ======================== */
    .s9-bottom-statement {
      text-align: center;
      max-width: 700px;
      margin: clamp(36px, 5vw, 56px) auto 0;
      padding: 0 20px;
    }

    .s9-bottom-statement p {
      font-size: clamp(14px, 1.9vmin, 17px);
      color: rgba(255, 255, 255, 0.88);
      line-height: 1.6;
      font-weight: 500;
    }

    .s9-bottom-statement p strong {
      color: #ffffff;
      font-weight: 700;
    }

    /* ======================== */
    /*     CTA AREA              */
    /* ======================== */
    .s9-cta-area {
      text-align: center;
      margin-top: clamp(24px, 3.5vw, 40px);
    }

    .s9-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 40px;
      background: #ffffff;
      color: #21514B;
      font-size: clamp(14px, 1.8vmin, 17px);
      font-weight: 700;
      font-family: 'Poppins', sans-serif;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      text-decoration: none;
      letter-spacing: 0.3px;
      transition: all 0.3s ease;
      box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.15),
        0 2px 6px rgba(0, 0, 0, 0.08);
      position: relative;
      overflow: hidden;
    }

    .s9-cta-btn::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(87, 186, 145, 0.1), transparent);
      transition: left 0.5s ease;
    }

    .s9-cta-btn:hover::before {
      left: 100%;
    }

    .s9-cta-btn:hover {
      transform: translateY(-2px);
      box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.2),
        0 4px 10px rgba(0, 0, 0, 0.1);
      background: #f0fdf7;
    }

    .s9-cta-btn svg {
      width: 18px;
      height: 18px;
      transition: transform 0.3s ease;
    }

    .s9-cta-btn:hover svg {
      transform: translateX(4px);
    }

    .s9-cta-btn:focus-visible {
      outline: 3px solid #ffffff;
      outline-offset: 4px;
    }

    .s9-cta-sub {
      display: block;
      margin-top: 12px;
      font-size: clamp(11px, 1.3vmin, 13px);
      color: rgba(255, 255, 255, 0.55);
    }

    /* ================================ */
    /*     SCROLL ENTRANCE ANIMATION     */
    /* ================================ */
    .s9-card {
      opacity: 0;
      transform: translateY(35px);
    }

    .s9-card.s9-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .s9-card-1 {
      transition: opacity 0.6s ease 0.1s, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
    }
    .s9-card-2 {
      transition: opacity 0.6s ease 0.22s, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.22s;
    }
    .s9-card-3 {
      transition: opacity 0.6s ease 0.34s, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.34s;
    }
    .s9-card-4 {
      transition: opacity 0.6s ease 0.46s, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.46s;
    }

    /* ======================================================= */
    /*     RESPONSIVE — TABLETS (601px–900px)                   */
    /* ======================================================= */
    @media (max-width: 900px) {
      .s9-providers-section {
        padding: 70px 14px 70px;
      }

      .s9-grid {
        gap: clamp(14px, 2.5vw, 20px);
      }

      .s9-card {
        min-height: clamp(280px, 34vw, 360px);
        padding: clamp(24px, 3.5vw, 36px);
      }

      .s9-card-1 { border-bottom-right-radius: clamp(3.5rem, 10vw, 8rem); }
      .s9-card-1::before { border-bottom-right-radius: calc(clamp(3.5rem, 10vw, 8rem) - 6px); }
      .s9-card-2 { border-bottom-left-radius: clamp(3.5rem, 10vw, 8rem); }
      .s9-card-2::before { border-bottom-left-radius: calc(clamp(3.5rem, 10vw, 8rem) - 6px); }
      .s9-card-3 { border-top-right-radius: clamp(3.5rem, 10vw, 8rem); }
      .s9-card-3::before { border-top-right-radius: calc(clamp(3.5rem, 10vw, 8rem) - 6px); }
      .s9-card-4 { border-top-left-radius: clamp(3.5rem, 10vw, 8rem); }
      .s9-card-4::before { border-top-left-radius: calc(clamp(3.5rem, 10vw, 8rem) - 6px); }

      .s9-card-title {
        font-size: clamp(14px, 2.2vw, 19px);
      }

      .s9-card-desc {
        font-size: clamp(12px, 1.6vw, 14px);
      }

      .s9-card-icon {
        width: clamp(30px, 4vw, 42px);
        height: clamp(30px, 4vw, 42px);
      }

      .s9-badge {
        width: clamp(38px, 5vw, 52px);
        height: clamp(38px, 5vw, 52px);
      }

      .s9-badge span {
        font-size: clamp(16px, 2.4vw, 22px);
      }

      .s9-section-header {
        margin-bottom: 36px;
      }
    }

    /* ======================================================= */
    /*     RESPONSIVE — MOBILE SINGLE COLUMN (≤ 600px)          */
    /* ======================================================= */
    @media (max-width: 600px) {
      .s9-providers-section {
        padding: 60px 12px 60px;
        background-attachment: scroll;
      }

      .s9-section-header {
        margin-bottom: 30px;
      }

      .s9-section-header h2 {
        font-size: clamp(22px, 6vw, 32px);
      }

      .s9-grid {
        grid-template-columns: 1fr;
        gap: clamp(14px, 3vw, 20px);
      }

      .s9-card,
      .s9-card-1,
      .s9-card-2,
      .s9-card-3,
      .s9-card-4 {
        border-radius: 1.8rem;
        min-height: auto;
        padding: clamp(24px, 5vw, 36px);
      }

      .s9-card::before,
      .s9-card-1::before,
      .s9-card-2::before,
      .s9-card-3::before,
      .s9-card-4::before {
        border-radius: calc(1.8rem - 6px) !important;
      }

      .s9-card-title {
        font-size: clamp(16px, 4.5vw, 22px);
      }

      .s9-card-desc {
        font-size: clamp(13px, 3.2vw, 15px);
        line-height: 1.7;
      }

      .s9-card-icon {
        width: clamp(32px, 8vw, 42px);
        height: clamp(32px, 8vw, 42px);
      }

      .s9-badge {
        width: clamp(40px, 10vw, 50px);
        height: clamp(40px, 10vw, 50px);
      }

      .s9-badge span {
        font-size: clamp(17px, 4.5vw, 22px);
      }

      .s9-cta-btn {
        padding: 14px 32px;
        font-size: clamp(13px, 3.5vw, 16px);
      }

      .s9-bottom-statement {
        margin-top: 30px;
      }

      .s9-card:hover .s9-card-text-wrap {
        transform: none;
      }
    }

    /* ======================================================= */
    /*     RESPONSIVE — VERY SMALL PHONES (≤ 380px)             */
    /* ======================================================= */
    @media (max-width: 380px) {
      .s9-providers-section {
        padding: 45px 10px 50px;
      }

      .s9-card {
        padding: 20px !important;
      }

      .s9-section-header h2 {
        font-size: clamp(20px, 6.5vw, 28px);
      }

      .s9-section-header p {
        font-size: clamp(12px, 3.2vw, 14px);
      }

      .s9-bottom-statement p {
        font-size: clamp(12.5px, 3.5vw, 15px);
      }

      .s9-card-icon {
        width: 28px;
        height: 28px;
      }

      .s9-badge {
        width: 36px;
        height: 36px;
      }

      .s9-badge span {
        font-size: 16px;
      }
    }

    /* ======================================================= */
    /*     LANDSCAPE SHORT VIEWPORTS                            */
    /* ======================================================= */
    @media (max-height: 500px) and (orientation: landscape) {
      .s9-providers-section {
        padding: 40px 16px 40px;
        background-attachment: scroll;
      }

      .s9-section-header {
        margin-bottom: 24px;
      }

      .s9-card {
        min-height: 260px;
      }
    }

    /* ======================================================= */
    /*     ACCESSIBILITY                                        */
    /* ======================================================= */
    @media (prefers-reduced-motion: reduce) {
      .s9-card {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
      }

      .s9-card-text-wrap {
        transition: none !important;
      }

      .s9-card:hover .s9-card-text-wrap {
        transform: none !important;
      }

      .s9-card::before {
        transition: none !important;
      }

      .s9-cta-btn,
      .s9-cta-btn::before,
      .s9-cta-btn svg {
        transition: none !important;
      }
    }

/* ============================================
   10th Section CSS
============================================ */
 .s10-why-section {
      position: relative;
      width: 100%;
      padding: 90px 16px 90px;
      background: #ffffff;
      overflow: visible;
      z-index: 1;
      font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    }

    .s10-why-section *,
    .s10-why-section *::before,
    .s10-why-section *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    /* ======================== */
    /*     SECTION HEADER       */
    /* ======================== */
    .s10-section-header {
      text-align: center;
      max-width: 780px;
      margin: 0 auto 60px;
      padding: 0 20px;
    }

    .s10-section-header .s10-tag {
      display: inline-block;
      font-size: clamp(10px, 1.3vmin, 13px);
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: #57BA91;
      margin-bottom: 14px;
      position: relative;
      padding: 0 0 8px 0;
      font-family: 'Poppins', sans-serif;
    }

    .s10-section-header .s10-tag::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 40px;
      height: 2px;
      background: linear-gradient(90deg, #57BA91, #21514B);
      border-radius: 2px;
    }

    .s10-section-header h2 {
      font-size: clamp(26px, 4.2vmin, 42px);
      font-weight: 800;
      color: #1f2937;
      line-height: 1.2;
      margin-bottom: 16px;
      font-family: 'Poppins', sans-serif;
    }

    .s10-section-header h2 span {
      color: #57BA91;
    }

    .s10-section-header p {
      font-size: clamp(13px, 1.8vmin, 16px);
      color: #6b7280;
      line-height: 1.65;
      max-width: 660px;
      margin: 0 auto;
    }

    /* ======================== */
    /*     TIMELINE CONTAINER    */
    /* ======================== */
    .s10-timeline {
      position: relative;
      width: 100%;
      max-width: 1000px;
      margin: 0 auto;
      padding: 10px 0 20px;
    }

    /* — Continuous vertical center line — */
    .s10-timeline::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 2px;
      background: #57BA91;
      transform: translateX(-50%);
      border-radius: 2px;
      z-index: 0;
    }

    /* — Top horizontal cap line — */
    .s10-timeline-cap-top {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 96px;
      height: 2px;
      background: #57BA91;
      z-index: 1;
      border-radius: 2px;
    }

    /* — Bottom horizontal cap line — */
    .s10-timeline-cap-bottom {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 96px;
      height: 2px;
      background: #57BA91;
      z-index: 1;
      border-radius: 2px;
    }

    /* ======================== */
    /*     TIMELINE ROW          */
    /* ======================== */
    .s10-row {
      display: flex;
      align-items: center;
      width: 100%;
      position: relative;
      z-index: 1;
    }

    .s10-row + .s10-row {
      margin-top: clamp(40px, 6vw, 80px);
    }

    /* ======================== */
    /*     LEFT & RIGHT SLOTS    */
    /* ======================== */
    .s10-slot {
      flex: 0 0 44%;
    }

    .s10-slot-left {
      display: flex;
      justify-content: flex-end;
    }

    .s10-slot-right {
      display: flex;
      justify-content: flex-start;
    }

    /* ======================== */
    /*     CENTER DOT COLUMN     */
    /* ======================== */
    .s10-center {
      flex: 0 0 12%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 10;
    }

    /* — Horizontal connector lines — */
    .s10-conn {
      flex: 1;
      height: 2px;
      background: #57BA91;
    }

    /* — Single center dot — no visible outline — */
    /* White box-shadow is invisible on white bg but masks the vertical line */
    .s10-dot {
      width: clamp(14px, 1.4vw, 18px);
      height: clamp(14px, 1.4vw, 18px);
      background: #57BA91;
      border-radius: 50%;
      flex-shrink: 0;
      position: relative;
      z-index: 25;
      box-shadow: 0 0 0 clamp(5px, 0.7vw, 8px) #ffffff;
    }

    /* ======================== */
    /*     GLASS CAPSULE CARD    */
    /* ======================== */
    .s10-card {
      display: flex;
      overflow: hidden;
      width: 100%;
      max-width: 440px;
      height: clamp(120px, 14vw, 148px);
      background: rgba(255, 255, 255, 0.65);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(87, 186, 145, 0.18);
      border-radius: 100px;
      box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 1px 6px rgba(0, 0, 0, 0.04);
      transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease;
    }

    .s10-card:hover {
      transform: scale(1.04);
      box-shadow:
        0 8px 32px rgba(87, 186, 145, 0.15),
        0 2px 10px rgba(0, 0, 0, 0.08);
    }

    .s10-card-left {
      flex-direction: row;
    }

    .s10-card-right {
      flex-direction: row-reverse;
    }

    /* ======================== */
    /*     CARD TEXT AREA        */
    /* ======================== */
    .s10-card-text {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: clamp(14px, 2vw, 22px);
    }

    .s10-card-left .s10-card-text {
      text-align: right;
      padding-right: clamp(16px, 2.2vw, 26px);
    }

    .s10-card-right .s10-card-text {
      text-align: left;
      padding-left: clamp(16px, 2.2vw, 26px);
    }

    .s10-card-title {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(13px, 1.5vw, 17px);
      font-weight: 700;
      color: #1f2937;
      line-height: 1.2;
      margin-bottom: clamp(3px, 0.5vw, 6px);
      text-transform: uppercase;
      letter-spacing: -0.2px;
    }

    .s10-card-desc {
      font-size: clamp(10px, 1.1vw, 12.5px);
      line-height: 1.5;
      color: #6b7280;
      font-weight: 400;
    }

    /* ======================== */
    /*     CARD ICON AREA        */
    /* ======================== */
    .s10-card-icon {
      width: clamp(90px, 11vw, 120px);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      position: relative;
      overflow: hidden;
      background: #57BA91;
    }

    .s10-card-left .s10-card-icon {
      border-radius: 0 100px 100px 0;
    }

    .s10-card-right .s10-card-icon {
      border-radius: 100px 0 0 100px;
    }

    .s10-card-icon svg {
      width: clamp(28px, 3.2vw, 40px);
      height: clamp(28px, 3.2vw, 40px);
      position: relative;
      z-index: 2;
    }

    /* ======================== */
    /*     BOTTOM CTA            */
    /* ======================== */
    .s10-cta-area {
      text-align: center;
      margin-top: clamp(50px, 7vw, 80px);
      padding: 0 20px;
    }

    .s10-cta-area .s10-cta-text {
      font-size: clamp(14px, 1.9vmin, 17px);
      color: #6b7280;
      line-height: 1.6;
      max-width: 520px;
      margin: 0 auto clamp(20px, 3vw, 30px);
    }

    .s10-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 40px;
      background: linear-gradient(135deg, #21514B, #57BA91);
      color: #ffffff;
      font-size: clamp(14px, 1.8vmin, 17px);
      font-weight: 700;
      font-family: 'Poppins', sans-serif;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      text-decoration: none;
      letter-spacing: 0.3px;
      transition: all 0.3s ease;
      box-shadow:
        0 4px 15px rgba(33, 81, 75, 0.3),
        0 2px 6px rgba(33, 81, 75, 0.15);
      position: relative;
      overflow: hidden;
    }

    .s10-cta-btn::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
      transition: left 0.5s ease;
    }

    .s10-cta-btn:hover::before {
      left: 100%;
    }

    .s10-cta-btn:hover {
      transform: translateY(-2px);
      box-shadow:
        0 8px 25px rgba(33, 81, 75, 0.4),
        0 4px 10px rgba(33, 81, 75, 0.2);
    }

    .s10-cta-btn svg {
      width: 18px;
      height: 18px;
      transition: transform 0.3s ease;
    }

    .s10-cta-btn:hover svg {
      transform: translateX(4px);
    }

    .s10-cta-btn:focus-visible {
      outline: 3px solid #57BA91;
      outline-offset: 4px;
    }

    .s10-cta-sub {
      display: block;
      margin-top: 12px;
      font-size: clamp(11px, 1.3vmin, 13px);
      color: #9ca3af;
    }

    .s10-cta-sub svg {
      width: 14px;
      height: 14px;
      vertical-align: middle;
      margin-right: 3px;
    }

    /* ================================ */
    /*     SCROLL ENTRANCE ANIMATION     */
    /* ================================ */
    .s10-row {
      opacity: 0;
      transform: translateY(30px);
    }

    .s10-row.s10-visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* nth-child(3/4/5) because cap-top=1, cap-bottom=2, rows=3,4,5 */
    .s10-row:nth-child(3) { transition: opacity 0.6s ease 0.1s, transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94) 0.1s; }
    .s10-row:nth-child(4) { transition: opacity 0.6s ease 0.25s, transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94) 0.25s; }
    .s10-row:nth-child(5) { transition: opacity 0.6s ease 0.40s, transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94) 0.40s; }

    /* ======================================================= */
    /*     RESPONSIVE — TABLETS (601px–900px)                   */
    /* ======================================================= */
    @media (max-width: 900px) {
      .s10-why-section {
        padding: 70px 14px 70px;
      }

      .s10-section-header {
        margin-bottom: 44px;
      }

      .s10-card {
        max-width: 380px;
        height: clamp(110px, 16vw, 136px);
      }

      .s10-card-title {
        font-size: clamp(12px, 1.8vw, 15px);
      }

      .s10-card-desc {
        font-size: clamp(9.5px, 1.3vw, 11.5px);
      }

      .s10-card-icon {
        width: clamp(75px, 10vw, 100px);
      }

      .s10-row + .s10-row {
        margin-top: clamp(30px, 5vw, 55px);
      }

      .s10-center {
        flex: 0 0 12%;
      }

      .s10-timeline-cap-top,
      .s10-timeline-cap-bottom {
        width: 72px;
      }
    }

    /* ======================================================= */
    /*     RESPONSIVE — MOBILE (≤ 700px) SINGLE COLUMN          */
    /* ======================================================= */
    @media (max-width: 700px) {
      .s10-why-section {
        padding: 60px 12px 60px;
      }

      .s10-section-header {
        margin-bottom: 36px;
      }

      .s10-section-header h2 {
        font-size: clamp(22px, 6vw, 32px);
      }

      /* Hide vertical line and cap lines */
      .s10-timeline::before,
      .s10-timeline-cap-top,
      .s10-timeline-cap-bottom {
        display: none;
      }

      /* Hide center dot column */
      .s10-center {
        display: none;
      }

      /* Stack rows vertically */
      .s10-row {
        flex-direction: column;
        gap: clamp(16px, 3.5vw, 24px);
      }

      .s10-slot {
        flex: 0 0 100%;
        width: 100%;
      }

      .s10-slot-left,
      .s10-slot-right {
        justify-content: center;
      }

      /* All cards same direction on mobile */
      .s10-card,
      .s10-card-left,
      .s10-card-right {
        flex-direction: row;
        max-width: 100%;
        height: auto;
        min-height: clamp(100px, 22vw, 130px);
        border-radius: 80px;
      }

      .s10-card-left .s10-card-text,
      .s10-card-right .s10-card-text {
        text-align: left;
        padding: clamp(14px, 3.5vw, 22px);
        padding-left: clamp(16px, 4vw, 24px);
      }

      .s10-card-left .s10-card-icon,
      .s10-card-right .s10-card-icon {
        border-radius: 80px 0 0 80px;
        width: clamp(70px, 18vw, 100px);
      }

      .s10-card-icon svg {
        width: clamp(26px, 6vw, 36px);
        height: clamp(26px, 6vw, 36px);
      }

      .s10-card-title {
        font-size: clamp(14px, 3.8vw, 18px);
      }

      .s10-card-desc {
        font-size: clamp(11px, 2.8vw, 13px);
        line-height: 1.55;
      }

      .s10-row + .s10-row {
        margin-top: clamp(20px, 4vw, 32px);
      }

      .s10-cta-btn {
        padding: 14px 32px;
        font-size: clamp(13px, 3.5vw, 16px);
      }
    }

    /* ======================================================= */
    /*     RESPONSIVE — SMALL PHONES (≤ 400px)                  */
    /* ======================================================= */
    @media (max-width: 400px) {
      .s10-why-section {
        padding: 45px 10px 50px;
      }

      .s10-card {
        border-radius: 60px;
        min-height: 90px;
      }

      .s10-card-left .s10-card-icon,
      .s10-card-right .s10-card-icon {
        border-radius: 60px 0 0 60px;
        width: clamp(60px, 16vw, 80px);
      }

      .s10-card-title {
        font-size: clamp(13px, 4vw, 16px);
      }

      .s10-card-desc {
        font-size: clamp(10.5px, 2.8vw, 12px);
      }

      .s10-section-header h2 {
        font-size: clamp(20px, 6.5vw, 28px);
      }

      .s10-section-header p {
        font-size: clamp(12px, 3.2vw, 14px);
      }
    }

    /* ======================================================= */
    /*     LANDSCAPE SHORT VIEWPORTS                            */
    /* ======================================================= */
    @media (max-height: 500px) and (orientation: landscape) {
      .s10-why-section {
        padding: 40px 16px 40px;
      }

      .s10-section-header {
        margin-bottom: 28px;
      }

      .s10-row + .s10-row {
        margin-top: 30px;
      }
    }

    /* ======================================================= */
    /*     ACCESSIBILITY                                        */
    /* ======================================================= */
    @media (prefers-reduced-motion: reduce) {
      .s10-row {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
      }

      .s10-card {
        transition: none !important;
      }

      .s10-card:hover {
        transform: none !important;
      }

      .s10-cta-btn,
      .s10-cta-btn::before,
      .s10-cta-btn svg {
        transition: none !important;
      }
    }

    @media (prefers-contrast: high) {
      .s10-card {
        border: 2px solid #21514B;
        background: #ffffff;
      }

      .s10-card-desc {
        color: #374151;
        font-weight: 500;
      }
    }

    @media print {
      .s10-why-section {
        padding: 20px 16px;
      }

      .s10-timeline::before,
      .s10-timeline-cap-top,
      .s10-timeline-cap-bottom {
        display: none;
      }

      .s10-card {
        box-shadow: none !important;
        border: 1px solid #ccc;
        break-inside: avoid;
      }

      .s10-row {
        opacity: 1 !important;
        transform: none !important;
      }

      .s10-center {
        display: none;
      }

      .s10-card-icon {
        print-color-adjust: exact;
        -webkit-print-color-adjust: exact;
      }
}

/* ============================================
   11th Section CSS
============================================ */

.s11-tech-section {
      position: relative;
      width: 100%;
      padding: clamp(70px, 9vw, 110px) 16px;
      background: linear-gradient(90deg, #21514B 0%, #57BA91 100%);
      overflow: hidden;
      z-index: 1;
      font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    }

    .s11-tech-section *,
    .s11-tech-section *::before,
    .s11-tech-section *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    .s11-tech-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.02) 0%, transparent 50%);
      pointer-events: none;
      z-index: 0;
    }

    /* ======================== */
    /*     SECTION HEADER       */
    /* ======================== */
    .s11-header {
      text-align: center;
      max-width: 820px;
      margin: 0 auto clamp(44px, 6vw, 68px);
      padding: 0 16px;
      position: relative;
      z-index: 2;
    }

    .s11-header-tag {
      display: inline-block;
      font-family: 'Poppins', sans-serif;
      font-size: clamp(10px, 1.2vmin, 12px);
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.5);
      margin-bottom: 14px;
    }

    .s11-header h2 {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(24px, 4.2vmin, 44px);
      font-weight: 800;
      color: #ffffff;
      line-height: 1.15;
      margin-bottom: 18px;
      letter-spacing: -0.5px;
    }

    .s11-header p {
      font-size: clamp(13px, 1.7vmin, 15.5px);
      color: rgba(255, 255, 255, 0.78);
      line-height: 1.7;
      max-width: 680px;
      margin: 0 auto 24px;
    }

    .s11-divider {
      display: flex;
      justify-content: center;
      gap: 4px;
      margin: 0 auto;
    }

    .s11-divider span {
      width: 28px;
      height: 3px;
      background: rgba(255, 255, 255, 0.4);
      border-radius: 3px;
    }

    .s11-divider span:nth-child(2) {
      width: 56px;
      background: rgba(255, 255, 255, 0.7);
    }

    /* ======================== */
    /*     ZIGZAG CONTAINER      */
    /* ======================== */
    .s11-zigzag {
      position: relative;
      max-width: 1100px;
      margin: 0 auto;
      z-index: 2;
      display: flex;
      flex-direction: column;
      gap: 48px; /* HALF INCH EQUAL SPACING */
    }

    .s11-zigzag-bg-strip {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 30%;
      width: 140px;
      background: rgba(255, 255, 255, 0.04);
      transform: skewX(-25deg);
      z-index: 0;
      pointer-events: none;
      filter: blur(20px);
    }

    /* ======================== */
    /*     ZIGZAG ROW            */
    /* ======================== */
    .s11-zrow {
      position: relative;
      width: 100%;
      display: flex;
      align-items: center;
      z-index: 1;
    }

    .s11-spacer {
      flex: 0 0 22%;
    }

    /* ======================== */
    /*     ZIGZAG STRIP          */
    /* ======================== */
    .s11-strip {
      position: relative;
      display: flex;
      align-items: stretch;
      flex: 1;
      min-height: clamp(140px, 17vw, 190px);
    }

    /* — Skewed emoji tab — */
    .s11-skew-tab {
      position: absolute;
      top: 0;
      bottom: 0;
      width: clamp(100px, 12vw, 160px);
      background: #ffffff;
      z-index: 20;
      overflow: hidden;
      transform: skewX(-25deg);
      box-shadow:
        inset 1px 0px 0px rgba(255,255,255,0.3),
        inset -1px 0px 0px rgba(0,0,0,0.05),
        5px 15px 25px -5px rgba(0, 0, 0, 0.25);
    }

    .s11-skew-tab-inner {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 4px;
      transform: skewX(25deg);
    }

    /* EMOJI PLACEHOLDER - Add your emoji here */
    .s11-tab-emoji {
      font-size: clamp(32px, 4vw, 48px);
      line-height: 1;
      filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
      min-width: 50px;
      min-height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .s11-tab-label {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(13px, 1.3vw, 14px); /* bigger */
  font-weight: 800;                   /* bold */
  letter-spacing: 2.5px;              /* sharper */
  text-transform: uppercase;
  color: #21514B;
  opacity: 1;                         /* full visibility */
}


    /* ADJUSTED POSITION FOR CARD 1 & 3 - Moved further left */
    .s11-strip-left .s11-skew-tab {
      left: 0;
      transform: skewX(-25deg) translateX(clamp(-40px, -4vw, -60px));
      transform-origin: bottom;
      border-right: 1px solid rgba(87, 186, 145, 0.15);
    }

    /* ADJUSTED POSITION FOR CARD 2 - Moved further right */
    .s11-strip-right .s11-skew-tab {
      right: 0;
      transform: skewX(-25deg) translateX(clamp(40px, 4vw, 60px));
      transform-origin: top;
      border-left: 1px solid rgba(87, 186, 145, 0.15);
    }

    /* — Main content bar — */
    .s11-bar {
      flex: 1;
      display: flex;
      align-items: center;
      background: #ffffff;
      position: relative;
      z-index: 10;
      box-shadow:
        inset 1px 1px 0px rgba(255,255,255,0.25),
        inset -1px -1px 0px rgba(0,0,0,0.04),
        0 20px 30px -10px rgba(0, 0, 0, 0.2);
    }

    .s11-strip-left .s11-bar {
      margin-left: clamp(60px, 8vw, 100px);
      border-radius: 0 8px 8px 0;
      padding: clamp(18px, 2.5vw, 30px) clamp(18px, 2.5vw, 30px) clamp(18px, 2.5vw, 30px) clamp(60px, 8vw, 100px);
    }

    .s11-strip-right .s11-bar {
      margin-right: clamp(60px, 8vw, 100px);
      border-radius: 8px 0 0 8px;
      padding: clamp(18px, 2.5vw, 30px) clamp(60px, 8vw, 100px) clamp(18px, 2.5vw, 30px) clamp(18px, 2.5vw, 30px);
    }

    /* — Bar content — */
    .s11-bar-content {
      flex: 1;
    }

    .s11-strip-right .s11-bar-content {
      text-align: right;
    }

    .s11-bar-title {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(14px, 1.6vw, 19px);
      font-weight: 700;
      color: #21514B;
      margin-bottom: clamp(6px, 0.8vw, 10px);
      line-height: 1.25;
    }

    .s11-bar-desc {
      font-size: clamp(11px, 1.1vw, 13px);
      line-height: 1.65;
      color: #6b7280;
      font-weight: 400;
    }

    /* — Hover — */
    .s11-strip {
      transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .s11-strip-left:hover {
      transform: translateX(6px);
    }

    .s11-strip-right:hover {
      transform: translateX(-6px);
    }

    /* — Shadow strips — */
    .s11-shadow-strip {
      position: absolute;
      left: 28%;
      width: 180px;
      height: 30px;
      background: rgba(0, 0, 0, 0.15);
      transform: skewX(-25deg);
      filter: blur(18px);
      z-index: 0;
      pointer-events: none;
    }

    /* ======================== */
    /*     CTA AREA              */
    /* ======================== */
    .s11-cta-area {
      text-align: center;
      margin-top: clamp(50px, 7vw, 80px);
      padding: 0 20px;
      position: relative;
      z-index: 2;
    }

    .s11-cta-area .s11-cta-text {
      font-size: clamp(14px, 1.9vmin, 17px);
      color: rgba(255, 255, 255, 0.78);
      line-height: 1.6;
      max-width: 520px;
      margin: 0 auto clamp(18px, 2.5vw, 28px);
    }

    .s11-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 40px;
      background: #ffffff;
      color: #21514B;
      font-size: clamp(13px, 1.7vmin, 16px);
      font-weight: 700;
      font-family: 'Poppins', sans-serif;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
      position: relative;
      overflow: hidden;
    }

    .s11-cta-btn::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(87, 186, 145, 0.08), transparent);
      transition: left 0.5s ease;
    }

    .s11-cta-btn:hover::before {
      left: 100%;
    }

    .s11-cta-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
      background: #f0fdf7;
    }

    .s11-cta-btn svg {
      width: 18px;
      height: 18px;
      transition: transform 0.3s ease;
    }

    .s11-cta-btn:hover svg {
      transform: translateX(4px);
    }

    .s11-cta-btn:focus-visible {
      outline: 3px solid #ffffff;
      outline-offset: 4px;
    }

    .s11-cta-sub {
      display: block;
      margin-top: 12px;
      font-size: clamp(10px, 1.2vmin, 12px);
      color: rgba(255, 255, 255, 0.45);
    }

    /* ================================ */
    /*     SCROLL ENTRANCE               */
    /* ================================ */
    .s11-strip {
      opacity: 0;
    }

    .s11-strip-left {
      transform: translateX(-60px);
    }

    .s11-strip-right {
      transform: translateX(60px);
    }

    .s11-strip.s11-visible {
      opacity: 1;
    }

    .s11-strip-left.s11-visible {
      transform: translateX(0);
    }

    .s11-strip-right.s11-visible {
      transform: translateX(0);
    }

    .s11-zrow:nth-child(1) .s11-strip { transition: opacity 0.6s ease 0.1s, transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94) 0.1s; }
    .s11-zrow:nth-child(2) .s11-strip { transition: opacity 0.6s ease 0.28s, transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94) 0.28s; }
    .s11-zrow:nth-child(3) .s11-strip { transition: opacity 0.6s ease 0.46s, transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94) 0.46s; }

    /* ======================================================= */
    /*     RESPONSIVE — MEDIUM                                  */
    /* ======================================================= */
    @media (max-width: 1050px) {
      .s11-spacer {
        flex: 0 0 10%;
      }

      .s11-skew-tab {
        width: clamp(85px, 11vw, 130px);
      }

      .s11-bar-desc {
        font-size: clamp(10.5px, 1.3vw, 12.5px);
      }

      .s11-zigzag-bg-strip,
      .s11-shadow-strip {
        display: none;
      }
    }

    /* ======================================================= */
    /*     RESPONSIVE — TABLET / MOBILE                         */
    /* ======================================================= */
    @media (max-width: 768px) {
      .s11-tech-section {
        padding: clamp(50px, 8vw, 80px) 10px;
      }

      .s11-zigzag {
        gap: 48px; /* MAINTAIN HALF INCH SPACING ON TABLET */
      }

      .s11-spacer {
        display: none;
      }

      .s11-skew-tab {
        display: none;
      }

      .s11-strip-left .s11-bar,
      .s11-strip-right .s11-bar {
        margin: 0;
        border-radius: 16px;
        padding: clamp(20px, 5vw, 30px);
      }

      .s11-strip-right .s11-bar-content {
        text-align: left;
      }

      .s11-bar-title {
        font-size: clamp(16px, 4.5vw, 20px);
      }

      .s11-bar-desc {
        font-size: clamp(12px, 3vw, 14px);
        line-height: 1.7;
      }

      .s11-header h2 {
        font-size: clamp(22px, 5.8vw, 34px);
      }

      .s11-strip-left,
      .s11-strip-right {
        transform: translateY(30px);
      }

      .s11-strip-left.s11-visible,
      .s11-strip-right.s11-visible {
        transform: translateY(0);
      }

      .s11-strip-left:hover,
      .s11-strip-right:hover {
        transform: translateY(-3px);
      }

      .s11-cta-btn {
        padding: 14px 32px;
        font-size: clamp(13px, 3.5vw, 15px);
      }
    }

    /* ======================================================= */
    /*     RESPONSIVE — SMALL PHONES                            */
    /* ======================================================= */
    @media (max-width: 440px) {
      .s11-tech-section {
        padding: 40px 8px;
      }

      .s11-zigzag {
        gap: 48px; /* MAINTAIN HALF INCH SPACING ON MOBILE */
      }

      .s11-header h2 {
        font-size: clamp(20px, 6.5vw, 28px);
      }

      .s11-header p {
        font-size: clamp(12px, 3.2vw, 14px);
      }

      .s11-strip-left .s11-bar,
      .s11-strip-right .s11-bar {
        padding: 16px;
        border-radius: 12px;
      }

      .s11-bar-desc {
        font-size: clamp(11px, 3vw, 13px);
      }
    }

    /* ======================================================= */
    /*     LANDSCAPE SHORT                                      */
    /* ======================================================= */
    @media (max-height: 500px) and (orientation: landscape) {
      .s11-tech-section {
        padding: 30px 16px;
      }

      .s11-header {
        margin-bottom: 28px;
      }

      .s11-strip {
        min-height: 120px;
      }
    }

    /* ======================================================= */
    /*     ACCESSIBILITY                                        */
    /* ======================================================= */
    @media (prefers-reduced-motion: reduce) {
      .s11-strip {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
      }

      .s11-strip:hover {
        transform: none !important;
      }

      .s11-cta-btn,
      .s11-cta-btn::before,
      .s11-cta-btn svg {
        transition: none !important;
      }
    }

    @media print {
      .s11-tech-section {
        background: #fff !important;
        padding: 20px 16px;
      }

      .s11-tech-section::before,
      .s11-zigzag-bg-strip,
      .s11-shadow-strip {
        display: none !important;
      }

      .s11-header h2,
      .s11-header p,
      .s11-bar-title,
      .s11-bar-desc {
        color: #000 !important;
      }

      .s11-strip {
        opacity: 1 !important;
        transform: none !important;
      }

      .s11-bar {
        box-shadow: none !important;
        border: 1px solid #ccc;
        break-inside: avoid;
      }

      .s11-skew-tab {
        box-shadow: none !important;
        border: 1px solid #ccc;
      }
}

/* ============================================
   12th Section CSS
============================================ */

  .s12-author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;   /* ⭐ MUST BE 50% */
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.s12-author-avatar img {
    position: absolute;   /* ⭐ forces perfect crop */
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}


  .s12-results-section {
      position: relative;
      width: 100%;
      padding: clamp(60px, 8vw, 110px) 16px;
      background: #ffffff;
      overflow: hidden;
      z-index: 1;
      font-family: 'Poppins', sans-serif;
    }

    .s12-results-section *,
    .s12-results-section *::before,
    .s12-results-section *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    .s12-inner {
      max-width: 1140px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    /* BG Decorations */
    .s12-results-section::before {
      content: "";
      position: absolute;
      top: -200px;
      right: -200px;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(87, 186, 145, 0.04) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }

    .s12-results-section::after {
      content: "";
      position: absolute;
      bottom: -150px;
      left: -150px;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(33, 81, 75, 0.03) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }

    /* ======================== */
    /*     SECTION HEADER       */
    /* ======================== */
    .s12-header {
      text-align: center;
      max-width: 780px;
      margin: 0 auto clamp(40px, 5vw, 60px);
      padding: 0 16px;
    }

    .s12-header-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: clamp(10px, 1.2vmin, 12px);
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #57BA91;
      margin-bottom: 16px;
    }

    .s12-header-tag::before,
    .s12-header-tag::after {
      content: "";
      width: 20px;
      height: 2px;
      background: #57BA91;
      border-radius: 2px;
      opacity: 0.5;
    }

    .s12-header h2 {
      font-size: clamp(24px, 4vmin, 42px);
      font-weight: 800;
      color: #21514B;
      line-height: 1.2;
      margin-bottom: 18px;
      letter-spacing: -0.5px;
    }

    .s12-header p {
      font-size: clamp(13px, 1.6vmin, 15.5px);
      color: #6b7280;
      line-height: 1.75;
      max-width: 680px;
      margin: 0 auto;
    }

    /* ======================== */
    /*     METRICS LABEL        */
    /* ======================== */
    .s12-metrics-label {
      text-align: center;
      margin-bottom: clamp(24px, 3.5vw, 40px);
    }

    .s12-metrics-label h3 {
      font-size: clamp(18px, 2.5vmin, 24px);
      font-weight: 700;
      color: #21514B;
      margin-bottom: 6px;
    }

    .s12-metrics-label p {
      font-size: clamp(12px, 1.4vmin, 14px);
      color: #9ca3af;
    }

    /* ======================== */
    /*     METRIC CARDS GRID    */
    /* ======================== */
    .s12-cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(16px, 2.5vw, 24px);
      margin-bottom: clamp(28px, 3.5vw, 40px);
    }

    .s12-metric-card {
      background: #ffffff;
      border-radius: 14px;
      padding: clamp(20px, 2.5vw, 28px);
      border: 1px solid rgba(33, 81, 75, 0.08);
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
      transition: box-shadow 0.3s ease, transform 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .s12-metric-card::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, #21514B 0%, #57BA91 100%);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .s12-metric-card:hover {
      box-shadow:
        0 8px 28px -6px rgba(33, 81, 75, 0.1),
        0 2px 8px -2px rgba(0, 0, 0, 0.04);
      transform: translateY(-3px);
    }

    .s12-metric-card:hover::after {
      opacity: 1;
    }

    /* Card Header */
    .s12-card-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: clamp(18px, 2.5vw, 24px);
    }

    .s12-card-icon {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 17px;
      font-weight: 700;
      flex-shrink: 0;
    }

    .s12-icon-red {
      background: rgba(239, 68, 68, 0.08);
      color: #ef4444;
    }

    .s12-icon-green {
      background: rgba(87, 186, 145, 0.1);
      color: #57BA91;
    }

    .s12-icon-slate {
      background: rgba(33, 81, 75, 0.07);
      color: #21514B;
    }

    .s12-icon-amber {
      background: rgba(245, 158, 11, 0.08);
      color: #f59e0b;
    }

    .s12-icon-purple {
      background: rgba(139, 92, 246, 0.08);
      color: #8b5cf6;
    }

    .s12-icon-teal {
      background: rgba(20, 184, 166, 0.08);
      color: #14b8a6;
    }

    .s12-card-title {
      font-size: clamp(14px, 1.5vmin, 17px);
      font-weight: 600;
      color: #1f2937;
      line-height: 1.3;
    }

    /* Card Values */
    .s12-card-values {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: clamp(14px, 2vw, 20px);
    }

    .s12-val-group {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .s12-val-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: #9ca3af;
    }

    .s12-val-label-highlight {
      color: #57BA91;
    }

    .s12-val-industry {
      font-size: clamp(14px, 1.5vmin, 16px);
      font-weight: 500;
      color: #c0c5cc;
      text-decoration: line-through;
      text-decoration-color: rgba(239, 68, 68, 0.35);
      text-decoration-thickness: 1.5px;
    }

    .s12-val-client {
      font-size: clamp(26px, 3.2vmin, 34px);
      font-weight: 800;
      color: #21514B;
      letter-spacing: -1px;
      line-height: 1.1;
    }

    /* Card Footer Badge */
    .s12-card-footer {
      padding-top: clamp(12px, 1.5vw, 16px);
      border-top: 1px solid rgba(33, 81, 75, 0.06);
    }

    .s12-improvement-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 5px 14px;
      border-radius: 50px;
      background: rgba(87, 186, 145, 0.08);
      font-size: clamp(11px, 1.2vmin, 13px);
      font-weight: 700;
      color: #21514B;
    }

    .s12-badge-icon {
      font-size: 13px;
      font-weight: 900;
      line-height: 1;
    }

    .s12-badge-icon-down {
      color: #57BA91;
    }

    .s12-badge-icon-up {
      color: #57BA91;
    }

    /* ======================== */
    /*     CALLOUT BOX           */
    /* ======================== */
    .s12-callout {
      position: relative;
      background: linear-gradient(135deg, #21514B 0%, #2a6b63 100%);
      border-radius: 16px;
      padding: clamp(24px, 3.5vw, 36px) clamp(24px, 4vw, 44px);
      margin-bottom: clamp(50px, 6vw, 70px);
      overflow: hidden;
    }

    .s12-callout::before {
      content: "";
      position: absolute;
      top: -60px;
      right: -60px;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: rgba(87, 186, 145, 0.1);
      pointer-events: none;
    }

    .s12-callout::after {
      content: "";
      position: absolute;
      bottom: -40px;
      left: -40px;
      width: 160px;
      height: 160px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.03);
      pointer-events: none;
    }

    .s12-callout-inner {
      display: flex;
      align-items: center;
      gap: clamp(16px, 3vw, 28px);
      position: relative;
      z-index: 2;
    }

    .s12-callout-icon {
      flex-shrink: 0;
      width: clamp(50px, 6vw, 64px);
      height: clamp(50px, 6vw, 64px);
      border-radius: 50%;
      background: rgba(87, 186, 145, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: clamp(22px, 3vw, 28px);
    }

    .s12-callout p {
      font-size: clamp(14px, 1.6vmin, 16px);
      color: rgba(255, 255, 255, 0.88);
      line-height: 1.7;
    }

    .s12-callout strong {
      color: #57BA91;
      font-weight: 700;
    }

    /* ======================== */
    /*     TESTIMONIALS          */
    /* ======================== */
    .s12-testimonials-header {
      text-align: center;
      margin-bottom: clamp(28px, 4vw, 44px);
    }

    .s12-testimonials-header h3 {
      font-size: clamp(20px, 3vmin, 30px);
      font-weight: 800;
      color: #21514B;
      margin-bottom: 8px;
    }

    .s12-testimonials-header p {
      font-size: clamp(12px, 1.4vmin, 14px);
      color: #9ca3af;
    }

    .s12-testimonials-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: clamp(20px, 3vw, 32px);
      margin-bottom: clamp(50px, 6vw, 70px);
    }

    .s12-testimonial-card {
      position: relative;
      background: #ffffff;
      border: 1px solid rgba(33, 81, 75, 0.08);
      border-radius: 16px;
      padding: clamp(28px, 3.5vw, 40px);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      overflow: hidden;
    }

    .s12-testimonial-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: linear-gradient(180deg, #57BA91 0%, #21514B 100%);
      border-radius: 4px 0 0 4px;
    }

    .s12-testimonial-card:hover {
      transform: translateY(-4px);
      box-shadow:
        0 12px 40px -12px rgba(33, 81, 75, 0.12),
        0 4px 12px -4px rgba(0, 0, 0, 0.04);
    }

    .s12-quote-mark {
      font-size: clamp(48px, 6vw, 72px);
      font-weight: 900;
      line-height: 1;
      color: #21514B;
      position: absolute;
      top: 16px;
      right: 24px;
      font-family: 'Poppins', serif;
      pointer-events: none;
    }

    .s12-testimonial-text {
      font-size: clamp(13px, 1.5vmin, 15.5px);
      color: #374151;
      line-height: 1.8;
      font-style: italic;
      margin-bottom: clamp(16px, 2vw, 22px);
      position: relative;
      z-index: 2;
    }

    .s12-testimonial-author {
      display: flex;
      align-items: center;
      gap: 14px;
      position: relative;
      z-index: 2;
    }

    .s12-author-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      font-weight: 700;
      color: #ffffff;
    }

    .s12-avatar-1 {
      background: linear-gradient(135deg, #21514B, #57BA91);
    }

    .s12-avatar-2 {
      background: linear-gradient(135deg, #57BA91, #21514B);
    }

    .s12-author-name {
      font-size: clamp(13px, 1.4vmin, 15px);
      font-weight: 700;
      color: #21514B;
      line-height: 1.3;
    }

    .s12-author-role {
      font-size: clamp(11px, 1.2vmin, 13px);
      color: #9ca3af;
      font-weight: 400;
    }

    .s12-highlight-stat {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 3px 12px;
      background: rgba(87, 186, 145, 0.1);
      border-radius: 50px;
      font-size: clamp(11px, 1.1vmin, 12px);
      font-weight: 700;
      color: #21514B;
      font-style: normal;
      margin-bottom: 16px;
    }

    /* ======================== */
    /*     CTA AREA              */
    /* ======================== */
    .s12-cta-area {
      text-align: center;
      position: relative;
      z-index: 2;
    }

    .s12-cta-box {
      background: linear-gradient(135deg, rgba(33, 81, 75, 0.04) 0%, rgba(87, 186, 145, 0.06) 100%);
      border: 1px solid rgba(33, 81, 75, 0.08);
      border-radius: 20px;
      padding: clamp(32px, 4vw, 50px) clamp(24px, 4vw, 48px);
    }

    .s12-cta-box p {
      font-size: clamp(14px, 1.7vmin, 17px);
      color: #374151;
      line-height: 1.7;
      max-width: 600px;
      margin: 0 auto clamp(20px, 3vw, 30px);
    }

    .s12-cta-box p strong {
      color: #21514B;
      font-weight: 700;
    }

    .s12-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 40px;
      background: linear-gradient(90deg, #21514B 0%, #57BA91 100%);
      color: #ffffff;
      font-size: clamp(13px, 1.6vmin, 16px);
      font-weight: 700;
      font-family: 'Poppins', sans-serif;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 4px 18px rgba(33, 81, 75, 0.25);
      position: relative;
      overflow: hidden;
    }

    .s12-cta-btn::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
      transition: left 0.5s ease;
    }

    .s12-cta-btn:hover::before {
      left: 100%;
    }

    .s12-cta-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(33, 81, 75, 0.35);
    }

    .s12-cta-btn svg {
      width: 18px;
      height: 18px;
      transition: transform 0.3s ease;
    }

    .s12-cta-btn:hover svg {
      transform: translateX(4px);
    }

    .s12-cta-sub {
      display: block;
      margin-top: 14px;
      font-size: clamp(11px, 1.2vmin, 13px);
      color: #9ca3af;
    }

    /* ================================ */
    /*     SCROLL ANIMATION              */
    /* ================================ */
    .s12-animate {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .s12-animate.s12-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .s12-animate-delay-1 { transition-delay: 0.1s; }
    .s12-animate-delay-2 { transition-delay: 0.2s; }
    .s12-animate-delay-3 { transition-delay: 0.3s; }
    .s12-animate-delay-4 { transition-delay: 0.4s; }
    .s12-animate-delay-5 { transition-delay: 0.5s; }
    .s12-animate-delay-6 { transition-delay: 0.6s; }
    .s12-animate-delay-7 { transition-delay: 0.7s; }

    /* ======================================================= */
    /*     RESPONSIVE — TABLET                                  */
    /* ======================================================= */
    @media (max-width: 900px) {
      .s12-cards-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .s12-testimonials-grid {
        grid-template-columns: 1fr;
      }

      .s12-callout-inner {
        flex-direction: column;
        text-align: center;
      }
    }

    /* ======================================================= */
    /*     RESPONSIVE — MOBILE                                  */
    /* ======================================================= */
    @media (max-width: 640px) {
      .s12-results-section {
        padding: clamp(40px, 8vw, 60px) 12px;
      }

      .s12-cards-grid {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .s12-header h2 {
        font-size: clamp(22px, 5.5vw, 30px);
      }

      .s12-metric-card {
        padding: clamp(18px, 4vw, 24px);
      }

      .s12-val-client {
        font-size: clamp(24px, 7vw, 30px);
      }

      .s12-testimonial-card {
        padding: clamp(20px, 5vw, 28px);
      }

      .s12-callout {
        border-radius: 12px;
        padding: clamp(20px, 5vw, 28px);
      }

      .s12-cta-box {
        border-radius: 14px;
        padding: clamp(24px, 5vw, 32px) clamp(16px, 4vw, 24px);
      }

      .s12-cta-btn {
        padding: 14px 32px;
        font-size: clamp(13px, 3.5vw, 15px);
      }
    }

    /* ======================================================= */
    /*     ACCESSIBILITY                                        */
    /* ======================================================= */
    @media (prefers-reduced-motion: reduce) {
      .s12-animate {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
      }

      .s12-metric-card:hover,
      .s12-testimonial-card:hover,
      .s12-cta-btn:hover {
        transform: none !important;
      }
    }

    @media print {
      .s12-results-section {
        padding: 20px;
      }

      .s12-results-section::before,
      .s12-results-section::after {
        display: none;
      }

      .s12-metric-card {
        box-shadow: none;
        border: 1px solid #ccc;
        break-inside: avoid;
      }

      .s12-testimonial-card {
        box-shadow: none;
        border: 1px solid #ccc;
        break-inside: avoid;
      }

      .s12-callout {
        background: #f3f4f6 !important;
        color: #000 !important;
      }

      .s12-callout p,
      .s12-callout strong {
        color: #000 !important;
      }
}

/* ============================================
   13th Section CSS
============================================ */

 .s13-specialties-section {
      position: relative;
      width: 100%;
      padding: clamp(60px, 8vw, 110px) 16px;
      background: linear-gradient(90deg, #21514B 0%, #57BA91 100%);
      overflow: hidden;
      z-index: 1;
      font-family: 'Poppins', sans-serif;
    }

    .s13-specialties-section *,
    .s13-specialties-section *::before,
    .s13-specialties-section *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    /* BG Decorations */
    .s13-specialties-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 8%;
      width: 1px;
      height: 100%;
      background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.06) 30%, rgba(255,255,255,0.06) 70%, transparent 100%);
      pointer-events: none;
      z-index: 0;
    }

    .s13-specialties-section::after {
      content: "";
      position: absolute;
      top: 0;
      right: 8%;
      width: 1px;
      height: 100%;
      background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.06) 30%, rgba(255,255,255,0.06) 70%, transparent 100%);
      pointer-events: none;
      z-index: 0;
    }

    .s13-inner {
      max-width: 1300px;
      width: 100%;
      padding-inline: clamp(16px, 4vw, 40px);
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    /* ======================== */
    /*     SECTION HEADER       */
    /* ======================== */
    .s13-header {
      text-align: center;
      max-width: 800px;
      margin: 0 auto clamp(40px, 5vw, 60px);
      padding: 0 16px;
    }

    .s13-header-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: clamp(10px, 1.2vmin, 12px);
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.5);
      margin-bottom: 16px;
    }

    .s13-header-tag::before,
    .s13-header-tag::after {
      content: "";
      width: 20px;
      height: 1px;
      background: rgba(255, 255, 255, 0.3);
    }

    .s13-header h2 {
      font-size: clamp(24px, 4.2vmin, 44px);
      font-weight: 800;
      color: #ffffff;
      line-height: 1.15;
      margin-bottom: 20px;
      letter-spacing: -0.5px;
    }

    .s13-header p {
      font-size: clamp(13px, 1.6vmin, 15.5px);
      color: rgba(255, 255, 255, 0.75);
      line-height: 1.75;
      max-width: 700px;
      margin: 0 auto;
    }

    /* ======================== */
    /*     SPECIALTIES GRID      */
    /* ======================== */
    .s13-grid-wrap {
      border: 2px solid rgba(255, 255, 255, 0.25);
      background: rgba(255, 255, 255, 0.15);
      margin-bottom: clamp(28px, 4vw, 44px);
      border-radius: 4px;
      overflow: hidden;
    }

    .s13-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2px;
  background: rgba(33, 81, 75, 0.15);
}


    /* ======================== */
    /*     GRID CELL             */
    /* ======================== */
    .s13-cell {
      position: relative;
      background: #ffffff;
      padding: clamp(18px, 2.5vw, 30px) clamp(10px, 1.5vw, 16px);
      cursor: pointer;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      gap: clamp(8px, 1vw, 12px);
      min-height: clamp(100px, 12vw, 140px);
      overflow: hidden;
      z-index: 1;
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .s13-specialties-section {
  overflow-x: clip; /* prevents horizontal scroll */
}


    /* Gradient overlay — slides in from left on hover */
    .s13-cell::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, #21514B 0%, #57BA91 100%);
      opacity: 0;
      transform: translateX(-100%);
      transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
      z-index: 0;
    }

    .s13-cell:hover {
      transform: translateY(-6px);
      z-index: 10;
      box-shadow:
        0 14px 36px -8px rgba(33, 81, 75, 0.25),
        0 6px 16px -4px rgba(0, 0, 0, 0.1);
    }

    .s13-cell:hover::before {
      opacity: 1;
      transform: translateX(0);
    }

    /* Emoji Placeholder */
    .s13-cell-emoji {
      font-size: clamp(26px, 3vw, 36px);
      line-height: 1;
      position: relative;
      z-index: 2;
      min-width: 40px;
      min-height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.4s ease;
    }

    .s13-cell:hover .s13-cell-emoji {
      transform: scale(1.15);
    }

    /* Specialty Name */
    .s13-cell-name {
      font-size: clamp(11px, 1.2vw, 14px);
      font-weight: 600;
      color: #21514B;
      letter-spacing: 0.3px;
      line-height: 1.25;
      position: relative;
      z-index: 2;
      transition: color 0.4s ease;
    }

    .s13-cell:hover .s13-cell-name {
      color: #ffffff;
    }

    /* ======================== */
    /*     BOTTOM NOTE           */
    /* ======================== */
    .s13-note {
      text-align: center;
      max-width: 700px;
      margin: 0 auto clamp(28px, 4vw, 40px);
      padding: 0 16px;
    }

    .s13-note p {
      font-size: clamp(13px, 1.5vmin, 15px);
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.75;
    }

    .s13-note strong {
      color: #ffffff;
      font-weight: 700;
    }

    /* ======================== */
    /*     CTA AREA              */
    /* ======================== */
    .s13-cta-area {
      text-align: center;
      position: relative;
      z-index: 2;
    }

    .s13-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 40px;
      background: #ffffff;
      color: #21514B;
      font-size: clamp(13px, 1.6vmin, 16px);
      font-weight: 700;
      font-family: 'Poppins', sans-serif;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
      position: relative;
      overflow: hidden;
    }

    .s13-cta-btn::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(87, 186, 145, 0.1), transparent);
      transition: left 0.5s ease;
    }

    .s13-cta-btn:hover::before {
      left: 100%;
    }

    .s13-cta-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
      background: #f0fdf7;
    }

    .s13-cta-btn svg {
      width: 18px;
      height: 18px;
      transition: transform 0.3s ease;
    }

    .s13-cta-btn:hover svg {
      transform: translateX(4px);
    }

    .s13-cta-sub {
      display: block;
      margin-top: 14px;
      font-size: clamp(10px, 1.2vmin, 12px);
      color: rgba(255, 255, 255, 0.4);
    }

    /* ================================ */
    /*     SCROLL ANIMATION              */
    /* ================================ */
    .s13-animate {
      opacity: 0;
      transform: translateY(25px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .s13-animate.s13-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .s13-animate-delay-1 { transition-delay: 0.1s; }
    .s13-animate-delay-2 { transition-delay: 0.2s; }
    .s13-animate-delay-3 { transition-delay: 0.35s; }

    /* Cell stagger animation */
    .s13-cell {
      opacity: 0;
      transform: scale(0.92);
      transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94), background 0.4s ease, box-shadow 0.4s ease;
    }

    .s13-cell.s13-cell-visible {
      opacity: 1;
      transform: scale(1);
    }

    /* ======================================================= */
    /*     RESPONSIVE — MEDIUM                                  */
    /* ======================================================= */
    @media (max-width: 1050px) {
      .s13-grid {
        grid-template-columns: repeat(4, 1fr);
      }

      .s13-cell {
        min-height: clamp(90px, 14vw, 120px);
      }
    }

    /* ======================================================= */
    /*     RESPONSIVE — TABLET                                  */
    /* ======================================================= */
    @media (max-width: 768px) {
      .s13-specialties-section {
        padding: clamp(50px, 8vw, 80px) 10px;
      }

      .s13-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .s13-cell {
        min-height: clamp(85px, 20vw, 110px);
      }

      .s13-cell-name {
        font-size: clamp(10px, 2.8vw, 13px);
      }

      .s13-cell-emoji {
        font-size: clamp(22px, 5.5vw, 30px);
        min-width: 34px;
        min-height: 34px;
      }

      .s13-header h2 {
        font-size: clamp(22px, 5.5vw, 34px);
      }

      .s13-cta-btn {
        padding: 14px 32px;
        font-size: clamp(13px, 3.5vw, 15px);
      }
    }

    /* ======================================================= */
    /*     RESPONSIVE — MOBILE                                  */
    /* ======================================================= */
    @media (max-width: 480px) {
      .s13-specialties-section {
        padding: 40px 8px;
      }

      .s13-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .s13-cell {
        min-height: 85px;
        padding: 14px 10px;
        gap: 6px;
      }

      .s13-cell-name {
        font-size: clamp(10px, 3vw, 12px);
      }

      .s13-cell-emoji {
        font-size: clamp(20px, 6vw, 26px);
        min-width: 30px;
        min-height: 30px;
      }

      .s13-header h2 {
        font-size: clamp(20px, 6vw, 28px);
      }

      .s13-header p {
        font-size: clamp(12px, 3.2vw, 14px);
      }

      .s13-cell:hover {
        transform: scale(1.03);
      }
    }

    /* ======================================================= */
    /*     ACCESSIBILITY                                        */
    /* ======================================================= */
    @media (prefers-reduced-motion: reduce) {
      .s13-animate,
      .s13-cell {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
      }

      .s13-cell:hover {
        transform: none !important;
      }

      .s13-cell::before {
        transition: none !important;
      }

      .s13-cta-btn,
      .s13-cta-btn::before,
      .s13-cta-btn svg {
        transition: none !important;
      }
    }

    @media print {
      .s13-specialties-section {
        background: #f3f4f6 !important;
        padding: 20px;
      }

      .s13-specialties-section::before,
      .s13-specialties-section::after {
        display: none !important;
      }

      .s13-header h2,
      .s13-header p,
      .s13-cell-name,
      .s13-note p {
        color: #000 !important;
      }

      .s13-cell {
        opacity: 1 !important;
        transform: none !important;
        background: #fff !important;
        border: 1px solid #ccc;
      }

      .s13-grid-wrap {
        border-color: #ccc;
      }
}

/* ============================================
   14th Section CSS
============================================ */
.s14-faq-section {
      position: relative;
      width: 100%;
      padding: clamp(60px, 8vw, 110px) 16px;
      background: #ffffff;
      overflow: hidden;
      z-index: 1;
      font-family: 'Poppins', sans-serif;
    }

    .s14-faq-section *,
    .s14-faq-section *::before,
    .s14-faq-section *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    .s14-inner {
      max-width: 1100px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    /* BG Decorations */
    .s14-faq-section::before {
      content: "";
      position: absolute;
      top: -150px;
      right: -150px;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(87, 186, 145, 0.04) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }

    .s14-faq-section::after {
      content: "";
      position: absolute;
      bottom: -100px;
      left: -100px;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(33, 81, 75, 0.03) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }

    /* ======================== */
    /*     SECTION HEADER       */
    /* ======================== */
    .s14-header {
      text-align: center;
      max-width: 750px;
      margin: 0 auto clamp(40px, 5vw, 60px);
      padding: 0 16px;
    }

    .s14-header-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: clamp(10px, 1.2vmin, 12px);
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #57BA91;
      margin-bottom: 16px;
    }

    .s14-header-tag::before,
    .s14-header-tag::after {
      content: "";
      width: 20px;
      height: 2px;
      background: #57BA91;
      border-radius: 2px;
      opacity: 0.5;
    }

    .s14-header h2 {
      font-size: clamp(24px, 4vmin, 42px);
      font-weight: 800;
      color: #21514B;
      line-height: 1.2;
      margin-bottom: 16px;
      letter-spacing: -0.5px;
    }

    .s14-header p {
      font-size: clamp(13px, 1.6vmin, 15.5px);
      color: #6b7280;
      line-height: 1.75;
      max-width: 650px;
      margin: 0 auto;
    }

    /* ======================== */
    /*     FAQ GRID — 2 COLUMNS */
    /* ======================== */
    .s14-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: clamp(16px, 2vw, 24px);
    }

    /* ======================== */
    /*     FAQ ITEM              */
    /* ======================== */
    .s14-item {
      position: relative;
      background: #ffffff;
      border: 1px solid rgba(33, 81, 75, 0.1);
      border-radius: 12px;
      padding: clamp(20px, 2.5vw, 28px);
      cursor: pointer;
      transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      display: flex;
      flex-direction: column;
    }

    .s14-item:hover {
      border-color: rgba(87, 186, 145, 0.3);
      box-shadow: 0 8px 24px -6px rgba(33, 81, 75, 0.1);
      transform: translateY(-2px);
    }

    .s14-item.s14-active {
      border-color: #57BA91;
      box-shadow: 0 12px 32px -8px rgba(33, 81, 75, 0.15);
    }

    /* Question Button */
    .s14-question {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
      width: 100%;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
      padding: 0;
    }

    .s14-question:focus {
      outline: none;
    }

    .s14-question:focus-visible {
      outline: 2px solid #57BA91;
      outline-offset: 4px;
      border-radius: 4px;
    }

    .s14-question-text {
      font-size: clamp(14px, 1.6vmin, 17px);
      font-weight: 600;
      color: #1f2937;
      line-height: 1.45;
      transition: color 0.3s ease;
      flex: 1;
    }

    .s14-question:hover .s14-question-text {
      color: #57BA91;
    }

    .s14-item.s14-active .s14-question-text {
      color: #21514B;
    }

    /* Toggle Icon */
    .s14-toggle {
      flex-shrink: 0;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid rgba(33, 81, 75, 0.15);
      background: transparent;
      transition: all 0.3s ease;
    }

    .s14-toggle-icon {
      width: 12px;
      height: 12px;
      position: relative;
      transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .s14-toggle-icon::before,
    .s14-toggle-icon::after {
      content: "";
      position: absolute;
      background: #6b7280;
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    .s14-toggle-icon::before {
      width: 100%;
      height: 2px;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
    }

    .s14-toggle-icon::after {
      width: 2px;
      height: 100%;
      left: 50%;
      top: 0;
      transform: translateX(-50%);
    }

    .s14-item:hover .s14-toggle {
      border-color: #57BA91;
    }

    .s14-item:hover .s14-toggle-icon::before,
    .s14-item:hover .s14-toggle-icon::after {
      background: #57BA91;
    }

    .s14-item.s14-active .s14-toggle {
      background: linear-gradient(135deg, #21514B 0%, #57BA91 100%);
      border-color: transparent;
    }

    .s14-item.s14-active .s14-toggle-icon::before {
      background: #ffffff;
    }

    .s14-item.s14-active .s14-toggle-icon::after {
      opacity: 0;
      transform: translateX(-50%) scaleY(0);
    }

    /* Answer */
    .s14-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .s14-item.s14-active .s14-answer {
      max-height: 800px;
      opacity: 1;
      padding-top: clamp(14px, 2vw, 20px);
      margin-top: clamp(14px, 2vw, 20px);
      border-top: 1px solid rgba(33, 81, 75, 0.08);
    }

    .s14-answer p {
      font-size: clamp(13px, 1.4vmin, 15px);
      color: #6b7280;
      line-height: 1.75;
      margin-bottom: 12px;
    }

    .s14-answer p:last-child {
      margin-bottom: 0;
    }

    .s14-answer strong {
      color: #21514B;
      font-weight: 600;
    }

    .s14-answer ul {
      list-style: none;
      padding: 0;
      margin: 10px 0;
    }

    .s14-answer li {
      position: relative;
      padding-left: 20px;
      font-size: clamp(13px, 1.4vmin, 15px);
      color: #6b7280;
      line-height: 1.75;
      margin-bottom: 6px;
    }

    .s14-answer li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 9px;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: linear-gradient(135deg, #21514B 0%, #57BA91 100%);
    }

    .s14-answer li:last-child {
      margin-bottom: 0;
    }

    /* ======================== */
    /*     CTA AREA              */
    /* ======================== */
    .s14-cta-area {
  text-align: center;
  margin-top: clamp(40px, 5vw, 60px);
  padding: clamp(28px, 4vw, 44px) clamp(20px, 4vw, 40px);

  /* UPDATED BACKGROUND */
  background: linear-gradient(to right, #21514B, #57BA91);

  border-radius: 16px;
  border: 1px solid rgba(33, 81, 75, 0.06);
}


    .s14-cta-area p {
      font-size: clamp(14px, 1.6vmin, 16px);
      color: #ffffff;
      margin-bottom: clamp(18px, 2.5vw, 24px);
    }

    .s14-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 40px;
      background: linear-gradient(90deg, #21514B 0%, #57BA91 100%);
      color: #ffffff;
      font-size: clamp(13px, 1.6vmin, 16px);
      font-weight: 700;
      font-family: 'Poppins', sans-serif;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 4px 18px rgba(33, 81, 75, 0.2);
      position: relative;
      overflow: hidden;
    }

    .s14-cta-btn::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
      transition: left 0.5s ease;
    }

    .s14-cta-btn:hover::before {
      left: 100%;
    }

    .s14-cta-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(33, 81, 75, 0.3);
    }

    .s14-cta-btn svg {
      width: 18px;
      height: 18px;
      transition: transform 0.3s ease;
    }

    .s14-cta-btn:hover svg {
      transform: translateX(4px);
    }

    /* ================================ */
    /*     SCROLL ANIMATION              */
    /* ================================ */
    .s14-animate {
      opacity: 0;
      transform: translateY(25px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .s14-animate.s14-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .s14-animate-delay-1 { transition-delay: 0.1s; }
    .s14-animate-delay-2 { transition-delay: 0.2s; }

    /* ======================================================= */
    /*     RESPONSIVE — TABLET                                  */
    /* ======================================================= */
    @media (max-width: 768px) {
      .s14-faq-section {
        padding: clamp(50px, 8vw, 80px) 12px;
      }

      .s14-header h2 {
        font-size: clamp(22px, 5.5vw, 32px);
      }

      .s14-grid {
        gap: 14px;
      }

      .s14-item {
        padding: clamp(16px, 4vw, 22px);
      }

      .s14-question-text {
        font-size: clamp(13px, 3.5vw, 16px);
      }

      .s14-toggle {
        width: 28px;
        height: 28px;
      }

      .s14-toggle-icon {
        width: 10px;
        height: 10px;
      }

      .s14-cta-btn {
        padding: 14px 32px;
        font-size: clamp(13px, 3.5vw, 15px);
      }
    }

    /* ======================================================= */
    /*     RESPONSIVE — MOBILE                                  */
    /* ======================================================= */
    @media (max-width: 580px) {
      .s14-faq-section {
        padding: 40px 10px;
      }

      .s14-header h2 {
        font-size: clamp(20px, 6vw, 26px);
      }

      .s14-header p {
        font-size: clamp(12px, 3.2vw, 14px);
      }

      .s14-grid {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .s14-item {
        padding: 18px;
      }

      .s14-question-text {
        font-size: 14px;
      }

      .s14-answer p,
      .s14-answer li {
        font-size: 13px;
      }

      .s14-cta-area {
        padding: clamp(20px, 5vw, 28px) clamp(16px, 4vw, 24px);
        border-radius: 12px;
      }
    }

    /* ======================================================= */
    /*     ACCESSIBILITY                                        */
    /* ======================================================= */
    @media (prefers-reduced-motion: reduce) {
      .s14-animate {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
      }

      .s14-item,
      .s14-answer,
      .s14-toggle,
      .s14-toggle-icon,
      .s14-toggle-icon::before,
      .s14-toggle-icon::after {
        transition: none !important;
      }

      .s14-cta-btn,
      .s14-cta-btn::before,
      .s14-cta-btn svg {
        transition: none !important;
      }
    }

    @media print {
      .s14-faq-section {
        padding: 20px;
      }

      .s14-faq-section::before,
      .s14-faq-section::after {
        display: none !important;
      }

      .s14-grid {
        display: block;
      }

      .s14-item {
        page-break-inside: avoid;
        margin-bottom: 16px;
        border: 1px solid #ccc;
      }

      .s14-answer {
        max-height: none !important;
        opacity: 1 !important;
        padding-top: 12px !important;
        margin-top: 12px !important;
        border-top: 1px solid #ccc !important;
      }

      .s14-toggle {
        display: none !important;
      }
}

/* ============================================
   15th Section CSS
============================================ */
.s15-cta-section {
    position: relative;
    width: 100%;
    padding: clamp(70px, 10vw, 130px) 16px;
    background: #ffffff;
    overflow: hidden;
    z-index: 1;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .s15-cta-section *,
  .s15-cta-section *::before,
  .s15-cta-section *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  /* BG Decorations */
  .s15-cta-section::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(78, 181, 140, 0.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
  }

  .s15-cta-section::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(40, 94, 87, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
  }

  /* Subtle texture */
  .s15-inner::before {
    content: "";
    position: absolute;
    inset: -100px;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.025;
    pointer-events: none;
    z-index: 0;
  }

  .s15-inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 clamp(8px, 2vw, 32px);
  }

  /* ═══════════════════════
     2-COLUMN LAYOUT
     ═══════════════════════ */

  .s15-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
    text-align: left;
  }

  .s15-left {
    max-width: 620px;
  }

  /* ═══════════════════════
     HEADER TAG
     ═══════════════════════ */

  .s15-header-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #4eb58c;
    margin-bottom: 22px;
  }

  .s15-header-tag::before,
  .s15-header-tag::after {
    content: "";
    width: 24px;
    height: 1.5px;
    background: #4eb58c;
    border-radius: 2px;
    opacity: 0.5;
  }

  /* ═══════════════════════
     HEADLINE
     ═══════════════════════ */

  .s15-headline {
    font-family: 'Merriweather', 'Poppins', serif;
    font-size: clamp(28px, 4.5vmin, 48px);
    font-weight: 900;
    color: #285e57;
    line-height: 1.18;
    margin-bottom: clamp(24px, 3vw, 36px);
    letter-spacing: -0.5px;
  }

  .s15-headline span {
    display: block;
  }

  .s15-headline-accent {
    color: #4eb58c;
  }

  /* ═══════════════════════
     BODY TEXT
     ═══════════════════════ */

  .s15-body {
    margin-bottom: clamp(28px, 4vw, 40px);
  }

  .s15-body p {
    font-size: clamp(14px, 1.6vmin, 16.5px);
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 16px;
  }

  .s15-body p:last-of-type {
    margin-bottom: 0;
  }

  .s15-body strong {
    color: #285e57;
    font-weight: 600;
  }

  /* Highlight / Quote Box */
  .s15-highlight {
    background: linear-gradient(135deg, #e8f5ef 0%, #eef9f5 100%);
    border: 1.5px solid rgba(78, 181, 140, 0.2);
    border-radius: 14px;
    padding: clamp(18px, 2.5vw, 24px) clamp(20px, 3vw, 28px);
    margin-top: clamp(20px, 3vw, 28px);
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }

  .s15-highlight-icon {
    flex-shrink: 0;
    color: #4eb58c;
    margin-top: 2px;
    opacity: 0.7;
  }

  .s15-highlight p {
    font-size: clamp(14px, 1.5vmin, 15.5px);
    font-weight: 500;
    color: #285e57;
    margin-bottom: 0 !important;
    font-style: italic;
    line-height: 1.7;
  }

  /* ═══════════════════════
     LABEL
     ═══════════════════════ */

  .s15-label {
    font-size: 11px;
    font-weight: 700;
    color: #4eb58c;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: clamp(16px, 2vw, 24px);
  }

  /* ═══════════════════════
     BUTTONS
     ═══════════════════════ */

  .s15-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: clamp(32px, 4.5vw, 48px);
  }

  /* Primary */
  .s15-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #285e57 0%, #4eb58c 100%);
    color: #ffffff;
    font-size: clamp(14px, 1.6vmin, 16px);
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 6px 28px rgba(40, 94, 87, 0.25);
    position: relative;
    overflow: hidden;
  }

  .s15-btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    transition: left 0.5s ease;
  }

  .s15-btn-primary:hover::before {
    left: 100%;
  }

  .s15-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(40, 94, 87, 0.35);
  }

  .s15-btn-primary svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }

  .s15-btn-primary:hover svg {
    transform: translateX(4px);
  }

  /* Secondary */
  .s15-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    color: #285e57;
    font-size: clamp(14px, 1.6vmin, 16px);
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    border: 2px solid #285e57;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
  }

  .s15-btn-secondary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #285e57 0%, #4eb58c 100%);
    transition: width 0.4s ease;
    z-index: 0;
  }

  .s15-btn-secondary span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
  }

  .s15-btn-secondary:hover::before {
    width: 100%;
  }

  .s15-btn-secondary:hover span {
    color: #ffffff;
  }

  .s15-btn-secondary svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
  }

  .s15-btn-secondary:hover svg {
    stroke: #ffffff;
  }

  /* ═══════════════════════
     CONTACT ROW
     ═══════════════════════ */

  .s15-contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(16px, 2.5vw, 28px);
    padding-top: clamp(20px, 3vw, 32px);
    border-top: 1px solid #e5e7eb;
  }

  .s15-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(13px, 1.4vmin, 15px);
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .s15-contact-item:hover {
    color: #285e57;
  }

  .s15-contact-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #eef9f5 0%, #e8f5ef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
  }

  .s15-contact-icon svg {
    width: 16px;
    height: 16px;
    stroke: #4eb58c;
    transition: stroke 0.3s ease;
  }

  .s15-contact-item:hover .s15-contact-icon {
    background: linear-gradient(135deg, #285e57 0%, #4eb58c 100%);
  }

  .s15-contact-item:hover .s15-contact-icon svg {
    stroke: #ffffff;
  }

  .s15-contact-divider {
    width: 1px;
    height: 22px;
    background: #d1d5db;
  }

  /* ═══════════════════════
     RIGHT — IMAGE AREA
     ═══════════════════════ */

  .s15-right {
    position: relative;
    min-height: 540px;
  }

  .s15-image-bg {
    position: absolute;
    top: 32px;
    right: 32px;
    width: 88%;
    height: 88%;
    background: linear-gradient(135deg, rgba(78, 181, 140, 0.08) 0%, rgba(40, 94, 87, 0.04) 100%);
    border-radius: 28px;
    transform: rotate(3deg);
  }

  .s15-image-holder {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 540px;
    border-radius: 20px;
    overflow: hidden;
    background: #f3f4f6;
    border: 4px solid #ffffff;
    box-shadow:
      0 24px 64px rgba(0, 0, 0, 0.1),
      0 4px 16px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .s15-image-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Empty state placeholder */
  .s15-image-holder img[src=""],
  .s15-image-holder img:not([src]) {
    display: none;
  }

  .s15-image-holder:has(img[src=""]),
  .s15-image-holder:has(img:not([src])) {
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5, #f0f9ff);
  }

  /* Floating stat card */
  .s15-float-card {
    position: absolute;
    bottom: 28px;
    left: 28px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    padding: 18px 22px;
    border-radius: 16px;
    box-shadow:
      0 12px 40px rgba(0, 0, 0, 0.1),
      0 2px 8px rgba(0, 0, 0, 0.04);
    max-width: 300px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border-left: 4px solid #4eb58c;
    z-index: 5;
    animation: s15FloatIn 0.6s 0.8s ease both;
  }

  @keyframes s15FloatIn {
    from {
      opacity: 0;
      transform: translateY(16px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .s15-float-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #e8f5ef, #d1fae5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .s15-float-icon svg {
    width: 20px;
    height: 20px;
    stroke: #059669;
  }

  .s15-float-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .s15-float-text strong {
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
  }

  .s15-float-text span {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.5;
  }

  .s15-float-text b {
    color: #059669;
    font-weight: 700;
  }

  /* ═══════════════════════
     SCROLL ANIMATION
     ═══════════════════════ */

  .s15-animate {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .s15-animate.s15-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .s15-animate-delay-1 { transition-delay: 0.1s; }
  .s15-animate-delay-2 { transition-delay: 0.2s; }
  .s15-animate-delay-3 { transition-delay: 0.35s; }
  .s15-animate-delay-4 { transition-delay: 0.5s; }

  /* ═══════════════════════
     RESPONSIVE — TABLET
     ═══════════════════════ */

  @media (max-width: 1024px) {
    .s15-layout {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 48px;
    }

    .s15-right {
      order: -1;
      min-height: 380px;
    }

    .s15-image-holder {
      min-height: 380px;
    }

    .s15-left {
      margin: 0 auto;
      max-width: 640px;
    }

    .s15-buttons {
      justify-content: center;
    }

    .s15-contact {
      justify-content: center;
    }

    .s15-highlight {
      text-align: left;
    }

    .s15-header-tag::before {
      display: inline-block;
    }
  }

  @media (max-width: 768px) {
    .s15-cta-section {
      padding: clamp(50px, 8vw, 80px) 12px;
    }

    .s15-headline {
      font-size: clamp(26px, 6vw, 38px);
    }

    .s15-buttons {
      flex-direction: column;
      align-items: center;
      width: 100%;
    }

    .s15-btn-primary,
    .s15-btn-secondary {
      width: 100%;
      max-width: 340px;
      justify-content: center;
      padding: 16px 32px;
    }

    .s15-contact {
      flex-direction: column;
      gap: 14px;
    }

    .s15-contact-divider {
      display: none;
    }

    .s15-float-card {
      left: 16px;
      bottom: 16px;
      max-width: 260px;
      padding: 14px 16px;
    }
  }

  @media (max-width: 480px) {
    .s15-cta-section {
      padding: 40px 10px;
    }

    .s15-headline {
      font-size: clamp(24px, 7vw, 32px);
      letter-spacing: -0.3px;
    }

    .s15-body p {
      font-size: clamp(13px, 3.5vw, 15px);
    }

    .s15-highlight {
      padding: 16px 18px;
      flex-direction: column;
      gap: 10px;
    }

    .s15-btn-primary,
    .s15-btn-secondary {
      padding: 14px 28px;
      font-size: 14px;
    }

    .s15-contact-item {
      font-size: 13px;
    }

    .s15-contact-icon {
      width: 34px;
      height: 34px;
    }

    .s15-float-card {
      max-width: 220px;
      padding: 12px 14px;
      gap: 10px;
    }

    .s15-float-text strong {
      font-size: 13px;
    }

    .s15-float-text span {
      font-size: 11px;
    }
  }

  /* ═══════════════════════
     ACCESSIBILITY
     ═══════════════════════ */

  @media (prefers-reduced-motion: reduce) {
    .s15-animate {
      opacity: 1 !important;
      transform: none !important;
      transition: none !important;
    }

    .s15-btn-primary,
    .s15-btn-primary::before,
    .s15-btn-primary svg,
    .s15-btn-secondary,
    .s15-btn-secondary::before,
    .s15-btn-secondary span,
    .s15-btn-secondary svg,
    .s15-contact-item,
    .s15-contact-icon,
    .s15-contact-icon svg,
    .s15-float-card {
      transition: none !important;
      animation: none !important;
    }
  }

  @media print {
    .s15-cta-section {
      padding: 30px;
      background: #fff !important;
    }

    .s15-cta-section::before,
    .s15-cta-section::after,
    .s15-image-bg {
      display: none !important;
    }

    .s15-layout {
      grid-template-columns: 1fr;
    }

    .s15-right {
      display: none;
    }

    .s15-headline,
    .s15-body p,
    .s15-highlight p,
    .s15-contact-item {
      color: #000 !important;
    }

    .s15-btn-primary,
    .s15-btn-secondary {
      background: #f3f4f6 !important;
      color: #000 !important;
      border: 1px solid #ccc !important;
      box-shadow: none !important;
    }
  }


 