/* =============================================
1st Section CSS
============================================= */
/* =============================================
   DENIAL MANAGEMENT — CSS
   ============================================= */




/* =============================================
2nd 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;
    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 --- */
.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;
    padding-top: 70px;
    padding-bottom: 70px;
    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;

    /* GPU acceleration — performance */
    will-change: auto;
    transform: translateZ(0);
}

.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: height 0.3s ease, box-shadow 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;
    font-variant-numeric: tabular-nums;
    color: var(--color-white, #ffffff);
    display: inline-flex;
    justify-content: center;
    align-items: baseline;
    gap: 2px;
    min-width: 140px;
    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 --- */
@keyframes statsFadeSlideUp {
    0%   { opacity: 0; transform: translateY(24px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Animation delays per item */
.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 BREAKPOINTS
   ============================================= */

/* 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 (max 1023px) */
@media (max-width: 1023px) {
    .stats-divider-section {
        padding: 30px 0;
    }
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Tablet Portrait (max 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 (max 599px) */
@media (max-width: 599px) {
    .stats-divider-section {
        padding: 20px 0;
    }
    .stats-strip {
        border-radius: 14px;
    }
}

/* Mobile (max 479px) */
@media (max-width: 479px) {
    .stats-divider-section {
        padding: 16px 0;
    }
    .stats-strip {
        border-radius: 12px;
    }
    .stat-item::before {
        width: 2px;
    }
}

/* Extra Small Mobile (max 359px) */
@media (max-width: 359px) {
    .stats-strip {
        border-radius: 10px;
    }
    .stats-grid {
        row-gap: 20px;
        column-gap: 12px;
    }
}

/* Reduced Motion — Accessibility + Performance */
@media (prefers-reduced-motion: reduce) {
    .stats-heading,
    .stat-item {
        animation: none;
        opacity: 1;
    }
    .stat-item:hover .stat-number {
        transform: none;
    }
    .stat-item::before {
        transition: none;
    }
}

/* =============================================
3rd Section CSS
============================================= */

.dm-section-wrapper {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
                 "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
    width: 100%;
    isolation: isolate;
    clear: both;

    /* CSS Variables */
    --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;
}

.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;
    box-shadow: 0 2px 8px rgba(88, 187, 146, 0.25);
    margin-top: auto;
}

.dm-cta-button:hover {
    background: var(--dm-primary-dark);
}

.dm-cta-button:focus {
    outline: 2px solid var(--dm-primary);
    outline-offset: 2px;
}

/* ===== FINAL CTA BANNER ===== */
.dm-cta-banner {
    margin-top: 60px;
    width: 100%;
    min-height: 250px;
    height: auto;
    border-radius: 16px;
    position: relative;
    overflow: visible;
    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;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.dm-btn-primary:hover {
    background: #f0fdf9;
}

.dm-btn-primary:focus {
    outline: 2px solid var(--dm-white);
    outline-offset: 2px;
}

.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;
}

.dm-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.dm-btn-secondary:focus {
    outline: 2px solid var(--dm-white);
    outline-offset: 2px;
}

/* ===== ICONS ===== */
.dm-icon {
    display: inline-block;
    font-style: normal;
    line-height: 1;
}

/* ===== RESPONSIVE ===== */

/* Tablet Portrait */
@media (min-width: 600px) {
    .dm-cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* Tablet Landscape */
@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-title {
        font-size: 36px;
    }
}

/* Desktop */
@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;
    }
}

/* Mobile adjustments */
@media (max-width: 599px) {
    .dm-main-section {
        padding: 40px 16px;
    }

    .dm-main-title {
        font-size: 28px;
    }

    .dm-subtitle {
        font-size: 16px;
    }

    .dm-process-content,
    .dm-stats-card {
        padding: 24px;
    }

    .dm-cta-banner {
        padding: 32px 16px;
    }

    .dm-cta-title {
        font-size: 22px;
    }

    .dm-cta-text {
        font-size: 14px;
    }

    .dm-btn-primary,
    .dm-btn-secondary {
        width: 100%;
    }
}

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        animation: none !important;
    }
}

/* =============================================
4th Section CSS
============================================= */

#ms-landscape-2026 {
    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 */
#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;
}

/* Grid Row */
#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;
}

/* Stat Cards */
#ms-landscape-2026 .ms-glass-card {
    background: #ffffff;
    border: 3px solid #57BA91;
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    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-stat-number {
    display: inline;
    font-size: 3.5rem;
    font-weight: 800;
    color: #57BA91;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

#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 */
#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);
    pointer-events: none;
}

