    /* ============================
           STRIPE-STYLE PREMIUM THEME
           ============================ */

        :root {
            --primary: #111827;
            --accent: #2563eb;
            --accent-dark: #1d4ed8;

            --bg: #ffffff;
            --bg-soft: #f3f4f6;

            --text-main: #111827;
            --text-muted: #6b7280;

            --border: #e5e7eb;

            --shadow-sm: 0 4px 12px rgba(15,23,42,0.04);
            --shadow-md: 0 20px 40px rgba(15,23,42,0.08),
                          0 0 0 1px rgba(15,23,42,0.04);
        }

        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            font-family: 'Plus Jakarta Sans', sans-serif;
            background: var(--bg);
            color: var(--text-main);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        html {
            scroll-behavior: smooth;
        }

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

        /* NAVIGATION */

        nav {
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 16px 5%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(255,255,255,0.9);
            backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(15,23,42,0.06);
        }

        .logo {
            font-weight: 800;
            font-size: 1.3rem;
            text-decoration: none;
            color: var(--primary);
            letter-spacing: -0.04em;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 18px;
        }

        .nav-link {
            font-size: 0.95rem;
            color: var(--text-muted);
            text-decoration: none;
            padding: 6px 0;
        }

        .nav-link:hover {
            color: var(--primary);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 22px;
            border-radius: 999px;
            font-size: 0.95rem;
            font-weight: 600;
            border: none;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.2s ease;
            white-space: nowrap;
        }

        .btn-primary {
            background: var(--accent);
            color: #ffffff;
            box-shadow: 0 10px 25px rgba(37,99,235,0.25);
        }

        .btn-primary:hover {
            background: var(--accent-dark);
            transform: translateY(-1px);
            box-shadow: 0 14px 30px rgba(37,99,235,0.3);
        }

        .btn-ghost {
            background: transparent;
            color: var(--text-main);
        }

        .btn-ghost:hover {
            background: #f3f4f6;
        }

        /* HERO */

        .hero {
            position: relative;
            padding: 120px 0 110px;
            overflow: hidden;
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle at top right, rgba(37,99,235,0.12), transparent 55%);
            opacity: 0.9;
            pointer-events: none;
        }

        .hero-inner {
            position: relative;
            display: grid;
            grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
            gap: 70px;
            align-items: center;
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 4px 10px;
            border-radius: 999px;
            background: #eff6ff;
            color: #1d4ed8;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 16px;
        }

        .hero-eyebrow-dot {
            width: 6px;
            height: 6px;
            border-radius: 999px;
            background: #1d4ed8;
        }

        .hero-title {
            font-size: 3.2rem;
            line-height: 1.1;
            letter-spacing: -0.05em;
            font-weight: 800;
            margin: 0 0 18px;
            color: var(--primary);
        }

        .hero-sub {
            font-size: 1.1rem;
            color: var(--text-muted);
            max-width: 540px;
            margin-bottom: 28px;
        }

        .hero-meta {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-top: 10px;
        }

        .hero-cta {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
            margin-top: 8px;
        }

        .hero-visual {
            display: flex;
            justify-content: center;
        }

        .hero-card {
            width: 380px;
            border-radius: 24px;
            background: #ffffff;
            box-shadow: var(--shadow-md);
            border: 1px solid rgba(15,23,42,0.06);
            padding: 18px 18px 20px;
            display: flex;
            flex-direction: column;
            gap: 14px;
            animation: floatCard 7s ease-in-out infinite;
        }

        .hero-card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .hero-card-title {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-main);
        }

        .hero-card-badge {
            font-size: 0.75rem;
            padding: 4px 10px;
            border-radius: 999px;
            background: #ecfdf3;
            color: #15803d;
            font-weight: 600;
        }

        .hero-card-body {
            background: var(--bg-soft);
            border-radius: 18px;
            padding: 14px;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 10px;
        }

        .hero-card-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .hero-card-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .hero-dot {
            width: 8px;
            height: 8px;
            border-radius: 999px;
            background: #2563eb;
        }

        .hero-card-panel {
            background: #ffffff;
            border-radius: 14px;
            padding: 10px;
            display: flex;
            flex-direction: column;
            gap: 6px;
            box-shadow: var(--shadow-sm);
        }

        .hero-panel-label {
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        .hero-panel-value {
            font-size: 0.95rem;
            font-weight: 600;
        }

        @keyframes floatCard {
            0% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0); }
        }

        /* SECTIONS */

        .section {
            padding: 90px 0;
            border-top: 1px solid var(--border);
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-eyebrow {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--text-muted);
            margin-bottom: 8px;
        }

        .section-title {
            font-size: 2.1rem;
            letter-spacing: -0.04em;
            font-weight: 800;
            margin: 0 0 10px;
        }

        .section-sub {
            max-width: 560px;
            margin: 0 auto;
            color: var(--text-muted);
            font-size: 0.98rem;
        }

        /* FEATURES GRID */

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 26px;
        }

        .feature-card {
            background: #ffffff;
            border-radius: 18px;
            padding: 22px 20px;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(15,23,42,0.04);
        }

        .feature-icon {
            width: 34px;
            height: 34px;
            border-radius: 999px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #eff6ff;
            color: #1d4ed8;
            font-size: 1.1rem;
            margin-bottom: 14px;
        }

        .feature-title {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 6px;
        }

        .feature-text {
            font-size: 0.95rem;
            color: var(--text-muted);
        }

        /* USE CASES */

        .usecases-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 26px;
        }

        .usecase-card {
            background: #f9fafb;
            border-radius: 18px;
            padding: 22px 20px;
            border: 1px solid rgba(15,23,42,0.04);
        }

        .usecase-label {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--text-muted);
            margin-bottom: 6px;
        }

        .usecase-title {
            font-size: 1.05rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .usecase-text {
            font-size: 0.95rem;
            color: var(--text-muted);
        }

        /* CTA SECTION */

        .cta {
            padding: 80px 0 90px;
        }

        .cta-inner {
            background: #0f172a;
            border-radius: 26px;
            padding: 40px 32px;
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
        }

        .cta-title {
            font-size: 1.7rem;
            font-weight: 700;
            margin: 0 0 8px;
        }

        .cta-text {
            font-size: 0.98rem;
            color: #e5e7eb;
            margin: 0;
        }

        .cta-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .btn-cta-primary {
            background: #ffffff;
            color: #0f172a;
        }

        .btn-cta-primary:hover {
            background: #e5e7eb;
        }

        .btn-cta-ghost {
            background: transparent;
            color: #e5e7eb;
            border: 1px solid rgba(148,163,184,0.6);
        }

        .btn-cta-ghost:hover {
            background: rgba(15,23,42,0.6);
        }

        /* FOOTER */

        footer {
            padding: 40px 0 30px;
            border-top: 1px solid var(--border);
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .footer-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .footer-links {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .footer-link {
            color: var(--text-muted);
            text-decoration: none;
        }

        .footer-link:hover {
            color: var(--text-main);
        }

        /* RESPONSIVE */

        @media (max-width: 992px) {
            .hero-inner {
                grid-template-columns: minmax(0, 1fr);
                gap: 50px;
            }

            .hero {
                padding-top: 100px;
            }

            .hero-title {
                font-size: 2.4rem;
            }

            .hero-visual {
                justify-content: flex-start;
            }

            .features-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .cta-inner {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media (max-width: 720px) {
            nav {
                padding: 14px 5%;
            }

            .nav-right {
                gap: 10px;
            }

            .hero {
                padding: 80px 0 70px;
            }

            .hero-inner {
                gap: 40px;
            }

            .hero-cta {
                flex-direction: column;
                align-items: flex-start;
            }

            .features-grid {
                grid-template-columns: minmax(0, 1fr);
            }

            .usecases-grid {
                grid-template-columns: minmax(0, 1fr);
            }

            .cta-inner {
                padding: 28px 22px;
            }
        }
 /* Rij 1: kolom 1 = screenshot, kolom 2+3 = tekst */
.admin-top-grid {
    grid-template-columns: 1fr 1fr; /* 2 kolommen */
    align-items: center;
    gap: 40px;
}



/* Carousel */
/* Wrapper met vaste hoogte zodat absolute slides zichtbaar zijn */
.admin-carousel-wrapper {
    position: relative;
    height: 320px; /* zelfde hoogte als client */
    overflow: hidden;
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(15,23,42,0.05);
    background: var(--bg-soft);
    padding: 10px;
}

/* Carousel container */
.admin-carousel {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Slides */
.admin-carousel img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; /* toont hele screenshot */
    object-position: top center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

/* Fade animaties voor 4 slides */
.admin-carousel img:nth-child(1) {
    animation: adminFade 20s infinite;
}

.admin-carousel img:nth-child(2) {
    animation: adminFade 20s infinite 5s;
}

.admin-carousel img:nth-child(3) {
    animation: adminFade 20s infinite 10s;
}

.admin-carousel img:nth-child(4) {
    animation: adminFade 20s infinite 15s;
}

/* Fade keyframes */
@keyframes adminFade {
    0%   { opacity: 1; }
    20%  { opacity: 1; }
    25%  { opacity: 0; }
    95%  { opacity: 0; }
    100% { opacity: 1; }
}

/* Slide animatie */
@keyframes adminSlide {
    0% { transform: translateX(0); }
    33% { transform: translateX(-100%); }
    66% { transform: translateX(-200%); }
    100% { transform: translateX(0); }
}

/* Tekstkolom compacter */
.admin-intro-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.admin-intro-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.55;
}
/* Rij 1: kolom 1 = screenshot, kolom 2+3 = tekst */
.client-top-grid {
    grid-template-columns: 1fr 1fr; /* 2 kolommen */
    align-items: center;
    gap: 40px;
}



/* Tekstkolom */
.client-intro-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.client-intro-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.55;
}
/* Modal overlay */
.modal-overlay {
    display: none; /* standaard verborgen */
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(3px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Modal box */
.modal-content {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    max-width: 420px;
    width: 100%;
    box-shadow: var(--shadow-md);
    position: relative;
    animation: modalFade 0.25s ease-out;
}

/* Close button */
.close-modal {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 26px;
    cursor: pointer;
    color: #444;
}

/* Form fields */
.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--border);
    font-size: 1rem;
    background: var(--bg-soft);
}

.btn-submit {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

/* Fade animation */
@keyframes modalFade {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
/* Rij 1: kolom 1 = visual, kolom 2+3 = tekst */
.upgrade-top-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.upgrade-visual-wrapper {
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Visual container */
.upgrade-visual {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 460px; /* exact gelijk aan Admin/Client */
}
/* Boxes */
.upgrade-box {
    flex: 1;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* CMS box (dashed) */
.cms-box {
    border: 2px dashed #cbd5e0;
}

.upgrade-icon-cms {
    color: var(--text-light);
    margin-bottom: 5px;
    font-size: 22px;
}

/* PREPL box (solid) */
.prepl-box {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.upgrade-icon-prepl {
    color: #ecc94b;
    margin-bottom: 5px;
    font-size: 22px;
}

/* Arrow */
.upgrade-arrow {
    color: var(--accent);
    font-size: 26px;
}

/* Arrow animation */
.animated-arrow {
    animation: arrowPulse 1.6s infinite ease-in-out;
}

@keyframes arrowPulse {
    0%   { transform: translateX(0); opacity: 0.6; }
    50%  { transform: translateX(6px); opacity: 1; }
    100% { transform: translateX(0); opacity: 0.6; }
}


/* Dataflow container */
.dataflow-lines {
    width: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

/* Elke lijn */
.dataflow-lines span {
    display: block;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--accent),
        transparent
    );
    position: relative;
    overflow: hidden;
}

/* De bewegende "data" */
.dataflow-lines span::before {
    content: "";
    position: absolute;
    top: 0;
    left: -30px;
    width: 30px;
    height: 100%;
    background: var(--accent);
    border-radius: 4px;
    filter: blur(3px);
    animation: dataFlow 1.4s infinite linear;
}

/* Verschillende delays voor multi-line effect */
.dataflow-lines span:nth-child(2)::before {
    animation-delay: 0.25s;
}

.dataflow-lines span:nth-child(3)::before {
    animation-delay: 0.5s;
}

/* Animatie */
@keyframes dataFlow {
    0%   { left: -30px; opacity: 0.3; }
    50%  { left: 40px; opacity: 1; }
    100% { left: 80px; opacity: 0.3; }
}
.client-carousel-wrapper {
    position: relative;
    height: 320px;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(15,23,42,0.05);
    background: var(--bg-soft);
    padding: 10px;
}
.client-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}
.client-carousel img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
    opacity: 0;
    transition: opacity 0.8s ease;
}
.client-carousel img:nth-child(1) {
    animation: clientFade 20s infinite;
}

.client-carousel img:nth-child(2) {
    animation: clientFade 20s infinite 5s;
}

.client-carousel img:nth-child(3) {
    animation: clientFade 20s infinite 10s;
}

.client-carousel img:nth-child(4) {
    animation: clientFade 20s infinite 15s;
}
@keyframes clientFade {
    0%   { opacity: 1; }
    20%  { opacity: 1; }
    25%  { opacity: 0; }
    95%  { opacity: 0; }
    100% { opacity: 1; }
}
.client-carousel img:first-child {
    opacity: 1;
}
.client-carousel-wrapper.reveal,
.client-carousel.reveal,
.client-carousel img.reveal {
    opacity: 1 !important;
    transform: none !important;
}
/* Dropdown wrapper */
.nav-dropdown {
    position: relative;
}

.nav-dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 14px; /* hover bridge */
    background: transparent;
}

/* Toggle button */
.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    padding: 6px 0;
}

.nav-dropdown-toggle:hover {
    color: var(--primary);
}

/* Dropdown menu */
.nav-dropdown-menu {
    position: absolute;
    top: 24px;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(15,23,42,0.06);
    padding: 10px 0;
    width: 260px;
    display: none;
    flex-direction: column;
    z-index: 999;
}

/* Dropdown items */
.nav-dropdown-item {
    padding: 10px 16px;
    font-size: 0.92rem;
    color: var(--text-main);
    text-decoration: none;
    display: block;
}

.nav-dropdown-item:hover {
    background: var(--bg-soft);
}

/* Active state */
.nav-dropdown.open .nav-dropdown-menu {
    display: flex;
}

.nav-dropdown.open .nav-dropdown-toggle i {
    transform: rotate(180deg);
    transition: transform 0.2s ease;
}
/* Hover open */
.nav-dropdown:hover .nav-dropdown-menu {
    display: flex;
}

/* Chevron draait ook bij hover */
.nav-dropdown:hover .nav-dropdown-toggle i {
    transform: rotate(180deg);
    transition: transform 0.2s ease;
}
.language-switcher {
    display: flex;
    gap: 6px;
}

.language-switcher button {
    background: transparent;
    border: none;
    font-size: 0.85rem;
    padding: 6px 10px;
    cursor: pointer;
    color: var(--text-muted);
    border-radius: 6px;
}

.language-switcher button:hover {
    background: var(--bg-soft);
    color: var(--primary);
}

.language-switcher button.active {
    background: var(--accent);
    color: white;
}
/* ------------------------------
   MODAL WRAPPER
--------------------------------*/
.roi-modal {
    position: fixed;
    inset: 0;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    font-family: Inter, sans-serif;
}

.roi-modal.active {
    display: flex;
}

/* ------------------------------
   BACKDROP
--------------------------------*/
.roi-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.55); /* veel lichter */
    backdrop-filter: blur(6px);
    animation: fadeIn 0.35s ease forwards;
}

/* ------------------------------
   MODAL CONTENT
--------------------------------*/
.roi-modal-content {
    position: relative;
    width: 96%;               /* breder */
    max-width: 880px;         /* grotere desktop breedte */
    background: rgba(255, 255, 255, 0.92); /* lichter glas */
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 28px 34px;       /* minder hoog, compacter */
    box-shadow: 0 18px 36px rgba(0,0,0,0.12);
    animation: slideUp 0.45s cubic-bezier(.16,.84,.44,1) forwards;
}

/* Close button */
.roi-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: transparent;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #334155;
    transition: opacity .2s;
}
.roi-close:hover {
    opacity: 0.5;
}

/* ------------------------------
   HEADER
--------------------------------*/

.roi-eyebrow {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
    margin-bottom: 6px;
}

.roi-header {
    margin-bottom: 22px;
}

.roi-header h2 {
    font-size: 26px;
    margin-bottom: 6px;
}

.roi-sub {
    font-size: 15px;
    color: #475569;
    max-width: 520px;
    margin: 0 auto;
}

/* ------------------------------
   GRID
--------------------------------*/
.roi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px; /* iets compacter */
}

