/* ===== Section 1 Critical CSS — Inlined ===== */
/* Hero Section Styles - Optimized */
.hero-section {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    background-color: #ffffff;
    position: relative;
    overflow: visible;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.hero-section *,
.hero-section *::before,
.hero-section *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: inherit;
}

html {
    scroll-behavior: smooth;
}

/* Container */
.hero-section .hero-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 60px 40px 0;
    position: relative;
}

/* Grid */
.hero-section .hero-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 30px;
    align-items: end;
    position: relative;
}

/* Left Column */
.hero-section .hero-left {
    padding-top: 20px;
    padding-bottom: 25px;
    position: relative;
    z-index: 10;
}

.hero-section .hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    background: linear-gradient(135deg, #57BA91, #21514B);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 22px;
    white-space: nowrap;
}

/* H1 */
.hero-section .hero-h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a2e;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    max-width: none;
}

.hero-section .hero-h1 .hero-highlight { color: #57BA91; }
.hero-section .hero-h1 .hero-highlight-alt { color: #21514B; }
.hero-section .hero-h1 .h1-line {
    display: inline-block;
    white-space: nowrap;
}

.h1-break { display: block; }

.hero-section .hero-subheadline {
    font-size: 15px;
    line-height: 1.75;
    color: #555555;
    margin-bottom: 18px;
    max-width: 560px;
}

/* CTAs */
.hero-section .hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 14px;
    margin-top: 6px;
}

.hero-section .hero-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #57BA91 0%, #21514B 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(87, 186, 145, 0.4);
    text-decoration: none;
}

.hero-section .hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(87, 186, 145, 0.55);
}

.hero-section .hero-btn-primary:focus-visible {
    outline: 2px solid #57BA91;
    outline-offset: 3px;
}

.hero-section .hero-btn-primary .btn-arrow {
    transition: transform 0.3s ease;
    font-size: 18px;
}

.hero-section .hero-btn-primary:hover .btn-arrow {
    transform: translateX(3px);
}

.hero-section .hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: transparent;
    color: #21514B;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 32px;
    border: 2px solid #21514B;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.hero-section .hero-btn-secondary:hover {
    background: #21514B;
    color: #ffffff;
    transform: translateY(-2px);
}

.hero-section .hero-btn-secondary:focus-visible {
    outline: 2px solid #21514B;
    outline-offset: 3px;
}

/* Social Proof */
.hero-section .hero-social-proof {
    font-size: 13.5px;
    color: #777777;
    font-weight: 500;
    margin-top: 4px;
    margin-bottom: 20px;
}

.hero-section .hero-social-proof strong {
    color: #21514B;
    font-weight: 700;
}

/* Right Column */
.hero-section .hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 5;
    overflow: visible;
}

.hero-section .hero-visual-anchor {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-section .hero-circle-placeholder {
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: linear-gradient(180deg, #57BA91 0%, #21514B 100%);
    box-shadow: 0 20px 60px rgba(33, 81, 75, 0.3);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    margin-bottom: 55px;
}

.hero-section .hero-image-area {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    height: 490px;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
}

.hero-section .hero-image-area img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.15));
    pointer-events: auto;
    transform: scale(1.15);
    transform-origin: bottom center;
}

/* Floating Badges */
.hero-section .hero-floating-badges {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
}

.hero-section .hero-floating-badge {
    background: #ffffff;
    border-radius: 12px;
    padding: 11px 16px;
    font-size: 12.5px;
    font-weight: 600;
    color: #21514B;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(87, 186, 145, 0.15);
    box-shadow: 4px 0 12px rgba(33, 81, 75, 0.08), 0 4px 14px rgba(33, 81, 75, 0.12), 3px 3px 10px rgba(0, 0, 0, 0.04);
}

.hero-section .hero-floating-badge:hover {
    transform: translateX(5px);
    box-shadow: 6px 0 18px rgba(33, 81, 75, 0.12), 0 6px 20px rgba(33, 81, 75, 0.16), 4px 4px 14px rgba(0, 0, 0, 0.06);
}

.hero-section .hero-floating-badge .badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #57BA91, #21514B);
    color: #ffffff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

/* CTA Strip */
.hero-section .hero-cta-strip-wrapper {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 20;
    margin-top: -20px;
    margin-bottom: 50px;
}

.hero-section .hero-cta-strip {
    background: linear-gradient(to right, #21514B, #57BA91);
    border-radius: 18px;
    padding: 34px 40px;
    position: relative;
    border: 1px solid rgba(33, 81, 75, 0.06);
    box-shadow: 5px 0 20px rgba(33, 81, 75, 0.08), 0 8px 30px rgba(33, 81, 75, 0.14), 4px 6px 18px rgba(0, 0, 0, 0.04);
}

.hero-section .hero-cta-strip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr auto;
    gap: 18px;
    align-items: end;
}

.hero-section .hero-form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
    position: relative;
}

.hero-section .hero-form-label {
    font-size: 11px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-section .hero-form-input {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid #e2e2e2;
    border-radius: 12px;
    background: #f9fafb;
    color: #1a1a2e;
    font-size: 14px;
    font-weight: 500;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    outline: none;
    height: 48px;
    font-family: inherit;
}

.hero-section .hero-form-input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.hero-section .hero-form-input:focus,
.hero-section .hero-form-input.input-active {
    border-color: #57BA91;
    background: #f0fdf8;
    box-shadow: 0 0 0 3px rgba(87, 186, 145, 0.12);
}

.hero-section .hero-form-input.input-error {
    border-color: #ef4444;
    background: #fef2f2;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.hero-section .hero-phone-error {
    font-size: 11px;
    color: #fecaca;
    display: none;
    font-weight: 500;
    position: absolute;
    bottom: -16px;
    left: 0;
}

.hero-section .hero-phone-error.visible { display: block; }

.hero-section .hero-form-submit-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-section .hero-form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #ffffff;
    color: #21514B;
    font-size: 15px;
    font-weight: 700;
    padding: 13px 32px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    height: 48px;
    font-family: inherit;
}

.hero-section .hero-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
    background: #21514B;
    color: #ffffff;
}

.hero-section .hero-form-submit:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

.hero-section .hero-form-submit .submit-arrow {
    transition: transform 0.3s ease;
    font-size: 16px;
}

.hero-section .hero-form-submit:hover .submit-arrow {
    transform: translateX(4px);
}

.hero-success-message {
    background: #dcfce7;
    border: 1px solid #86efac;
    color: #065f46;
    padding: 16px 20px;
    border-radius: 12px;
    margin-top: 20px;
    text-align: center;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Ultra Wide - 2560px+ */
@media (min-width: 2560px) {
    .hero-section .hero-container,
    .hero-section .hero-cta-strip-wrapper { max-width: 1500px; }
    .hero-section .hero-container { padding: 70px 50px 0; }
    .hero-section .hero-cta-strip-wrapper { padding: 0 50px; margin-top: -22px; }
    .hero-section .hero-h1 { font-size: 50px; }
    .hero-section .hero-subheadline { font-size: 17px; max-width: 640px; }
    .hero-section .hero-circle-placeholder { width: 420px; height: 420px; margin-bottom: 65px; }
    .hero-section .hero-image-area { width: 380px; height: 560px; }
    .hero-section .hero-image-area img { transform: scale(1.12); }
    .hero-section .hero-floating-badge { font-size: 14px; padding: 13px 20px; }
    .hero-section .hero-floating-badge .badge-icon { width: 28px; height: 28px; font-size: 14px; }
    .hero-section .hero-social-proof { margin-bottom: 22px; }
}

/* Large Desktop - 1920-2559px */
@media (min-width: 1920px) and (max-width: 2559px) {
    .hero-section .hero-container,
    .hero-section .hero-cta-strip-wrapper { max-width: 1440px; }
    .hero-section .hero-container { padding: 65px 46px 0; }
    .hero-section .hero-cta-strip-wrapper { padding: 0 46px; margin-top: -20px; }
    .hero-section .hero-h1 { font-size: 48px; }
    .hero-section .hero-subheadline { font-size: 16px; max-width: 600px; }
    .hero-section .hero-circle-placeholder { width: 400px; height: 400px; margin-bottom: 62px; }
    .hero-section .hero-image-area { width: 360px; height: 540px; }
    .hero-section .hero-image-area img { transform: scale(1.12); }
    .hero-section .hero-social-proof { margin-bottom: 22px; }
}

/* Standard Desktop - 1440-1919px */
@media (min-width: 1440px) and (max-width: 1919px) {
    .hero-section .hero-container,
    .hero-section .hero-cta-strip-wrapper { max-width: 1360px; }
    .hero-section .hero-cta-strip-wrapper { margin-top: -18px; }
    .hero-section .hero-h1 { font-size: 44px; }
    .hero-section .hero-circle-placeholder { width: 380px; height: 380px; margin-bottom: 58px; }
    .hero-section .hero-image-area { width: 340px; height: 510px; }
    .hero-section .hero-image-area img { transform: scale(1.15); }
    .hero-section .hero-social-proof { margin-bottom: 20px; }
}

/* Medium Desktop - 1200-1439px */
@media (min-width: 1200px) and (max-width: 1439px) {
    .hero-section .hero-container { padding: 50px 36px 0; max-width: 1280px; }
    .hero-section .hero-cta-strip-wrapper { max-width: 1280px; padding: 0 36px; margin-top: -18px; }
    .hero-section .hero-h1 { font-size: 40px; }
    .hero-section .hero-subheadline { font-size: 14.5px; max-width: 520px; }
    .hero-section .hero-circle-placeholder { width: 355px; height: 355px; margin-bottom: 55px; }
    .hero-section .hero-image-area { width: 320px; height: 480px; }
    .hero-section .hero-image-area img { transform: scale(1.22); }
    .hero-section .hero-floating-badges { left: -10px; }
    .hero-section .hero-floating-badge { font-size: 11.5px; padding: 9px 14px; }
    .hero-section .hero-floating-badge .badge-icon { width: 22px; height: 22px; font-size: 11px; }
    .hero-section .hero-social-proof { margin-bottom: 20px; }
}

/* Desktop - Doctor Image Bigger */
@media (min-width: 1200px) {
    .hero-section .hero-circle-placeholder { width: 500px; height: 500px; margin-bottom: 80px; }
    .hero-section .hero-image-area { width: 460px; height: 680px; }
    .hero-section .hero-image-area img { transform: scale(1.13); }
}

/* Small Desktop/Laptop - 1024-1199px */
@media (min-width: 1024px) and (max-width: 1199px) {
    .hero-section .hero-container { padding: 40px 28px 0; max-width: 1120px; }
    .hero-section .hero-cta-strip-wrapper { max-width: 1120px; padding: 0 28px; margin-top: -15px; }
    .hero-section .hero-grid { grid-template-columns: 56% 44%; gap: 20px; }
    .hero-section .hero-h1 { font-size: 34px; }
    .hero-section .hero-subheadline { font-size: 13.5px; margin-bottom: 14px; max-width: 460px; }
    .hero-section .hero-badge { font-size: 10px; padding: 5px 14px; }
    .hero-section .hero-left { padding-bottom: 22px; }
    .hero-section .hero-btn-primary,
    .hero-section .hero-btn-secondary { font-size: 13.5px; padding: 12px 24px; }
    .hero-section .hero-social-proof { font-size: 12.5px; margin-bottom: 18px; }
    .hero-section .hero-circle-placeholder { width: 310px; height: 310px; margin-bottom: 48px; }
    .hero-section .hero-image-area { width: 280px; height: 430px; }
    .hero-section .hero-image-area img { transform: scale(1.18); }
    .hero-section .hero-floating-badges { left: -15px; gap: 10px; }
    .hero-section .hero-floating-badge { font-size: 10.5px; padding: 8px 12px; gap: 7px; }
    .hero-section .hero-floating-badge .badge-icon { width: 20px; height: 20px; font-size: 10px; }
    .hero-section .hero-cta-strip { padding: 28px; }
    .hero-section .hero-cta-strip-inner { gap: 12px; }
    .hero-section .hero-form-input { padding: 11px 14px; font-size: 13px; height: 44px; }
    .hero-section .hero-form-label { font-size: 10px; }
    .hero-section .hero-form-submit { font-size: 13.5px; padding: 11px 24px; height: 44px; }
}

/* Tablet Landscape - 992-1023px */
@media (min-width: 992px) and (max-width: 1023px) {
    .hero-section .hero-container { padding: 36px 24px 0; max-width: 1020px; }
    .hero-section .hero-cta-strip-wrapper { max-width: 1020px; padding: 0 24px; margin-top: -12px; }
    .hero-section .hero-grid { grid-template-columns: 58% 42%; gap: 16px; }
    .hero-section .hero-h1 { font-size: 30px; }
    .hero-section .hero-subheadline { font-size: 13px; margin-bottom: 12px; max-width: 400px; }
    .hero-section .hero-badge { font-size: 9px; padding: 5px 12px; letter-spacing: 2px; margin-bottom: 16px; }
    .hero-section .hero-left { padding-top: 10px; padding-bottom: 20px; }
    .hero-section .hero-btn-primary,
    .hero-section .hero-btn-secondary { font-size: 13px; padding: 11px 20px; }
    .hero-section .hero-ctas { margin-bottom: 12px; }
    .hero-section .hero-social-proof { font-size: 12px; margin-bottom: 18px; }
    .hero-section .hero-circle-placeholder { width: 270px; height: 270px; margin-bottom: 42px; }
    .hero-section .hero-image-area { width: 245px; height: 380px; }
    .hero-section .hero-image-area img { transform: scale(1.18); }
    .hero-section .hero-floating-badges { left: -20px; gap: 8px; }
    .hero-section .hero-floating-badge { font-size: 10px; padding: 7px 10px; gap: 6px; border-radius: 10px; }
    .hero-section .hero-floating-badge .badge-icon { width: 18px; height: 18px; font-size: 9px; }
    .hero-section .hero-cta-strip { padding: 24px 22px; border-radius: 14px; }
    .hero-section .hero-cta-strip-inner { grid-template-columns: 1fr 1fr; gap: 12px; }
    .hero-section .hero-form-submit-wrapper { grid-column: 1 / -1; justify-content: center; }
    .hero-section .hero-form-input { padding: 10px 12px; font-size: 13px; height: 42px; }
    .hero-section .hero-form-label { font-size: 10px; }
    .hero-section .hero-form-submit { font-size: 13px; padding: 10px 22px; height: 42px; }
}

/* Below 992px - Hide right column */
@media (max-width: 991px) {
    .hero-section .hero-right { display: none; }
    .hero-section .hero-grid { grid-template-columns: 1fr; gap: 0; }
    .hero-section .hero-h1 { max-width: 100%; }
    .hero-section .hero-left {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-bottom: 16px;
    }
    .hero-section .hero-subheadline { max-width: 620px; text-align: center; }
    .hero-section .hero-ctas { justify-content: center; }
    .hero-section .hero-social-proof { text-align: center; margin-bottom: 0; }
    .hero-section .hero-cta-strip-wrapper { margin-top: 16px; }
    .h1-break { display: none; }
    .hero-section .hero-h1 .h1-line { white-space: normal; display: inline; }
}

/* Tablet Portrait - 768-991px */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-section .hero-container { padding: 36px 28px 0; }
    .hero-section .hero-cta-strip-wrapper { padding: 0 28px; margin-bottom: 40px; }
    .hero-section .hero-h1 { font-size: 32px; }
    .hero-section .hero-subheadline { font-size: 14px; }
    .hero-section .hero-cta-strip { padding: 28px 26px; }
    .hero-section .hero-cta-strip-inner { grid-template-columns: 1fr 1fr; gap: 14px; }
    .hero-section .hero-form-submit-wrapper { grid-column: 1 / -1; justify-content: center; margin-top: 4px; }
    .hero-section .hero-form-submit { width: auto; min-width: 200px; }
}

/* Mobile Landscape - 576-767px */
@media (min-width: 576px) and (max-width: 767px) {
    .hero-section .hero-container { padding: 30px 20px 0; }
    .hero-section .hero-h1 { font-size: 27px; line-height: 1.25; }
    .hero-section .hero-subheadline { font-size: 13.5px; line-height: 1.65; }
    .hero-section .hero-ctas {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        align-items: center;
    }
    .hero-section .hero-btn-primary,
    .hero-section .hero-btn-secondary { width: 100%; padding: 14px 24px; justify-content: center; }
    .hero-section .hero-cta-strip-wrapper { padding: 0 20px; margin-bottom: 32px; }
    .hero-section .hero-cta-strip { padding: 24px 20px; border-radius: 14px; }
    .hero-section .hero-cta-strip-inner { grid-template-columns: 1fr 1fr; gap: 12px; }
    .hero-section .hero-form-submit-wrapper { grid-column: 1 / -1; justify-content: center; margin-top: 4px; }
    .hero-section .hero-form-submit { width: auto; min-width: 190px; }
}

/* Small Mobile - 481-575px */
@media (min-width: 481px) and (max-width: 575px) {
    .hero-section .hero-container { padding: 26px 16px 0; }
    .hero-section .hero-h1 { font-size: 24px; line-height: 1.25; }
    .hero-section .hero-badge { font-size: 10px; padding: 5px 14px; letter-spacing: 2px; }
    .hero-section .hero-subheadline { font-size: 13px; margin-bottom: 16px; }
    .hero-section .hero-ctas {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        align-items: center;
        gap: 12px;
    }
    .hero-section .hero-btn-primary,
    .hero-section .hero-btn-secondary { width: 100%; padding: 13px 20px; font-size: 14px; }
    .hero-section .hero-cta-strip-wrapper { padding: 0 14px; margin-bottom: 28px; }
    .hero-section .hero-cta-strip { padding: 22px 18px; border-radius: 12px; }
    .hero-section .hero-cta-strip-inner { grid-template-columns: 1fr; gap: 12px; }
    .hero-section .hero-form-input { padding: 12px 14px; font-size: 13px; height: 46px; }
    .hero-section .hero-form-label { font-size: 10px; }
    .hero-section .hero-form-submit-wrapper { justify-content: center; margin-top: 4px; }
    .hero-section .hero-form-submit { min-width: 170px; font-size: 14px; height: 46px; }
}

/* Mobile - 381-480px */
@media (min-width: 381px) and (max-width: 480px) {
    .hero-section .hero-container { padding: 24px 12px 0; }
    .hero-section .hero-h1 { font-size: 22px; }
    .hero-section .hero-badge { font-size: 9px; padding: 5px 12px; }
    .hero-section .hero-subheadline { font-size: 12.5px; margin-bottom: 14px; }
    .hero-section .hero-ctas { flex-direction: column; width: 100%; max-width: 260px; gap: 10px; }
    .hero-section .hero-btn-primary,
    .hero-section .hero-btn-secondary { width: 100%; padding: 12px 18px; font-size: 13.5px; }
    .hero-section .hero-cta-strip-wrapper { padding: 0 10px; margin-bottom: 80px; width: 100%; }
    .hero-section .hero-cta-strip { padding: 18px 14px; border-radius: 12px; width: 100%; }
    .hero-section .hero-cta-strip-inner { grid-template-columns: 1fr; gap: 10px; }
    .hero-section .hero-form-input { padding: 11px 13px; font-size: 13px; height: 44px; }
    .hero-section .hero-form-label { font-size: 10px; }
    .hero-section .hero-form-submit { min-width: 160px; font-size: 13.5px; height: 44px; padding: 11px 22px; }
}

/* Extra Small - 0-380px */
@media (max-width: 380px) {
    .hero-section .hero-container { padding: 20px 10px 0; }
    .hero-section .hero-h1 { font-size: 19px; line-height: 1.2; }
    .hero-section .hero-badge { font-size: 8px; padding: 4px 10px; margin-bottom: 14px; }
    .hero-section .hero-subheadline { font-size: 11.5px; margin-bottom: 10px; line-height: 1.6; }
    .hero-section .hero-ctas { max-width: 100%; gap: 8px; width: calc(100% - 20px); }
    .hero-section .hero-btn-primary,
    .hero-section .hero-btn-secondary { padding: 11px 16px; font-size: 12.5px; width: 100%; }
    .hero-section .hero-social-proof { font-size: 11.5px; }
    .hero-section .hero-cta-strip-wrapper { padding: 0 8px; margin-bottom: 90px; width: 100%; position: relative; z-index: 15; }
    .hero-section .hero-cta-strip { padding: 16px 12px; border-radius: 10px; width: 100%; }
    .hero-section .hero-cta-strip-inner { grid-template-columns: 1fr; gap: 8px; }
    .hero-section .hero-form-group { gap: 5px; }
    .hero-section .hero-form-input { padding: 10px 12px; font-size: 12.5px; height: 42px; border-radius: 10px; }
    .hero-section .hero-form-label { font-size: 9px; letter-spacing: 0.5px; }
    .hero-section .hero-form-submit { min-width: 140px; font-size: 12.5px; height: 42px; padding: 10px 18px; margin-top: 4px; }
    .hero-section .hero-phone-error { font-size: 10px; }
}

/* 320px */
@media (max-width: 330px) {
    .hero-section .hero-container { padding: 18px 8px 0; }
    .hero-section .hero-h1 { font-size: 17px; margin-bottom: 14px; }
    .hero-section .hero-badge { font-size: 7px; padding: 4px 8px; margin-bottom: 12px; }
    .hero-section .hero-subheadline { font-size: 11px; margin-bottom: 8px; line-height: 1.5; }
    .hero-section .hero-ctas { gap: 6px; width: calc(100% - 16px); }
    .hero-section .hero-btn-primary,
    .hero-section .hero-btn-secondary { padding: 10px 14px; font-size: 12px; }
    .hero-section .hero-social-proof { font-size: 10.5px; }
    .hero-section .hero-cta-strip-wrapper { padding: 0 6px; margin-bottom: 95px; }
    .hero-section .hero-cta-strip { padding: 14px 10px; border-radius: 8px; }
    .hero-section .hero-cta-strip-inner { gap: 6px; }
    .hero-section .hero-form-input { padding: 9px 10px; font-size: 12px; height: 40px; }
    .hero-section .hero-form-label { font-size: 8.5px; }
    .hero-section .hero-form-submit { min-width: 130px; font-size: 12px; height: 40px; padding: 9px 16px; }
}
/* ===== Section 2 Critical CSS — Inlined ===== */
/* Pain Points Section - Optimized */
.s2-hex-content img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    display: block;
    margin: 10px auto;
    color: #21514B;
}

.pain-section {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.pain-section *,
.pain-section *::before,
.pain-section *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: inherit;
}

/* Decorative Background */
.pain-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(87,186,145,0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.pain-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(33,81,75,0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Section Wrapper */
.pain-section .s2-wrapper {
    position: relative;
    max-width: 1320px;
    margin: 0 auto;
    width: 100%;
    z-index: 1;
    padding: 70px 40px 0;
}

/* Section Header */
.pain-section .s2-header {
    text-align: center;
    margin-bottom: 50px;
}

.pain-section .s2-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(87,186,145,0.12);
    border: 1px solid rgba(87,186,145,0.25);
    color: #21514B;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.pain-section .s2-eyebrow .s2-eyebrow-icon {
    color: #dc3545;
    font-size: 13px;
    animation: s2-pulse 2s ease-in-out infinite;
}

@keyframes s2-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.pain-section .s2-title {
    font-size: 42px;
    font-weight: 800;
    color: #21514B;
    line-height: 1.15;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.pain-section .s2-title .s2-highlight {
    color: #dc3545;
}

.pain-section .s2-subtitle {
    font-size: 16px;
    color: #656565;
    font-weight: 500;
    max-width: 720px;
    margin: 0 auto 10px;
    line-height: 1.65;
}

.pain-section .s2-subtitle-second {
    font-size: 16px;
    color: #656565;
    font-weight: 500;
    max-width: 720px;
    margin: 0 auto 20px;
    line-height: 1.65;
    text-align: center;
}

.pain-section .s2-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #21514B, #57BA91);
    margin: 0 auto;
    border-radius: 2px;
}

/* Hexagon Container */
.pain-section .s2-hex-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.pain-section .s2-floating-card {
    position: absolute;
    width: min(1100px, calc(100% - 40px));
    height: 340px;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 20px;
    border: 1px solid rgba(87,186,145,0.3);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02), 0 10px 20px rgba(0,0,0,0.04), 0 20px 40px rgba(0,0,0,0.03);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.pain-section .s2-honeycomb {
    position: relative;
    width: 1020px;
    height: 560px;
    z-index: 2;
    transform: scale(1.05);
    transform-origin: center center;
}

/* Hexagon Cards */
.pain-section .s2-hex {
    position: absolute;
    width: 270px;
    height: 312px;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.pain-section.s2-visible .s2-hex {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.pain-section .s2-hex-1 { top: 0; left: 200px; }
.pain-section .s2-hex-2 { top: 0; left: 550px; }
.pain-section .s2-hex-3 { top: 248px; left: 25px; }
.pain-section .s2-hex-4 { top: 248px; left: 375px; }
.pain-section .s2-hex-5 { top: 248px; left: 725px; }

.pain-section.s2-visible .s2-hex-1 { transition-delay: 0.1s; }
.pain-section.s2-visible .s2-hex-2 { transition-delay: 0.2s; }
.pain-section.s2-visible .s2-hex-3 { transition-delay: 0.3s; }
.pain-section.s2-visible .s2-hex-4 { transition-delay: 0.4s; }
.pain-section.s2-visible .s2-hex-5 { transition-delay: 0.5s; }

.pain-section .s2-hex-outline {
    position: absolute;
    top: 0;
    left: 0;
    filter: drop-shadow(0 4px 8px rgba(33,81,75,0.1));
}

.pain-section .s2-hex-outline polygon {
    transition: stroke 0.3s ease, stroke-width 0.3s ease;
}

.pain-section .s2-hex:hover .s2-hex-outline polygon {
    stroke: #dc3545;
    stroke-width: 4;
}

.pain-section .s2-hex-white {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 10px 25px rgba(33,81,75,0.15));
    transition: filter 0.3s ease;
}

.pain-section .s2-hex:hover .s2-hex-white {
    filter: drop-shadow(0 15px 35px rgba(33,81,75,0.22));
}

.pain-section .s2-hex-white polygon {
    fill: #ffffff;
    stroke: rgba(0,0,0,0.03);
    stroke-width: 1;
}

/* Hexagon Content */
.pain-section .s2-hex-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 165px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 10;
    padding: 8px;
}

.pain-section .s2-hex-stat {
    display: inline-block;
    color: #dc3545;
    font-size: 9.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    background: rgba(220,53,69,0.08);
    padding: 3px 8px;
    border-radius: 12px;
    border: 1px solid rgba(220,53,69,0.15);
    line-height: 1.3;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), margin-bottom 0.4s ease;
    transform-origin: center center;
}