#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 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;
    box-shadow: 0 8px 24px rgba(33, 81, 75, 0.3);
    position: relative;
    overflow: hidden;
}

#ms-landscape-2026 .ms-cta-button:hover {
    background: linear-gradient(135deg, #1a433e 0%, #21514B 100%);
    box-shadow: 0 12px 32px rgba(33, 81, 75, 0.4);
}

#ms-landscape-2026 .ms-cta-button:focus {
    outline: 3px solid #57BA91;
    outline-offset: 3px;
}

#ms-landscape-2026 .ms-cta-text {
    position: relative;
    z-index: 2;
}

#ms-landscape-2026 .ms-cta-arrow {
    position: relative;
    z-index: 2;
}

/* Shimmer */
#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;
    pointer-events: none;
}

#ms-landscape-2026 .ms-cta-subtext {
    font-size: 0.8rem;
    color: #9ca3af;
    margin: 8px 0 0 0;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@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 !important;
    }
    #ms-landscape-2026 .ms-glass-card:hover,
    #ms-landscape-2026 .ms-cta-button:hover {
        transform: none !important;
    }
    #ms-landscape-2026 .ms-cta-shimmer {
        display: none;
    }
}

/* Print */
@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;
    }
}

/* =============================================
5th 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 *,
.section-5-denials *::before,
.section-5-denials *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.section-5-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Header */
.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;
}

/* Grid */
.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;
}

.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;
}

.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;
}

.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;
}

.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%;
    pointer-events: none;
}

.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%;
    pointer-events: none;
}

.section-5-cta-content {
    position: relative;
    z-index: 1;
}

.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;
}

.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;
    box-shadow: 0 10px 25px -5px rgba(87, 186, 145, 0.5);
    border: none;
    cursor: pointer;
}

.cta-button-primary:hover {
    background-color: #4aa87f;
    color: #ffffff;
    text-decoration: none;
}

.cta-button-primary:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.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;
    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);
    color: #ffffff;
    text-decoration: none;
}

.cta-button-secondary:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.cta-button-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@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;
    }
}

/* =============================================
   ACCESSIBILITY
   ============================================= */

@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        animation: none !important;
    }
}

/* =============================================
   PRINT
   ============================================= */

@media print {
    .section-5-denials {
        background-color: white !important;
        padding: 20px 0;
    }

    .section-5-title,
    .section-5-cta h3 {
        color: black !important;
    }

    .denial-card-inner,
    .section-5-cta {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }
}

/* =============================================
6th 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 *,
.section-6-master-detail *::before,
.section-6-master-detail *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Header Bar */
.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 */
.section-6-layout {
    display: flex;
    min-height: 680px;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 80px);
}

/* Hide radio inputs */
.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;
    border: 1px solid rgba(0, 0, 0, 0.04);
    background: #ffffff;
    position: relative;
    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 .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;
    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;
}

/* Active state for nav items */
#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);
}

#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;
}

/* Panel Header */
.panel-header {
    padding-bottom: 36px;
    margin-bottom: 36px;
}

.panel-title-row {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.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 */
.challenge-card {
    background: #ffffff;
    padding: clamp(24px, 2.5vw, 32px);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    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);
}

.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.solution {
    background: rgba(255, 255, 255, 0.2);
}

.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 */
.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;
    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 .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 */
.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;
}

.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;
    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 {
    color: #ffffff;
    text-decoration: none;
}

.section-6-cta-button:focus {
    outline: 2px solid #57BA91;
    outline-offset: 3px;
}

.section-6-cta-button svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
}

/* 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;
}

/* =============================================
   RESPONSIVE
   ============================================= */

/* Ultra-wide screens */
@media (min-width: 2200px) {
    .section-6-header-bar {
        padding: 80px 32px 50px;
    }

    .section-6-layout {
        max-width: 2200px;
        padding: 0 120px;
    }

    .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;
    }
}

/* Tablet and below */
@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;
    }

    #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;
    }

    .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;
    }
}

/* =============================================
   ACCESSIBILITY
   ============================================= */

@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        animation: none !important;
    }
}

/* =============================================
   PRINT
   ============================================= */

@media print {
    .section-6-master-detail {
        background: white !important;
    }

    .section-6-header-text h2,
    .panel-title-content h3,
    .card-header h4,
    .section-6-cta-text h4 {
        color: black !important;
    }

    .section-6-nav-item,
    .challenge-card,
    .solution-card,
    .pro-tip-box {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }
}

