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

:root {
    --emerald-50: #ecfdf5;
    --emerald-100: #d1fae5;
    --emerald-200: #a7f3d0;
    --emerald-400: #34d399;
    --emerald-500: #10b981;
    --emerald-600: #059669;
    --emerald-700: #047857;
    --emerald-800: #065f46;
    --emerald-900: #064e3b;
    --cream: #fefdf4;
    --cream-dark: #faf8e8;
    --cream-mid: #f5f0d6;
    --warm-gray: #6b6560;
    --warm-gray-light: #98908a;
    --dark: #1a1f1c;
    --dark-soft: #2d3330;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(6, 78, 59, 0.06), 0 1px 2px rgba(6, 78, 59, 0.04);
    --shadow-md: 0 4px 16px rgba(6, 78, 59, 0.08), 0 2px 4px rgba(6, 78, 59, 0.04);
    --shadow-lg: 0 12px 40px rgba(6, 78, 59, 0.12), 0 4px 12px rgba(6, 78, 59, 0.06);
    --shadow-xl: 0 20px 60px rgba(6, 78, 59, 0.15), 0 8px 20px rgba(6, 78, 59, 0.08);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --font-body: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--dark);
    background-color: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--emerald-700);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-weight: 700;
    text-decoration: none;
}
.skip-link:focus {
    top: 16px;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

.text-highlight {
    color: var(--emerald-600);
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--emerald-600);
    background: var(--emerald-50);
    border: 1.5px solid var(--emerald-200);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--warm-gray);
    max-width: 560px;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-header .section-desc {
    margin: 0 auto;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--emerald-600);
    color: var(--white);
    border-color: var(--emerald-600);
}
.btn-primary:hover {
    background: var(--emerald-700);
    border-color: var(--emerald-700);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--emerald-700);
    border-color: var(--emerald-200);
}
.btn-secondary:hover {
    background: var(--emerald-50);
    border-color: var(--emerald-400);
    transform: translateY(-2px);
}

.btn-cream {
    background: var(--cream);
    color: var(--emerald-800);
    border-color: var(--cream);
}
.btn-cream:hover {
    background: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-cream {
    background: transparent;
    color: var(--cream);
    border-color: rgba(254, 253, 244, 0.5);
}
.btn-outline-cream:hover {
    background: rgba(254, 253, 244, 0.15);
    border-color: var(--cream);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
}

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

/* ---- HEADER ---- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 12px 0;
    transition: all var(--transition);
    background: transparent;
}
.site-header.scrolled {
    background: rgba(254, 253, 244, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md);
    padding: 8px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--dark);
    flex-shrink: 0;
}
.logo:hover { color: var(--emerald-700); }

.logo-icon {
    color: var(--emerald-600);
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.15rem;
    line-height: 1.2;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}
.primary-nav ul {
    display: flex;
    list-style: none;
    gap: 4px;
    margin-right: 8px;
}
.primary-nav a:not(.btn) {
    display: block;
    padding: 8px 16px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--dark-soft);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.primary-nav a:not(.btn):hover {
    color: var(--emerald-700);
    background: var(--emerald-50);
}

/* Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 110;
}
.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 2px;
    transition: all var(--transition);
    transform-origin: center;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ---- HERO ---- */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(145deg, var(--emerald-800) 0%, var(--emerald-600) 40%, var(--emerald-500) 70%, var(--emerald-400) 100%);
    padding: 120px 24px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(52, 211, 153, 0.3) 0%, transparent 60%),
                radial-gradient(ellipse 50% 50% at 20% 80%, rgba(6, 129, 104, 0.4) 0%, transparent 50%);
}
.hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
    background-size: 32px 32px;
}
.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    background: var(--white);
}
.hero-shape-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}
.hero-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: -60px;
    animation: float 6s ease-in-out infinite reverse;
}
.hero-shape-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    right: 15%;
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.03); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 780px;
    padding: 20px 0;
}

.hero-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);
    backdrop-filter: blur(8px);
    color: var(--cream);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 28px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.25rem);
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-title .text-highlight {
    color: var(--emerald-200);
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: rgba(254, 253, 244, 0.85);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(254, 253, 244, 0.8);
    font-weight: 600;
    font-size: 0.9rem;
}
.trust-item svg {
    color: var(--emerald-200);
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}
.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ---- SERVICES ---- */
.services {
    padding: 100px 0;
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(6, 78, 59, 0.06);
    transition: all var(--transition);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--emerald-200);
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--emerald-50);
    border: 1.5px solid var(--emerald-100);
    border-radius: var(--radius-md);
    color: var(--emerald-600);
    margin-bottom: 20px;
    transition: all var(--transition);
}
.service-card:hover .service-icon {
    background: var(--emerald-600);
    border-color: var(--emerald-600);
    color: var(--white);
    transform: scale(1.05);
}

.service-card h3 {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--dark);
}
.service-card p {
    font-size: 0.95rem;
    color: var(--warm-gray);
    line-height: 1.7;
}

/* ---- WHY US ---- */
.why-us {
    padding: 100px 0;
    background: var(--cream-dark);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.why-image-wrap {
    position: relative;
}

.why-image {
    width: 100%;
    aspect-ratio: 6/7;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.why-image-accent {
    position: absolute;
    width: 120px;
    height: 120px;
    bottom: -20px;
    right: -20px;
    background: var(--emerald-600);
    border-radius: var(--radius-lg);
    opacity: 0.15;
    z-index: -1;
}

.why-content .section-desc {
    margin-bottom: 32px;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.why-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--emerald-100);
    border-radius: 50%;
    color: var(--emerald-700);
    margin-top: 2px;
}

.why-item strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 4px;
}
.why-item p {
    font-size: 0.95rem;
    color: var(--warm-gray);
    line-height: 1.65;
}