.pain-section .s2-hex-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #21514B 0%, #57BA91 100%);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    box-shadow: 0 6px 16px rgba(33,81,75,0.2);
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), margin-bottom 0.4s ease;
    transform-origin: center center;
}

.pain-section .s2-hex-icon i {
    font-size: 20px;
    color: #ffffff;
}

.pain-section .s2-hex-title {
    font-size: 11.5px;
    font-weight: 800;
    color: #1a3c36;
    line-height: 1.2;
    margin-bottom: 6px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), margin-bottom 0.4s ease;
    transform-origin: center center;
}

.pain-section .s2-hex-desc {
    font-size: 9.5px;
    font-weight: 500;
    color: #5a6a68;
    line-height: 1.35;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center center;
}

.pain-section .s2-hex:hover .s2-hex-stat {
    transform: scale(1.06);
    margin-bottom: 8px;
}

.pain-section .s2-hex:hover .s2-hex-icon {
    transform: scale(1.08);
    margin-bottom: 12px;
}

.pain-section .s2-hex:hover .s2-hex-title {
    transform: scale(1.05);
    margin-bottom: 8px;
}

.pain-section .s2-hex:hover .s2-hex-desc {
    transform: scale(1.04);
}

/* Transition Line */
.pain-section .s2-transition-line {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1) 0.65s, transform 0.7s cubic-bezier(0.4,0,0.2,1) 0.65s;
}

.pain-section.s2-visible .s2-transition-line {
    opacity: 1;
    transform: translateY(0);
}

.pain-section .s2-transition-text {
    font-size: 17px;
    font-weight: 600;
    color: #21514B;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-style: italic;
}

/* Trust Bar */
.pain-section .s2-trust-wrapper {
    max-width: 1320px;
    margin: 0 auto;
    padding: 50px 40px 0;
    position: relative;
    z-index: 2;
}

.pain-section .s2-trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

/* Trust Card */
.pain-section .s2-trust-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    cursor: default;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(33,81,75,0.06), 0 2px 4px rgba(0,0,0,0.02);
    border: 1px solid rgba(87,186,145,0.12);
    z-index: 1;
    opacity: 0;
    transform: translateY(25px);
}

.pain-section .s2-trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(33,81,75,0.12), 0 4px 8px rgba(0,0,0,0.04);
}

.pain-section.s2-visible .s2-trust-card {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}

.pain-section.s2-visible .s2-trust-card:nth-child(1) { transition-delay: 0.7s; }
.pain-section.s2-visible .s2-trust-card:nth-child(2) { transition-delay: 0.8s; }
.pain-section.s2-visible .s2-trust-card:nth-child(3) { transition-delay: 0.9s; }
.pain-section.s2-visible .s2-trust-card:nth-child(4) { transition-delay: 1.0s; }
.pain-section.s2-visible .s2-trust-card:nth-child(5) { transition-delay: 1.1s; }

/* Animated Border - CSS Only (no extra DOM) */
.pain-section .s2-trust-card .s2-border-anim {
    position: absolute;
    inset: -2px;
    border-radius: 14px;
    pointer-events: none;
    z-index: -1;
    background: linear-gradient(90deg, transparent 50%, #57BA91 50%) right / 300% 100% no-repeat;
    transition: background-position 0.4s ease;
}

.pain-section .s2-trust-card:hover .s2-border-anim {
    background-position: left;
}

.pain-section .s2-trust-card .s2-border-anim::before {
    content: '';
    position: absolute;
    inset: 2px;
    background: #ffffff;
    border-radius: 12px;
}

.pain-section .s2-trust-number {
    font-size: 38px;
    font-weight: 800;
    color: #57BA91;
    line-height: 1;
    margin-bottom: 6px;
    position: relative;
    z-index: 2;
}

.pain-section .s2-trust-number .s2-upto-text {
    font-size: 16px;
    font-weight: 600;
    color: #888888;
    margin-right: 4px;
}

.pain-section .s2-trust-number .s2-count-num {
    color: #57BA91;
    font-weight: 800;
}

.pain-section .s2-trust-label {
    font-size: 13px;
    font-weight: 700;
    color: #1a3c36;
    margin-bottom: 4px;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.pain-section .s2-trust-sub {
    font-size: 11px;
    color: #656565;
    font-weight: 500;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

/* CTA Capsule */
.pain-section .s2-cta-wrapper {
    display: flex;
    justify-content: center;
    padding-bottom: 70px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 1.2s, transform 0.6s ease 1.2s;
}

.pain-section.s2-visible .s2-cta-wrapper {
    opacity: 1;
    transform: translateY(0);
}

.pain-section .s2-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #57BA91 0%, #21514B 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    padding: 15px 36px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 18px rgba(87,186,145,0.4);
    text-decoration: none;
}

.pain-section .s2-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(87,186,145,0.5);
}

.pain-section .s2-cta-btn:focus-visible {
    outline: 2px solid #57BA91;
    outline-offset: 3px;
}

.pain-section .s2-cta-btn .s2-cta-arrow {
    transition: transform 0.3s ease;
    font-size: 17px;
}

.pain-section .s2-cta-btn:hover .s2-cta-arrow {
    transform: translateX(4px);
}

/* Header Reveal */
.pain-section .s2-reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.pain-section.s2-visible .s2-reveal {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================================
   PREMIUM POPUP FORM STYLES
   ================================================================ */

.s2-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 60, 54, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.s2-popup-overlay.s2-popup-active {
    opacity: 1;
    visibility: visible;
}

.s2-popup-overlay.s2-popup-active .s2-popup-form {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.s2-popup-form {
    background: #ffffff;
    border-radius: 24px;
    width: 100%;
    max-width: 540px;
    max-height: 92vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.92) translateY(40px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255,255,255,0.1);
}

/* Premium Gradient Header */
.s2-popup-header {
    background: linear-gradient(135deg, #21514B 0%, #57BA91 100%);
    padding: 36px 32px 32px;
    border-radius: 24px 24px 0 0;
    position: relative;
    overflow: hidden;
}

.s2-popup-header::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -60px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.s2-popup-header::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.s2-popup-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    z-index: 10;
}

.s2-popup-close:hover {
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg);
}

.s2-popup-close:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

.s2-popup-close svg {
    width: 18px;
    height: 18px;
    stroke: #ffffff;
    stroke-width: 2.5;
}

.s2-popup-title {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.s2-popup-subtitle {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.55;
    position: relative;
    z-index: 1;
}

/* Solid White Form Body */
.s2-popup-body {
    background: #ffffff;
    padding: 32px 32px 36px;
}

.s2-form-row {
    margin-bottom: 22px;
}

.s2-form-row:last-child {
    margin-bottom: 0;
}

.s2-form-label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: #21514B;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.s2-form-label .s2-required {
    color: #dc3545;
    margin-left: 3px;
}

/* Premium Solid White Input Containers */
.s2-form-input {
    width: 100%;
    padding: 16px 20px;
    font-size: 15.5px;
    font-weight: 500;
    color: #1a3c36;
    background: #ffffff;
    border: 2px solid #e5ebe9;
    border-radius: 14px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.s2-form-input::placeholder {
    color: #a3b0ad;
    font-weight: 400;
}

.s2-form-input:hover {
    border-color: #57BA91;
}

.s2-form-input:focus {
    border-color: #57BA91;
    box-shadow: 0 0 0 5px rgba(87, 186, 145, 0.12);
}

.s2-phone-input {
    letter-spacing: 0.5px;
}

.s2-form-textarea {
    min-height: 115px;
    resize: vertical;
    line-height: 1.6;
}

/* Premium Submit Button */
.s2-form-submit {
    width: 100%;
    padding: 18px 32px;
    font-size: 16.5px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #1a3c36 0%, #2d5f56 50%, #3a7a6e 100%);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 30px rgba(26, 60, 54, 0.35);
    margin-top: 10px;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.s2-form-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

.s2-form-submit:hover::before {
    left: 100%;
}

.s2-form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(26, 60, 54, 0.45);
}

.s2-form-submit:focus-visible {
    outline: 3px solid #57BA91;
    outline-offset: 4px;
}

.s2-form-submit svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.s2-form-submit:hover svg {
    transform: translateX(5px);
}

.s2-form-note {
    text-align: center;
    font-size: 12.5px;
    color: #889593;
    margin-top: 18px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.s2-form-note svg {
    width: 15px;
    height: 15px;
    stroke: #57BA91;
    flex-shrink: 0;
}

/* Success Message */
.s2-form-success {
    text-align: center;
    padding: 40px 20px;
}

.s2-success-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #57BA91 0%, #21514B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffffff;
    margin: 0 auto 20px;
}

.s2-success-title {
    font-size: 24px;
    font-weight: 700;
    color: #21514B;
    margin-bottom: 10px;
}

.s2-success-text {
    font-size: 14px;
    color: #656565;
    line-height: 1.6;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (min-width: 2560px) {
    .pain-section .s2-wrapper { max-width: 1500px; padding: 80px 50px 0; }
    .pain-section .s2-trust-wrapper { max-width: 1500px; padding: 60px 50px 0; }
    .pain-section .s2-title { font-size: 50px; }
    .pain-section .s2-subtitle,
    .pain-section .s2-subtitle-second { font-size: 18px; max-width: 800px; }
    .pain-section .s2-honeycomb { transform: scale(1.15); }
    .pain-section .s2-floating-card { height: 380px; }
    .pain-section .s2-trust-number { font-size: 44px; }
    .pain-section .s2-trust-label { font-size: 14px; }
    .pain-section .s2-trust-card { padding: 36px 24px; }
    .pain-section .s2-hex-icon { width: 48px; height: 48px; }
    .pain-section .s2-hex-icon i { font-size: 22px; }
    .pain-section .s2-hex-content { width: 170px; }
    .s2-popup-form { max-width: 580px; }
    .s2-popup-header { padding: 42px 38px 38px; }
    .s2-popup-title { font-size: 32px; }
    .s2-popup-body { padding: 38px 38px 42px; }
}

@media (min-width: 1920px) and (max-width: 2559px) {
    .pain-section .s2-wrapper { max-width: 1440px; padding: 75px 46px 0; }
    .pain-section .s2-trust-wrapper { max-width: 1440px; padding: 55px 46px 0; }
    .pain-section .s2-title { font-size: 46px; }
    .pain-section .s2-honeycomb { transform: scale(1.1); }
    .pain-section .s2-floating-card { height: 360px; }
    .pain-section .s2-trust-number { font-size: 42px; }
}

@media (min-width: 1440px) and (max-width: 1919px) {
    .pain-section .s2-wrapper { max-width: 1360px; }
    .pain-section .s2-trust-wrapper { max-width: 1360px; }
    .pain-section .s2-title { font-size: 44px; }
    .pain-section .s2-honeycomb { transform: scale(1.05); }
    .pain-section .s2-floating-card { height: 340px; }
}

@media (min-width: 1200px) and (max-width: 1439px) {
    .pain-section .s2-wrapper { max-width: 1280px; padding: 60px 36px 0; }
    .pain-section .s2-trust-wrapper { max-width: 1280px; padding: 45px 36px 0; }
    .pain-section .s2-title { font-size: 40px; }
    .pain-section .s2-subtitle,
    .pain-section .s2-subtitle-second { font-size: 15px; }
    .pain-section .s2-honeycomb { transform: scale(0.95); }
    .pain-section .s2-floating-card { height: 320px; }
    .pain-section .s2-trust-number { font-size: 34px; }
    .pain-section .s2-trust-label { font-size: 12px; }
    .pain-section .s2-trust-card { padding: 26px 16px; }
    .pain-section .s2-trust-grid { gap: 16px; }
    .pain-section .s2-hex-content { width: 160px; }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .pain-section .s2-wrapper { max-width: 1120px; padding: 50px 28px 0; }
    .pain-section .s2-trust-wrapper { max-width: 1120px; padding: 40px 28px 0; }
    .pain-section .s2-title { font-size: 36px; }
    .pain-section .s2-subtitle,
    .pain-section .s2-subtitle-second { font-size: 14.5px; max-width: 620px; }
    .pain-section .s2-header { margin-bottom: 40px; }
    .pain-section .s2-honeycomb { transform: scale(0.85); }
    .pain-section .s2-floating-card { height: 290px; }
    .pain-section .s2-trust-number { font-size: 30px; }
    .pain-section .s2-trust-label { font-size: 11.5px; }
    .pain-section .s2-trust-sub { font-size: 10px; }
    .pain-section .s2-trust-card { padding: 24px 14px; }
    .pain-section .s2-trust-grid { gap: 14px; }
    .pain-section .s2-transition-text { font-size: 15px; }
    .pain-section .s2-hex-content { width: 155px; }
}

@media (min-width: 992px) and (max-width: 1023px) {
    .pain-section .s2-wrapper { max-width: 1020px; padding: 45px 24px 0; }
    .pain-section .s2-trust-wrapper { max-width: 1020px; padding: 36px 24px 0; }
    .pain-section .s2-title { font-size: 32px; }
    .pain-section .s2-subtitle,
    .pain-section .s2-subtitle-second { font-size: 14px; }
    .pain-section .s2-header { margin-bottom: 34px; }
    .pain-section .s2-honeycomb { transform: scale(0.76); }
    .pain-section .s2-floating-card { height: 260px; }
    .pain-section .s2-trust-number { font-size: 28px; }
    .pain-section .s2-trust-label { font-size: 11px; }
    .pain-section .s2-trust-sub { font-size: 10px; }
    .pain-section .s2-trust-card { padding: 22px 12px; }
    .pain-section .s2-trust-grid { gap: 12px; }
    .pain-section .s2-transition-text { font-size: 14px; }
    .pain-section .s2-hex-content { width: 150px; }
}

/* Below 992px */
@media (max-width: 991px) {
    .pain-section .s2-wrapper { padding: 40px 20px 0; }
    .pain-section .s2-trust-wrapper { padding: 36px 20px 0; }
    .pain-section .s2-header { margin-bottom: 28px; }
    .pain-section .s2-hex-container { padding: 10px 0; }
    .pain-section .s2-floating-card { display: none; }

    .pain-section .s2-honeycomb {
        width: 100%;
        height: auto;
        transform: none;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
        padding: 10px 0;
    }

    .pain-section .s2-hex {
        position: relative;
        top: auto;
        left: auto;
        width: 230px;
        height: 266px;
    }

    .pain-section .s2-hex-outline { width: 100%; height: 100%; }
    .pain-section .s2-hex-white { width: 87%; height: 87%; }
    .pain-section .s2-hex-content { width: 145px; }
    .pain-section .s2-hex-stat { font-size: 8.5px; padding: 2px 7px; }
    .pain-section .s2-hex-title { font-size: 10.5px; }
    .pain-section .s2-hex-desc { font-size: 8.5px; }
    .pain-section .s2-hex-icon { width: 38px; height: 38px; }
    .pain-section .s2-hex-icon i { font-size: 17px; }
}

@media (min-width: 768px) and (max-width: 991px) {
    .pain-section .s2-title { font-size: 32px; }
    .pain-section .s2-subtitle,
    .pain-section .s2-subtitle-second { font-size: 14px; }
    .pain-section .s2-hex { width: 220px; height: 254px; }
    .pain-section .s2-hex-content { width: 140px; }
    .pain-section .s2-trust-number { font-size: 30px; }
    .pain-section .s2-trust-label { font-size: 12px; }
    .pain-section .s2-trust-card { padding: 24px 14px; }
    .pain-section .s2-transition-text { font-size: 15px; }

    .pain-section .s2-trust-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 14px;
    }
    .pain-section .s2-trust-card:nth-child(1) { grid-column: 1 / 3; }
    .pain-section .s2-trust-card:nth-child(2) { grid-column: 3 / 5; }
    .pain-section .s2-trust-card:nth-child(3) { grid-column: 5 / 7; }
    .pain-section .s2-trust-card:nth-child(4) { grid-column: 2 / 4; }
    .pain-section .s2-trust-card:nth-child(5) { grid-column: 4 / 6; }
}

@media (min-width: 576px) and (max-width: 767px) {
    .pain-section .s2-wrapper { padding: 34px 18px 0; }
    .pain-section .s2-trust-wrapper { padding: 30px 18px 0; }
    .pain-section .s2-title { font-size: 27px; }
    .pain-section .s2-subtitle,
    .pain-section .s2-subtitle-second { font-size: 13.5px; }
    .pain-section .s2-hex { width: 200px; height: 231px; }
    .pain-section .s2-hex-content { width: 128px; }
    .pain-section .s2-hex-stat { font-size: 8px; }
    .pain-section .s2-hex-title { font-size: 10px; }
    .pain-section .s2-hex-desc { font-size: 8px; }
    .pain-section .s2-hex-icon { width: 34px; height: 34px; }
    .pain-section .s2-hex-icon i { font-size: 15px; }
    .pain-section .s2-honeycomb { gap: 12px; }

    .pain-section .s2-trust-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 12px;
    }
    .pain-section .s2-trust-card:nth-child(1) { grid-column: 1 / 3; }
    .pain-section .s2-trust-card:nth-child(2) { grid-column: 3 / 5; }
    .pain-section .s2-trust-card:nth-child(3) { grid-column: 5 / 7; }
    .pain-section .s2-trust-card:nth-child(4) { grid-column: 2 / 4; }
    .pain-section .s2-trust-card:nth-child(5) { grid-column: 4 / 6; }

    .pain-section .s2-trust-number { font-size: 28px; }
    .pain-section .s2-trust-label { font-size: 11px; }
    .pain-section .s2-trust-card { padding: 22px 12px; }
    .pain-section .s2-transition-text { font-size: 14px; }
}

@media (min-width: 481px) and (max-width: 575px) {
    .pain-section .s2-wrapper { padding: 28px 14px 0; }
    .pain-section .s2-trust-wrapper { padding: 26px 14px 0; }
    .pain-section .s2-title { font-size: 24px; }
    .pain-section .s2-eyebrow { font-size: 9px; padding: 6px 14px; }
    .pain-section .s2-subtitle,
    .pain-section .s2-subtitle-second { font-size: 13px; }
    .pain-section .s2-hex { width: 185px; height: 214px; }
    .pain-section .s2-hex-content { width: 118px; }
    .pain-section .s2-hex-stat { font-size: 7.5px; padding: 2px 6px; }
    .pain-section .s2-hex-title { font-size: 9.5px; }
    .pain-section .s2-hex-desc { font-size: 7.5px; }
    .pain-section .s2-hex-icon { width: 32px; height: 32px; border-radius: 8px; }
    .pain-section .s2-hex-icon i { font-size: 14px; }
    .pain-section .s2-honeycomb { gap: 10px; }

    .pain-section .s2-trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .pain-section .s2-trust-card:nth-child(5) {
        grid-column: 1 / -1;
        max-width: 220px;
        margin: 0 auto;
        width: 100%;
    }
    .pain-section .s2-trust-number { font-size: 26px; }
    .pain-section .s2-trust-label { font-size: 11px; }
    .pain-section .s2-trust-sub { font-size: 10px; }
    .pain-section .s2-trust-card { padding: 20px 12px; }
    .pain-section .s2-transition-text { font-size: 13px; max-width: 360px; }
    .pain-section .s2-cta-btn { font-size: 14px; padding: 13px 28px; }
}

@media (min-width: 381px) and (max-width: 480px) {
    .pain-section .s2-wrapper { padding: 24px 12px 0; }
    .pain-section .s2-trust-wrapper { padding: 22px 12px 0; }
    .pain-section .s2-title { font-size: 22px; }
    .pain-section .s2-eyebrow { font-size: 9px; padding: 5px 12px; letter-spacing: 1.5px; }
    .pain-section .s2-subtitle,
    .pain-section .s2-subtitle-second { font-size: 12.5px; }
    .pain-section .s2-hex { width: 170px; height: 196px; }
    .pain-section .s2-hex-content { width: 108px; }
    .pain-section .s2-hex-stat { font-size: 7px; padding: 2px 5px; margin-bottom: 4px; }
    .pain-section .s2-hex-title { font-size: 9px; margin-bottom: 4px; }
    .pain-section .s2-hex-desc { font-size: 7px; }
    .pain-section .s2-hex-icon { width: 30px; height: 30px; border-radius: 7px; margin-bottom: 6px; }
    .pain-section .s2-hex-icon i { font-size: 13px; }
    .pain-section .s2-honeycomb { gap: 8px; }

    .pain-section .s2-trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .pain-section .s2-trust-card:nth-child(5) {
        grid-column: 1 / -1;
        max-width: 200px;
        margin: 0 auto;
        width: 100%;
    }
    .pain-section .s2-trust-number { font-size: 28px; }
    .pain-section .s2-trust-label { font-size: 11px; }
    .pain-section .s2-trust-card { padding: 20px 14px; }
    .pain-section .s2-transition-text { font-size: 12.5px; max-width: 320px; }
    .pain-section .s2-cta-btn { font-size: 13.5px; padding: 12px 24px; width: 100%; max-width: 280px; }
    .pain-section .s2-cta-wrapper { padding-bottom: 50px; }
}

@media (max-width: 380px) {
    .pain-section .s2-wrapper { padding: 20px 10px 0; }
    .pain-section .s2-trust-wrapper { padding: 18px 10px 0; }
    .pain-section .s2-title { font-size: 20px; }
    .pain-section .s2-eyebrow { font-size: 8px; padding: 4px 10px; letter-spacing: 1px; }
    .pain-section .s2-subtitle,
    .pain-section .s2-subtitle-second { font-size: 12px; }
    .pain-section .s2-divider { width: 40px; }
    .pain-section .s2-hex { width: 150px; height: 173px; }
    .pain-section .s2-hex-content { width: 96px; }
    .pain-section .s2-hex-stat { font-size: 6.5px; padding: 1px 4px; margin-bottom: 3px; }
    .pain-section .s2-hex-title { font-size: 8px; margin-bottom: 3px; }
    .pain-section .s2-hex-desc { font-size: 6.5px; line-height: 1.25; }
    .pain-section .s2-hex-icon { width: 26px; height: 26px; border-radius: 6px; margin-bottom: 5px; }
    .pain-section .s2-hex-icon i { font-size: 11px; }
    .pain-section .s2-honeycomb { gap: 6px; }

    .pain-section .s2-trust-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        max-width: 260px;
        margin: 0 auto 24px;
    }
    .pain-section .s2-trust-card:nth-child(5) {
        grid-column: auto;
        max-width: none;
        margin: 0;
    }
    .pain-section .s2-trust-number { font-size: 28px; }
    .pain-section .s2-trust-label { font-size: 11px; }
    .pain-section .s2-trust-card { padding: 20px 14px; }
    .pain-section .s2-transition-text { font-size: 12px; max-width: 260px; }
    .pain-section .s2-cta-btn { font-size: 13px; padding: 11px 20px; width: 100%; max-width: 240px; }
    .pain-section .s2-cta-wrapper { padding-bottom: 40px; }
}

/* Popup Responsive */
@media (min-width: 481px) {
    .s2-popup-form { max-width: 540px; }
}

@media (max-width: 480px) {
    .s2-popup-overlay {
        padding: 10px;
        align-items: flex-end;
    }

    .s2-popup-form {
        max-width: 100%;
        max-height: 96vh;
        border-radius: 24px 24px 0 0;
        transform: scale(1) translateY(100%);
    }

    .s2-popup-overlay.s2-popup-active .s2-popup-form {
        transform: scale(1) translateY(0);
    }

    .s2-popup-header {
        padding: 28px 24px 26px;
        border-radius: 24px 24px 0 0;
    }

    .s2-popup-close {
        top: 14px;
        right: 14px;
        width: 36px;
        height: 36px;
    }

    .s2-popup-close svg {
        width: 16px;
        height: 16px;
    }

    .s2-popup-title {
        font-size: 24px;
        padding-right: 40px;
    }

    .s2-popup-subtitle { font-size: 13.5px; }

    .s2-popup-body { padding: 26px 24px 30px; }

    .s2-form-row { margin-bottom: 18px; }

    .s2-form-label {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .s2-form-input {
        padding: 14px 16px;
        font-size: 15px;
        border-radius: 12px;
    }

    .s2-form-textarea { min-height: 100px; }

    .s2-form-submit {
        padding: 16px 28px;
        font-size: 15.5px;
        border-radius: 12px;
    }

    .s2-form-note {
        font-size: 12px;
        margin-top: 16px;
    }
}

@media (max-width: 360px) {
    .s2-popup-overlay { padding: 6px; }
    .s2-popup-title { font-size: 22px; }
    .s2-popup-subtitle { font-size: 13px; }
    .s2-popup-body { padding: 22px 20px 26px; }
    .s2-form-input { padding: 13px 14px; font-size: 14px; }
    .s2-form-submit { padding: 15px 24px; font-size: 15px; }
}
/* ===== Section 3 Critical CSS — Inlined ===== */
/* Services Section - Optimized */
.s3-hub-logo {
    width: 400px !important;
    max-width: none !important;
    height: auto !important;
    display: block;
}

.s3-section {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #21514B 0%, #2d6b5e 35%, #3d8a6e 65%, #57BA91 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.s3-section *,
.s3-section *::before,
.s3-section *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: inherit;
}

/* Background Orbs */
.s3-section .s3-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.s3-section .s3-orb-1 {
    top: -12%;
    right: -6%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%);
}

.s3-section .s3-orb-2 {
    bottom: -10%;
    left: -5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
}

.s3-section .s3-orb-3 {
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 55%);
}

/* Main Wrapper */
.s3-section .s3-main {
    position: relative;
    max-width: 1260px;
    margin: 0 auto;
    width: 100%;
    z-index: 1;
    padding: 80px 40px;
}

/* Header */
.s3-section .s3-header {
    text-align: center;
    margin-bottom: 56px;
}

.s3-section .s3-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid rgba(255,255,255,0.22);
    color: #21514B;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 8px 40px;
    border-radius: 50px;
    margin-bottom: 22px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.s3-section .s3-badge i {
    color: #a8f0c6;
    font-size: 14px;
}