/* =============================================
7th 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 *,
.section-7-rapid-process *::before,
.section-7-rapid-process *::after {
    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;
}

/* 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 */
.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;
}

.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;
}

.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;
}

/* Card */
.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 */
.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;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.section-7-cta-button:hover {
    color: #21514B;
    text-decoration: none;
}

.section-7-cta-button:focus {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

.section-7-cta-button svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
}

/* =============================================
   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-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;
    }
}

/* =============================================
   ACCESSIBILITY
   ============================================= */

@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        animation: none !important;
    }
}

/* =============================================
   PRINT
   ============================================= */

@media print {
    .section-7-rapid-process {
        background: white !important;
        padding: 20px 0;
    }

    .section-7-header h2,
    .section-7-content h3 {
        color: black !important;
    }

    .section-7-step-number {
        background: #57BA91 !important;
        color: white !important;
        box-shadow: none !important;
    }

    .section-7-card {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }
}


/* =============================================
8th Section CSS
============================================= */

.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;
  animation: none !important;
  transition: none !important;
}

/* Section Header */
.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;
}

.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 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;
}

/* Base hex wrap - visible by default, no animation */
.s8-hexWrap {
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--hexW);
  height: var(--hexH);
  transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y)));
  opacity: 1;
}

/* GREEN HEXAGONS */
.s8-hexWrap.s8-orange-wrap {
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.14));
}

.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;
}

.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 */
.s8-hexWrap.s8-white-wrap {
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.11));
}

.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;
}

.s8-hex-icon img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.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;
}

.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);
}

.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;
}

.s8-orange-wrap .s8-hex-desc { color: rgba(255,255,255,0.88); }
.s8-white-wrap  .s8-hex-desc { color: #6b7b8a; }

/* Center Hex */
.s8-center-hex .s8-hex {
  background: linear-gradient(180deg, #57BA91, #3d9470) !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-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;
}

.s8-center-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 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;
  box-shadow: 0 4px 15px rgba(87,186,145,0.35);
}

.s8-cta-btn svg {
  width: 18px;
  height: 18px;
}

.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;
}

.s8-cta-btn:focus-visible {
  outline: 3px solid #57BA91;
  outline-offset: 4px;
}

/* ============================================
   RESPONSIVE: 1100px
   ============================================ */
@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,
  .s8-center-icon-wrap {
    width: clamp(28px, 2.8vw, 40px);
    height: clamp(28px, 2.8vw, 40px);
    margin-bottom: clamp(2px, 0.4vw, 5px);
  }
}

/* ============================================
   RESPONSIVE: TABLETS 900px — Card Layout
   ============================================ */
@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;
    opacity: 1 !important;
  }

  .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);
  }

  .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; }

  .s8-hex-icon,
  .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; }
}

/* ============================================
   RESPONSIVE: 600px
   ============================================ */
@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,
  .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: 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,
  .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; }
}

/* =============================================
9th Section CSS
============================================= */
/* ============================================
   SECTION 9 - PROVIDERS
   No Animations - Performance Optimized
   ============================================ */

.s9-providers-section {
  position: relative;
  width: 100%;
  padding: 90px 16px;
  background: linear-gradient(90deg, #21514B 0%, #57BA91 100%);
  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;
  animation: none !important;
  transition: none !important;
}

/* ========================
   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;
}

.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;
}

.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
   ======================== */
.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 6px 24px rgba(0, 0, 0, 0.12);
  opacity: 1;
  transform: none;
}

/* Inner border */
.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;
}

/* ========================
   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 — card 4 badge shift */
@media (min-width: 901px) {
  .s9-card-4 .s9-badge {
    transform: translateX(30px);
  }
}

/* ========================
   TOP BAR
   ======================== */
.s9-card-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(16px, 2.2vw, 26px);
  position: relative;
  z-index: 10;
}

/* Badge */
.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);
  flex-shrink: 0;
}