/* ---- ABOUT ---- */
.about {
    padding: 100px 0;
    background: var(--cream);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-text .section-desc {
    margin-bottom: 20px;
}
.about-text > p {
    font-size: 1rem;
    color: var(--warm-gray);
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 36px;
    padding-top: 36px;
    border-top: 2px solid var(--cream-mid);
}

.stat {
    text-align: center;
    flex: 1;
}
.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--emerald-600);
    line-height: 1.2;
}
.stat-label {
    font-size: 0.85rem;
    color: var(--warm-gray-light);
    font-weight: 600;
}
.stat-divider {
    width: 2px;
    height: 40px;
    background: var(--cream-mid);
    border-radius: 2px;
    flex-shrink: 0;
}

.about-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}
.about-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.about-img-1 {
    grid-row: 1 / 3;
    aspect-ratio: 4/5;
    background-size: cover;
    background-position: center;
}
.about-img-2 {
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
}

/* ---- CTA BANNER ---- */
.cta-banner {
    position: relative;
    padding: 100px 24px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--emerald-900) 0%, var(--emerald-700) 50%, var(--emerald-600) 100%);
}
.cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.cta-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 80% 50%, rgba(52, 211, 153, 0.2) 0%, transparent 60%);
}
.cta-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 28px 28px;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.cta-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: var(--white);
    margin-bottom: 16px;
}
.cta-desc {
    font-size: 1.1rem;
    color: rgba(254, 253, 244, 0.8);
    margin-bottom: 36px;
    line-height: 1.7;
}
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* ---- CONTACT ---- */
.contact {
    padding: 100px 0;
    background: var(--cream-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(6, 78, 59, 0.06);
    transition: all var(--transition);
}
.contact-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--emerald-200);
    transform: translateX(4px);
}

.contact-card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--emerald-50);
    border: 1.5px solid var(--emerald-100);
    border-radius: var(--radius-sm);
    color: var(--emerald-600);
}

.contact-card strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--emerald-700);
    margin-bottom: 4px;
}
.contact-card p {
    font-size: 0.95rem;
    color: var(--warm-gray);
    line-height: 1.6;
}
.contact-card a {
    color: var(--warm-gray);
    text-decoration: none;
    transition: color var(--transition);
}
.contact-card a:hover {
    color: var(--emerald-600);
    text-decoration: underline;
}

.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(6, 78, 59, 0.06);
}
.contact-form h3 {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 6px;
}
.form-note {
    font-size: 0.9rem;
    color: var(--warm-gray-light);
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}
.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark-soft);
}
.form-group input,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 12px 16px;
    border: 1.5px solid var(--cream-mid);
    border-radius: var(--radius-sm);
    background: var(--cream);
    color: var(--dark);
    transition: all var(--transition);
    outline: none;
    width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--emerald-400);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--warm-gray-light);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    display: none;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 20px;
    background: var(--emerald-50);
    border: 1.5px solid var(--emerald-200);
    border-radius: var(--radius-sm);
    color: var(--emerald-800);
    font-weight: 700;
    font-size: 0.95rem;
}
.form-success.show {
    display: flex;
}
.form-success svg {
    color: var(--emerald-600);
    flex-shrink: 0;
}

/* ---- FOOTER ---- */
.site-footer {
    background: var(--dark);
    color: rgba(254, 253, 244, 0.7);
    padding: 56px 0 0;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(254, 253, 244, 0.1);
    flex-wrap: wrap;
}

.footer-top .logo { color: var(--cream); }
.footer-top .logo:hover { color: var(--emerald-400); }
.footer-top .logo-icon { color: var(--emerald-400); }
.footer-top .logo-text { color: var(--cream); }

.footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(254, 253, 244, 0.6);
    text-decoration: none;
    transition: color var(--transition);
}
.footer-link:hover { color: var(--emerald-400); }
.footer-link svg { flex-shrink: 0; }

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 24px 0;
    font-size: 0.85rem;
    color: rgba(254, 253, 244, 0.4);
}

/* ---- SCROLL ANIMATIONS ---- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ---- MOBILE NAV OVERLAY ---- */
@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
    }
    .primary-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        max-width: 85vw;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        align-items: stretch;
        padding: 80px 32px 32px;
        gap: 8px;
        box-shadow: var(--shadow-xl);
        transform: translateX(100%);
        transition: transform var(--transition);
        z-index: 105;
    }
    .primary-nav.open {
        transform: translateX(0);
    }
    .primary-nav ul {
        flex-direction: column;
        margin-right: 0;
        margin-bottom: 16px;
    }
    .primary-nav a:not(.btn) {
        padding: 12px 16px;
        font-size: 1rem;
    }
    .primary-nav .btn {
        justify-content: center;
        margin-top: 8px;
    }
    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        z-index: 100;
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition);
    }
    .nav-overlay.active {
        opacity: 1;
        pointer-events: all;
    }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-grid,
    .about-inner,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .why-image-wrap {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    .about-image-grid {
        max-width: 400px;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: 85vh;
        padding: 100px 20px 60px;
    }
    .hero-title {
        font-size: 2.25rem;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form-wrap {
        padding: 28px 20px;
    }
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
    .stat-divider {
        width: 40px;
        height: 2px;
    }
    .cta-banner {
        padding: 72px 20px;
    }
}