.s3-section .s3-heading {
    font-size: clamp(20px, 4vw, 42px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.18;
    margin-bottom: 28px;
    letter-spacing: -0.5px;
}

.s3-section .s3-heading .s3-accent {
    color: #a8f0c6;
}

.s3-section .s3-para {
    font-size: 16px;
    color: rgba(255,255,255,0.88);
    font-weight: 400;
    max-width: 860px;
    margin: 0 auto 14px;
    line-height: 1.75;
    text-align: center;
}

.s3-section .s3-para:last-of-type {
    margin-bottom: 0;
}

.s3-section .s3-para-transition {
    font-size: 16px;
    color: rgba(255,255,255,0.92);
    font-weight: 500;
    max-width: 820px;
    margin: 20px auto 0;
    line-height: 1.75;
    text-align: center;
    font-style: italic;
}

/* Grid Layout */
.s3-section .s3-grid-wrap {
    position: relative;
    margin-bottom: 60px;
}

.s3-section .s3-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 28px;
    position: relative;
    z-index: 2;
}

/* Service Card */
.s3-section .s3-card {
    position: relative;
    background: rgba(255,255,255,0.97);
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 16px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), 
                box-shadow 0.35s cubic-bezier(0.4,0,0.2,1), 
                border-color 0.35s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 6px 28px rgba(0,0,0,0.1);
    min-height: 280px;
    contain: layout style;
}

.s3-section .s3-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.2);
    border-color: #ffffff;
}

/* Card Body */
.s3-section .s3-card-body {
    padding: 32px 26px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-grow: 1;
    width: 100%;
}

/* Bottom Gradient Strip */
.s3-section .s3-card-bottom {
    width: 100%;
    background: linear-gradient(90deg, #21514B 0%, #57BA91 100%);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    border-radius: 0 0 14px 14px;
}

.s3-section .s3-card-bottom .s3-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease, color 0.3s ease;
    letter-spacing: 0.3px;
}

.s3-section .s3-card-bottom .s3-card-link:hover {
    gap: 10px;
    color: #c8f7df;
}

/* Step Number Badge */
.s3-section .s3-step {
    position: absolute;
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #57BA91 0%, #21514B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(33,81,75,0.5);
    z-index: 100;
    border: 3px solid #ffffff;
}

/* Step positions */
.s3-section .s3-card-1 .s3-step { top: -19px; left: -19px; }
.s3-section .s3-card-2 .s3-step { top: -19px; left: 50%; transform: translateX(-50%); }
.s3-section .s3-card-3 .s3-step { top: -19px; right: -19px; }
.s3-section .s3-card-8 .s3-step { top: 50%; left: -19px; transform: translateY(-50%); }
.s3-section .s3-card-4 .s3-step { top: 50%; right: -19px; transform: translateY(-50%); }
.s3-section .s3-card-7 .s3-step { bottom: -24px; left: -19px; }
.s3-section .s3-card-6 .s3-step { bottom: -24px; left: 50%; transform: translateX(-50%); }
.s3-section .s3-card-5 .s3-step { bottom: -24px; right: -19px; }

/* Card Icon */
.s3-section .s3-card-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.s3-section .s3-card-icon img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.s3-section .s3-card-icon i {
    font-size: 26px;
    color: #21514B;
}

/* Card Text */
.s3-section .s3-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #21514B;
    margin-bottom: 10px;
    line-height: 1.3;
}

.s3-section .s3-card-desc {
    font-size: 13px;
    color: #5a6a68;
    line-height: 1.6;
    margin-bottom: 0;
    flex-grow: 1;
}

/* Center Hub with Logo Space */
.s3-section .s3-hub {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    min-height: 280px;
}

.s3-section .s3-hub-logo-wrap {
    width: 100%;
    max-width: 220px;
    min-height: 70px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.s3-section .s3-hub-logo {
    width: 100%;
    height: auto;
    max-height: 70px;
    object-fit: contain;
    display: block;
}

.s3-section .s3-hub-title {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 8px;
}

.s3-section .s3-hub-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #a8f0c6;
}

/* Grid Ordering */
.s3-section .s3-card-1 { order: 1; }
.s3-section .s3-card-2 { order: 2; }
.s3-section .s3-card-3 { order: 3; }
.s3-section .s3-card-8 { order: 4; }
.s3-section .s3-hub { order: 5; }
.s3-section .s3-card-4 { order: 6; }
.s3-section .s3-card-7 { order: 7; }
.s3-section .s3-card-6 { order: 8; }
.s3-section .s3-card-5 { order: 9; }

/* Closing Section */
.s3-section .s3-closing {
    text-align: center;
    padding-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.s3-section .s3-closing-text {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    max-width: 880px;
    margin: 0 auto 20px;
    line-height: 1.75;
}

.s3-section .s3-closing-text strong {
    color: #ffffff;
    font-weight: 700;
}

.s3-section .s3-closing-cta-text {
    font-size: 19px;
    color: #ffffff;
    font-weight: 600;
    margin: 32px auto 0;
    font-style: italic;
}

.s3-section .s3-cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

/* CTA Button */
.s3-section .s3-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ffffff;
    color: #21514B;
    font-size: 16px;
    font-weight: 700;
    padding: 17px 42px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 6px 28px rgba(0,0,0,0.15);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.s3-section .s3-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(87,186,145,0.15), transparent);
    transition: left 0.5s ease;
}

.s3-section .s3-cta:hover::before {
    left: 100%;
}

.s3-section .s3-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.s3-section .s3-cta:focus-visible {
    outline: 3px solid #a8f0c6;
    outline-offset: 3px;
}

.s3-section .s3-cta-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.s3-section .s3-cta:hover .s3-cta-arrow {
    transform: translateX(5px);
}

/* Reveal Animation */
.s3-section .s3-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.s3-section.s3-visible .s3-reveal {
    opacity: 1;
    transform: translateY(0);
}

.s3-section .s3-card {
    opacity: 0;
    transform: translateY(24px);
}

.s3-section.s3-visible .s3-card {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.s3-section.s3-visible .s3-card-1 { transition-delay: 0.05s; }
.s3-section.s3-visible .s3-card-2 { transition-delay: 0.1s; }
.s3-section.s3-visible .s3-card-3 { transition-delay: 0.15s; }
.s3-section.s3-visible .s3-card-4 { transition-delay: 0.2s; }
.s3-section.s3-visible .s3-card-5 { transition-delay: 0.25s; }
.s3-section.s3-visible .s3-card-6 { transition-delay: 0.3s; }
.s3-section.s3-visible .s3-card-7 { transition-delay: 0.35s; }
.s3-section.s3-visible .s3-card-8 { transition-delay: 0.4s; }

.s3-section .s3-hub {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1) 0.15s, transform 0.6s cubic-bezier(0.4,0,0.2,1) 0.15s;
}

.s3-section.s3-visible .s3-hub {
    opacity: 1;
    transform: scale(1);
}

/* ================================================================
   PREMIUM POPUP FORM STYLES
   ================================================================ */

.s3-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 60, 54, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.s3-popup-overlay.s3-popup-active {
    opacity: 1;
    visibility: visible;
}

.s3-popup-overlay.s3-popup-active .s3-popup-form {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.s3-popup-form {
    background: #ffffff;
    border-radius: 24px;
    width: 100%;
    max-width: 540px;
    max-height: 92vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.92) translateY(40px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255,255,255,0.1);
}

/* Full Gradient Header */
.s3-popup-header {
    background: linear-gradient(135deg, #21514B 0%, #57BA91 100%);
    padding: 36px 32px 32px;
    border-radius: 24px 24px 0 0;
    position: relative;
    overflow: hidden;
}

.s3-popup-header::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -60px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.s3-popup-header::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.s3-popup-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    z-index: 10;
}

.s3-popup-close:hover {
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg);
}

.s3-popup-close:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

.s3-popup-close svg {
    width: 18px;
    height: 18px;
    stroke: #ffffff;
    stroke-width: 2.5;
}

.s3-popup-title {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.s3-popup-subtitle {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.55;
    position: relative;
    z-index: 1;
}

/* Solid White Form Body */
.s3-popup-body {
    background: #ffffff;
    padding: 32px 32px 36px;
}

.s3-form-row {
    margin-bottom: 22px;
}

.s3-form-row:last-child {
    margin-bottom: 0;
}

.s3-form-label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: #21514B;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.s3-form-label .s3-required {
    color: #dc3545;
    margin-left: 3px;
}