.s9-badge span {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

/* Icon */
.s9-card-icon {
  width: clamp(42px, 5vw, 60px);
  height: clamp(42px, 5vw, 60px);
  opacity: 0.85;
  display: flex;
  align-items: center;
  justify-content: center;
}

.s9-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ========================
   TEXT CONTENT
   ======================== */
.s9-card-text-wrap {
  position: relative;
  z-index: 10;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.s9-card-title {
  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;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.s9-cta-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.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);
}

/* ============================================
   RESPONSIVE: Tablets 900px
   ============================================ */
@media (max-width: 900px) {
  .s9-providers-section { padding: 70px 14px; }

  .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 600px
   ============================================ */
@media (max-width: 600px) {
  .s9-providers-section {
    padding: 60px 12px;
    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; }
}

/* ============================================
   RESPONSIVE: Very Small 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; }
}

/* ============================================
   RESPONSIVE: Landscape
   ============================================ */
@media (max-height: 500px) and (orientation: landscape) {
  .s9-providers-section {
    padding: 40px 16px;
    background-attachment: scroll;
  }
  .s9-section-header { margin-bottom: 24px; }
  .s9-card { min-height: 260px; }
}

/* ============================================
   10th Section CSS
   ============================================ */

/* ========================
   SECTION 10 — WHY MEDSOLE
   ======================== */
.s10-why-section {
  position: relative;
  width: 100%;
  padding: 90px 16px;
  background: #ffffff;
  overflow: visible;
  z-index: 1;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  contain: layout style;
}

.s10-why-section *,
.s10-why-section *::before,
.s10-why-section *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 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 */
.s10-timeline {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px 0 20px;
}

.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;
}

.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;
}

.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;
}

/* ROW */
.s10-row {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
  opacity: 1;
  transform: none;
}

.s10-row + .s10-row {
  margin-top: clamp(40px, 6vw, 80px);
}

/* 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 */
.s10-center {
  flex: 0 0 12%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
}

.s10-conn {
  flex: 1;
  height: 2px;
  background: #57BA91;
}

.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;
}

/* CARD */
.s10-card {
  display: flex;
  overflow: hidden;
  width: 100%;
  max-width: 440px;
  height: clamp(120px, 14vw, 148px);
  background: rgba(255, 255, 255, 0.65);
  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);
  will-change: auto;
}

.s10-card-left {
  flex-direction: row;
}

.s10-card-right {
  flex-direction: row-reverse;
}

/* CARD TEXT */
.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 */
.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 img {
  width: clamp(28px, 3.2vw, 40px);
  height: clamp(28px, 3.2vw, 40px);
  position: relative;
  z-index: 2;
  display: block;
}

/* 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;
  box-shadow:
    0 4px 15px rgba(33, 81, 75, 0.3),
    0 2px 6px rgba(33, 81, 75, 0.15);
}

.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 {
  vertical-align: middle;
  margin-right: 3px;
}

/* ======================================================
   RESPONSIVE — TABLETS (601px–900px)
   ====================================================== */
@media (max-width: 900px) {
  .s10-why-section {
    padding: 70px 14px;
  }

  .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)
   ====================================================== */
@media (max-width: 700px) {
  .s10-why-section {
    padding: 60px 12px;
  }

  .s10-section-header {
    margin-bottom: 36px;
  }

  .s10-section-header h2 {
    font-size: clamp(22px, 6vw, 32px);
  }

  .s10-timeline::before,
  .s10-timeline-cap-top,
  .s10-timeline-cap-bottom {
    display: none;
  }

  .s10-center {
    display: none;
  }

  .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;
  }

  .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 img {
    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;
  }

  .s10-section-header {
    margin-bottom: 28px;
  }

  .s10-row + .s10-row {
    margin-top: 30px;
  }
}

/* ======================================================
   HIGH CONTRAST
   ====================================================== */
@media (prefers-contrast: high) {
  .s10-card {
    border: 2px solid #21514B;
    background: #ffffff;
  }

  .s10-card-desc {
    color: #374151;
    font-weight: 500;
  }
}

/* ======================================================
   PRINT
   ====================================================== */
@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-center {
    display: none;
  }

  .s10-card-icon {
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
}

/* ================================ */
/*   SECTION 11 - TECH SECTION      */
/* ================================ */

/* ============================================================
   SECTION 11 — TECH & AUTOMATION
   ============================================================ */

.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;
}

/* --- 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;
}

.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;
}

/* --- ROW --- */
.s11-zrow {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  z-index: 1;
}

.s11-spacer {
  flex: 0 0 22%;
}

/* --- STRIP --- */
.s11-strip {
  position: relative;
  display: flex;
  align-items: stretch;
  flex: 1;
  min-height: clamp(140px, 17vw, 190px);
}