/* ------------------------------
   LEFT BOX
--------------------------------*/
.chaos-box,
.control-box {
    padding: 20px; /* compacter */
    border-radius: 14px;
}

.chaos-title,
.control-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 16px;
    color: #1e293b;
}

.chaos-item,
.roi-benefit {
    font-size: 14px;
    color: #475569;
    margin-bottom: 8px;
}

.chaos-problem {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid #e2e8f0;
    font-size: 14px;
    color: #dc2626;
    font-weight: 500;
}

.roi-benefit strong {
    color: #0f172a;
}

/* Insight */
.control-insight {
    margin-top: 16px;
    font-size: 15px;
    color: #0f172a;
    font-weight: 600;
}

/* ------------------------------
   CTA
--------------------------------*/
.roi-actions {
.roi-actions {
    margin-top: 26px;
}

.btn-primary {
    padding: 12px 26px;
    border-radius: 10px;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

/* ------------------------------
   ANIMATIONS
--------------------------------*/
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ------------------------------
   MOBILE
--------------------------------*/
@media (max-width: 640px) {

    .roi-modal-content {
        width: 94%;
        padding: 22px;
        border-radius: 16px;
    }

    .roi-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .roi-header h2 {
        font-size: 20px;
    }
}

    .chaos-item,
    .chaos-problem,
    .roi-benefit,
    .control-insight {
        font-size: 15px;
    }