/* Premium Solid White Input Containers */
.s3-form-input {
    width: 100%;
    padding: 16px 20px;
    font-size: 15.5px;
    font-weight: 500;
    color: #1a3c36;
    background: #ffffff;
    border: 2px solid #e5ebe9;
    border-radius: 14px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.s3-form-input::placeholder {
    color: #a3b0ad;
    font-weight: 400;
}

.s3-form-input:hover {
    border-color: #57BA91;
}

.s3-form-input:focus {
    border-color: #57BA91;
    box-shadow: 0 0 0 5px rgba(87, 186, 145, 0.12);
}

.s3-phone-input {
    letter-spacing: 0.5px;
}

.s3-form-textarea {
    min-height: 115px;
    resize: vertical;
    line-height: 1.6;
}

/* Premium Submit Button */
.s3-form-submit {
    width: 100%;
    padding: 18px 32px;
    font-size: 16.5px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #1a3c36 0%, #2d5f56 50%, #3a7a6e 100%);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 30px rgba(26, 60, 54, 0.35);
    margin-top: 10px;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.s3-form-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

.s3-form-submit:hover::before {
    left: 100%;
}

.s3-form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(26, 60, 54, 0.45);
}

.s3-form-submit:focus-visible {
    outline: 3px solid #57BA91;
    outline-offset: 4px;
}

.s3-form-submit svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.s3-form-submit:hover svg {
    transform: translateX(5px);
}

.s3-form-note {
    text-align: center;
    font-size: 12.5px;
    color: #889593;
    margin-top: 18px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.s3-form-note svg {
    width: 15px;
    height: 15px;
    stroke: #57BA91;
    flex-shrink: 0;
}

/* Success Message */
.s3-form-success {
    text-align: center;
    padding: 40px 20px;
}

.s3-success-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #57BA91 0%, #21514B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffffff;
    margin: 0 auto 20px;
}

.s3-success-title {
    font-size: 24px;
    font-weight: 700;
    color: #21514B;
    margin-bottom: 10px;
}

.s3-success-text {
    font-size: 14px;
    color: #656565;
    line-height: 1.6;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (min-width: 2560px) {
    .s3-section .s3-main { max-width: 1500px; padding: 100px 60px; }
    .s3-section .s3-heading { font-size: 52px; }
    .s3-section .s3-para { font-size: 18px; }
    .s3-section .s3-grid { gap: 34px; }
    .s3-section .s3-card { min-height: 310px; }
    .s3-section .s3-card-body { padding: 38px 30px 22px; }
    .s3-section .s3-card-title { font-size: 18px; }
    .s3-section .s3-card-desc { font-size: 14px; }
    .s3-section .s3-card-bottom { padding: 14px 24px; }
    .s3-section .s3-card-bottom .s3-card-link { font-size: 14px; }
    .s3-section .s3-hub-title { font-size: 28px; }
    .s3-section .s3-hub-logo-wrap { max-width: 260px; }
    .s3-section .s3-hub-logo { max-height: 80px; }
    .s3-section .s3-closing-text { font-size: 18px; }
    .s3-section .s3-step { width: 42px; height: 42px; font-size: 16px; }
    .s3-section .s3-card-1 .s3-step { top: -21px; left: -21px; }
    .s3-section .s3-card-2 .s3-step { top: -21px; }
    .s3-section .s3-card-3 .s3-step { top: -21px; right: -21px; }
    .s3-section .s3-card-8 .s3-step { left: -21px; }
    .s3-section .s3-card-4 .s3-step { right: -21px; }
    .s3-section .s3-card-7 .s3-step { bottom: -26px; left: -21px; }
    .s3-section .s3-card-6 .s3-step { bottom: -26px; }
    .s3-section .s3-card-5 .s3-step { bottom: -26px; right: -21px; }
    .s3-popup-form { max-width: 580px; }
    .s3-popup-header { padding: 42px 38px 38px; }
    .s3-popup-title { font-size: 32px; }
    .s3-popup-body { padding: 38px 38px 42px; }
}

@media (min-width: 1920px) and (max-width: 2559px) {
    .s3-section .s3-main { max-width: 1420px; padding: 90px 50px; }
    .s3-section .s3-heading { font-size: 48px; }
    .s3-section .s3-grid { gap: 30px; }
    .s3-section .s3-card { min-height: 300px; }
    .s3-section .s3-card-body { padding: 36px 28px 20px; }
    .s3-section .s3-card-title { font-size: 17px; }
    .s3-section .s3-hub-logo-wrap { max-width: 240px; }
    .s3-section .s3-step { width: 40px; height: 40px; font-size: 16px; }
    .s3-section .s3-card-1 .s3-step { top: -20px; left: -20px; }
    .s3-section .s3-card-2 .s3-step { top: -20px; }
    .s3-section .s3-card-3 .s3-step { top: -20px; right: -20px; }
    .s3-section .s3-card-8 .s3-step { left: -20px; }
    .s3-section .s3-card-4 .s3-step { right: -20px; }
    .s3-section .s3-card-7 .s3-step { bottom: -25px; left: -20px; }
    .s3-section .s3-card-6 .s3-step { bottom: -25px; }
    .s3-section .s3-card-5 .s3-step { bottom: -25px; right: -20px; }
}

@media (min-width: 1440px) and (max-width: 1919px) {
    .s3-section .s3-main { max-width: 1340px; }
    .s3-section .s3-heading { font-size: 44px; }
    .s3-section .s3-grid { gap: 28px; }
}

@media (min-width: 1200px) and (max-width: 1439px) {
    .s3-section .s3-main { max-width: 1180px; padding: 70px 36px; }
    .s3-section .s3-heading { font-size: 38px; }
    .s3-section .s3-para { font-size: 15px; }
    .s3-section .s3-grid { gap: 24px; }
    .s3-section .s3-card { min-height: 265px; }
    .s3-section .s3-card-body { padding: 28px 22px 18px; }
    .s3-section .s3-card-icon { width: 52px; height: 52px; }
    .s3-section .s3-card-icon i { font-size: 24px; }
    .s3-section .s3-card-title { font-size: 15px; }
    .s3-section .s3-card-desc { font-size: 12.5px; }
    .s3-section .s3-card-bottom { padding: 10px 18px; }
    .s3-section .s3-card-bottom .s3-card-link { font-size: 12px; }
    .s3-section .s3-hub-title { font-size: 22px; }
    .s3-section .s3-hub-logo-wrap { max-width: 200px; min-height: 60px; }
    .s3-section .s3-hub-logo { max-height: 60px; }
    .s3-section .s3-step { width: 36px; height: 36px; font-size: 14px; }
    .s3-section .s3-card-1 .s3-step { top: -18px; left: -18px; }
    .s3-section .s3-card-2 .s3-step { top: -18px; }
    .s3-section .s3-card-3 .s3-step { top: -18px; right: -18px; }
    .s3-section .s3-card-8 .s3-step { left: -18px; }
    .s3-section .s3-card-4 .s3-step { right: -18px; }
    .s3-section .s3-card-7 .s3-step { bottom: -22px; left: -18px; }
    .s3-section .s3-card-6 .s3-step { bottom: -22px; }
    .s3-section .s3-card-5 .s3-step { bottom: -22px; right: -18px; }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .s3-section .s3-main { max-width: 1060px; padding: 60px 30px; }
    .s3-section .s3-heading { font-size: 34px; }
    .s3-section .s3-para { font-size: 14.5px; max-width: 750px; }
    .s3-section .s3-header { margin-bottom: 46px; }
    .s3-section .s3-grid { gap: 20px; }
    .s3-section .s3-card { min-height: 250px; border-radius: 14px; }
    .s3-section .s3-card-body { padding: 26px 20px 16px; }
    .s3-section .s3-card-icon { width: 48px; height: 48px; margin-bottom: 14px; }
    .s3-section .s3-card-icon i { font-size: 22px; }
    .s3-section .s3-card-title { font-size: 14px; margin-bottom: 8px; }
    .s3-section .s3-card-desc { font-size: 12px; line-height: 1.55; }
    .s3-section .s3-card-bottom { padding: 10px 16px; border-radius: 0 0 12px 12px; }
    .s3-section .s3-card-bottom .s3-card-link { font-size: 11.5px; }
    .s3-section .s3-step { width: 34px; height: 34px; font-size: 14px; }
    .s3-section .s3-card-1 .s3-step { top: -17px; left: -17px; }
    .s3-section .s3-card-2 .s3-step { top: -17px; }
    .s3-section .s3-card-3 .s3-step { top: -17px; right: -17px; }
    .s3-section .s3-card-8 .s3-step { left: -17px; }
    .s3-section .s3-card-4 .s3-step { right: -17px; }
    .s3-section .s3-card-7 .s3-step { bottom: -21px; left: -17px; }
    .s3-section .s3-card-6 .s3-step { bottom: -21px; }
    .s3-section .s3-card-5 .s3-step { bottom: -21px; right: -17px; }
    .s3-section .s3-hub-title { font-size: 20px; }
    .s3-section .s3-hub-logo-wrap { max-width: 180px; min-height: 55px; }
    .s3-section .s3-hub-logo { max-height: 55px; }
    .s3-section .s3-closing-text { font-size: 15px; }
    .s3-section .s3-closing-cta-text { font-size: 17px; }
}

@media (min-width: 992px) and (max-width: 1023px) {
    .s3-section .s3-main { padding: 55px 26px; }
    .s3-section .s3-heading { font-size: 32px; }
    .s3-section .s3-para { font-size: 14px; }
    .s3-section .s3-grid { gap: 18px; }
    .s3-section .s3-card { min-height: 240px; }
    .s3-section .s3-card-body { padding: 24px 18px 14px; }
    .s3-section .s3-card-icon { width: 46px; height: 46px; }
    .s3-section .s3-card-icon i { font-size: 21px; }
    .s3-section .s3-card-title { font-size: 13.5px; }
    .s3-section .s3-card-desc { font-size: 11.5px; }
    .s3-section .s3-card-bottom { padding: 9px 14px; }
    .s3-section .s3-card-bottom .s3-card-link { font-size: 11px; }
    .s3-section .s3-step { width: 32px; height: 32px; font-size: 13px; }
    .s3-section .s3-card-1 .s3-step { top: -16px; left: -16px; }
    .s3-section .s3-card-2 .s3-step { top: -16px; }
    .s3-section .s3-card-3 .s3-step { top: -16px; right: -16px; }
    .s3-section .s3-card-8 .s3-step { left: -16px; }
    .s3-section .s3-card-4 .s3-step { right: -16px; }
    .s3-section .s3-card-7 .s3-step { bottom: -20px; left: -16px; }
    .s3-section .s3-card-6 .s3-step { bottom: -20px; }
    .s3-section .s3-card-5 .s3-step { bottom: -20px; right: -16px; }
    .s3-section .s3-hub-title { font-size: 19px; }
    .s3-section .s3-hub-logo-wrap { max-width: 170px; min-height: 50px; }
    .s3-section .s3-hub-logo { max-height: 50px; }
}

/* Below 992px */
@media (max-width: 991px) {
    .s3-section .s3-main { padding: 55px 24px; }
    .s3-section .s3-header { margin-bottom: 40px; }
    .s3-section .s3-heading { font-size: 30px; }
    .s3-section .s3-para { font-size: 14px; }

    .s3-section .s3-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 22px;
    }

    .s3-section .s3-hub {
        order: -1;
        grid-column: 1 / -1;
        min-height: auto;
        padding: 28px 20px;
    }
    .s3-section .s3-card-1 { order: 1; }
    .s3-section .s3-card-2 { order: 2; }
    .s3-section .s3-card-3 { order: 3; }
    .s3-section .s3-card-4 { order: 4; }
    .s3-section .s3-card-5 { order: 5; }
    .s3-section .s3-card-6 { order: 6; }
    .s3-section .s3-card-7 { order: 7; }
    .s3-section .s3-card-8 { order: 8; }

    .s3-section .s3-card .s3-step {
        top: -17px !important;
        left: -17px !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
    }

    .s3-section .s3-card { min-height: auto; }
    .s3-section .s3-card-body { padding: 28px 22px 18px; }
    .s3-section .s3-hub-logo-wrap { max-width: 200px; min-height: 55px; }
    .s3-section .s3-hub-logo { max-height: 55px; }
    .s3-section .s3-hub-title { font-size: 22px; }
    .s3-section .s3-closing { margin-top: 0; padding-top: 40px; }
    .s3-section .s3-closing-text { font-size: 14.5px; }
    .s3-section .s3-closing-cta-text { font-size: 16px; }
    .s3-section .s3-cta { font-size: 15px; padding: 15px 34px; }
}

@media (min-width: 768px) and (max-width: 991px) {
    .s3-section .s3-heading { font-size: 33px; }
    .s3-section .s3-grid { gap: 24px; }
    .s3-section .s3-card-body { padding: 30px 24px 18px; }
    .s3-section .s3-card-title { font-size: 15px; }
    .s3-section .s3-card-desc { font-size: 13px; }
}

@media (min-width: 576px) and (max-width: 767px) {
    .s3-section .s3-main { padding: 45px 18px; }
    .s3-section .s3-heading { font-size: 27px; }
    .s3-section .s3-badge { font-size: 10px; padding: 7px 18px; }
    .s3-section .s3-grid { gap: 18px; }
    .s3-section .s3-card-body { padding: 26px 20px 16px; }
    .s3-section .s3-card-icon { width: 50px; height: 50px; }
    .s3-section .s3-card-title { font-size: 14px; }
    .s3-section .s3-card-desc { font-size: 12px; }
    .s3-section .s3-card-bottom { padding: 10px 16px; }
    .s3-section .s3-card-bottom .s3-card-link { font-size: 12px; }
    .s3-section .s3-hub-logo-wrap { max-width: 180px; min-height: 55px; }
    .s3-section .s3-step { width: 34px; height: 34px; font-size: 13px; }
    .s3-section .s3-card .s3-step {
        top: -17px !important;
        left: -17px !important;
    }
}

@media (min-width: 481px) and (max-width: 575px) {
    .s3-section .s3-main { padding: 40px 14px; }
    .s3-section .s3-heading { font-size: 24px; }
    .s3-section .s3-badge { font-size: 9px; padding: 6px 14px; letter-spacing: 1.5px; }
    .s3-section .s3-para { font-size: 13px; }

    .s3-section .s3-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .s3-section .s3-card-body { padding: 26px 20px 16px; }
    .s3-section .s3-card-icon { width: 52px; height: 52px; }
    .s3-section .s3-card-title { font-size: 15px; }
    .s3-section .s3-card-desc { font-size: 13px; }
    .s3-section .s3-hub { padding: 24px 16px; }
    .s3-section .s3-hub-title { font-size: 20px; }
    .s3-section .s3-hub-logo-wrap { max-width: 200px; min-height: 55px; }
    .s3-section .s3-closing-text { font-size: 13.5px; }
    .s3-section .s3-closing-cta-text { font-size: 15px; }
    .s3-section .s3-cta { width: 100%; max-width: 300px; font-size: 14px; }
    .s3-section .s3-step { width: 32px; height: 32px; font-size: 13px; }
    .s3-section .s3-card .s3-step {
        top: -16px !important;
        left: -16px !important;
    }
}

@media (min-width: 381px) and (max-width: 480px) {
    .s3-section .s3-main { padding: 35px 12px; }
    .s3-section .s3-heading { font-size: 22px; }
    .s3-section .s3-badge { font-size: 8px; padding: 5px 12px; letter-spacing: 1.2px; }
    .s3-section .s3-para { font-size: 12.5px; }

    .s3-section .s3-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .s3-section .s3-card { border-radius: 14px; }
    .s3-section .s3-card-body { padding: 24px 18px 14px; }
    .s3-section .s3-step { width: 32px; height: 32px; font-size: 13px; border-width: 2px; }
    .s3-section .s3-card .s3-step {
        top: -16px !important;
        left: -16px !important;
    }
    .s3-section .s3-card-icon { width: 48px; height: 48px; margin-bottom: 14px; }
    .s3-section .s3-card-icon i { font-size: 22px; }
    .s3-section .s3-card-title { font-size: 14px; }
    .s3-section .s3-card-desc { font-size: 12px; }
    .s3-section .s3-card-bottom { padding: 10px 14px; border-radius: 0 0 12px 12px; }
    .s3-section .s3-card-bottom .s3-card-link { font-size: 11.5px; }
    .s3-section .s3-hub { padding: 22px 14px; }
    .s3-section .s3-hub-logo-wrap { max-width: 180px; min-height: 48px; }
    .s3-section .s3-hub-logo { max-height: 48px; }
    .s3-section .s3-hub-title { font-size: 19px; }
    .s3-section .s3-closing { padding-top: 34px; }
    .s3-section .s3-closing-text { font-size: 13px; }
    .s3-section .s3-closing-cta-text { font-size: 14.5px; margin-top: 24px; }
    .s3-section .s3-cta { font-size: 14px; padding: 14px 28px; width: 100%; max-width: 280px; }
}

@media (max-width: 380px) {
    .s3-section .s3-main { padding: 28px 10px; }
    .s3-section .s3-heading { font-size: 20px; line-height: 1.25; }
    .s3-section .s3-badge { font-size: 7.5px; padding: 4px 10px; letter-spacing: 1px; gap: 5px; }
    .s3-section .s3-badge i { font-size: 11px; }
    .s3-section .s3-para { font-size: 12px; line-height: 1.65; }
    .s3-section .s3-para-transition { font-size: 12px; }
    .s3-section .s3-header { margin-bottom: 32px; }

    .s3-section .s3-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .s3-section .s3-card { border-radius: 12px; }
    .s3-section .s3-card-body { padding: 22px 16px 12px; }
    .s3-section .s3-step { width: 30px; height: 30px; font-size: 12px; border-width: 2px; }
    .s3-section .s3-card .s3-step {
        top: -15px !important;
        left: -15px !important;
    }
    .s3-section .s3-card-icon { width: 44px; height: 44px; margin-bottom: 12px; }
    .s3-section .s3-card-icon i { font-size: 20px; }
    .s3-section .s3-card-title { font-size: 13px; margin-bottom: 8px; }
    .s3-section .s3-card-desc { font-size: 11.5px; line-height: 1.5; }
    .s3-section .s3-card-bottom { padding: 9px 12px; border-radius: 0 0 10px 10px; }
    .s3-section .s3-card-bottom .s3-card-link { font-size: 11px; }
    .s3-section .s3-hub { padding: 20px 12px; }
    .s3-section .s3-hub-logo-wrap { max-width: 160px; min-height: 42px; }
    .s3-section .s3-hub-logo { max-height: 42px; }
    .s3-section .s3-hub-title { font-size: 17px; }
    .s3-section .s3-hub-label { font-size: 10px; letter-spacing: 1.5px; }
    .s3-section .s3-closing { padding-top: 28px; }
    .s3-section .s3-closing-text { font-size: 12px; max-width: 300px; }
    .s3-section .s3-closing-cta-text { font-size: 13.5px; margin-top: 20px; }
    .s3-section .s3-cta { font-size: 13px; padding: 12px 22px; width: 100%; max-width: 260px; }
    .s3-section .s3-cta-wrap { margin-top: 22px; }
    .s3-section .s3-grid-wrap { margin-bottom: 40px; }
}

/* Popup Responsive */
@media (min-width: 481px) {
    .s3-popup-form { max-width: 540px; }
}

@media (max-width: 480px) {
    .s3-popup-overlay {
        padding: 10px;
        align-items: flex-end;
    }

    .s3-popup-form {
        max-width: 100%;
        max-height: 96vh;
        border-radius: 24px 24px 0 0;
        transform: scale(1) translateY(100%);
    }

    .s3-popup-overlay.s3-popup-active .s3-popup-form {
        transform: scale(1) translateY(0);
    }

    .s3-popup-header {
        padding: 28px 24px 26px;
        border-radius: 24px 24px 0 0;
    }

    .s3-popup-close {
        top: 14px;
        right: 14px;
        width: 36px;
        height: 36px;
    }

    .s3-popup-close svg {
        width: 16px;
        height: 16px;
    }

    .s3-popup-title {
        font-size: 24px;
        padding-right: 40px;
    }

    .s3-popup-subtitle { font-size: 13.5px; }

    .s3-popup-body { padding: 26px 24px 30px; }

    .s3-form-row { margin-bottom: 18px; }

    .s3-form-label {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .s3-form-input {
        padding: 14px 16px;
        font-size: 15px;
        border-radius: 12px;
    }

    .s3-form-textarea { min-height: 100px; }

    .s3-form-submit {
        padding: 16px 28px;
        font-size: 15.5px;
        border-radius: 12px;
    }

    .s3-form-note {
        font-size: 12px;
        margin-top: 16px;
    }
}

@media (max-width: 360px) {
    .s3-popup-overlay { padding: 6px; }
    .s3-popup-title { font-size: 22px; }
    .s3-popup-subtitle { font-size: 13px; }
    .s3-popup-body { padding: 22px 20px 26px; }
    .s3-form-input { padding: 13px 14px; font-size: 14px; }
    .s3-form-submit { padding: 15px 24px; font-size: 15px; }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .s3-section .s3-reveal,
    .s3-section .s3-card,
    .s3-section .s3-hub,
    .s3-section .s3-cta,
    .s3-section .s3-card-bottom .s3-card-link,
    .s3-popup-overlay,
    .s3-popup-form,
    .s3-popup-close,
    .s3-form-submit,
    .s3-form-input {
        transition: none;
        opacity: 1;
        transform: none;
    }
    .s3-section .s3-cta::before,
    .s3-form-submit::before {
        display: none;
    }
}

/* ===== Section 4 Critical CSS — Inlined ===== */
/* Comparison Section - Optimized */
.s4-metric-icon-wrap img {
    width: 70px !important;
    height: 70px !important;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .s4-mob-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }
    .s4-mob-icon img {
        width: 20px;
        height: 20px;
    }
}

.s4-section {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.s4-section *,
.s4-section *::before,
.s4-section *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: inherit;
}

/* Decorative Background */
.s4-section .s4-bg-1 {
    position: absolute;
    top: -15%;
    right: -8%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(87,186,145,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.s4-section .s4-bg-2 {
    position: absolute;
    bottom: -10%;
    left: -6%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(33,81,75,0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* Main Wrapper */
.s4-section .s4-main {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    z-index: 1;
    padding: 80px 40px;
}

/* Header */
.s4-section .s4-header {
    text-align: center;
    margin-bottom: 30px;
}

.s4-section .s4-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(to right, #21514B, #57BA91);
    border: 1px solid rgba(87,186,145,0.25);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 30px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.s4-section .s4-badge i {
    color: #57BA91;
    font-size: 14px;
}

.s4-section .s4-title {
    font-size: clamp(20px, 4vw, 42px);
    font-weight: 800;
    color: #21514B;
    line-height: 1.18;
    margin-bottom: 22px;
    letter-spacing: -0.5px;
}

.s4-section .s4-title .s4-highlight {
    color: #57BA91;
}

.s4-section .s4-intro {
    font-size: 16px;
    color: #656565;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto 14px;
    line-height: 1.75;
    text-align: center;
}

.s4-section .s4-intro:last-of-type {
    margin-bottom: 0;
}

/* Table Section Header */
.s4-section .s4-table-section-header {
    text-align: center;
    margin-bottom: 30px;
}

.s4-section .s4-table-h3 {
    font-size: clamp(16px, 2.5vw, 26px);
    font-weight: 800;
    color: #21514B;
    margin-bottom: 6px;
}

.s4-section .s4-table-h3 .s4-h3-accent {
    color: #57BA91;
}

.s4-section .s4-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #21514B, #57BA91);
    margin: 14px auto 0;
    border-radius: 2px;
}

/* Table Container */
.s4-section .s4-table-wrap {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #57BA91;
    box-shadow: 0 4px 6px rgba(33,81,75,0.04), 0 10px 20px rgba(33,81,75,0.08), 0 20px 40px rgba(33,81,75,0.1), 0 40px 80px rgba(33,81,75,0.08);
    contain: layout style;
    position: relative;
}

.s4-section .s4-table-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
    pointer-events: none;
    z-index: 10;
}

/* Table Header Row */
.s4-section .s4-table-header {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    background: linear-gradient(to right, #21514B, #57BA91);
}

.s4-section .s4-th-inhouse {
    padding: 28px 24px 20px;
    text-align: center;
    background: linear-gradient(to right, #21514B, #57BA91);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid #ffffff;
}

.s4-section .s4-th-inhouse h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.s4-section .s4-th-inhouse p {
    font-size: 12px;
    color: rgba(255,255,255,0.75);
    margin-top: 4px;
    font-weight: 500;
}

/* Metric Header */
.s4-section .s4-th-metric {
    padding: 28px 28px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, #21514B, #57BA91);
    border-bottom: 2px solid #ffffff;
    position: relative;
    z-index: 2;
}

.s4-section .s4-th-metric span {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.s4-section .s4-th-metric::before {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: -8px 0 20px rgba(0,0,0,0.15), 8px 0 20px rgba(0,0,0,0.15), 0 -4px 12px rgba(0,0,0,0.1);
    pointer-events: none;
    z-index: -1;
}

/* Outsourced Header */
.s4-section .s4-th-outsourced {
    padding: 28px 24px 20px;
    text-align: center;
    background: linear-gradient(to right, #21514B, #57BA91);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid #ffffff;
}

.s4-section .s4-recommended {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #ffffff;
    color: #21514B;
    font-size: 10px;
    font-weight: 700;
    padding: 5px 14px;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
}

.s4-section .s4-th-outsourced h3 {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
}

.s4-section .s4-th-outsourced p {
    font-size: 12px;
    color: rgba(255,255,255,0.75);
    margin-top: 4px;
    font-weight: 600;
}

/* Table Rows */
.s4-section .s4-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    transition: background-color 0.2s ease;
    contain: layout style;
}

.s4-section .s4-row:hover .s4-cell-inhouse,
.s4-section .s4-row:hover .s4-cell-ours {
    background-color: rgba(87,186,145,0.03);
}

/* In-House Cell */
.s4-section .s4-cell-inhouse {
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #ffffff;
    border-bottom: 2px solid #57BA91;
}

.s4-section .s4-row:last-child .s4-cell-inhouse {
    border-bottom: none;
}

.s4-section .s4-inhouse-value {
    font-size: 15px;
    font-weight: 600;
    color: #666666;
    line-height: 1.5;
}

.s4-section .s4-inhouse-label {
    font-size: 12px;
    color: #888888;
    margin-top: 4px;
    font-weight: 500;
    line-height: 1.4;
}

/* Metric Cell */
.s4-section .s4-cell-metric {
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(to right, #21514B, #57BA91);
    border-bottom: 2px solid #ffffff !important;
    position: relative;
    z-index: 2;
}

.s4-section .s4-row:last-child .s4-cell-metric {
    border-bottom: none;
}

.s4-section .s4-metric-icon-wrap {
    margin-bottom: 10px;
}

.s4-section .s4-cell-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    margin: 0 auto;
}

.s4-section .s4-cell-icon i {
    font-size: 22px;
    color: #ffffff;
}

.s4-section .s4-metric-text {
    text-align: center;
}

.s4-section .s4-metric-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.s4-section .s4-metric-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

/* Outsourced Cell */
.s4-section .s4-cell-ours {
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #ffffff;
    border-bottom: 2px solid #57BA91;
}

.s4-section .s4-row:last-child .s4-cell-ours {
    border-bottom: none;
}

.s4-section .s4-ours-value {
    font-size: 22px;
    font-weight: 800;
    color: #21514B;
    line-height: 1.2;
}

.s4-section .s4-ours-sub {
    font-size: 11px;
    color: #656565;
    margin-top: 2px;
    font-weight: 500;
}

.s4-section .s4-ours-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #57BA91;
    background: rgba(87,186,145,0.1);
    padding: 4px 10px;
    border-radius: 20px;
}

.s4-section .s4-ours-badge i {
    font-size: 12px;
}

/* Post-Table Content */
.s4-section .s4-post-table {
    max-width: 880px;
    margin: 40px auto 0;
    text-align: center;
}

.s4-section .s4-post-text {
    font-size: 16px;
    color: #555555;
    line-height: 1.75;
    margin-bottom: 18px;
}

.s4-section .s4-post-text:last-of-type {
    margin-bottom: 0;
}

.s4-section .s4-post-text strong {
    color: #21514B;
    font-weight: 700;
}

/* Bottom CTA */
.s4-section .s4-bottom-cta {
    text-align: center;
    margin-top: 45px;
}

.s4-section .s4-bottom-cta-text {
    font-size: 19px;
    font-weight: 600;
    color: #21514B;
    font-style: italic;
    margin-bottom: 22px;
}

.s4-section .s4-bottom-cta-text strong {
    color: #57BA91;
}

.s4-section .s4-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #57BA91 0%, #21514B 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 4px 18px rgba(87,186,145,0.35);
    text-decoration: none;
    text-align: center;
}

.s4-section .s4-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(87,186,145,0.45);
}

.s4-section .s4-cta-btn .s4-btn-arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.s4-section .s4-cta-btn:hover .s4-btn-arrow {
    transform: translateX(4px);
}

/* Trust Badges */
.s4-section .s4-trust-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.s4-section .s4-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.95;
    transition: opacity 0.1s ease;
}

.s4-section .s4-trust-item:hover {
    opacity: 1;
}

.s4-section .s4-trust-item i {
    font-size: 28px;
    color: #21514B;
}

.s4-section .s4-trust-item span {
    font-size: 15px;
    font-weight: 700;
    color: #21514B;
}

/* Reveal Animation */
.s4-section .s4-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.s4-section.s4-visible .s4-reveal {
    opacity: 1;
    transform: translateY(0);
}

.s4-section .s4-reveal-d1 { transition-delay: 0.1s; }
.s4-section .s4-reveal-d2 { transition-delay: 0.2s; }
.s4-section .s4-reveal-d3 { transition-delay: 0.3s; }

/* Mobile Card Layout */
.s4-section .s4-mobile-cards {
    display: none;
}

/* ================================================================
   PREMIUM POPUP FORM STYLES
   ================================================================ */

.s4-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 60, 54, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.s4-popup-overlay.s4-popup-active {
    opacity: 1;
    visibility: visible;
}

.s4-popup-overlay.s4-popup-active .s4-popup-form {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.s4-popup-form {
    background: #ffffff;
    border-radius: 20px;
    width: 100%;
    max-width: 540px;
    max-height: 92vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.92) translateY(40px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255,255,255,0.1);
}

.s4-popup-header {
    background: linear-gradient(135deg, #21514B 0%, #57BA91 100%);
    padding: 36px 32px 32px;
    border-radius: 20px 20px 0 0;
    position: relative;
    overflow: hidden;
}

.s4-popup-header::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -60px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.s4-popup-header::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.s4-popup-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    z-index: 10;
}

.s4-popup-close:hover {
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg);
}

.s4-popup-close:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

.s4-popup-close svg {
    width: 18px;
    height: 18px;
    stroke: #ffffff;
    stroke-width: 2.5;
}

.s4-popup-title {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.s4-popup-subtitle {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.55;
    position: relative;
    z-index: 1;
}

.s4-popup-body {
    background: #ffffff;
    padding: 32px 32px 36px;
}

.s4-form-row {
    margin-bottom: 22px;
}

.s4-form-row:last-child {
    margin-bottom: 0;
}

.s4-form-label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: #21514B;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.s4-form-label .s4-required {
    color: #dc3545;
    margin-left: 3px;
}

.s4-form-input {
    width: 100%;
    padding: 16px 20px;
    font-size: 15.5px;
    font-weight: 500;
    color: #1a3c36;
    background: #ffffff;
    border: 2px solid #e5ebe9;
    border-radius: 14px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.s4-form-input::placeholder {
    color: #a3b0ad;
    font-weight: 400;
}

.s4-form-input:hover {
    border-color: #57BA91;
}

.s4-form-input:focus {
    border-color: #57BA91;
    box-shadow: 0 0 0 5px rgba(87, 186, 145, 0.12);
}

.s4-phone-input {
    letter-spacing: 0.5px;
}

.s4-form-textarea {
    min-height: 115px;
    resize: vertical;
    line-height: 1.6;
}

.s4-form-submit {
    width: 100%;
    padding: 18px 32px;
    font-size: 16.5px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #1a3c36 0%, #2d5f56 50%, #3a7a6e 100%);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 30px rgba(26, 60, 54, 0.35);
    margin-top: 10px;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.s4-form-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

.s4-form-submit:hover::before {
    left: 100%;
}

.s4-form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(26, 60, 54, 0.45);
}

.s4-form-submit:focus-visible {
    outline: 3px solid #57BA91;
    outline-offset: 4px;
}

.s4-form-submit svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.s4-form-submit:hover svg {
    transform: translateX(5px);
}

.s4-form-note {
    text-align: center;
    font-size: 12.5px;
    color: #889593;
    margin-top: 18px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.s4-form-note svg {
    width: 15px;
    height: 15px;
    stroke: #57BA91;
    flex-shrink: 0;
}

/* Success Message */
.s4-form-success {
    text-align: center;
    padding: 40px 20px;
}

.s4-success-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #57BA91 0%, #21514B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffffff;
    margin: 0 auto 20px;
}

.s4-success-title {
    font-size: 24px;
    font-weight: 700;
    color: #21514B;
    margin-bottom: 10px;
}

.s4-success-text {
    font-size: 14px;
    color: #656565;
    line-height: 1.6;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (min-width: 2560px) {
    .s4-section .s4-main { max-width: 1400px; padding: 100px 60px; }
    .s4-section .s4-intro { font-size: 18px; }
    .s4-section .s4-metric-title { font-size: 18px; }
    .s4-section .s4-ours-value { font-size: 26px; }
    .s4-section .s4-post-text { font-size: 18px; }
    .s4-section .s4-th-metric span { font-size: 28px; }
    .s4-popup-form { max-width: 580px; }
    .s4-popup-header { padding: 42px 38px 38px; }
    .s4-popup-title { font-size: 32px; }
    .s4-popup-body { padding: 38px 38px 42px; }
}

@media (min-width: 1920px) and (max-width: 2559px) {
    .s4-section .s4-main { max-width: 1300px; padding: 90px 50px; }
}

@media (min-width: 1440px) and (max-width: 1919px) {
    .s4-section .s4-main { max-width: 1220px; }
}

@media (min-width: 1200px) and (max-width: 1439px) {
    .s4-section .s4-main { max-width: 1100px; padding: 70px 36px; }
    .s4-section .s4-intro { font-size: 15px; }
    .s4-section .s4-ours-value { font-size: 20px; }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .s4-section .s4-main { max-width: 1000px; padding: 60px 30px; }
    .s4-section .s4-intro { font-size: 14.5px; }
    .s4-section .s4-cell-metric { padding: 20px 22px; }
    .s4-section .s4-cell-icon { width: 42px; height: 42px; }
    .s4-section .s4-cell-icon i { font-size: 19px; }
    .s4-section .s4-metric-title { font-size: 14px; }
    .s4-section .s4-metric-sub { font-size: 11px; }
    .s4-section .s4-inhouse-value { font-size: 14px; }
    .s4-section .s4-ours-value { font-size: 18px; }
    .s4-section .s4-ours-sub { font-size: 10px; }
    .s4-section .s4-cell-inhouse, .s4-section .s4-cell-ours { padding: 18px 14px; }
    .s4-section .s4-cta-btn { font-size: 14px; padding: 14px 28px; }
    .s4-section .s4-post-text { font-size: 15px; }
    .s4-section .s4-bottom-cta-text { font-size: 17px; }
    .s4-section .s4-th-inhouse h3, .s4-section .s4-th-outsourced h3 { font-size: 16px; }
    .s4-section .s4-th-metric span { font-size: 20px; }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .s4-section .s4-main { padding: 55px 26px; }
    .s4-section .s4-intro { font-size: 14px; }
    .s4-section .s4-cell-metric { padding: 18px 18px; }
    .s4-section .s4-cell-icon { width: 38px; height: 38px; }
    .s4-section .s4-cell-icon i { font-size: 17px; }
    .s4-section .s4-metric-title { font-size: 13px; }
    .s4-section .s4-metric-sub { font-size: 10px; }
    .s4-section .s4-inhouse-value { font-size: 13px; }
    .s4-section .s4-inhouse-label { font-size: 11px; }
    .s4-section .s4-ours-value { font-size: 17px; }
    .s4-section .s4-ours-sub { font-size: 9.5px; }
    .s4-section .s4-ours-badge { font-size: 10px; }
    .s4-section .s4-ours-badge i { font-size: 12px; }
    .s4-section .s4-cell-inhouse, .s4-section .s4-cell-ours { padding: 16px 12px; }
    .s4-section .s4-th-inhouse h3, .s4-section .s4-th-outsourced h3 { font-size: 14px; }
    .s4-section .s4-th-inhouse p, .s4-section .s4-th-outsourced p { font-size: 10px; }
    .s4-section .s4-th-metric span { font-size: 18px; }
    .s4-section .s4-cta-btn { font-size: 13px; padding: 13px 22px; }
    .s4-section .s4-post-text { font-size: 14px; }
    .s4-section .s4-bottom-cta-text { font-size: 16px; }
    .s4-section .s4-trust-row { gap: 28px; }
    .s4-section .s4-trust-item span { font-size: 13px; }
    .s4-section .s4-trust-item i { font-size: 24px; }
    .s4-section .s4-recommended { font-size: 8px; padding: 4px 10px; }
}

/* Below 768px - Mobile Cards */
@media (max-width: 767px) {
    .s4-section .s4-main { padding: 50px 16px; }
    .s4-section .s4-header { margin-bottom: 26px; }
    .s4-section .s4-intro { font-size: 14px; }
    .s4-section .s4-badge { font-size: 10px; padding: 6px 16px; }

    .s4-section .s4-table-wrap { display: none; }

    .s4-section .s4-mobile-cards {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .s4-section .s4-mob-card {
        background: #ffffff;
        border: 2px solid #57BA91;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 6px rgba(33,81,75,0.04), 0 8px 16px rgba(33,81,75,0.08), 0 16px 32px rgba(33,81,75,0.06);
        contain: layout style;
    }

    .s4-section .s4-mob-card-header {
        padding: 16px 18px;
        display: flex;
        align-items: center;
        gap: 12px;
        background: linear-gradient(to right, #21514B, #57BA91);
        border-bottom: 2px solid #ffffff;
    }

    .s4-section .s4-mob-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        background: rgba(255,255,255,0.25);
    }

    .s4-section .s4-mob-icon i { font-size: 19px; color: #ffffff; }

    .s4-section .s4-mob-metric-title {
        font-size: 14px;
        font-weight: 700;
        color: #ffffff;
    }

    .s4-section .s4-mob-metric-sub {
        font-size: 10.5px;
        color: rgba(255,255,255,0.8);
        margin-top: 2px;
    }

    .s4-section .s4-mob-compare {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .s4-section .s4-mob-inhouse {
        padding: 14px;
        text-align: center;
        background: #ffffff;
        border-right: 2px solid #57BA91;
    }

    .s4-section .s4-mob-inhouse-label {
        font-size: 9px;
        font-weight: 700;
        color: #aaaaaa;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 5px;
    }

    .s4-section .s4-mob-inhouse-val {
        font-size: 13px;
        font-weight: 600;
        color: #999999;
        line-height: 1.35;
    }

    .s4-section .s4-mob-ours {
        padding: 14px;
        text-align: center;
        background: #ffffff;
    }

    .s4-section .s4-mob-ours-label {
        font-size: 9px;
        font-weight: 700;
        color: #57BA91;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 5px;
    }

    .s4-section .s4-mob-ours-val {
        font-size: 18px;
        font-weight: 800;
        color: #21514B;
        line-height: 1.2;
    }

    .s4-section .s4-mob-ours-sub {
        font-size: 10px;
        color: #656565;
        margin-top: 2px;
    }

    .s4-section .s4-mob-ours-badge {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 3px;
        font-size: 10px;
        font-weight: 600;
        color: #57BA91;
        margin-top: 4px;
    }

    .s4-section .s4-mob-ours-badge i { font-size: 12px; }

    .s4-section .s4-post-table { margin-top: 36px; }
    .s4-section .s4-post-text { font-size: 14px; text-align: left; }
    .s4-section .s4-bottom-cta { margin-top: 36px; }
    .s4-section .s4-bottom-cta-text { font-size: 16px; }
    .s4-section .s4-bottom-cta .s4-cta-btn { width: 100%; max-width: 320px; }

    .s4-section .s4-trust-row { gap: 20px; margin-top: 40px; }
    .s4-section .s4-trust-item span { font-size: 12px; }
    .s4-section .s4-trust-item i { font-size: 22px; }
}

@media (min-width: 481px) and (max-width: 575px) {
    .s4-section .s4-main { padding: 40px 14px; }
    .s4-section .s4-badge { font-size: 9px; padding: 5px 14px; }
    .s4-section .s4-intro { font-size: 13px; }
}

@media (min-width: 381px) and (max-width: 480px) {
    .s4-section .s4-main { padding: 35px 12px; }
    .s4-section .s4-badge { font-size: 8px; padding: 5px 12px; }
    .s4-section .s4-intro { font-size: 12.5px; }
    .s4-section .s4-mob-card-header { padding: 14px 14px; gap: 10px; }
    .s4-section .s4-mob-metric-title { font-size: 13px; }
    .s4-section .s4-mob-inhouse, .s4-section .s4-mob-ours { padding: 12px 10px; }
    .s4-section .s4-mob-ours-val { font-size: 16px; }
    .s4-section .s4-cta-btn { font-size: 14px; padding: 14px 24px; }
    .s4-section .s4-post-text { font-size: 13px; }
    .s4-section .s4-bottom-cta-text { font-size: 15px; }
}

@media (max-width: 380px) {
    .s4-section .s4-main { padding: 28px 10px; }
    .s4-section .s4-badge { font-size: 7.5px; padding: 4px 10px; letter-spacing: 1px; }
    .s4-section .s4-intro { font-size: 12px; }
    .s4-section .s4-header { margin-bottom: 20px; }
    .s4-section .s4-mob-card-header { padding: 12px 12px; gap: 8px; }
    .s4-section .s4-mob-icon { width: 36px; height: 36px; }
    .s4-section .s4-mob-icon i { font-size: 16px; }
    .s4-section .s4-mob-metric-title { font-size: 12px; }
    .s4-section .s4-mob-metric-sub { font-size: 9.5px; }
    .s4-section .s4-mob-inhouse, .s4-section .s4-mob-ours { padding: 11px 8px; }
    .s4-section .s4-mob-inhouse-val { font-size: 11.5px; }
    .s4-section .s4-mob-ours-val { font-size: 15px; }
    .s4-section .s4-cta-btn { font-size: 13px; padding: 13px 20px; }
    .s4-section .s4-mobile-cards { gap: 10px; }
    .s4-section .s4-post-text { font-size: 12px; }
    .s4-section .s4-bottom-cta-text { font-size: 14px; }
    .s4-section .s4-trust-row { gap: 16px; margin-top: 32px; }
    .s4-section .s4-trust-item span { font-size: 11px; }
    .s4-section .s4-trust-item i { font-size: 20px; }
}

/* Popup Responsive */
@media (min-width: 481px) {
    .s4-popup-form { max-width: 540px; }
}

@media (max-width: 480px) {
    .s4-popup-overlay {
        padding: 10px;
        align-items: flex-end;
    }

    .s4-popup-form {
        max-width: 100%;
        max-height: 96vh;
        border-radius: 20px 20px 0 0;
        transform: scale(1) translateY(100%);
    }

    .s4-popup-overlay.s4-popup-active .s4-popup-form {
        transform: scale(1) translateY(0);
    }

    .s4-popup-header {
        padding: 28px 24px 26px;
        border-radius: 20px 20px 0 0;
    }

    .s4-popup-close {
        top: 14px;
        right: 14px;
        width: 36px;
        height: 36px;
    }

    .s4-popup-close svg {
        width: 16px;
        height: 16px;
    }

    .s4-popup-title {
        font-size: 24px;
        padding-right: 40px;
    }

    .s4-popup-subtitle { font-size: 13.5px; }

    .s4-popup-body { padding: 26px 24px 30px; }

    .s4-form-row { margin-bottom: 18px; }

    .s4-form-label {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .s4-form-input {
        padding: 14px 16px;
        font-size: 15px;
        border-radius: 12px;
    }

    .s4-form-textarea { min-height: 100px; }

    .s4-form-submit {
        padding: 16px 28px;
        font-size: 15.5px;
        border-radius: 12px;
    }

    .s4-form-note {
        font-size: 12px;
        margin-top: 16px;
    }
}

@media (max-width: 360px) {
    .s4-popup-overlay { padding: 6px; }
    .s4-popup-title { font-size: 22px; }
    .s4-popup-subtitle { font-size: 13px; }
    .s4-popup-body { padding: 22px 20px 26px; }
    .s4-form-input { padding: 13px 14px; font-size: 14px; }
    .s4-form-submit { padding: 15px 24px; font-size: 15px; }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .s4-section .s4-reveal,
    .s4-section .s4-row,
    .s4-section .s4-cta-btn,
    .s4-section .s4-trust-item,
    .s4-popup-overlay,
    .s4-popup-form,
    .s4-popup-close,
    .s4-form-submit,
    .s4-form-input {
        transition: none;
        opacity: 1;
        transform: none;
    }
    .s4-form-submit::before {
        display: none;
    }
}
 



/* ===== Section 5 Critical CSS — Inlined ===== */
/* Specialty Section - Optimized */
.s5-section {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #21514B 0%, #57BA91 100%);
    position: relative;
    overflow-x: clip;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.s5-section *,
.s5-section *::before,
.s5-section *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: inherit;
}

/* Decorative Background */
.s5-section .s5-bg-1 {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.s5-section .s5-bg-2 {
    position: absolute;
    bottom: -8%;
    left: -4%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* Main Wrapper */
.s5-section .s5-main {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    z-index: 1;
    padding: 80px 40px;
}

/* Header */
.s5-section .s5-header {
    text-align: center;
    margin-bottom: 40px;
}

.s5-section .s5-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid rgba(255,255,255,0.25);
    color: #21514B;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 30px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.s5-section .s5-badge i {
    color: #ffffff;
    font-size: 14px;
}

.s5-section .s5-title {
    font-size: clamp(20px, 4vw, 42px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.18;
    margin-bottom: 28px;
    letter-spacing: -0.5px;
}

.s5-section .s5-title .s5-highlight {
    color: #c8f0dd;
}

.s5-section .s5-intro {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    font-weight: 400;
    max-width: 820px;
    margin: 0 auto 16px;
    line-height: 1.75;
    text-align: center;
}

.s5-section .s5-intro:last-of-type {
    margin-bottom: 0;
}

/* Grid Container */
.s5-section .s5-grid-wrap {
    border: 2px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.15);
    border-radius: 4px;
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
}

/* Grid Layout - 6 Columns */
.s5-section .s5-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2px;
    background: rgba(33, 81, 75, 0.15);
}

/* Grid Cell */
.s5-section .s5-cell {
    position: relative;
    background: #ffffff;
    padding: clamp(18px, 2.5vw, 30px) clamp(10px, 1.5vw, 16px);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: clamp(8px, 1vw, 12px);
    min-height: clamp(100px, 12vw, 140px);
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(20px);
}

.s5-section.s5-visible .s5-cell {
    opacity: 1;
    transform: translateY(0);
}

/* Gradient overlay */
.s5-section .s5-cell::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #21514B 0%, #57BA91 100%);
    opacity: 0;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
    z-index: 0;
}

.s5-section .s5-cell:hover {
    transform: translateY(-6px);
    z-index: 10;
    box-shadow: 0 14px 36px -8px rgba(33, 81, 75, 0.25), 0 6px 16px -4px rgba(0, 0, 0, 0.1);
}

.s5-section .s5-cell:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Cell Icon */
.s5-section .s5-cell-icon {
    width: clamp(40px, 3.5vw, 50px);
    height: clamp(40px, 3.5vw, 50px);
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.s5-section .s5-cell-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.s5-section .s5-cell:hover .s5-cell-icon {
    transform: scale(1.15);
    filter: brightness(0) invert(1);
}

/* Specialty Name */
.s5-section .s5-cell-name {
    font-size: clamp(11px, 1.2vw, 14px);
    font-weight: 600;
    color: #21514B;
    letter-spacing: 0.3px;
    line-height: 1.25;
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

.s5-section .s5-cell:hover .s5-cell-name {
    color: #ffffff;
}

/* Closing Line */
.s5-section .s5-closing {
    text-align: center;
    margin-top: 40px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.s5-section .s5-closing-text {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    line-height: 1.75;
    margin-bottom: 20px;
}

.s5-section .s5-closing-text strong {
    color: #ffffff;
    font-weight: 700;
}

/* CTA Button */
.s5-section .s5-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #ffffff;
    color: #21514B;
    font-size: 15px;
    font-weight: 700;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 4px 18px rgba(0,0,0,0.15);
    text-decoration: none;
    text-align: center;
}

.s5-section .s5-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}

.s5-section .s5-cta-btn .s5-btn-arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.s5-section .s5-cta-btn:hover .s5-btn-arrow {
    transform: translateX(4px);
}

/* Reveal Animation */
.s5-section .s5-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.s5-section.s5-visible .s5-reveal {
    opacity: 1;
    transform: translateY(0);
}

.s5-section .s5-reveal-d1 { transition-delay: 0.1s; }
.s5-section .s5-reveal-d2 { transition-delay: 0.2s; }

/* ================================================================
   PREMIUM POPUP FORM STYLES
   ================================================================ */

.s5-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 60, 54, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.s5-popup-overlay.s5-popup-active {
    opacity: 1;
    visibility: visible;
}

.s5-popup-overlay.s5-popup-active .s5-popup-form {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.s5-popup-form {
    background: #ffffff;
    border-radius: 24px;
    width: 100%;
    max-width: 540px;
    max-height: 92vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.92) translateY(40px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255,255,255,0.1);
}

/* Full Gradient Header */
.s5-popup-header {
    background: linear-gradient(135deg, #21514B 0%, #57BA91 100%);
    padding: 36px 32px 32px;
    border-radius: 24px 24px 0 0;
    position: relative;
    overflow: hidden;
}

.s5-popup-header::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -60px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.s5-popup-header::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.s5-popup-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    z-index: 10;
}

.s5-popup-close:hover {
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg);
}

.s5-popup-close:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

.s5-popup-close svg {
    width: 18px;
    height: 18px;
    stroke: #ffffff;
    stroke-width: 2.5;
}

.s5-popup-title {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.s5-popup-subtitle {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.55;
    position: relative;
    z-index: 1;
}

/* Solid White Form Body */
.s5-popup-body {
    background: #ffffff;
    padding: 32px 32px 36px;
}

.s5-form-row {
    margin-bottom: 22px;
}

.s5-form-row:last-child {
    margin-bottom: 0;
}

.s5-form-label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: #21514B;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.s5-form-label .s5-required {
    color: #dc3545;
    margin-left: 3px;
}

/* Premium Input Containers */
.s5-form-input {
    width: 100%;
    padding: 16px 20px;
    font-size: 15.5px;
    font-weight: 500;
    color: #1a3c36;
    background: #ffffff;
    border: 2px solid #e5ebe9;
    border-radius: 14px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.s5-form-input::placeholder {
    color: #a3b0ad;
    font-weight: 400;
}

.s5-form-input:hover {
    border-color: #57BA91;
}

.s5-form-input:focus {
    border-color: #57BA91;
    box-shadow: 0 0 0 5px rgba(87, 186, 145, 0.12);
}

.s5-phone-input {
    letter-spacing: 0.5px;
}

.s5-form-textarea {
    min-height: 115px;
    resize: vertical;
    line-height: 1.6;
}

/* Premium Submit Button */
.s5-form-submit {
    width: 100%;
    padding: 18px 32px;
    font-size: 16.5px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #1a3c36 0%, #2d5f56 50%, #3a7a6e 100%);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 30px rgba(26, 60, 54, 0.35);
    margin-top: 10px;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.s5-form-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

.s5-form-submit:hover::before {
    left: 100%;
}

.s5-form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(26, 60, 54, 0.45);
}

.s5-form-submit:focus-visible {
    outline: 3px solid #57BA91;
    outline-offset: 4px;
}

.s5-form-submit svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.s5-form-submit:hover svg {
    transform: translateX(5px);
}

.s5-form-note {
    text-align: center;
    font-size: 12.5px;
    color: #889593;
    margin-top: 18px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.s5-form-note svg {
    width: 15px;
    height: 15px;
    stroke: #57BA91;
    flex-shrink: 0;
}

/* Success Message */
.s5-form-success {
    text-align: center;
    padding: 40px 20px;
}

.s5-success-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #57BA91 0%, #21514B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffffff;
    margin: 0 auto 20px;
}

.s5-success-title {
    font-size: 24px;
    font-weight: 700;
    color: #21514B;
    margin-bottom: 10px;
}

.s5-success-text {
    font-size: 14px;
    color: #656565;
    line-height: 1.6;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (min-width: 2560px) {
    .s5-section .s5-main { max-width: 1400px; padding: 100px 60px; }
    .s5-section .s5-grid-wrap { max-width: 1300px; }
    .s5-section .s5-cell { padding: 36px 20px; min-height: 160px; }
    .s5-section .s5-cell-icon { width: 60px; height: 60px; }
    .s5-section .s5-cell-name { font-size: 16px; }
    .s5-section .s5-closing-text { font-size: 18px; }
    .s5-popup-form { max-width: 580px; }
    .s5-popup-header { padding: 42px 38px 38px; }
    .s5-popup-title { font-size: 32px; }
    .s5-popup-body { padding: 38px 38px 42px; }
}

@media (min-width: 1920px) and (max-width: 2559px) {
    .s5-section .s5-main { max-width: 1300px; padding: 90px 50px; }
    .s5-section .s5-grid-wrap { max-width: 1200px; }
}

@media (min-width: 1440px) and (max-width: 1919px) {
    .s5-section .s5-main { max-width: 1220px; }
    .s5-section .s5-grid-wrap { max-width: 1100px; }
}

@media (min-width: 1200px) and (max-width: 1439px) {
    .s5-section .s5-main { max-width: 1100px; padding: 70px 36px; }
    .s5-section .s5-title { font-size: 38px; }
    .s5-section .s5-intro { font-size: 15px; }
    .s5-section .s5-grid-wrap { max-width: 1000px; }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .s5-section .s5-main { max-width: 1000px; padding: 60px 30px; }
    .s5-section .s5-title { font-size: 34px; }
    .s5-section .s5-intro { font-size: 14.5px; }
    .s5-section .s5-grid-wrap { max-width: 940px; }
    .s5-section .s5-cell { min-height: 120px; }
    .s5-section .s5-closing-text { font-size: 15px; }
}

/* Tablet - 4 columns */
@media (min-width: 768px) and (max-width: 1023px) {
    .s5-section .s5-main { padding: 55px 26px; }
    .s5-section .s5-title { font-size: 30px; }
    .s5-section .s5-intro { font-size: 14px; }
    .s5-section .s5-grid { grid-template-columns: repeat(4, 1fr); }
    .s5-section .s5-cell { min-height: 110px; }
    .s5-section .s5-closing-text { font-size: 14px; }
}

/* Below 768px - 3 columns */
@media (max-width: 767px) {
    .s5-section .s5-main { padding: 50px 16px; }
    .s5-section .s5-header { margin-bottom: 30px; }
    .s5-section .s5-title { font-size: 26px; }
    .s5-section .s5-intro { font-size: 14px; }
    .s5-section .s5-badge { font-size: 10px; padding: 6px 16px; }

    .s5-section .s5-grid-wrap { max-width: 100%; }

    .s5-section .s5-grid { grid-template-columns: repeat(3, 1fr); }

    .s5-section .s5-cell {
        min-height: 100px;
        padding: 16px 10px;
    }

    .s5-section .s5-cell-icon {
        width: 36px;
        height: 36px;
    }

    .s5-section .s5-cell-name { font-size: 10px; }

    .s5-section .s5-closing { margin-top: 30px; }
    .s5-section .s5-closing-text { font-size: 14px; }
    .s5-section .s5-cta-btn { width: 100%; max-width: 320px; font-size: 14px; padding: 14px 28px; }
}

/* Below 480px - 2 columns */
@media (max-width: 480px) {
    .s5-section .s5-main { padding: 35px 12px; }
    .s5-section .s5-title { font-size: 21px; }
    .s5-section .s5-badge { font-size: 8px; padding: 5px 12px; }
    .s5-section .s5-intro { font-size: 12.5px; }

    .s5-section .s5-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2px;
    }

    .s5-section .s5-cell {
        min-height: 90px;
        padding: 14px 8px;
    }

    .s5-section .s5-cell-icon { width: 32px; height: 32px; }

    .s5-section .s5-cell-name { font-size: 9px; }
    .s5-section .s5-closing-text { font-size: 12.5px; }
    .s5-section .s5-cta-btn { font-size: 13px; padding: 12px 24px; }
}

@media (max-width: 380px) {
    .s5-section .s5-main { padding: 28px 10px; }
    .s5-section .s5-title { font-size: 19px; }
    .s5-section .s5-badge { font-size: 7.5px; padding: 4px 10px; letter-spacing: 1px; }
    .s5-section .s5-intro { font-size: 12px; }

    .s5-section .s5-cell {
        min-height: 80px;
        padding: 12px 6px;
    }

    .s5-section .s5-cell-icon { width: 28px; height: 28px; }

    .s5-section .s5-cell-name { font-size: 8px; }
    .s5-section .s5-closing-text { font-size: 11.5px; }
    .s5-section .s5-cta-btn { font-size: 12px; padding: 11px 20px; }
}

/* Popup Responsive */
@media (min-width: 481px) {
    .s5-popup-form { max-width: 540px; }
}

@media (max-width: 480px) {
    .s5-popup-overlay {
        padding: 10px;
        align-items: flex-end;
    }

    .s5-popup-form {
        max-width: 100%;
        max-height: 96vh;
        border-radius: 24px 24px 0 0;
        transform: scale(1) translateY(100%);
    }

    .s5-popup-overlay.s5-popup-active .s5-popup-form {
        transform: scale(1) translateY(0);
    }

    .s5-popup-header {
        padding: 28px 24px 26px;
        border-radius: 24px 24px 0 0;
    }

    .s5-popup-close {
        top: 14px;
        right: 14px;
        width: 36px;
        height: 36px;
    }

    .s5-popup-close svg { width: 16px; height: 16px; }

    .s5-popup-title { font-size: 24px; padding-right: 40px; }

    .s5-popup-subtitle { font-size: 13.5px; }

    .s5-popup-body { padding: 26px 24px 30px; }

    .s5-form-row { margin-bottom: 18px; }

    .s5-form-label { font-size: 13px; margin-bottom: 8px; }

    .s5-form-input { padding: 14px 16px; font-size: 15px; border-radius: 12px; }

    .s5-form-textarea { min-height: 100px; }

    .s5-form-submit { padding: 16px 28px; font-size: 15.5px; border-radius: 12px; }

    .s5-form-note { font-size: 12px; margin-top: 16px; }
}

@media (max-width: 360px) {
    .s5-popup-overlay { padding: 6px; }
    .s5-popup-title { font-size: 22px; }
    .s5-popup-subtitle { font-size: 13px; }
    .s5-popup-body { padding: 22px 20px 26px; }
    .s5-form-input { padding: 13px 14px; font-size: 14px; }
    .s5-form-submit { padding: 15px 24px; font-size: 15px; }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .s5-section .s5-reveal,
    .s5-section .s5-cell,
    .s5-section .s5-cta-btn,
    .s5-popup-overlay,
    .s5-popup-form,
    .s5-popup-close,
    .s5-form-submit,
    .s5-form-input {
        transition: none;
        opacity: 1;
        transform: none;
    }
    .s5-form-submit::before,
    .s5-section .s5-cell::before {
        display: none;
    }
    .s5-section .s5-cell:hover::before {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== Section 6 Critical CSS — Inlined ===== */

/* Process Section - Optimized */
.s6-section {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.s6-section *, .s6-section *::before, .s6-section *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: inherit;
}

.s6-section .s6-bg-1 {
    position: absolute;
    top: -8%;
    right: -6%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(87,186,145,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.s6-section .s6-bg-2 {
    position: absolute;
    bottom: -8%;
    left: -5%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(33,81,75,0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.s6-section .s6-main {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    z-index: 1;
    padding: 80px 40px;
}

.s6-section .s6-header {
    text-align: center;
    margin-bottom: 50px;
}

.s6-section .s6-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(to right, #21514B, #57BA91);
    border: 1px solid rgba(87,186,145,0.25);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 30px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.s6-section .s6-badge i {
    color: #57BA91;
    font-size: 14px;
}

.s6-section .s6-title {
    font-size: clamp(20px, 4vw, 42px);
    font-weight: 800;
    color: #21514B;
    line-height: 1.18;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.s6-section .s6-title .s6-highlight {
    color: #57BA91;
}

.s6-section .s6-intro {
    font-size: 16px;
    color: #656565;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto 14px;
    line-height: 1.75;
    text-align: center;
}

.s6-section .s6-intro:last-of-type {
    margin-bottom: 0;
}

.s6-section .s6-process-wrap {
    position: relative;
    max-width: 1060px;
    margin: 0 auto;
    contain: layout;
}

.s6-section .s6-svg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: visible;
}

.s6-section .s6-dotted-path {
    fill: none;
    stroke: #57BA91;
    stroke-width: 6;
    stroke-dasharray: 0 18;
    stroke-linecap: round;
}

.s6-section .s6-start-dot {
    fill: #57BA91;
}

.s6-section .s6-arrow-marker {
    fill: #57BA91;
}

.s6-section .s6-spacer {
    height: 36px;
}

.s6-section .s6-card {
    position: relative;
    width: 87%;
    z-index: 10;
}

.s6-section .s6-card-left {
    align-self: flex-start;
}

.s6-section .s6-card-right {
    align-self: flex-end;
}

.s6-section .s6-capsule {
    position: relative;
    background: linear-gradient(135deg, #21514B 0%, #57BA91 100%);
    border-radius: 100px;
    padding: 6px;
    display: flex;
    align-items: center;
    min-height: 150px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(33,81,75,0.2), 0 4px 16px rgba(87,186,145,0.15), 0 1px 4px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.1);
    z-index: 10;
    contain: layout paint style;
}

.s6-section .s6-card-right .s6-capsule {
    flex-direction: row-reverse;
}

.s6-section .s6-capsule::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.08) 0%, transparent 100%);
    pointer-events: none;
    z-index: 5;
}

.s6-section .s6-num-wrap {
    flex-shrink: 0;
    position: relative;
    z-index: 20;
}

.s6-section .s6-card-left .s6-num-wrap {
    margin-left: 4px;
}

.s6-section .s6-card-right .s6-num-wrap {
    margin-right: 4px;
}

.s6-section .s6-num-outer {
    width: 120px;
    height: 120px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(33,81,75,0.15);
    border: 4px solid rgba(87,186,145,0.2);
}

.s6-section .s6-num-inner {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    border: 3px solid rgba(87,186,145,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.s6-section .s6-num {
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, #21514B, #57BA91);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.s6-section .s6-text {
    flex-grow: 1;
    padding: 16px 0;
    position: relative;
    z-index: 10;
}

.s6-section .s6-card-left .s6-text {
    margin-left: 28px;
    padding-right: 40px;
}

.s6-section .s6-card-right .s6-text {
    margin-right: 28px;
    padding-left: 40px;
    text-align: right;
}

.s6-section .s6-step-label {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.s6-section .s6-step-title {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.3;
    letter-spacing: 0.3px;
}

.s6-section .s6-step-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.88);
    line-height: 1.7;
    font-weight: 400;
}

.s6-section .s6-bottom-cta {
    text-align: center;
    margin-top: 55px;
}

.s6-section .s6-cta-text {
    font-size: 19px;
    font-weight: 600;
    color: #21514B;
    font-style: italic;
    margin-bottom: 22px;
}

.s6-section .s6-cta-text strong {
    color: #57BA91;
}

.s6-section .s6-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #57BA91 0%, #21514B 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 4px 18px rgba(87,186,145,0.35);
    text-decoration: none;
}

.s6-section .s6-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(87,186,145,0.45);
}

.s6-section .s6-cta-btn .s6-btn-arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.s6-section .s6-cta-btn:hover .s6-btn-arrow {
    transform: translateX(4px);
}

.s6-section .s6-process-flex {
    display: flex;
    flex-direction: column;
}

/* ================================================================
   PREMIUM POPUP FORM STYLES
   ================================================================ */

.s6-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 60, 54, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.s6-popup-overlay.s6-popup-active {
    opacity: 1;
    visibility: visible;
}

.s6-popup-overlay.s6-popup-active .s6-popup-form {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.s6-popup-form {
    background: #ffffff;
    border-radius: 24px;
    width: 100%;
    max-width: 540px;
    max-height: 92vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.92) translateY(40px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255,255,255,0.1);
}

/* Full Gradient Header */
.s6-popup-header {
    background: linear-gradient(135deg, #21514B 0%, #57BA91 100%);
    padding: 36px 32px 32px;
    border-radius: 24px 24px 0 0;
    position: relative;
    overflow: hidden;
}

.s6-popup-header::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -60px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.s6-popup-header::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.s6-popup-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    z-index: 10;
}

.s6-popup-close:hover {
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg);
}

.s6-popup-close:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

.s6-popup-close svg {
    width: 18px;
    height: 18px;
    stroke: #ffffff;
    stroke-width: 2.5;
}

.s6-popup-title {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.s6-popup-subtitle {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.55;
    position: relative;
    z-index: 1;
}

/* Solid White Form Body */
.s6-popup-body {
    background: #ffffff;
    padding: 32px 32px 36px;
}

.s6-form-row {
    margin-bottom: 22px;
}

.s6-form-row:last-child {
    margin-bottom: 0;
}

.s6-form-label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: #21514B;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.s6-form-label .s6-required {
    color: #dc3545;
    margin-left: 3px;
}

/* Premium Input Containers */
.s6-form-input {
    width: 100%;
    padding: 16px 20px;
    font-size: 15.5px;
    font-weight: 500;
    color: #1a3c36;
    background: #ffffff;
    border: 2px solid #e5ebe9;
    border-radius: 14px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.s6-form-input::placeholder {
    color: #a3b0ad;
    font-weight: 400;
}

.s6-form-input:hover {
    border-color: #57BA91;
}

.s6-form-input:focus {
    border-color: #57BA91;
    box-shadow: 0 0 0 5px rgba(87, 186, 145, 0.12);
}

.s6-phone-input {
    letter-spacing: 0.5px;
}

.s6-form-textarea {
    min-height: 115px;
    resize: vertical;
    line-height: 1.6;
}

/* Premium Submit Button */
.s6-form-submit {
    width: 100%;
    padding: 18px 32px;
    font-size: 16.5px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #1a3c36 0%, #2d5f56 50%, #3a7a6e 100%);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 30px rgba(26, 60, 54, 0.35);
    margin-top: 10px;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.s6-form-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

.s6-form-submit:hover::before {
    left: 100%;
}

.s6-form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(26, 60, 54, 0.45);
}

.s6-form-submit:focus-visible {
    outline: 3px solid #57BA91;
    outline-offset: 4px;
}

.s6-form-submit svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.s6-form-submit:hover svg {
    transform: translateX(5px);
}

.s6-form-note {
    text-align: center;
    font-size: 12.5px;
    color: #889593;
    margin-top: 18px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.s6-form-note svg {
    width: 15px;
    height: 15px;
    stroke: #57BA91;
    flex-shrink: 0;
}

/* Success Message */
.s6-form-success {
    text-align: center;
    padding: 40px 20px;
}

.s6-success-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #57BA91 0%, #21514B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffffff;
    margin: 0 auto 20px;
}

.s6-success-title {
    font-size: 24px;
    font-weight: 700;
    color: #21514B;
    margin-bottom: 10px;
}

.s6-success-text {
    font-size: 14px;
    color: #656565;
    line-height: 1.6;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (min-width: 2560px) {
    .s6-section .s6-main { max-width: 1400px; padding: 100px 60px; }
    .s6-section .s6-process-wrap { max-width: 1200px; }
    .s6-section .s6-capsule { min-height: 170px; }
    .s6-section .s6-num-outer { width: 140px; height: 140px; }
    .s6-section .s6-num-inner { width: 104px; height: 104px; }
    .s6-section .s6-num { font-size: 64px; }
    .s6-section .s6-step-title { font-size: 24px; }
    .s6-section .s6-step-desc { font-size: 15px; }
    .s6-popup-form { max-width: 580px; }
    .s6-popup-header { padding: 42px 38px 38px; }
    .s6-popup-title { font-size: 32px; }
    .s6-popup-body { padding: 38px 38px 42px; }
}

@media (min-width: 1920px) and (max-width: 2559px) {
    .s6-section .s6-main { max-width: 1300px; padding: 90px 50px; }
    .s6-section .s6-process-wrap { max-width: 1120px; }
}

@media (min-width: 1440px) and (max-width: 1919px) {
    .s6-section .s6-main { max-width: 1220px; }
}

@media (min-width: 1200px) and (max-width: 1439px) {
    .s6-section .s6-main { max-width: 1100px; padding: 70px 36px; }
    .s6-section .s6-process-wrap { max-width: 980px; }
    .s6-section .s6-num-outer { width: 110px; height: 110px; }
    .s6-section .s6-num-inner { width: 80px; height: 80px; }
    .s6-section .s6-num { font-size: 50px; }
    .s6-section .s6-step-title { font-size: 18px; }
    .s6-section .s6-step-desc { font-size: 12.5px; }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .s6-section .s6-main { max-width: 1000px; padding: 60px 30px; }
    .s6-section .s6-process-wrap { max-width: 900px; }
    .s6-section .s6-capsule { min-height: 140px; padding: 5px; }
    .s6-section .s6-num-outer { width: 100px; height: 100px; border-width: 3px; }
    .s6-section .s6-num-inner { width: 74px; height: 74px; }
    .s6-section .s6-num { font-size: 44px; }
    .s6-section .s6-step-title { font-size: 17px; }
    .s6-section .s6-step-desc { font-size: 12px; }
    .s6-section .s6-card-left .s6-text { margin-left: 22px; padding-right: 32px; }
    .s6-section .s6-card-right .s6-text { margin-right: 22px; padding-left: 32px; }
    .s6-section .s6-spacer { height: 30px; }
}

/* Tablet & Below - No dotted line */
@media (max-width: 1023px) {
    .s6-section .s6-svg-overlay { display: none !important; }

    .s6-section .s6-card {
        width: 100%;
        align-self: center !important;
    }

    .s6-section .s6-capsule {
        border-radius: 24px;
        flex-direction: column !important;
        min-height: auto;
        padding: 24px 20px 28px;
        text-align: center;
    }

    .s6-section .s6-card-right .s6-capsule {
        flex-direction: column !important;
    }

    .s6-section .s6-num-wrap { margin: 0 0 16px 0 !important; }

    .s6-section .s6-text {
        margin: 0 !important;
        padding: 0 !important;
        text-align: center !important;
    }

    .s6-section .s6-spacer { height: 16px; }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .s6-section .s6-main { padding: 55px 26px; }
    .s6-section .s6-header { margin-bottom: 40px; }
    .s6-section .s6-card { max-width: 600px; margin: 0 auto; }
    .s6-section .s6-num-outer { width: 90px; height: 90px; border-width: 3px; }
    .s6-section .s6-num-inner { width: 66px; height: 66px; border-width: 2px; }
    .s6-section .s6-num { font-size: 38px; }
    .s6-section .s6-step-label { font-size: 9px; }
    .s6-section .s6-step-title { font-size: 17px; }
    .s6-section .s6-step-desc { font-size: 12px; line-height: 1.65; }
    .s6-section .s6-cta-text { font-size: 17px; }
}

@media (max-width: 767px) {
    .s6-section .s6-main { padding: 50px 16px; }
    .s6-section .s6-header { margin-bottom: 34px; }
    .s6-section .s6-badge { font-size: 10px; padding: 6px 16px; }
    .s6-section .s6-num-outer { width: 80px; height: 80px; border-width: 3px; }
    .s6-section .s6-num-inner { width: 58px; height: 58px; border-width: 2px; }
    .s6-section .s6-num { font-size: 34px; }
    .s6-section .s6-step-title { font-size: 16px; }
    .s6-section .s6-step-desc { font-size: 12.5px; }
    .s6-section .s6-step-label { font-size: 9px; }
    .s6-section .s6-spacer { height: 14px; }
    .s6-section .s6-bottom-cta { margin-top: 40px; }
    .s6-section .s6-cta-text { font-size: 16px; }
    .s6-section .s6-cta-btn { width: 100%; max-width: 320px; font-size: 14px; padding: 14px 28px; }
}

@media (min-width: 576px) and (max-width: 767px) {
    .s6-section .s6-card { max-width: 500px; margin: 0 auto; }
}

@media (min-width: 481px) and (max-width: 575px) {
    .s6-section .s6-main { padding: 40px 14px; }
    .s6-section .s6-badge { font-size: 9px; padding: 5px 14px; }
    .s6-section .s6-card { max-width: 440px; margin: 0 auto; }
    .s6-section .s6-capsule { padding: 20px 18px 24px; border-radius: 22px; }
    .s6-section .s6-num-outer { width: 72px; height: 72px; }
    .s6-section .s6-num-inner { width: 52px; height: 52px; }
    .s6-section .s6-num { font-size: 30px; }
    .s6-section .s6-step-title { font-size: 15px; }
    .s6-section .s6-step-desc { font-size: 12px; }
}

@media (max-width: 480px) {
    .s6-section .s6-main { padding: 35px 12px; }
    .s6-section .s6-badge { font-size: 8px; padding: 5px 12px; }
    .s6-section .s6-capsule { padding: 18px 16px 22px; border-radius: 20px; }
    .s6-section .s6-num-outer { width: 66px; height: 66px; }
    .s6-section .s6-num-inner { width: 48px; height: 48px; }
    .s6-section .s6-num { font-size: 28px; }
    .s6-section .s6-step-title { font-size: 14px; }
    .s6-section .s6-step-desc { font-size: 11.5px; }
    .s6-section .s6-cta-text { font-size: 15px; }
}

@media (max-width: 380px) {
    .s6-section .s6-main { padding: 28px 10px; }
    .s6-section .s6-badge { font-size: 7.5px; padding: 4px 10px; }
    .s6-section .s6-capsule { padding: 16px 14px 20px; border-radius: 18px; }
    .s6-section .s6-num-outer { width: 60px; height: 60px; }
    .s6-section .s6-num-inner { width: 44px; height: 44px; }
    .s6-section .s6-num { font-size: 26px; }
    .s6-section .s6-step-title { font-size: 13px; }
    .s6-section .s6-step-desc { font-size: 11px; }
    .s6-section .s6-spacer { height: 10px; }
    .s6-section .s6-cta-text { font-size: 14px; }
}

/* Popup Responsive */
@media (min-width: 481px) {
    .s6-popup-form { max-width: 540px; }
}

@media (max-width: 480px) {
    .s6-popup-overlay {
        padding: 10px;
        align-items: flex-end;
    }

    .s6-popup-form {
        max-width: 100%;
        max-height: 96vh;
        border-radius: 24px 24px 0 0;
        transform: scale(1) translateY(100%);
    }

    .s6-popup-overlay.s6-popup-active .s6-popup-form {
        transform: scale(1) translateY(0);
    }

    .s6-popup-header {
        padding: 28px 24px 26px;
        border-radius: 24px 24px 0 0;
    }

    .s6-popup-close {
        top: 14px;
        right: 14px;
        width: 36px;
        height: 36px;
    }

    .s6-popup-close svg { width: 16px; height: 16px; }

    .s6-popup-title { font-size: 24px; padding-right: 40px; }

    .s6-popup-subtitle { font-size: 13.5px; }

    .s6-popup-body { padding: 26px 24px 30px; }

    .s6-form-row { margin-bottom: 18px; }

    .s6-form-label { font-size: 13px; margin-bottom: 8px; }

    .s6-form-input { padding: 14px 16px; font-size: 15px; border-radius: 12px; }

    .s6-form-textarea { min-height: 100px; }

    .s6-form-submit { padding: 16px 28px; font-size: 15.5px; border-radius: 12px; }

    .s6-form-note { font-size: 12px; margin-top: 16px; }
}

@media (max-width: 360px) {
    .s6-popup-overlay { padding: 6px; }
    .s6-popup-title { font-size: 22px; }
    .s6-popup-subtitle { font-size: 13px; }
    .s6-popup-body { padding: 22px 20px 26px; }
    .s6-form-input { padding: 13px 14px; font-size: 14px; }
    .s6-form-submit { padding: 15px 24px; font-size: 15px; }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .s6-section .s6-cta-btn,
    .s6-section .s6-cta-btn .s6-btn-arrow,
    .s6-popup-overlay,
    .s6-popup-form,
    .s6-popup-close,
    .s6-form-submit,
    .s6-form-input {
        transition: none;
    }
    .s6-section .s6-cta-btn:hover { transform: none; }
    .s6-section .s6-cta-btn:hover .s6-btn-arrow { transform: none; }
    .s6-form-submit::before { display: none; }
}

/* ===== Section 7 Critical CSS — Inlined ===== */
/* Testimonials Section - Optimized */
.s7-section {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.s7-section *, .s7-section *::before, .s7-section *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: inherit;
}

/* Header Section with Gradient Background */
.s7-header-wrap {
    background: linear-gradient(135deg, #21514B 0%, #57BA91 100%);
    padding: 80px 40px 100px;
    position: relative;
    overflow: hidden;
}

.s7-header-wrap::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.s7-header-wrap::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.s7-header {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.s7-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.s7-badge i {
    font-size: 14px;
}

.s7-title {
    font-size: clamp(22px, 4vw, 44px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.s7-subtitle {
    font-size: clamp(14px, 2.2vw, 17px);
    color: rgba(255,255,255,0.9);
    font-weight: 400;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.75;
}

/* Logo Cards Section */
.s7-logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 45px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.s7-logo-card {
    background: #ffffff;
    border-radius: 12px;
    width: 160px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s cubic-bezier(0.4,0,0.2,1);
    cursor: pointer;
    contain: layout style;
}

.s7-logo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15), 0 6px 15px rgba(0,0,0,0.1);
}

.s7-logo-card img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(0%);
    opacity: 1;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

/* Reviews Container */
.s7-reviews-wrap {
    background: #ffffff;
    padding: 60px 40px 80px;
    position: relative;
}

.s7-reviews-container {
    max-width: 1300px;
    margin: 0 auto;
}

/* Coverflow Container */
.s7-coverflow-container {
    perspective: 1200px;
    perspective-origin: 50% 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 480px;
    position: relative;
    margin-bottom: 50px;
}

.s7-coverflow-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transform-style: preserve-3d;
    width: 100%;
    max-width: 1400px;
}

/* Testimonial Card */
.s7-card {
    position: absolute;
    width: 380px;
    height: 420px;
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 8px 40px rgba(33,81,75,0.12), 0 4px 16px rgba(33,81,75,0.08);
    border: 1px solid rgba(33,81,75,0.08);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.6s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    transform-style: preserve-3d;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    contain: layout style;
}

.s7-card:hover {
    box-shadow: 0 16px 60px rgba(33,81,75,0.18), 0 8px 24px rgba(33,81,75,0.12);
}

/* Card Positions */
.s7-pos-0 {
    transform: translateX(-540px) translateZ(-180px) rotateY(40deg) scale(0.7);
    opacity: 0.5;
    z-index: 1;
}

.s7-pos-1 {
    transform: translateX(-290px) translateZ(-60px) rotateY(20deg) scale(0.85);
    opacity: 0.8;
    z-index: 2;
}

.s7-pos-2 {
    transform: translateX(0) translateZ(80px) rotateY(0deg) scale(1);
    opacity: 1;
    z-index: 5;
    background: #a8e6cf;
}

.s7-pos-3 {
    transform: translateX(290px) translateZ(-60px) rotateY(-20deg) scale(0.85);
    opacity: 0.8;
    z-index: 2;
}

.s7-pos-4 {
    transform: translateX(540px) translateZ(-180px) rotateY(-40deg) scale(0.7);
    opacity: 0.5;
    z-index: 1;
}

/* Profile Section */
.s7-profile {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    flex-shrink: 0;
}

.s7-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #21514B, #57BA91);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(33,81,75,0.2);
    overflow: hidden;
}

.s7-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.s7-profile-info {
    flex: 1;
    min-width: 0;
}

.s7-name {
    font-size: 16px;
    font-weight: 700;
    color: #21514B;
    margin-bottom: 3px;
    line-height: 1.3;
}

.s7-role {
    font-size: 12px;
    color: #718096;
    line-height: 1.4;
    margin-bottom: 2px;
}

.s7-org {
    font-size: 11px;
    color: #57BA91;
    font-weight: 600;
}

/* Star Rating */
.s7-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.s7-star {
    color: #57BA91;
    font-size: 18px;
}

/* Quote Content - Scrollable Area */
.s7-quote-wrap {
    flex: 1;
    overflow-y: auto;
    padding-right: 8px;
    min-height: 0;
}

.s7-quote-wrap::-webkit-scrollbar {
    width: 5px;
}

.s7-quote-wrap::-webkit-scrollbar-track {
    background: rgba(33,81,75,0.05);
    border-radius: 10px;
}

.s7-quote-wrap::-webkit-scrollbar-thumb {
    background: rgba(87,186,145,0.4);
    border-radius: 10px;
}

.s7-quote-wrap::-webkit-scrollbar-thumb:hover {
    background: rgba(87,186,145,0.6);
}

.s7-quote-title {
    font-size: 15px;
    font-weight: 700;
    color: #21514B;
    margin-bottom: 10px;
    line-height: 1.4;
}

.s7-quote-text {
    font-size: 13px;
    color: #4a5568;
    line-height: 1.7;
    position: relative;
}

/* Navigation Dots */
.s7-nav-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.s7-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #21514B;
    opacity: 0.25;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
    border: none;
    padding: 0;
}

.s7-dot:hover {
    opacity: 0.5;
    transform: scale(1.15);
}

.s7-dot.s7-active {
    opacity: 1;
    background: #57BA91;
    transform: scale(1.25);
    box-shadow: 0 0 16px rgba(87,186,145,0.5);
}

/* Closing Section */
.s7-closing {
    max-width: 900px;
    margin: 60px auto 0;
    text-align: center;
    padding: 0 20px;
}

.s7-closing-text {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 40px;
}

.s7-cta-text {
    font-size: 20px;
    font-weight: 600;
    color: #21514B;
    margin-bottom: 24px;
    font-style: italic;
}

.s7-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #57BA91 0%, #21514B 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    padding: 18px 36px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 6px 24px rgba(87,186,145,0.35);
    text-decoration: none;
}

.s7-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(87,186,145,0.45);
}

.s7-cta-btn .s7-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.s7-cta-btn:hover .s7-arrow {
    transform: translateX(4px);
}

/* Trust Badge */
.s7-trust {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
    color: #718096;
    font-size: 14px;
    font-weight: 500;
}

.s7-trust svg {
    width: 22px;
    height: 22px;
    fill: #57BA91;
}

/* Smooth Transitions */
.s7-card.s7-transitioning {
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ================================================================
   PREMIUM POPUP FORM STYLES
   ================================================================ */

.s7-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 60, 54, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.s7-popup-overlay.s7-popup-active {
    opacity: 1;
    visibility: visible;
}

.s7-popup-overlay.s7-popup-active .s7-popup-form {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.s7-popup-form {
    background: #ffffff;
    border-radius: 24px;
    width: 100%;
    max-width: 540px;
    max-height: 92vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.92) translateY(40px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255,255,255,0.1);
}

/* Full Gradient Header */
.s7-popup-header {
    background: linear-gradient(135deg, #21514B 0%, #57BA91 100%);
    padding: 36px 32px 32px;
    border-radius: 24px 24px 0 0;
    position: relative;
    overflow: hidden;
}

.s7-popup-header::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -60px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.s7-popup-header::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.s7-popup-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    z-index: 10;
}

.s7-popup-close:hover {
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg);
}

.s7-popup-close:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

.s7-popup-close svg {
    width: 18px;
    height: 18px;
    stroke: #ffffff;
    stroke-width: 2.5;
}

.s7-popup-title {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.s7-popup-subtitle {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.55;
    position: relative;
    z-index: 1;
}

/* Solid White Form Body */
.s7-popup-body {
    background: #ffffff;
    padding: 32px 32px 36px;
}

.s7-form-row {
    margin-bottom: 22px;
}

.s7-form-row:last-child {
    margin-bottom: 0;
}

.s7-form-label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: #21514B;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.s7-form-label .s7-required {
    color: #dc3545;
    margin-left: 3px;
}

/* Premium Input Containers */
.s7-form-input {
    width: 100%;
    padding: 16px 20px;
    font-size: 15.5px;
    font-weight: 500;
    color: #1a3c36;
    background: #ffffff;
    border: 2px solid #e5ebe9;
    border-radius: 14px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.s7-form-input::placeholder {
    color: #a3b0ad;
    font-weight: 400;
}

.s7-form-input:hover {
    border-color: #57BA91;
}

.s7-form-input:focus {
    border-color: #57BA91;
    box-shadow: 0 0 0 5px rgba(87, 186, 145, 0.12);
}

.s7-phone-input {
    letter-spacing: 0.5px;
}

.s7-form-textarea {
    min-height: 115px;
    resize: vertical;
    line-height: 1.6;
}

/* Premium Submit Button */
.s7-form-submit {
    width: 100%;
    padding: 18px 32px;
    font-size: 16.5px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #1a3c36 0%, #2d5f56 50%, #3a7a6e 100%);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 30px rgba(26, 60, 54, 0.35);
    margin-top: 10px;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.s7-form-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

.s7-form-submit:hover::before {
    left: 100%;
}

.s7-form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(26, 60, 54, 0.45);
}

.s7-form-submit:focus-visible {
    outline: 3px solid #57BA91;
    outline-offset: 4px;
}

.s7-form-submit svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.s7-form-submit:hover svg {
    transform: translateX(5px);
}

.s7-form-note {
    text-align: center;
    font-size: 12.5px;
    color: #889593;
    margin-top: 18px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.s7-form-note svg {
    width: 15px;
    height: 15px;
    stroke: #57BA91;
    flex-shrink: 0;
}

/* Success Message */
.s7-form-success {
    text-align: center;
    padding: 40px 20px;
}

.s7-success-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #57BA91 0%, #21514B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffffff;
    margin: 0 auto 20px;
}

.s7-success-title {
    font-size: 24px;
    font-weight: 700;
    color: #21514B;
    margin-bottom: 10px;
}

.s7-success-text {
    font-size: 14px;
    color: #656565;
    line-height: 1.6;
}

/* ================================================================
   RESPONSIVE STYLES
   ================================================================ */

@media (min-width: 2560px) {
    .s7-header-wrap { padding: 100px 60px 120px; }
    .s7-title { font-size: clamp(26px, 4vw, 52px); }
    .s7-subtitle { font-size: clamp(16px, 2vw, 19px); }
    .s7-logos-row { gap: 32px; margin-top: 55px; }
    .s7-logo-card { width: 180px; height: 80px; padding: 16px 24px; border-radius: 14px; }
    .s7-reviews-wrap { padding: 80px 60px 100px; }
    .s7-card { width: 420px; height: 460px; padding: 32px 28px; }
    .s7-coverflow-container { min-height: 540px; }
    .s7-name { font-size: 18px; }
    .s7-quote-title { font-size: 17px; }
    .s7-quote-text { font-size: 14px; }
    .s7-popup-form { max-width: 580px; }
    .s7-popup-header { padding: 42px 38px 38px; }
    .s7-popup-title { font-size: 32px; }
    .s7-popup-body { padding: 38px 38px 42px; }
}

@media (min-width: 1920px) and (max-width: 2559px) {
    .s7-header-wrap { padding: 90px 50px 110px; }
    .s7-title { font-size: clamp(24px, 4vw, 48px); }
    .s7-logos-row { gap: 28px; margin-top: 50px; }
    .s7-logo-card { width: 170px; height: 75px; }
    .s7-card { width: 400px; height: 440px; }
    .s7-coverflow-container { min-height: 520px; }
}

@media (min-width: 1440px) and (max-width: 1919px) {
    .s7-header-wrap { padding: 80px 40px 100px; }
}

@media (min-width: 1200px) and (max-width: 1439px) {
    .s7-header-wrap { padding: 70px 36px 90px; }
    .s7-title { font-size: clamp(22px, 3.5vw, 40px); }
    .s7-subtitle { font-size: clamp(14px, 2vw, 16px); }
    .s7-logos-row { gap: 20px; margin-top: 40px; }
    .s7-logo-card { width: 150px; height: 65px; padding: 12px 18px; }
    .s7-reviews-wrap { padding: 50px 36px 70px; }
    .s7-card { width: 350px; height: 400px; padding: 24px 20px; }
    .s7-coverflow-container { min-height: 460px; }
    .s7-pos-0 { transform: translateX(-480px) translateZ(-180px) rotateY(40deg) scale(0.7); }
    .s7-pos-1 { transform: translateX(-260px) translateZ(-40px) rotateY(18deg) scale(0.88); }
    .s7-pos-3 { transform: translateX(260px) translateZ(-40px) rotateY(-18deg) scale(0.88); }
    .s7-pos-4 { transform: translateX(480px) translateZ(-180px) rotateY(-40deg) scale(0.7); }
    .s7-avatar { width: 54px; height: 54px; }
    .s7-name { font-size: 15px; }
    .s7-role { font-size: 11px; }
    .s7-quote-title { font-size: 14px; }
    .s7-quote-text { font-size: 12px; }
    .s7-closing-text { font-size: 15px; }
    .s7-cta-text { font-size: 18px; }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .s7-header-wrap { padding: 60px 30px 80px; }
    .s7-title { font-size: clamp(20px, 3vw, 36px); }
    .s7-subtitle { font-size: clamp(13px, 2vw, 15px); }
    .s7-logos-row { gap: 18px; margin-top: 36px; }
    .s7-logo-card { width: 140px; height: 60px; padding: 10px 16px; border-radius: 10px; }
    .s7-reviews-wrap { padding: 45px 30px 60px; }
    .s7-card { width: 320px; height: 380px; padding: 22px 18px; }
    .s7-coverflow-container { min-height: 440px; }
    .s7-pos-0, .s7-pos-4 { display: none; }
    .s7-pos-1 { transform: translateX(-220px) translateZ(-40px) rotateY(18deg) scale(0.88); }
    .s7-pos-3 { transform: translateX(220px) translateZ(-40px) rotateY(-18deg) scale(0.88); }
    .s7-avatar { width: 54px; height: 54px; }
    .s7-name { font-size: 15px; }
    .s7-role { font-size: 11px; }
    .s7-quote-title { font-size: 14px; }
    .s7-quote-text { font-size: 12px; }
    .s7-closing-text { font-size: 15px; }
    .s7-cta-text { font-size: 18px; }
}

/* Tablet */
@media (max-width: 1023px) {
    .s7-header-wrap { padding: 55px 26px 70px; }
    .s7-title { font-size: clamp(18px, 4vw, 32px); }
    .s7-subtitle { font-size: clamp(12px, 2vw, 15px); max-width: 600px; }
    .s7-logos-row { gap: 16px; margin-top: 32px; }
    .s7-logo-card { width: 140px; height: 56px; padding: 10px 14px; border-radius: 10px; }
    .s7-reviews-wrap { padding: 40px 26px 55px; }

    .s7-coverflow-container {
        min-height: auto;
        perspective: none;
        margin-bottom: 40px;
    }

    .s7-coverflow-wrapper {
        flex-direction: column;
        gap: 0;
        transform-style: flat;
    }

    .s7-card {
        position: relative;
        width: 100%;
        max-width: 500px;
        height: auto;
        min-height: 360px;
        transform: none !important;
        opacity: 1 !important;
        display: none;
        margin: 0 auto;
    }

    .s7-card.s7-mobile-active {
        display: flex;
        animation: s7FadeIn 0.4s ease;
    }

    @keyframes s7FadeIn {
        from { opacity: 0; transform: translateY(15px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .s7-pos-2::before { display: none; }

    .s7-card::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(135deg, #57BA91, #21514B);
        border-radius: 22px;
        z-index: -1;
        opacity: 0.15;
    }

    .s7-quote-wrap {
        max-height: none;
        overflow-y: visible;
    }

    .s7-closing { margin-top: 50px; }
    .s7-closing-text { font-size: 15px; margin-bottom: 30px; }
    .s7-cta-text { font-size: 17px; }
    .s7-cta-btn { font-size: 15px; padding: 16px 32px; }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .s7-card { max-width: 550px; padding: 26px 24px; }
    .s7-logos-row { gap: 18px; }
    .s7-logo-card { width: 140px; height: 58px; }
}

/* Mobile */
@media (max-width: 767px) {
    .s7-header-wrap { padding: 50px 18px 65px; }
    .s7-badge { font-size: 10px; padding: 6px 16px; }
    .s7-title { font-size: clamp(16px, 5vw, 26px); margin-bottom: 20px; }
    .s7-subtitle { font-size: 14px; }
    .s7-logos-row { gap: 12px; margin-top: 28px; }
    .s7-logo-card { width: 120px; height: 52px; padding: 8px 12px; border-radius: 8px; }
    .s7-reviews-wrap { padding: 35px 18px 50px; }
    .s7-card { max-width: 100%; min-height: 340px; padding: 22px 20px; border-radius: 16px; }
    .s7-avatar { width: 52px; height: 52px; font-size: 18px; }
    .s7-name { font-size: 15px; }
    .s7-role { font-size: 11px; }
    .s7-org { font-size: 10px; }
    .s7-star { font-size: 16px; }
    .s7-quote-title { font-size: 14px; }
    .s7-quote-text { font-size: 12.5px; }
    .s7-nav-dots { gap: 10px; }
    .s7-dot { width: 10px; height: 10px; }
    .s7-closing { margin-top: 40px; }
    .s7-closing-text { font-size: 14px; }
    .s7-cta-text { font-size: 16px; margin-bottom: 20px; }
    .s7-cta-btn { width: 100%; max-width: 320px; font-size: 14px; padding: 15px 28px; }
    .s7-trust { font-size: 13px; margin-top: 40px; flex-wrap: wrap; text-align: center; }
}

@media (max-width: 580px) {
    .s7-logos-row {
        gap: 10px;
        margin-top: 24px;
    }
    .s7-logo-card {
        width: calc(50% - 6px);
        max-width: 140px;
        height: 50px;
        padding: 8px 10px;
    }
}

@media (max-width: 480px) {
    .s7-header-wrap { padding: 40px 14px 55px; }
    .s7-badge { font-size: 9px; padding: 5px 14px; }
    .s7-title { font-size: clamp(15px, 6vw, 23px); }
    .s7-subtitle { font-size: 13px; }
    .s7-logos-row { gap: 8px; margin-top: 22px; }
    .s7-logo-card { width: calc(50% - 5px); max-width: 130px; height: 46px; padding: 6px 8px; border-radius: 8px; }
    .s7-reviews-wrap { padding: 30px 14px 45px; }
    .s7-card { padding: 20px 18px; min-height: 320px; }
    .s7-profile { gap: 12px; }
    .s7-avatar { width: 48px; height: 48px; }
    .s7-name { font-size: 14px; }
    .s7-quote-title { font-size: 13px; }
    .s7-quote-text { font-size: 12px; }
    .s7-cta-text { font-size: 15px; }
}

@media (max-width: 380px) {
    .s7-header-wrap { padding: 35px 12px 50px; }
    .s7-badge { font-size: 8px; padding: 4px 12px; }
    .s7-title { font-size: clamp(14px, 6vw, 21px); }
    .s7-subtitle { font-size: 12.5px; }
    .s7-logos-row { gap: 6px; margin-top: 20px; }
    .s7-logo-card { width: calc(50% - 4px); max-width: 120px; height: 42px; padding: 5px 6px; border-radius: 6px; }
    .s7-reviews-wrap { padding: 25px 12px 40px; }
    .s7-card { padding: 18px 16px; min-height: 300px; border-radius: 14px; }
    .s7-avatar { width: 44px; height: 44px; font-size: 16px; }
    .s7-name { font-size: 13px; }
    .s7-role { font-size: 10px; }
    .s7-quote-title { font-size: 12px; }
    .s7-quote-text { font-size: 11px; }
    .s7-cta-text { font-size: 14px; }
    .s7-trust { font-size: 12px; }
}

/* Popup Responsive */
@media (min-width: 481px) {
    .s7-popup-form { max-width: 540px; }
}

@media (max-width: 480px) {
    .s7-popup-overlay {
        padding: 10px;
        align-items: flex-end;
    }

    .s7-popup-form {
        max-width: 100%;
        max-height: 96vh;
        border-radius: 24px 24px 0 0;
        transform: scale(1) translateY(100%);
    }

    .s7-popup-overlay.s7-popup-active .s7-popup-form {
        transform: scale(1) translateY(0);
    }

    .s7-popup-header {
        padding: 28px 24px 26px;
        border-radius: 24px 24px 0 0;
    }

    .s7-popup-close {
        top: 14px;
        right: 14px;
        width: 36px;
        height: 36px;
    }

    .s7-popup-close svg { width: 16px; height: 16px; }

    .s7-popup-title { font-size: 24px; padding-right: 40px; }

    .s7-popup-subtitle { font-size: 13.5px; }

    .s7-popup-body { padding: 26px 24px 30px; }

    .s7-form-row { margin-bottom: 18px; }

    .s7-form-label { font-size: 13px; margin-bottom: 8px; }

    .s7-form-input { padding: 14px 16px; font-size: 15px; border-radius: 12px; }

    .s7-form-textarea { min-height: 100px; }

    .s7-form-submit { padding: 16px 28px; font-size: 15.5px; border-radius: 12px; }

    .s7-form-note { font-size: 12px; margin-top: 16px; }
}

@media (max-width: 360px) {
    .s7-popup-overlay { padding: 6px; }
    .s7-popup-title { font-size: 22px; }
    .s7-popup-subtitle { font-size: 13px; }
    .s7-popup-body { padding: 22px 20px 26px; }
    .s7-form-input { padding: 13px 14px; font-size: 14px; }
    .s7-form-submit { padding: 15px 24px; font-size: 15px; }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .s7-card,
    .s7-logo-card,
    .s7-cta-btn,
    .s7-cta-btn .s7-arrow,
    .s7-dot,
    .s7-header-wrap::before,
    .s7-header-wrap::after,
    .s7-popup-overlay,
    .s7-popup-form,
    .s7-popup-close,
    .s7-form-submit,
    .s7-form-input {
        transition: none !important;
        animation: none !important;
    }
    .s7-card {
        transform: none !important;
        opacity: 1 !important;
    }
    .s7-cta-btn {
        transform: none !important;
        box-shadow: 0 6px 24px rgba(87,186,145,0.35) !important;
    }
    .s7-form-submit::before { display: none; }
}

/* ===== Section 8 Critical CSS — Inlined ===== */
/* EHR Partners Section - Optimized */
.ehr-section-bg {
    background: linear-gradient(to right, #21514B, #57BA91);
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.ehr-section-bg *,
.ehr-section-bg *::before,
.ehr-section-bg *::after {
    box-sizing: border-box;
    font-family: inherit;
}

/* Heading Styles */
.ehr-section-bg h2,
.ehr-section-bg h2 span {
    color: #ffffff;
}

/* Logo Carousel Container */
.logo-carousel {
    width: 100%;
    overflow: hidden;
    padding: 20px 0 40px;
}

.carousel-row {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 20px 0;
}

.carousel-track {
    display: flex;
    width: max-content;
    gap: 24px;
    animation: scroll-left 60s linear infinite;
}

.right-to-left .carousel-track {
    animation: scroll-right 60s linear infinite;
}

/* Hover pause per row */
.carousel-row:hover .carousel-track {
    animation-play-state: paused;
}

/* Premium logo cards */
.logo-card {
    width: 200px;
    height: 110px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #22c55e;
    contain: layout style;
}

.logo-card:hover {
    transform: scale(1.08);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

/* Image fitting - optimized for logos */
.logo-card img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: saturate(1.1);
}

/* Animations */
@keyframes scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes scroll-right {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

/* Fade edges for premium look */
.carousel-row::before,
.carousel-row::after {
    content: '';
    position: absolute;
    inset: 0 auto;
    width: 100px;
    z-index: 10;
    pointer-events: none;
}

.carousel-row::before {
    left: 0;
    background: linear-gradient(to right, rgba(33, 81, 75, 0.9), transparent);
}

.carousel-row::after {
    right: 0;
    background: linear-gradient(to left, rgba(87, 186, 145, 0.9), transparent);
}

/* Responsive adjustments */
@media (min-width: 2560px) {
    .logo-card {
        width: 240px;
        height: 130px;
    }
}

@media (max-width: 768px) {
    .logo-card {
        width: 160px;
        height: 90px;
        padding: 14px;
    }

    .carousel-track {
        gap: 16px;
    }

    .carousel-row::before,
    .carousel-row::after {
        width: 50px;
    }
}

@media (max-width: 480px) {
    .logo-card {
        width: 130px;
        height: 75px;
        padding: 10px;
        border-radius: 12px;
    }

    .carousel-track {
        gap: 12px;
    }

    .carousel-row::before,
    .carousel-row::after {
        width: 40px;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .carousel-track {
        animation: none;
    }
    
    .logo-card {
        transition: none;
    }
}
/* ===== Section 9 Critical CSS — Inlined ===== */
/* Pricing Section - Optimized */
.s9-section {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    background: #fff;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.s9-section *,
.s9-section *::before,
.s9-section *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: inherit;
}

.s9-main {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    z-index: 1;
    padding: 60px 40px;
}

.s9-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -8%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(87,186,145,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.s9-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(33,81,75,0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.s9-header {
    text-align: center;
    margin-bottom: 36px;
    contain: layout;
}

.s9-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(87,186,145,0.12);
    border: 1px solid rgba(87,186,145,0.25);
    color: #21514B;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.s9-badge svg {
    width: 14px;
    height: 14px;
    fill: #21514B;
}

.s9-title {
    font-size: 40px;
    font-weight: 800;
    color: #21514B;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.s9-title .s9-accent {
    color: #57BA91;
}

.s9-desc {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.75;
    max-width: 780px;
    margin: 0 auto 12px;
}

.s9-desc strong {
    color: #21514B;
    font-weight: 700;
}

.s9-price-hero {
    background: linear-gradient(90deg, #21514B 0%, #57BA91 100%);
    border-radius: 18px;
    padding: 40px 36px;
    text-align: center;
    max-width: 660px;
    margin: 36px auto;
    position: relative;
    overflow: hidden;
    contain: layout;
    box-shadow: 0 12px 40px rgba(33,81,75,0.25);
}

.s9-price-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.12) 0%, transparent 60%);
    pointer-events: none;
}

.s9-price-number {
    font-size: 72px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 6px;
    position: relative;
}

.s9-price-label {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 16px;
    position: relative;
}

.s9-price-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    position: relative;
}

.s9-price-features span {
    font-size: 13px;
    font-weight: 600;
    color: #21514B;
    background: #fff;
    padding: 4px 12px;
    border-radius: 20px;
}

.s9-included {
    margin: 40px auto;
    max-width: 900px;
}

.s9-included-title {
    font-size: 26px;
    font-weight: 700;
    color: #21514B;
    text-align: center;
    margin-bottom: 24px;
}

.s9-included-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.s9-included-card {
    background: #fff;
    border: 1px solid rgba(33,81,75,0.1);
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 8px 32px rgba(33,81,75,0.12), 0 2px 8px rgba(0,0,0,0.04);
    min-height: 340px;
    contain: layout style;
}

.s9-included-item {
    display: flex;
    align-items: center;
    padding: 13px 18px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(33,81,75,0.03) 0%, rgba(87,186,145,0.06) 100%);
    margin-bottom: 6px;
    transition: background 0.3s ease;
    min-height: 50px;
}

.s9-included-item:last-child {
    margin-bottom: 0;
}

.s9-included-item:hover {
    background: linear-gradient(135deg, rgba(33,81,75,0.06) 0%, rgba(87,186,145,0.12) 100%);
}

.s9-check-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: linear-gradient(135deg, #21514B, #57BA91);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.s9-check-icon svg {
    width: 12px;
    height: 12px;
    stroke: #fff;
    stroke-width: 3;
    fill: none;
}

.s9-item-text {
    font-size: 13.5px;
    font-weight: 500;
    color: #2d3748;
    line-height: 1.4;
}

.s9-calc-box {
    background: linear-gradient(135deg, #21514B 0%, #2d6b5e 50%, #57BA91 100%);
    border-radius: 22px;
    padding: 44px;
    max-width: 920px;
    margin: 40px auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 50px rgba(33,81,75,0.25);
    contain: layout;
}

.s9-calc-box::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.s9-calc-box::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.s9-calc-header {
    text-align: center;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.s9-calc-title {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.s9-calc-subtitle {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    font-weight: 400;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.s9-calc-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    max-width: 560px;
    margin: 0 auto 32px;
    position: relative;
    z-index: 1;
}

.s9-input-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.s9-input-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.s9-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.s9-input-prefix {
    position: absolute;
    left: 14px;
    font-size: 15px;
    font-weight: 600;
    color: #21514B;
    pointer-events: none;
    z-index: 2;
}

.s9-input-suffix {
    position: absolute;
    right: 14px;
    font-size: 14px;
    font-weight: 600;
    color: #718096;
    pointer-events: none;
    z-index: 2;
}

.s9-input {
    width: 100%;
    padding: 12px 14px 12px 30px;
    font-size: 15px;
    font-weight: 600;
    color: #21514B;
    background: #fff;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 10px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.s9-input:focus {
    border-color: #57BA91;
    box-shadow: 0 0 0 3px rgba(87,186,145,0.2);
}

.s9-input-pct {
    padding-left: 14px;
    padding-right: 34px;
}

.s9-results {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
    max-width: 660px;
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
}

.s9-result-card {
    background: #fff;
    border-radius: 14px;
    padding: 22px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    contain: layout style;
}

.s9-result-card.s9-them {
    border: 2px solid rgba(220,38,38,0.2);
}

.s9-result-card.s9-us {
    border: 2px solid rgba(87,186,145,0.35);
}

.s9-result-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.s9-them .s9-result-label {
    color: #dc2626;
}

.s9-us .s9-result-label {
    color: #059669;
}

.s9-result-amount {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 3px;
    line-height: 1.1;
    min-height: 34px;
}

.s9-them .s9-result-amount {
    color: #dc2626;
}

.s9-us .s9-result-amount {
    color: #059669;
}

.s9-result-period {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 10px;
}

.s9-them .s9-result-period {
    color: #f87171;
}

.s9-us .s9-result-period {
    color: #34d399;
}

.s9-result-sub {
    font-size: 10px;
    color: #718096;
    max-width: 140px;
    line-height: 1.4;
}

.s9-vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
}

.s9-vs-text {
    font-size: 13px;
    font-style: italic;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
}

.s9-savings-banner {
    background: #fff;
    border-radius: 14px;
    padding: 22px 28px;
    text-align: center;
    max-width: 660px;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    contain: layout;
}

.s9-savings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.s9-savings-item {
    text-align: center;
}

.s9-savings-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #718096;
    margin-bottom: 6px;
}

.s9-savings-amount {
    font-size: 30px;
    font-weight: 800;
    background: linear-gradient(135deg, #21514B, #57BA91);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    min-height: 36px;
}

.s9-savings-sub {
    font-size: 11px;
    color: #a0aec0;
    margin-top: 3px;
}

.s9-trigger-line {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 8px 0 0;
}

.s9-trigger-text {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    max-width: 500px;
    margin: 0 auto;
}

.s9-trigger-icon {
    font-size: 22px;
    display: block;
    margin-bottom: 6px;
    font-style: normal;
}

.s9-cta {
    text-align: center;
    max-width: 700px;
    margin: 40px auto 0;
    padding: 0 20px;
    contain: layout;
}

.s9-cta-headline {
    font-size: 22px;
    font-weight: 700;
    color: #21514B;
    margin-bottom: 6px;
}

.s9-cta-sub {
    font-size: 15px;
    color: #718096;
    margin-bottom: 24px;
}

.s9-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #57BA91 0%, #21514B 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 44px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 6px 24px rgba(87,186,145,0.35);
    text-decoration: none;
    min-width: 280px;
    min-height: 52px;
}

.s9-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(87,186,145,0.5);
}

.s9-cta-btn:focus-visible {
    outline: 3px solid rgba(87,186,145,0.5);
    outline-offset: 2px;
}

.s9-cta-btn .s9-btn-arrow {
    font-size: 17px;
    transition: transform 0.2s ease;
}

.s9-cta-btn:hover .s9-btn-arrow {
    transform: translateX(4px);
}

.s9-trust-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.s9-trust-item {
    font-size: 12px;
    color: #718096;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.s9-trust-icon {
    font-size: 13px;
    color: #57BA91;
}

/* Modal Styles */
.s9-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(33,81,75,0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.s9-modal-overlay.s9-active {
    display: flex;
    opacity: 1;
}

.s9-modal {
    background: #fff;
    border-radius: 20px;
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 80px rgba(0,0,0,0.3);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.s9-modal-overlay.s9-active .s9-modal {
    transform: scale(1) translateY(0);
}

.s9-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(33,81,75,0.08);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    z-index: 1;
}

.s9-modal-close:hover {
    background: rgba(33,81,75,0.15);
}

.s9-modal-close svg {
    width: 16px;
    height: 16px;
    stroke: #21514B;
    stroke-width: 2;
}

.s9-modal-header {
    background: linear-gradient(90deg, #21514B 0%, #57BA91 100%);
    padding: 32px 28px 24px;
    text-align: center;
    border-radius: 20px 20px 0 0;
}

.s9-modal-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.s9-modal-title {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.2;
}

.s9-modal-subtitle {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    font-weight: 400;
}

.s9-modal-body {
    padding: 28px;
}

.s9-form-group {
    margin-bottom: 16px;
}

.s9-form-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #21514B;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.s9-form-input {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    color: #21514B;
    background: #f7fafc;
    border: 2px solid rgba(33,81,75,0.12);
    border-radius: 10px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.s9-form-input:focus {
    border-color: #57BA91;
    box-shadow: 0 0 0 3px rgba(87,186,145,0.15);
}

.s9-form-input::placeholder {
    color: #a0aec0;
}

.s9-form-select {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    color: #21514B;
    background: #f7fafc;
    border: 2px solid rgba(33,81,75,0.12);
    border-radius: 10px;
    outline: none;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2321514B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    transition: border-color 0.2s ease;
}

.s9-form-select:focus {
    border-color: #57BA91;
    box-shadow: 0 0 0 3px rgba(87,186,145,0.15);
}

.s9-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.s9-form-textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    color: #21514B;
    background: #f7fafc;
    border: 2px solid rgba(33,81,75,0.12);
    border-radius: 10px;
    outline: none;
    resize: vertical;
    min-height: 90px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.s9-form-textarea:focus {
    border-color: #57BA91;
    box-shadow: 0 0 0 3px rgba(87,186,145,0.15);
}

.s9-form-submit {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #57BA91 0%, #21514B 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 6px 24px rgba(87,186,145,0.35);
    margin-top: 8px;
}

.s9-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(87,186,145,0.5);
}

.s9-form-submit:focus-visible {
    outline: 3px solid rgba(87,186,145,0.5);
    outline-offset: 2px;
}

.s9-form-note {
    font-size: 12px;
    color: #718096;
    text-align: center;
    margin-top: 14px;
    line-height: 1.5;
}

.s9-form-note svg {
    width: 12px;
    height: 12px;
    stroke: #57BA91;
    vertical-align: middle;
    margin-right: 4px;
}

/* Success Message */
.s9-form-success {
    text-align: center;
    padding: 40px 20px;
}

.s9-success-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #57BA91 0%, #21514B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffffff;
    margin: 0 auto 20px;
}

.s9-success-title {
    font-size: 24px;
    font-weight: 700;
    color: #21514B;
    margin-bottom: 10px;
}

.s9-success-text {
    font-size: 14px;
    color: #656565;
    line-height: 1.6;
}

/* Responsive */
@media (min-width: 2560px) {
    .s9-main { max-width: 1400px; padding: 80px 60px; }
    .s9-title { font-size: 50px; }
    .s9-price-number { font-size: 88px; }
    .s9-calc-box { padding: 52px; }
    .s9-result-amount { font-size: 34px; }
    .s9-savings-amount { font-size: 36px; }
}

@media (min-width: 1920px) and (max-width: 2559px) {
    .s9-main { max-width: 1300px; padding: 75px 50px; }
    .s9-title { font-size: 46px; }
    .s9-price-number { font-size: 80px; }
}

@media (min-width: 1200px) and (max-width: 1439px) {
    .s9-main { padding: 55px 36px; }
    .s9-title { font-size: 36px; }
    .s9-price-number { font-size: 66px; }
    .s9-calc-box { padding: 40px 36px; }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .s9-main { padding: 50px 30px; }
    .s9-title { font-size: 32px; }
    .s9-desc { font-size: 14px; }
    .s9-price-number { font-size: 58px; }
    .s9-price-hero { padding: 34px 28px; }
    .s9-included-title { font-size: 22px; }
    .s9-item-text { font-size: 12.5px; }
    .s9-calc-box { padding: 36px 30px; }
    .s9-calc-title { font-size: 22px; }
    .s9-result-amount { font-size: 24px; }
    .s9-savings-amount { font-size: 26px; }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .s9-main { padding: 45px 26px; }
    .s9-title { font-size: 28px; }
    .s9-desc { font-size: 14px; }
    .s9-price-number { font-size: 52px; }
    .s9-price-hero { padding: 32px 24px; }
    .s9-price-label { font-size: 17px; }
    .s9-included-title { font-size: 21px; }
    .s9-calc-box { padding: 32px 24px; }
    .s9-calc-title { font-size: 20px; }
    .s9-result-amount { font-size: 22px; }
    .s9-result-card { padding: 20px 16px; min-height: 130px; }
    .s9-savings-amount { font-size: 24px; }
}

@media (max-width: 767px) {
    .s9-main { padding: 40px 18px; }
    .s9-badge { font-size: 10px; padding: 5px 14px; }
    .s9-title { font-size: 24px; margin-bottom: 16px; }
    .s9-desc { font-size: 13.5px; }
    .s9-price-hero { padding: 28px 20px; margin: 28px auto; border-radius: 14px; }
    .s9-price-number { font-size: 46px; letter-spacing: -2px; }
    .s9-price-label { font-size: 16px; }
    .s9-price-features { gap: 5px; }
    .s9-price-features span { font-size: 11px; padding: 3px 9px; }
    .s9-included { margin: 30px auto; }
    .s9-included-title { font-size: 20px; margin-bottom: 18px; }
    .s9-included-grid { grid-template-columns: 1fr; gap: 14px; }
    .s9-included-card { padding: 6px; min-height: auto; }
    .s9-included-item { padding: 11px 14px; min-height: 44px; }
    .s9-calc-box { padding: 28px 16px; margin: 30px auto; border-radius: 16px; }
    .s9-calc-title { font-size: 20px; }
    .s9-calc-subtitle { font-size: 13px; }
    .s9-calc-form { grid-template-columns: 1fr; gap: 14px; }
    .s9-results { grid-template-columns: 1fr; gap: 12px; }
    .s9-vs-divider { padding: 3px 0; }
    .s9-result-card { min-height: auto; padding: 18px 16px; }
    .s9-result-amount { font-size: 24px; min-height: 30px; }
    .s9-savings-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .s9-savings-amount { font-size: 22px; min-height: 28px; }
    .s9-savings-banner { padding: 18px 16px; }
    .s9-trigger-text { font-size: 15px; }
    .s9-cta { margin: 30px auto 0; }
    .s9-cta-headline { font-size: 19px; }
    .s9-cta-sub { font-size: 13.5px; }
    .s9-cta-btn { width: 100%; min-width: auto; font-size: 14px; padding: 14px 24px; }
    .s9-trust-row { gap: 14px; }
    .s9-modal { max-width: 100%; margin: 10px; border-radius: 16px; }
    .s9-modal-header { padding: 24px 20px 20px; border-radius: 16px 16px 0 0; }
    .s9-modal-title { font-size: 20px; }
    .s9-modal-body { padding: 20px; }
    .s9-form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .s9-main { padding: 32px 14px; }
    .s9-badge { font-size: 9px; padding: 4px 12px; }
    .s9-title { font-size: 21px; }
    .s9-desc { font-size: 13px; }
    .s9-price-number { font-size: 40px; }
    .s9-price-label { font-size: 14px; }
    .s9-price-hero { padding: 24px 16px; }
    .s9-included-card { padding: 5px; }
    .s9-included-item { padding: 10px 12px; }
    .s9-item-text { font-size: 12.5px; }
    .s9-calc-box { padding: 24px 14px; }
    .s9-calc-title { font-size: 18px; }
    .s9-calc-subtitle { font-size: 12px; }
    .s9-input { padding: 11px 12px 11px 26px; font-size: 14px; }
    .s9-input-prefix { font-size: 14px; left: 10px; }
    .s9-result-amount { font-size: 22px; }
    .s9-savings-amount { font-size: 20px; }
    .s9-trigger-text { font-size: 14px; }
    .s9-cta-headline { font-size: 17px; }
    .s9-cta-btn { font-size: 13px; padding: 13px 20px; }
    .s9-trust-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; justify-items: center; }
}

@media (max-width: 380px) {
    .s9-main { padding: 28px 12px; }
    .s9-badge { font-size: 8px; padding: 4px 10px; }
    .s9-title { font-size: 19px; }
    .s9-desc { font-size: 12px; }
    .s9-price-number { font-size: 36px; }
    .s9-price-label { font-size: 13px; }
    .s9-included-title { font-size: 18px; }
    .s9-calc-title { font-size: 16px; }
    .s9-result-amount { font-size: 20px; }
    .s9-savings-amount { font-size: 18px; }
    .s9-trigger-text { font-size: 13px; }
    .s9-cta-headline { font-size: 16px; }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .s9-included-item,
    .s9-cta-btn,
    .s9-cta-btn .s9-btn-arrow,
    .s9-modal-overlay,
    .s9-modal,
    .s9-modal-close,
    .s9-form-submit,
    .s9-form-input,
    .s9-form-select,
    .s9-form-textarea {
        transition: none;
    }
    .s9-cta-btn:hover { transform: none; }
    .s9-cta-btn:hover .s9-btn-arrow { transform: none; }
}

/* ===== Section 10 Critical CSS — Inlined ===== */

/* HIPAA Section - Optimized */
.s10-plain-icon {
    width: 60px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: brightness(0) invert(1);
}

/* Center Lock Icon */
.center-icon-large {
    width: 45px !important;
    height: 45px !important;
    filter: brightness(0) invert(1);
    display: block;
}

/* Section Base */
.s10-section {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    background: linear-gradient(135deg, #21514B 0%, #57BA91 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 0;
    content-visibility: auto;
    contain-intrinsic-size: 700px;
}

.s10-section *,
.s10-section *::before,
.s10-section *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.s10-section::before {
    content: '';
    position: absolute;
    top: -15%;
    right: -8%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.s10-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Main Container */
.s10-main {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    z-index: 1;
    padding: 70px 40px 60px;
}

/* Header */
.s10-header {
    text-align: center;
    margin-bottom: 50px;
}

.s10-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: none;
    color: #21514B;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 22px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.s10-badge svg {
    width: 14px;
    height: 14px;
    fill: #21514B;
}

.s10-title {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 22px;
    letter-spacing: -0.5px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.s10-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.88);
    line-height: 1.75;
    max-width: 780px;
    margin: 0 auto 12px;
    font-weight: 400;
}

/* SOAP Layout */
.s10-soap-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    padding: 20px 0 50px;
    position: relative;
}

/* Grid Left */
.s10-grid-left {
    position: relative;
    width: 420px;
    height: 420px;
    flex-shrink: 0;
    contain: layout;
}

/* Card Positions */
.s10-card-pos {
    position: absolute;
    width: 150px;
    height: 150px;
}

.s10-card-pos--top {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.s10-card-pos--left {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.s10-card-pos--right {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.s10-card-pos--bottom {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Cards */
.s10-soap-card {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #21514B 0%, #57BA91 100%);
    border: 3px solid rgba(255, 255, 255, 0.85);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: default;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    outline: 3px solid transparent;
    outline-offset: 0px;
    contain: layout style;
}

.s10-soap-card:hover {
    transform: scale(1.06);
    border: 3px solid #fff;
    outline: 3px solid #ffffff;
    outline-offset: 3px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22), 0 0 24px rgba(255, 255, 255, 0.12);
}

.s10-soap-card-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Center Icon */
.s10-center-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, #21514B, #57BA91);
    border: 4px solid #fff;
    border-radius: 50%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25), 0 0 40px rgba(255, 255, 255, 0.12);
}

.s10-center-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    filter: blur(24px);
    z-index: 0;
    pointer-events: none;
}

/* Right List */
.s10-list-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 460px;
    width: 100%;
}

.s10-list-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.s10-list-icon-wrap {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.s10-list-item:hover .s10-list-icon-wrap {
    background: rgba(255, 255, 255, 0.22);
    transform: scale(1.05);
}

.s10-list-icon-wrap svg {
    width: 26px;
    height: 26px;
    fill: #fff;
}

.s10-list-content {
    flex: 1;
}

.s10-list-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.3;
}

.s10-list-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-weight: 400;
}

/* Badges Row */
.s10-badges-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.s10-comp-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-radius: 50px;
    padding: 12px 22px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.s10-comp-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.s10-comp-badge-icon {
    width: 26px;
    height: 26px;
    background: #21514B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.s10-comp-badge-icon svg {
    width: 14px;
    height: 14px;
    fill: #fff;
}

.s10-comp-badge-text {
    font-size: 13px;
    font-weight: 600;
    color: #21514B;
    white-space: nowrap;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (min-width: 2560px) {
    .s10-main { max-width: 1400px; padding: 90px 60px 80px; }
    .s10-title { font-size: 50px; }
    .s10-desc { font-size: 17px; }
    .s10-grid-left { width: 500px; height: 500px; }
    .s10-card-pos { width: 180px; height: 180px; }
    .s10-soap-card { border-width: 4px; }
    .s10-soap-card:hover { border-width: 4px; outline-width: 4px; }
    .s10-plain-icon { width: 72px; }
    .s10-center-icon { width: 110px; height: 110px; border-width: 5px; }
    .center-icon-large { width: 56px !important; height: 56px !important; }
    .s10-center-glow { width: 170px; height: 170px; }
    .s10-list-title { font-size: 20px; }
    .s10-list-text { font-size: 15px; }
    .s10-soap-layout { gap: 100px; }
    .s10-badge { font-size: 12px; padding: 8px 22px; }
}

@media (min-width: 1920px) and (max-width: 2559px) {
    .s10-main { max-width: 1300px; padding: 80px 50px 70px; }
    .s10-title { font-size: 46px; }
    .s10-grid-left { width: 460px; height: 460px; }
    .s10-card-pos { width: 170px; height: 170px; }
    .s10-soap-card { border-width: 3.5px; }
    .s10-soap-card:hover { border-width: 3.5px; outline-width: 3.5px; }
    .s10-plain-icon { width: 66px; }
    .s10-center-icon { width: 104px; height: 104px; border-width: 4.5px; }
    .center-icon-large { width: 52px !important; height: 52px !important; }
    .s10-center-glow { width: 160px; height: 160px; }
    .s10-soap-layout { gap: 90px; }
}

@media (min-width: 1200px) and (max-width: 1439px) {
    .s10-main { padding: 60px 36px 50px; }
    .s10-title { font-size: 38px; }
    .s10-desc { font-size: 14.5px; }
    .s10-grid-left { width: 380px; height: 380px; }
    .s10-card-pos { width: 140px; height: 140px; }
    .s10-plain-icon { width: 52px; }
    .s10-center-icon { width: 86px; height: 86px; border-width: 3.5px; }
    .center-icon-large { width: 42px !important; height: 42px !important; }
    .s10-center-glow { width: 135px; height: 135px; }
    .s10-soap-layout { gap: 60px; }
    .s10-list-title { font-size: 16px; }
    .s10-list-text { font-size: 13px; }
    .s10-list-right { gap: 26px; }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .s10-main { padding: 55px 30px 45px; }
    .s10-title { font-size: 34px; }
    .s10-desc { font-size: 14px; }
    .s10-grid-left { width: 340px; height: 340px; }
    .s10-card-pos { width: 125px; height: 125px; }
    .s10-soap-card { border-radius: 20px; border-width: 2.5px; }
    .s10-soap-card:hover { border-width: 2.5px; outline-width: 2.5px; }
    .s10-plain-icon { width: 46px; }
    .s10-center-icon { width: 76px; height: 76px; border-width: 3px; }
    .center-icon-large { width: 38px !important; height: 38px !important; }
    .s10-center-glow { width: 115px; height: 115px; }
    .s10-soap-layout { gap: 50px; }
    .s10-list-title { font-size: 15px; }
    .s10-list-text { font-size: 12.5px; }
    .s10-list-icon-wrap { width: 48px; height: 48px; border-radius: 12px; }
    .s10-list-icon-wrap svg { width: 22px; height: 22px; }
    .s10-list-right { gap: 24px; }
}

@media (max-width: 1023px) {
    .s10-main { padding: 50px 26px 45px; }
    .s10-title { font-size: 30px; }
    .s10-desc { font-size: 14px; max-width: 600px; }
    .s10-header { margin-bottom: 40px; }
    .s10-soap-layout { flex-direction: column; gap: 50px; }
    .s10-grid-left { width: 360px; height: 360px; }
    .s10-card-pos { width: 135px; height: 135px; }
    .s10-plain-icon { width: 50px; }
    .s10-center-icon { width: 80px; height: 80px; border-width: 3.5px; }
    .center-icon-large { width: 40px !important; height: 40px !important; }
    .s10-center-glow { width: 125px; height: 125px; }
    .s10-list-right { max-width: 560px; }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .s10-comp-badge { padding: 10px 18px; }
    .s10-comp-badge-text { font-size: 12px; }
    .s10-list-right { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
}

@media (max-width: 767px) {
    .s10-main { padding: 45px 18px 40px; }
    .s10-badge { font-size: 10px; padding: 5px 14px; }
    .s10-title { font-size: 25px; margin-bottom: 18px; }
    .s10-desc { font-size: 13.5px; }
    .s10-grid-left { width: 300px; height: 300px; }
    .s10-card-pos { width: 110px; height: 110px; }
    .s10-soap-card { border-radius: 18px; border-width: 2.5px; }
    .s10-soap-card:hover { border-width: 2.5px; outline-width: 2.5px; }
    .s10-plain-icon { width: 42px; }
    .s10-center-icon { width: 70px; height: 70px; border-width: 3px; }
    .center-icon-large { width: 34px !important; height: 34px !important; }
    .s10-center-glow { width: 110px; height: 110px; }
    .s10-list-right { gap: 24px; }
    .s10-list-icon-wrap { width: 48px; height: 48px; border-radius: 12px; }
    .s10-list-icon-wrap svg { width: 22px; height: 22px; }
    .s10-list-title { font-size: 15px; }
    .s10-list-text { font-size: 13px; }
    .s10-list-item { gap: 14px; }
    .s10-badges-row { gap: 10px; }
    .s10-comp-badge { padding: 10px 16px; }
    .s10-comp-badge-text { font-size: 11px; }
    .s10-comp-badge-icon { width: 22px; height: 22px; }
    .s10-comp-badge-icon svg { width: 12px; height: 12px; }
}

@media (max-width: 480px) {
    .s10-main { padding: 35px 14px 32px; }
    .s10-badge { font-size: 9px; padding: 4px 12px; }
    .s10-title { font-size: 22px; }
    .s10-desc { font-size: 12.5px; }
    .s10-grid-left { width: 260px; height: 260px; }
    .s10-card-pos { width: 95px; height: 95px; }
    .s10-soap-card { border-radius: 16px; border-width: 2px; }
    .s10-soap-card:hover { border-width: 2px; outline-width: 2px; }
    .s10-plain-icon { width: 36px; }
    .s10-center-icon { width: 58px; height: 58px; border-width: 2.5px; }
    .center-icon-large { width: 28px !important; height: 28px !important; }
    .s10-center-glow { width: 90px; height: 90px; }
    .s10-list-right { gap: 20px; }
    .s10-list-icon-wrap { width: 44px; height: 44px; border-radius: 10px; }
    .s10-list-icon-wrap svg { width: 20px; height: 20px; }
    .s10-list-title { font-size: 14px; }
    .s10-list-text { font-size: 12px; }
    .s10-list-item { gap: 12px; }
    .s10-badges-row { gap: 8px; }
    .s10-comp-badge { padding: 8px 14px; }
    .s10-comp-badge-text { font-size: 10px; }
    .s10-comp-badge-icon { width: 20px; height: 20px; }
}

@media (max-width: 380px) {
    .s10-main { padding: 28px 12px 26px; }
    .s10-title { font-size: 20px; }
    .s10-desc { font-size: 12px; }
    .s10-grid-left { width: 230px; height: 230px; }
    .s10-card-pos { width: 85px; height: 85px; }
    .s10-soap-card { border-radius: 14px; border-width: 2px; }
    .s10-soap-card:hover { border-width: 2px; outline-width: 2px; }
    .s10-plain-icon { width: 30px; }
    .s10-center-icon { width: 50px; height: 50px; border-width: 2px; }
    .center-icon-large { width: 24px !important; height: 24px !important; }
    .s10-center-glow { width: 75px; height: 75px; }
    .s10-list-title { font-size: 13px; }
    .s10-list-text { font-size: 11px; }
    .s10-comp-badge-text { font-size: 9px; }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .s10-soap-card,
    .s10-list-icon-wrap,
    .s10-comp-badge {
        transition: none;
    }
    .s10-soap-card:hover { transform: none; }
    .s10-list-item:hover .s10-list-icon-wrap { transform: none; }
    .s10-comp-badge:hover { transform: none; }
}
/* ===== Section 11 Critical CSS — Inlined ===== */
.s11-section{font-family:'Poppins',system-ui,-apple-system,sans-serif;background:#fff;position:relative;overflow:hidden;width:100%;content-visibility:auto;contain-intrinsic-size:900px}.s11-section *{box-sizing:border-box;margin:0;padding:0}.s11-main{position:relative;max-width:1200px;margin:0 auto;width:100%;z-index:1;padding:70px 40px 60px}.s11-layout{display:grid;grid-template-columns:5fr 7fr;gap:60px;align-items:start}.s11-left{position:sticky;top:40px;display:flex;flex-direction:column}.s11-left-top{display:flex;flex-direction:column;gap:16px}.s11-label{display:inline-flex;align-items:center;gap:6px;color:#21514B;font-size:12px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase}.s11-label svg{fill:#57BA91}.s11-heading{font-size:38px;font-weight:800;color:#1a1a2e;line-height:1.2;letter-spacing:-0.5px}.s11-heading-accent{color:#21514B}.s11-left-desc{font-size:15px;color:#6b7280;line-height:1.7;max-width:400px;margin-top:8px}.s11-cta-card{background:linear-gradient(135deg,#21514B 0%,#57BA91 100%);border-radius:18px;padding:32px 28px;position:relative;overflow:hidden;contain:layout paint style}.s11-cta-title{font-size:18px;font-weight:700;color:#fff;margin-bottom:10px;position:relative;z-index:1}.s11-cta-text{font-size:13px;color:rgba(255,255,255,0.85);line-height:1.65;margin-bottom:20px;position:relative;z-index:1}.s11-cta-btn{display:inline-flex;align-items:center;gap:8px;background:#fff;color:#21514B;font-size:13px;font-weight:700;padding:12px 24px;border-radius:12px;border:none;cursor:pointer;transition:transform .2s,box-shadow .2s;text-decoration:none;position:relative;z-index:1;will-change:transform}.s11-cta-btn:hover{box-shadow:0 8px 25px rgba(0,0,0,0.15);transform:translateY(-2px)}.s11-cta-btn svg{fill:#21514B}.s11-left-spacer{flex:1;min-height:24px}.s11-right{display:flex;flex-direction:column}.s11-faq-page{display:none;flex-direction:column;gap:14px}.s11-faq-page.s11-active{display:flex}.s11-faq-item{background:#fff;border-radius:14px;border:1.5px solid #e2e8f0;border-left:4px solid transparent;overflow:hidden;transition:transform .2s,box-shadow .2s,border-left-color .2s;box-shadow:0 4px 16px rgba(0,0,0,0.06);contain:layout paint style}.s11-faq-item:hover{box-shadow:0 8px 28px rgba(0,0,0,0.1);transform:translateY(-2px)}.s11-faq-item[open]{border-left-color:#57BA91;box-shadow:0 10px 35px rgba(87,186,145,0.18)}.s11-faq-item summary{display:flex;justify-content:space-between;align-items:center;cursor:pointer;padding:0;list-style:none;user-select:none;background:#57BA91;contain:layout}.s11-faq-item summary::-webkit-details-marker{display:none}.s11-faq-summary-inner{display:flex;align-items:center;width:100%;padding:18px 22px;gap:14px}.s11-faq-num{flex-shrink:0;width:32px;height:32px;background:rgba(255,255,255,0.25);border-radius:8px;display:flex;align-items:center;justify-content:center;font-size:11px;font-weight:800;color:#fff;text-transform:uppercase;letter-spacing:0.5px}.s11-faq-question{font-size:15px;font-weight:600;color:#fff;line-height:1.45;flex:1}.s11-faq-item[open] .s11-faq-question{font-weight:700}.s11-faq-toggle{flex-shrink:0;width:30px;height:30px;background:rgba(255,255,255,0.25);border-radius:50%;display:flex;align-items:center;justify-content:center;transition:transform .2s,background .2s}.s11-faq-toggle svg{fill:#fff}.s11-faq-item[open] .s11-faq-toggle{transform:rotate(180deg);background:rgba(255,255,255,0.35)}.s11-faq-answer{padding:20px 22px 22px 68px;font-size:14px;color:#6b7280;line-height:1.75;background:#fff}.s11-pagination{display:flex;align-items:center;justify-content:center;gap:12px;margin-top:32px}.s11-page-btn{width:40px;height:40px;border-radius:10px;border:1.5px solid #e5e7eb;background:#fff;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:border-color .2s,background .2s}.s11-page-btn:hover{border-color:#57BA91;background:#f0fdf4}.s11-page-btn:disabled{opacity:0.35;cursor:not-allowed}.s11-page-btn:disabled:hover{border-color:#e5e7eb;background:#fff}.s11-page-btn svg{fill:#21514B}.s11-page-dots{display:flex;align-items:center;gap:8px}.s11-page-dot{width:10px;height:10px;border-radius:50%;background:#e5e7eb;border:none;cursor:pointer;transition:background .2s,width .2s,border-radius .2s;padding:0}.s11-page-dot.s11-dot-active{background:#21514B;width:28px;border-radius:20px}.s11-page-info{font-size:12px;color:#9ca3af;font-weight:500}.s11-modal-overlay{position:fixed;inset:0;background:rgba(33,81,75,0.85);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);z-index:9999;display:none;align-items:center;justify-content:center;padding:20px;opacity:0;transition:opacity .2s}.s11-modal-overlay.s11-active{display:flex;opacity:1}.s11-modal-overlay[hidden]{display:none!important}.s11-modal{background:#fff;border-radius:20px;max-width:480px;width:100%;max-height:90vh;overflow-y:auto;position:relative;box-shadow:0 25px 80px rgba(0,0,0,0.3);transform:scale(0.9) translateY(20px);transition:transform .2s;contain:layout paint}.s11-modal-overlay.s11-active .s11-modal{transform:scale(1) translateY(0)}.s11-modal-close{position:absolute;top:16px;right:16px;width:36px;height:36px;background:rgba(33,81,75,0.08);border:none;border-radius:50%;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:background .2s;z-index:1}.s11-modal-close:hover{background:rgba(33,81,75,0.15)}.s11-modal-close svg{stroke:#21514B;stroke-width:2}.s11-modal-header{background:linear-gradient(90deg,#21514B 0%,#57BA91 100%);padding:32px 28px 24px;text-align:center;border-radius:20px 20px 0 0}.s11-modal-badge{display:inline-block;background:rgba(255,255,255,0.2);color:#fff;font-size:10px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;padding:5px 14px;border-radius:50px;margin-bottom:14px}.s11-modal-title{font-size:24px;font-weight:800;color:#fff;margin-bottom:6px;line-height:1.2}.s11-modal-subtitle{font-size:14px;color:rgba(255,255,255,0.85);font-weight:400}.s11-modal-body{padding:28px}.s11-form-group{margin-bottom:16px}.s11-form-label{display:block;font-size:12px;font-weight:600;color:#21514B;margin-bottom:6px;text-transform:uppercase;letter-spacing:0.5px}.s11-form-input,.s11-form-select,.s11-form-textarea{width:100%;padding:14px 16px;font-size:15px;font-family:inherit;color:#21514B;background:#f7fafc;border:2px solid rgba(33,81,75,0.12);border-radius:10px;outline:none;transition:border-color .15s,box-shadow .15s}.s11-form-input:focus,.s11-form-select:focus,.s11-form-textarea:focus{border-color:#57BA91;box-shadow:0 0 0 3px rgba(87,186,145,0.15)}.s11-form-input::placeholder,.s11-form-textarea::placeholder{color:#a0aec0}.s11-form-select{cursor:pointer;appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2321514B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 16px center}.s11-form-row{display:grid;grid-template-columns:1fr 1fr;gap:12px}.s11-form-textarea{resize:vertical;min-height:90px}.s11-form-submit{width:100%;padding:16px 24px;font-size:16px;font-weight:700;font-family:inherit;color:#fff;background:linear-gradient(135deg,#57BA91 0%,#21514B 100%);border:none;border-radius:12px;cursor:pointer;transition:transform .15s,box-shadow .15s;box-shadow:0 6px 24px rgba(87,186,145,0.35);margin-top:8px;will-change:transform}.s11-form-submit:hover{transform:translateY(-2px);box-shadow:0 10px 36px rgba(87,186,145,0.5)}.s11-form-submit:focus-visible{outline:3px solid rgba(87,186,145,0.5);outline-offset:2px}.s11-form-note{font-size:12px;color:#718096;text-align:center;margin-top:14px;line-height:1.5}.s11-form-note svg{stroke:#57BA91;vertical-align:middle;margin-right:4px}@media(min-width:2560px){.s11-main{max-width:1400px;padding:90px 60px 80px}.s11-heading{font-size:46px}.s11-left-desc{font-size:17px}.s11-faq-question{font-size:17px}.s11-faq-answer{font-size:15.5px;padding-left:76px}.s11-layout{gap:80px}.s11-faq-num{width:36px;height:36px;font-size:12px}}@media(min-width:1920px) and (max-width:2559px){.s11-main{max-width:1300px;padding:80px 50px 70px}.s11-heading{font-size:42px}.s11-layout{gap:70px}}@media(min-width:1200px) and (max-width:1439px){.s11-main{padding:60px 36px 50px}.s11-heading{font-size:34px}.s11-left-desc{font-size:14px}.s11-layout{gap:45px}.s11-faq-question{font-size:14.5px}.s11-faq-answer{font-size:13.5px}}@media(min-width:1024px) and (max-width:1199px){.s11-main{padding:55px 30px 45px}.s11-heading{font-size:30px}.s11-left-desc{font-size:13.5px}.s11-layout{gap:36px}.s11-faq-question{font-size:14px}.s11-faq-answer{font-size:13px;padding-left:60px}.s11-cta-card{padding:26px 22px}.s11-cta-title{font-size:16px}.s11-cta-text{font-size:12px}.s11-faq-num{width:28px;height:28px;font-size:10px;border-radius:6px}.s11-faq-summary-inner{gap:10px;padding:16px 18px}}@media(max-width:1023px){.s11-layout{grid-template-columns:1fr;gap:36px}.s11-left{position:static;text-align:center;align-items:center}.s11-left-spacer{display:none}.s11-left-top{margin-bottom:24px}.s11-left-desc{max-width:520px}.s11-cta-card{max-width:480px;width:100%}.s11-main{padding:50px 26px 45px}.s11-heading{font-size:30px}}@media(max-width:767px){.s11-main{padding:45px 18px 40px}.s11-heading{font-size:26px}.s11-left-desc{font-size:13.5px}.s11-label{font-size:11px}.s11-faq-summary-inner{padding:14px 16px;gap:10px}.s11-faq-question{font-size:13.5px}.s11-faq-answer{padding:16px 16px 18px 58px;font-size:13px}.s11-faq-toggle{width:28px;height:28px}.s11-faq-toggle svg{width:18px;height:18px}.s11-faq-num{width:28px;height:28px;font-size:10px;border-radius:6px}.s11-cta-card{padding:24px 20px;border-radius:14px}.s11-cta-title{font-size:16px}.s11-cta-text{font-size:12px}.s11-cta-btn{font-size:12px;padding:10px 20px}.s11-page-btn{width:36px;height:36px;border-radius:8px}.s11-page-dot{width:8px;height:8px}.s11-page-dot.s11-dot-active{width:24px}.s11-faq-page{gap:12px}.s11-modal{max-width:100%;margin:10px;border-radius:16px}.s11-modal-header{padding:24px 20px 20px;border-radius:16px 16px 0 0}.s11-modal-title{font-size:20px}.s11-modal-body{padding:20px}.s11-form-row{grid-template-columns:1fr}}@media(max-width:480px){.s11-main{padding:35px 14px 32px}.s11-heading{font-size:23px}.s11-left-desc{font-size:12.5px}.s11-layout{gap:28px}.s11-faq-summary-inner{padding:12px 14px;gap:8px}.s11-faq-question{font-size:13px}.s11-faq-answer{padding:14px 14px 16px 50px;font-size:12.5px}.s11-faq-page{gap:10px}.s11-faq-num{width:26px;height:26px;font-size:9px}.s11-cta-card{padding:20px 16px}.s11-pagination{gap:8px;margin-top:24px}}@media(max-width:380px){.s11-main{padding:28px 12px 26px}.s11-heading{font-size:21px}.s11-faq-question{font-size:12.5px}.s11-faq-answer{font-size:12px;padding-left:46px}.s11-faq-num{width:24px;height:24px;font-size:8px}}

/* ===== Section 12 Critical CSS — Inlined ===== */
.s12-section{font-family:'Poppins',system-ui,-apple-system,sans-serif;position:relative;overflow:hidden;width:100%;background:#fff;content-visibility:auto;contain-intrinsic-size:800px}.s12-section *{box-sizing:border-box;margin:0;padding:0}.s12-bg-gradient{position:absolute;top:0;left:0;right:0;height:65%;background:linear-gradient(90deg,#21514B 0%,#57BA91 100%);z-index:0;contain:layout paint}.s12-bg-white{position:absolute;bottom:0;left:0;right:0;height:35%;background:#fff;z-index:0}.s12-main{position:relative;max-width:1200px;margin:0 auto;width:100%;z-index:1;padding:70px 40px 60px}.s12-top-layout{display:grid;grid-template-columns:1fr 1fr;gap:50px;align-items:center;margin-bottom:50px}.s12-image-wrap{width:100%;border-radius:20px;overflow:hidden;background:rgba(255,255,255,0.08);border:1.5px solid rgba(255,255,255,0.15);position:relative;aspect-ratio:5/4;display:flex;align-items:center;justify-content:center;backdrop-filter:blur(8px);contain:layout paint style}.s12-image-wrap img{width:100%;height:100%;object-fit:cover;border-radius:20px}.s12-content-right{display:flex;flex-direction:column;gap:22px}.s12-badge{display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,0.12);border:1px solid rgba(255,255,255,0.2);color:#fff;font-size:11px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;padding:6px 16px;border-radius:50px;width:fit-content}.s12-badge-dot{width:7px;height:7px;border-radius:50%;background:#fff;animation:s12-pulse 2s infinite;will-change:opacity}.s12-heading{font-size:38px;font-weight:800;color:#fff;line-height:1.2;letter-spacing:-0.5px}.s12-desc{font-size:15px;color:rgba(255,255,255,0.85);line-height:1.75}.s12-value-props{display:flex;flex-wrap:wrap;gap:10px;margin-top:4px}.s12-value-item{font-size:13px;color:#fff;font-weight:500;background:rgba(255,255,255,0.1);padding:8px 16px;border-radius:8px;border:1px solid rgba(255,255,255,0.12)}.s12-form-strip{background:#fff;border-radius:20px;padding:40px 36px 36px;position:relative;box-shadow:0 20px 60px rgba(0,0,0,0.1),0 4px 16px rgba(0,0,0,0.04);contain:layout paint style}.s12-form-strip::before{content:'';position:absolute;top:0;left:0;right:0;height:4px;background:linear-gradient(90deg,#21514B 0%,#57BA91 100%);border-radius:20px 20px 0 0}.s12-strip-header{margin-bottom:28px}.s12-strip-title{font-size:22px;font-weight:700;color:#1a1a2e;margin-bottom:4px}.s12-strip-subtitle{font-size:13px;color:#9ca3af;font-weight:400}.s12-strip-row{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin-bottom:14px}.s12-strip-row-2{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin-bottom:20px}.s12-s-field{display:flex;flex-direction:column;gap:5px}.s12-s-label{font-size:11.5px;font-weight:600;color:#374151;letter-spacing:0.2px}.s12-req{color:#ef4444;margin-left:1px}.s12-opt{color:#9ca3af;font-weight:400;font-style:italic;font-size:10px;margin-left:3px}.s12-s-input,.s12-s-select{width:100%;padding:12px 14px;background:#f9fafb;border:1.5px solid #e5e7eb;border-radius:10px;font-size:13.5px;font-weight:500;color:#1a1a2e;outline:0;transition:border-color .15s,box-shadow .15s,background .15s;font-family:inherit;-webkit-appearance:none;appearance:none}.s12-s-select{padding-right:34px;cursor:pointer}.s12-s-input:focus,.s12-s-select:focus{border-color:#57BA91;background:#fff;box-shadow:0 0 0 3px rgba(87,186,145,0.1)}.s12-s-select-wrap{position:relative}.s12-s-select-arrow{position:absolute;right:12px;top:50%;transform:translateY(-50%);pointer-events:none}.s12-s-select-arrow svg{fill:#9ca3af}.s12-submit-row{display:flex;align-items:center;justify-content:space-between;gap:20px}.s12-submit-hints{display:flex;gap:20px}.s12-submit-hint{display:flex;align-items:center;gap:6px;font-size:12px;color:#9ca3af;font-weight:400}.s12-submit-hint svg{fill:#57BA91;flex-shrink:0}.s12-strip-btn{padding:13px 32px;background:linear-gradient(90deg,#21514B 0%,#57BA91 100%);color:#fff;font-size:14px;font-weight:700;border:none;border-radius:12px;cursor:pointer;transition:transform .2s,box-shadow .2s;display:flex;align-items:center;justify-content:center;gap:8px;white-space:nowrap;flex-shrink:0;letter-spacing:0.2px;will-change:transform}.s12-strip-btn:hover{transform:translateY(-2px);box-shadow:0 10px 30px rgba(33,81,75,0.3)}.s12-strip-btn svg{fill:#fff}@keyframes s12-pulse{0%,100%{opacity:1}50%{opacity:0.4}}@media(min-width:1200px) and (max-width:1439px){.s12-main{padding:60px 36px 50px}.s12-heading{font-size:34px}.s12-top-layout{gap:40px;margin-bottom:40px}.s12-form-strip{padding:34px 30px 30px}.s12-strip-title{font-size:20px}.s12-strip-row,.s12-strip-row-2{gap:12px}}@media(max-width:1023px){.s12-top-layout{grid-template-columns:1fr;gap:30px;text-align:center}.s12-content-right{align-items:center}.s12-value-props{justify-content:center}.s12-image-wrap{max-width:500px;margin:0 auto;aspect-ratio:16/9}.s12-bg-gradient{height:55%}.s12-strip-row,.s12-strip-row-2{grid-template-columns:repeat(2,1fr)}.s12-submit-row{flex-direction:column;gap:16px}.s12-submit-hints{justify-content:center;flex-wrap:wrap;gap:12px}.s12-strip-btn{width:100%}}@media(max-width:767px){.s12-main{padding:45px 18px 40px}.s12-heading{font-size:26px}.s12-strip-row,.s12-strip-row-2{grid-template-columns:1fr}.s12-form-strip{padding:28px 20px 24px}.s12-strip-title{font-size:18px}}@media(max-width:480px){.s12-main{padding:35px 14px 32px}.s12-heading{font-size:22px}.s12-desc{font-size:14px}.s12-value-item{font-size:12px;padding:6px 12px}.s12-submit-hints{flex-direction:column;align-items:center;gap:8px}}