/* --- SKEW 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 0 0 rgba(255,255,255,0.3),
    inset -1px 0 0 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);
}

.s11-tab-emoji {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  min-width: 50px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.s11-tab-emoji img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  display: block;
}

.s11-tab-label {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(13px, 1.3vw, 14px);
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #21514B;
}

.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);
}

.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 BAR --- */
.s11-bar {
  flex: 1;
  display: flex;
  align-items: center;
  background: #ffffff;
  position: relative;
  z-index: 10;
  box-shadow:
    inset 1px 1px 0 rgba(255,255,255,0.25),
    inset -1px -1px 0 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);
}

.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;
}

/* --- SHADOW STRIPS --- */
.s11-shadow-strip {
  position: absolute;
  left: 28%;
  width: 180px;
  height: 30px;
  background: rgba(0, 0, 0, 0.12);
  transform: skewX(-25deg);
  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-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;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}

.s11-cta-btn:hover {
  background: #f0fdf7;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.s11-cta-btn svg {
  width: 18px;
  height: 18px;
}

.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);
}

/* ============================================================
   RESPONSIVE — MEDIUM (≤1050px)
   ============================================================ */
@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 (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  .s11-tech-section {
    padding: clamp(50px, 8vw, 80px) 10px;
  }

  .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-cta-btn {
    padding: 14px 32px;
    font-size: clamp(13px, 3.5vw, 15px);
  }
}

/* ============================================================
   RESPONSIVE — SMALL PHONES (≤440px)
   ============================================================ */
@media (max-width: 440px) {
  .s11-tech-section {
    padding: 40px 8px;
  }

  .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;
  }
}

/* ============================================================
   PRINT
   ============================================================ */
@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-bar {
    box-shadow: none !important;
    border: 1px solid #ccc;
    break-inside: avoid;
  }

  .s11-skew-tab {
    box-shadow: none !important;
    border: 1px solid #ccc;
  }
}


/* ================================ */
/*   SECTION 12 CSS
/* ================================ */

.s12-results-section {
  position: relative;
  width: 100%;
  padding: clamp(60px, 8vw, 110px) 16px;
  background: #ffffff;
  overflow: hidden;
  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;
}

/* ======================== */
/*     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);
  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%);
}

/* Card Header */
.s12-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(18px, 2.5vw, 24px);
}

.s12-card-header img {
  flex-shrink: 0;
}

.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 */
.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,
.s12-badge-icon-up {
  color: #57BA91;
}

/* ======================== */
/*     CALLOUT BOX          */
/* ======================== */
.s12-callout {
  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-inner {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 28px);
  position: relative;
}

.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);
  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-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;
  opacity: 0.15;
}

.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;
}

/* Avatar */
.s12-author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.s12-author-avatar img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}

.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;
}

/* ======================== */
/*     CTA AREA             */
/* ======================== */
.s12-cta-area {
  text-align: center;
  position: relative;
}

.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;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 4px 18px rgba(33, 81, 75, 0.25);
}

.s12-cta-btn:hover {
  box-shadow: 0 8px 30px rgba(33, 81, 75, 0.35);
}

.s12-cta-btn:focus-visible {
  outline: 3px solid #21514B;
  outline-offset: 4px;
}

.s12-cta-sub {
  display: block;
  margin-top: 14px;
  font-size: clamp(11px, 1.2vmin, 13px);
  color: #9ca3af;
}

/* ================================ */
/*   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);
  }
}

/* ================================ */
/*   PRINT STYLES                   */
/* ================================ */
@media print {
  .s12-results-section {
    padding: 20px;
  }

  .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;
  }

  .s12-callout p,
  .s12-callout strong {
    color: #000 !important;
  }
}


/* ================================ */
/*  SECTION 13 - SPECIALTIES        */
/*  Performance Optimized           */
/* ================================ */

.s13-specialties-section {
  position: relative;
  width: 100%;
  padding: clamp(60px, 8vw, 110px) 16px;
  background: linear-gradient(90deg, #21514B 0%, #57BA91 100%);
  overflow-x: clip;
  font-family: 'Poppins', sans-serif;
}

.s13-specialties-section *,
.s13-specialties-section *::before,
.s13-specialties-section *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 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;
}

/* Gradient overlay — hidden by default, shown on hover */
.s13-cell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #21514B 0%, #57BA91 100%);
  opacity: 0;
  z-index: 0;
}

.s13-cell:hover {
  box-shadow: 0 14px 36px -8px rgba(33, 81, 75, 0.25),
              0 6px 16px -4px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.s13-cell:hover::before {
  opacity: 1;
}

/* Icon */
.s13-cell-emoji {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  position: relative;
  z-index: 2;
  min-width: 40px;
  min-height: 40px;
}

.cell-icon {
  width: 50px;
  height: 50px;
  display: block;
  filter: brightness(2);
}

.s13-cell:hover .cell-icon {
  filter: brightness(0) invert(1);
}

/* 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;
}

.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;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
}

.s13-cta-btn:hover {
  background: #f0fdf7;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.s13-cta-btn:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 4px;
}

.s13-cta-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.s13-cta-sub {
  display: block;
  margin-top: 14px;
  font-size: clamp(10px, 1.2vmin, 12px);
  color: rgba(255, 255, 255, 0.4);
}

/* ================================ */
/*   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 {
    min-width: 34px;
    min-height: 34px;
  }

  .cell-icon {
    width: 34px;
    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 {
    min-width: 30px;
    min-height: 30px;
  }

  .cell-icon {
    width: 30px;
    height: 30px;
  }

  .s13-header h2 {
    font-size: clamp(20px, 6vw, 28px);
  }

  .s13-header p {
    font-size: clamp(12px, 3.2vw, 14px);
  }
}

/* ================================ */
/*   PRINT STYLES                   */
/* ================================ */
@media print {
  .s13-specialties-section {
    background: #f3f4f6 !important;
    padding: 20px;
  }

  .s13-header h2,
  .s13-header p,
  .s13-cell-name,
  .s13-note p {
    color: #000 !important;
  }

  .s13-cell {
    background: #fff !important;
    border: 1px solid #ccc;
    break-inside: avoid;
  }

  .s13-grid-wrap {
    border-color: #ccc;
  }
}

/* ================================ */
/*   SECTION 14 - FAQ              */
/*   Performance Optimized         */
/* ================================ */

.s14-faq-section {
  position: relative;
  width: 100%;
  padding: clamp(60px, 8vw, 110px) 16px;
  background: #ffffff;
  overflow-x: clip;
  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;
}

/* ======================== */
/*     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);
  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);
}

.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;
  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;
}

.s14-toggle-icon {
  width: 12px;
  height: 12px;
  position: relative;
}

.s14-toggle-icon::before,
.s14-toggle-icon::after {
  content: "";
  position: absolute;
  background: #6b7280;
  border-radius: 2px;
}

.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;
}

/* Answer */
.s14-answer {
  max-height: 0;
  overflow: hidden;
  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);
  background: linear-gradient(to right, #21514B, #57BA91);
  border-radius: 16px;
}

.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: #ffffff;
  color: #21514B;
  font-size: clamp(13px, 1.6vmin, 16px);
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 4px 18px rgba(33, 81, 75, 0.2);
}

.s14-cta-btn:hover {
  background: #f0fdf7;
}

.s14-cta-btn:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 4px;
}

/* ================================ */
/*   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;
  }
}

/* ================================ */
/*   PRINT STYLES                  */
/* ================================ */
@media print {
  .s14-faq-section {
    padding: 20px;
  }

  .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;
  }
}

/* ================================ */
/*   SECTION 15 - CTA              */
/*   Performance Optimized         */
/* ================================ */

.s15-cta-section {
  position: relative;
  width: 100%;
  padding: clamp(70px, 10vw, 130px) 16px;
  background: #ffffff;
  overflow-x: clip;
  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;
}

.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;
  box-shadow: 0 6px 28px rgba(40, 94, 87, 0.25);
}

.s15-btn-primary:hover {
  box-shadow: 0 12px 40px rgba(40, 94, 87, 0.35);
}

.s15-btn-primary:focus-visible {
  outline: 3px solid #4eb58c;
  outline-offset: 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;
}

.s15-btn-secondary:hover {
  background: linear-gradient(135deg, #285e57 0%, #4eb58c 100%);
  color: #ffffff;
  border-color: transparent;
}

.s15-btn-secondary:focus-visible {
  outline: 3px solid #4eb58c;
  outline-offset: 4px;
}

/* ═══════════════════════
   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;
}

.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;
}

.s15-contact-icon svg {
  stroke: #4eb58c;
}

.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;
}

/* 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;
}

.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 {
  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;
}

/* ═══════════════════════
   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;
  }
}

@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;
  }
}

/* ═══════════════════════
   PRINT STYLES
   ═══════════════════════ */

@media print {
  .s15-cta-section {
    padding: 30px;
    background: #fff !important;
  }

  .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;
  }
}