/* ============================================================
   SUVIO — Main Stylesheet
   Fonts: Bricolage Grotesque (headings), DM Sans (body)
   Colors: #0E5B4D (green), #F0894C (amber), #1C2421 (dark), #FBFAF7 (bg)
   ============================================================ */

/* ── Preloader ── */
#preloader {
    position: fixed;
    inset: 0;
    background: #0A2318;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    animation: pl-fadeout 0.55s ease 2.8s forwards;
}
.pl-logo-wrap {
    position: relative;
    width: 130px;
    height: 130px;
    margin-bottom: 32px;
}
.pl-static {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: pl-fadein 0.5s ease 0.1s forwards;
}
.pl-needle {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform-origin: center center;
    opacity: 0;
    animation:
        pl-fadein 0.3s ease 0.15s forwards,
        pl-spin 1.3s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}
.pl-wordmark {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #F4F7F5;
    opacity: 0;
    transform: translateY(6px);
    animation: pl-rise 0.45s ease 1.6s forwards;
}
.pl-wordmark em { color: #F0894C; font-style: normal; }
.pl-tagline {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #3a7060;
    margin-top: 7px;
    opacity: 0;
    animation: pl-rise 0.4s ease 1.85s forwards;
}
.pl-bar-track {
    width: 68px;
    height: 1.5px;
    background: rgba(244,247,245,0.07);
    border-radius: 999px;
    margin-top: 26px;
    overflow: hidden;
    opacity: 0;
    animation: pl-fadein 0.3s ease 2.0s forwards;
}
.pl-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #1A8870, #F0894C);
    border-radius: 999px;
    animation: pl-bar 0.7s ease 2.1s forwards;
}
@keyframes pl-fadein { to { opacity: 1; } }
@keyframes pl-rise {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes pl-spin {
    0%   { transform: rotate(-360deg); }
    72%  { transform: rotate(10deg); }
    88%  { transform: rotate(-4deg); }
    100% { transform: rotate(0deg); }
}
@keyframes pl-bar { to { width: 100%; } }
@keyframes pl-fadeout {
    to { opacity: 0; visibility: hidden; pointer-events: none; }
}
@media (prefers-reduced-motion: reduce) {
    #preloader { animation: none; opacity: 0; visibility: hidden; }
}

/* ── Page Transition ── */
/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #1C2421;
    background: #FBFAF7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    color: inherit;
}

input, select, textarea {
    font-family: inherit;
}

img {
    max-width: 100%;
    display: block;
}

::selection {
    background: #0E5B4D;
    color: #F4F7F5;
}

/* ── CSS Variables ── */
:root {
    --green:       #0E5B4D;
    --green-dark:  #0A4036;
    --green-light: rgba(14, 91, 77, 0.08);
    --amber:       #F0894C;
    --amber-dark:  #E07640;
    --dark:        #1C2421;
    --body-text:   #5C6660;
    --muted:       #8A938E;
    --bg:          #FBFAF7;
    --bg-alt:      #F4F7F5;
    --white:       #FFFFFF;
    --border:      rgba(28, 36, 33, 0.08);
    --border-light: rgba(28, 36, 33, 0.05);
    --max-w:       1320px;
    --pad-x:       clamp(20px, 4vw, 40px);
    --section-pad: clamp(80px, 10vw, 140px);
    --radius-sm:   8px;
    --radius-md:   12px;
    --radius-lg:   18px;
    --radius-xl:   24px;
    --radius-pill: 999px;
    --shadow-sm:   0 1px 3px rgba(28, 36, 33, 0.06);
    --shadow-md:   0 8px 28px rgba(28, 36, 33, 0.06);
    --shadow-lg:   0 24px 60px rgba(28, 36, 33, 0.12);
    --transition:  0.2s ease;
}

/* ── Typography ── */
.font-display {
    font-family: 'Bricolage Grotesque', sans-serif;
}

.h1 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: clamp(48px, 6.5vw, 88px);
    line-height: 0.98;
    letter-spacing: -0.035em;
    color: #1C2421;
    margin: 0;
}

.h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1;
    letter-spacing: -0.03em;
    color: #1C2421;
    margin: 0;
}

.h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: clamp(22px, 2vw, 28px);
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: #1C2421;
    margin: 0;
}

.section-label {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #0E5B4D;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.lead {
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.55;
    color: #5C6660;
    margin: 0;
}

.text-green  { color: #0E5B4D; }
.text-amber  { color: #F0894C; }
.text-muted  { color: #8A938E; }
.text-body   { color: #5C6660; }
.text-light  { color: rgba(244, 247, 245, 0.75); }
.text-center { text-align: center; }
.italic      { font-style: italic; font-weight: 500; }

/* ── Layout ── */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad-x);
}

.section-pad {
    padding-top: var(--section-pad);
    padding-bottom: var(--section-pad);
}

.bg-alt    { background: #F4F7F5; }
.bg-green  { background: #0E5B4D; }
.bg-dark   { background: #1C2421; }
.bg-white  { background: #FFFFFF; }

/* ── Grid Utilities ── */
.grid-hero   { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(40px, 6vw, 80px); align-items: center; }
.grid-2col   { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3col   { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4col   { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.grid-footer { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.4fr); gap: 48px; }
.grid-split  { display: grid; grid-template-columns: 1fr auto 1fr; gap: 28px; align-items: stretch; }
.grid-roi    { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); gap: clamp(32px, 5vw, 64px); align-items: center; }
.grid-faq    { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(40px, 6vw, 80px); }
.grid-modules-layout { display: grid; grid-template-columns: minmax(0, 8fr) minmax(0, 4fr); gap: 32px; align-items: flex-start; }
.grid-modules-cards  { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 230px), 1fr)); gap: 12px; }

.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between{ display: flex; align-items: center; justify-content: space-between; }
.flex-col    { display: flex; flex-direction: column; }
.gap-8   { gap: 8px; }
.gap-10  { gap: 10px; }
.gap-12  { gap: 12px; }
.gap-14  { gap: 14px; }
.gap-16  { gap: 16px; }
.gap-18  { gap: 18px; }
.gap-24  { gap: 24px; }
.gap-28  { gap: 28px; }
.gap-32  { gap: 32px; }
.gap-36  { gap: 36px; }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
    font-weight: 600;
    font-size: 15px;
    padding: 16px 26px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition), border-color var(--transition), opacity var(--transition);
    white-space: nowrap;
}

.btn-amber {
    background: #F0894C;
    color: #FFFFFF;
    box-shadow: 0 1px 2px rgba(240, 137, 76, 0.25);
}

.btn-amber:hover {
    background: #E07640;
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(240, 137, 76, 0.42);
}

.btn-amber:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(240, 137, 76, 0.3);
}

.btn-ghost {
    background: transparent;
    color: #1C2421;
    border: 1px solid rgba(28, 36, 33, 0.18);
}

.btn-ghost:hover {
    background: rgba(14, 91, 77, 0.06);
    border-color: rgba(14, 91, 77, 0.4);
    transform: translateY(-2px);
}

.btn-ghost-light {
    background: transparent;
    color: #F4F7F5;
    border: 1px solid rgba(244, 247, 245, 0.25);
}

.btn-ghost-light:hover {
    background: rgba(244, 247, 245, 0.1);
    border-color: rgba(244, 247, 245, 0.45);
    transform: translateY(-2px);
}

.btn-sm {
    font-size: 14px;
    padding: 11px 20px;
}

.btn-lg {
    font-size: 15px;
    padding: 16px 28px;
}

.btn-full { width: 100%; }

.btn-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #0E5B4D;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    padding-left: 2px;
    flex-shrink: 0;
}

/* ── Badges / Pills ── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.badge-green {
    background: rgba(14, 91, 77, 0.08);
    color: #0E5B4D;
}

.badge-amber {
    background: rgba(240, 137, 76, 0.15);
    color: #F0894C;
    border: 1px solid rgba(240, 137, 76, 0.3);
}

.badge-red {
    background: rgba(220, 80, 60, 0.1);
    color: #B04638;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    animation: pulseDot 2s ease-in-out infinite;
    flex-shrink: 0;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(244, 247, 245, 0.08);
    color: #F4F7F5;
    padding: 9px 14px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    transition: background var(--transition), transform var(--transition);
}

.app-badge:hover {
    background: rgba(244, 247, 245, 0.14);
    transform: translateY(-2px);
}

.app-badge-dark {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #1C2421;
    color: #F4F7F5;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(244, 247, 245, 0.1);
    transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.app-badge-dark:hover {
    background: #0A4036;
    border-color: rgba(244, 247, 245, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

/* ── Cards ── */
.card {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.card-lift {
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease, border-color 0.25s ease;
}

.card-lift:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(28, 36, 33, 0.13);
    border-color: rgba(14, 91, 77, 0.22);
}

.card-philosophy {
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
}

.card-number {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #0E5B4D;
    letter-spacing: 0.04em;
    margin-bottom: 22px;
}

/* ── Nav ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #FBFAF7;
    border-bottom: 1px solid rgba(28, 36, 33, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

.nav-hidden {
    transform: translateY(-100%);
}

/* Push content down so it doesn't hide under fixed nav */
body:not(.admin-body):not(.admin-login-body) { padding-top: 65px; }

.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 16px var(--pad-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.nav-logo {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.02em;
    color: #0E5B4D;
    display: flex;
    align-items: center;
    gap: 3px;
}

.nav-logo span { color: #F0894C; }

.nav-logo-icon {
    width: 36px;
    height: 36px;
    max-width: 36px;
    max-height: 36px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: 14px;
    color: #1C2421;
    opacity: 0.72;
    position: relative;
    transition: color var(--transition), opacity var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -7px;
    height: 2px;
    border-radius: 2px;
    background: #0E5B4D;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    opacity: 1;
    color: #0E5B4D;
}

.nav-link:hover::after { transform: scaleX(1); }

.nav-link.is-active {
    opacity: 1;
    color: #0E5B4D;
}

.nav-link.is-active::after {
    transform: scaleX(1);
    background: #F0894C;
}

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

/* ── Hamburger ── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 8px;
    transition: background 0.2s ease;
}
.hamburger:hover { background: rgba(28,36,33,0.06); }
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #1C2421;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Menu Overlay ── */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(28,36,33,0.45);
    z-index: 998;
}
.mobile-menu-overlay.is-open { display: block; }

/* ── Mobile Menu Drawer ── */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 88vw);
    height: 100dvh;
    background: #FBFAF9;
    z-index: 999;
    transform: translateX(110%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 40px rgba(28,36,33,0.14);
    pointer-events: none;
}
.mobile-menu.is-open {
    transform: translateX(0);
    pointer-events: auto;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: auto;
}

.mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(28,36,33,0.08);
}

.mobile-menu-close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(28,36,33,0.06);
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #1C2421;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}
.mobile-menu-close:hover { background: rgba(28,36,33,0.12); }

.mobile-menu-nav {
    flex: 1;
    padding: 12px 0;
    display: flex;
    flex-direction: column;
}

.mobile-nav-link {
    display: block;
    padding: 13px 22px;
    font-size: 15px;
    font-weight: 600;
    color: #1C2421;
    text-decoration: none;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
    width: 100%;
    font-family: inherit;
    transition: background 0.15s ease, color 0.15s ease;
}
.mobile-nav-link:hover { background: rgba(14,91,77,0.05); color: #0E5B4D; }

.mobile-nav-accordion {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-chevron {
    font-size: 13px;
    opacity: 0.5;
    transition: transform 0.25s ease;
}
.mobile-nav-accordion.is-open .mobile-chevron { transform: rotate(180deg); }

.mobile-nav-sub {
    display: flex;
    flex-direction: column;
    padding: 0 0 0 22px;
    background: rgba(14,91,77,0.03);
    border-left: 2px solid rgba(14,91,77,0.12);
    margin: 0 16px;
    border-radius: 0 0 8px 8px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease, margin 0.35s ease, padding 0.35s ease;
}
.mobile-nav-sub.is-open {
    max-height: 600px;
    opacity: 1;
    margin: 0 16px 4px;
    padding: 4px 0 8px 22px;
}

.mobile-nav-sub-label {
    font-size: 10.5px;
    font-weight: 700;
    color: #8A938E;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 10px 12px 4px;
}

.mobile-nav-sub-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    color: #46504A;
    text-decoration: none;
    border-radius: 7px;
    transition: background 0.15s ease, color 0.15s ease;
}
.mobile-nav-sub-link:hover { background: rgba(14,91,77,0.07); color: #0E5B4D; }

.mobile-menu-foot {
    padding: 16px 22px 28px;
    border-top: 1px solid rgba(28,36,33,0.08);
    margin-top: auto;
}
.btn-full { width: 100%; justify-content: center; }

/* Dropdown */
.nav-dropdown-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.nav-dropdown-trigger .chevron {
    font-size: 16px;
    opacity: 0.55;
    transition: transform var(--transition);
}

.nav-dropdown-wrap:hover .chevron { transform: rotate(180deg); }

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 14px;
    z-index: 110;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    pointer-events: none;
}

.nav-dropdown-wrap:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nav-dropdown-box {
    background: #FBFAF7;
    border: 1px solid rgba(28, 36, 33, 0.08);
    border-radius: 18px;
    box-shadow: 0 18px 44px rgba(28, 36, 33, 0.16);
    padding: 18px;
    width: 560px;
    max-width: 80vw;
}

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

.dropdown-col-label {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8A938E;
    padding: 2px 10px 8px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 14px;
    color: #1C2421;
    transition: background var(--transition), padding-left var(--transition);
}

.dropdown-item:hover {
    background: rgba(14, 91, 77, 0.08);
    padding-left: 14px;
}

.dropdown-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dropdown-dot-green { background: #0E5B4D; }
.dropdown-dot-amber { background: #F0894C; }

.dropdown-footer {
    border-top: 1px solid rgba(28, 36, 33, 0.07);
    margin-top: 12px;
    padding: 12px 10px 2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #0E5B4D;
    font-weight: 600;
    font-size: 13px;
    transition: gap var(--transition), color var(--transition);
}

.text-link:hover { gap: 12px; color: #0A4036; }
.text-link span { transition: transform var(--transition); display: inline-block; }
.text-link:hover span { transform: translateX(3px); }

/* ── Hero ── */
.hero-section {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: clamp(60px, 9vw, 120px) var(--pad-x) clamp(80px, 10vw, 140px);
    position: relative;
}

.hero-badge .pulse-dot { background: #0E5B4D; }

.hero-title em {
    font-style: italic;
    font-weight: 500;
    color: #0E5B4D;
}

.hero-desc {
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.55;
    color: #5C6660;
    margin: 0 0 36px;
    max-width: 520px;
}

.hero-checks {
    display: flex;
    gap: 28px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-check-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-check-icon {
    color: #0E5B4D;
    font-size: 14px;
}

.hero-check-text {
    font-size: 13px;
    color: #5C6660;
}

/* Dashboard mockup */
.dashboard-wrap {
    position: relative;
}

.dashboard-glow-amber {
    position: absolute;
    right: -40px;
    top: 20px;
    width: 220px;
    height: 220px;
    background: rgba(240, 137, 76, 0.12);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
}

.dashboard-glow-green {
    position: absolute;
    left: -30px;
    bottom: -20px;
    width: 200px;
    height: 200px;
    background: rgba(14, 91, 77, 0.15);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
}

.dashboard-frame {
    position: relative;
    z-index: 1;
    background: #FFFFFF;
    border-radius: 14px;
    box-shadow: 0 24px 60px rgba(28, 36, 33, 0.12), 0 4px 12px rgba(28, 36, 33, 0.05);
    overflow: hidden;
    border: 1px solid rgba(28, 36, 33, 0.05);
}

.window-chrome {
    background: #F4F7F5;
    padding: 11px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(28, 36, 33, 0.06);
}

.window-dots {
    display: flex;
    gap: 6px;
}

.window-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.window-dot-red    { background: #F0894C; opacity: 0.7; }
.window-dot-yellow { background: #E8C547; opacity: 0.7; }
.window-dot-green  { background: #0E5B4D; opacity: 0.7; }

.window-url {
    flex: 1;
    text-align: center;
    font-size: 11px;
    color: #5C6660;
    font-family: 'DM Sans', sans-serif;
}

.dashboard-body {
    display: grid;
    grid-template-columns: 56px 1fr;
    min-height: 460px;
}

.dashboard-sidebar {
    background: #FAFBFA;
    padding: 18px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    border-right: 1px solid rgba(28, 36, 33, 0.05);
}

.sidebar-icon {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.sidebar-icon-logo {
    background: #0E5B4D;
    color: white;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 13px;
}

.sidebar-icon-active {
    background: rgba(14, 91, 77, 0.1);
    color: #0E5B4D;
}

.sidebar-icon-muted { color: #B0B5B0; }

.dashboard-main {
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-tile {
    background: #F4F7F5;
    border-radius: 9px;
    padding: 11px 12px;
}

.stat-tile-label {
    font-size: 9px;
    color: #8A938E;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.stat-tile-value {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1;
}

.stat-tile-sub {
    font-size: 10px;
    color: #5C6660;
    margin-top: 4px;
}

.heatmap-wrap {
    background: #FAFBFA;
    border-radius: 10px;
    padding: 12px 14px;
    border: 1px solid rgba(28, 36, 33, 0.05);
}

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

.heatmap-cell {
    aspect-ratio: 1;
    border-radius: 2px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 10px;
    background: #FAFBFA;
    border-radius: 7px;
}

.avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    flex-shrink: 0;
}

.avatar-green {
    background: #E8EEEA;
    color: #0E5B4D;
}

.avatar-amber {
    background: rgba(240, 137, 76, 0.15);
    color: #C56A35;
}

.avatar-md {
    width: 28px;
    height: 28px;
    font-size: 11px;
}

.avatar-lg {
    width: 34px;
    height: 34px;
    font-size: 13px;
    font-weight: 600;
}

.dashboard-float-card {
    position: absolute;
    right: -30px;
    bottom: -28px;
    background: #1C2421;
    color: #F4F7F5;
    padding: 14px 18px;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(28, 36, 33, 0.25);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 240px;
}

/* Trust strip */
.trust-strip {
    margin-top: clamp(60px, 8vw, 100px);
    padding-top: 32px;
    border-top: 1px solid rgba(28, 36, 33, 0.08);
}

.trust-logos {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    opacity: 0.6;
}

.trust-logo {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #5C6660;
    letter-spacing: -0.01em;
}

.trust-value-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 20px;
}

.trust-value-item {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: 11px;
    color: #5C6660;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.trust-value-dot {
    font-size: 18px;
    color: #F0894C;
    line-height: 1;
}

/* ── Modules Section ── */
.modules-section {
    background: #F4F7F5;
    padding: var(--section-pad) 0;
}

.modules-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.mod-card {
    text-align: left;
    padding: 22px 20px;
    border-radius: 14px;
    border: 1.5px solid rgba(28, 36, 33, 0.08);
    background: #FFFFFF;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
    min-height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    width: 100%;
}

.mod-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(28, 36, 33, 0.1);
}

.mod-card.is-selected {
    background: #0E5B4D;
    border-color: #0E5B4D;
    color: #F4F7F5;
}

.mod-card.is-locked { cursor: default; }

.mod-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
}

.mod-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(14, 91, 77, 0.08);
    color: #0E5B4D;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 14px;
}

.mod-card.is-selected .mod-icon {
    background: rgba(240, 137, 76, 0.18);
    color: #F0894C;
}

.mod-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(28, 36, 33, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.18s;
    color: transparent;
}

.mod-card.is-selected .mod-check {
    background: #F0894C;
    color: #FFFFFF;
}

.mod-name {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: 17px;
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-bottom: 4px;
}

.mod-desc {
    font-size: 12.5px;
    color: #5C6660;
    line-height: 1.4;
}

.mod-card.is-selected .mod-desc {
    color: rgba(244, 247, 245, 0.7);
}

.mod-locked-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.6;
    margin-top: 12px;
}

/* Stack panel */
.stack-panel {
    position: sticky;
    top: 88px;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.stack-count {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: 56px;
    line-height: 1;
    color: #0E5B4D;
    letter-spacing: -0.04em;
}

.stack-list {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 24px;
    max-height: 200px;
    overflow-y: auto;
}

.stack-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    background: #F4F7F5;
    border-radius: 8px;
}

.stack-check { color: #0E5B4D; font-size: 12px; }
.stack-name  { font-size: 13px; color: #1C2421; font-weight: 500; flex: 1; }
.stack-core  { font-size: 9px; color: #8A938E; letter-spacing: 0.06em; text-transform: uppercase; }

/* ── Product Preview Tabs ── */
.tabs-wrap {
    display: flex;
    gap: 4px;
    justify-content: center;
    background: #F4F7F5;
    padding: 5px;
    border-radius: var(--radius-pill);
    max-width: 540px;
    margin: 0 auto 32px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.tabs-wrap::-webkit-scrollbar { display: none; }

.tab-btn {
    flex: 1;
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 14px;
    transition: background var(--transition), color var(--transition), box-shadow var(--transition);
    background: transparent;
    color: #5C6660;
    white-space: nowrap;
}

.tab-btn.is-active {
    background: #FFFFFF;
    color: #0E5B4D;
    box-shadow: 0 2px 8px rgba(28, 36, 33, 0.08);
}

.tab-btn:hover { color: #0E5B4D; }

.browser-frame {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: var(--shadow-lg), 0 4px 12px rgba(28, 36, 33, 0.04);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.browser-chrome {
    background: #F4F7F5;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid rgba(28, 36, 33, 0.06);
}

.browser-url-bar {
    flex: 1;
    background: #FFFFFF;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    color: #5C6660;
    text-align: center;
}

.tab-content {
    padding: 32px clamp(20px, 3vw, 36px);
    min-height: 480px;
    background: #FBFAF7;
    display: none;
}

.tab-content.is-active {
    display: block;
    animation: fadeIn 0.3s ease forwards;
}

.product-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}

.product-stat {
    background: white;
    border-radius: 10px;
    padding: 16px;
    border: 1px solid var(--border-light);
}

.product-stat-label {
    font-size: 11px;
    color: #8A938E;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.product-stat-value {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 1;
}

/* ── Before/After ── */
.before-card {
    background: #FBFAF7;
    border-radius: 18px;
    padding: 32px 28px;
    border: 1px dashed rgba(28, 36, 33, 0.15);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.before-card-decor {
    position: absolute;
    inset: 0;
    opacity: 0.5;
    pointer-events: none;
}

.before-decor-sq {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 80px;
    height: 80px;
    background: rgba(220, 80, 60, 0.08);
    border: 1px solid rgba(220, 80, 60, 0.2);
    transform: rotate(8deg);
}

.before-decor-rect {
    position: absolute;
    bottom: 80px;
    left: 30px;
    width: 100px;
    height: 60px;
    background: rgba(140, 110, 80, 0.08);
    border: 1px solid rgba(140, 110, 80, 0.2);
    transform: rotate(-5deg);
    border-radius: 6px;
}

.before-decor-circle {
    position: absolute;
    top: 130px;
    left: 50%;
    width: 70px;
    height: 70px;
    background: rgba(80, 80, 80, 0.06);
    border: 1px solid rgba(80, 80, 80, 0.18);
    transform: rotate(15deg);
    border-radius: 50%;
}

.before-card-content { position: relative; }

.after-card {
    background: linear-gradient(160deg, #0E5B4D 0%, #0A4036 100%);
    color: #F4F7F5;
    border-radius: 18px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(14, 91, 77, 0.2);
    display: flex;
    flex-direction: column;
}

.after-card-glow {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: rgba(240, 137, 76, 0.15);
    border-radius: 50%;
    filter: blur(20px);
    pointer-events: none;
}

.ba-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.ba-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.ba-icon-no {
    background: rgba(220, 80, 60, 0.12);
    color: #B04638;
}

.ba-icon-yes {
    background: rgba(240, 137, 76, 0.2);
    color: #F0894C;
}

.arrow-circle {
    background: #F0894C;
    color: white;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 6px 16px rgba(240, 137, 76, 0.35);
    flex-shrink: 0;
}

/* ── ROI / Savings ── */
.roi-box {
    background: #FFFFFF;
    border-radius: var(--radius-xl);
    padding: clamp(32px, 5vw, 56px);
    box-shadow: 0 8px 32px rgba(28, 36, 33, 0.06);
    border: 1px solid var(--border-light);
}

.roi-number {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: clamp(60px, 9vw, 96px);
    color: #0E5B4D;
    line-height: 0.9;
    letter-spacing: -0.04em;
}

.roi-slider {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    border-radius: var(--radius-pill);
    outline: none;
    cursor: pointer;
    margin-bottom: 8px;
}

.roi-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #0E5B4D;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(14, 91, 77, 0.3);
}

.roi-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #0E5B4D;
    cursor: pointer;
    border: none;
}

.chip-btn {
    padding: 7px 14px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    background: #F4F7F5;
    color: #1C2421;
    font-weight: 500;
    transition: background var(--transition), transform var(--transition);
    border: none;
    cursor: pointer;
}

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

.roi-result {
    background: #F4F7F5;
    border-radius: 16px;
    padding: 24px;
}

.roi-result-green {
    background: linear-gradient(160deg, #0E5B4D 0%, #0A4036 100%);
    color: #F4F7F5;
    border-radius: 16px;
    padding: 24px;
    overflow: hidden;
    position: relative;
    overflow: hidden;
}

.roi-big-number {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: clamp(40px, 6vw, 56px);
    line-height: 1;
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
}

/* ── Mobile App Section ── */
.mobile-section-grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
}

.mobile-section {
    background: #0E5B4D;
    color: #F4F7F5;
    padding: var(--section-pad) 0;
    position: relative;
    overflow: hidden;
}

.mobile-glow-1 {
    position: absolute;
    top: 80px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(240, 137, 76, 0.15);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.mobile-glow-2 {
    position: absolute;
    bottom: 50px;
    right: -50px;
    width: 240px;
    height: 240px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
}

.mobile-feature-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.mobile-feature-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(240, 137, 76, 0.18);
    color: #F0894C;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.phone-frame {
    width: 280px;
    background: #1C2421;
    border-radius: 38px;
    padding: 9px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(244, 247, 245, 0.1);
    position: relative;
    z-index: 1;
}

.phone-screen {
    background: #FBFAF7;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 9 / 19.5;
}

.phone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 22px;
    background: #1C2421;
    border-radius: var(--radius-pill);
    z-index: 2;
}

.phone-checkin-card {
    background: linear-gradient(135deg, #0E5B4D, #0A4036);
    color: white;
    border-radius: 14px;
    padding: 16px;
    overflow: hidden;
    margin-bottom: 14px;
    position: relative;
    overflow: hidden;
}

.phone-float-notification {
    position: absolute;
    top: 40px;
    right: -10px;
    background: white;
    color: #1C2421;
    padding: 10px 14px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
    max-width: 200px;
    animation: slideUp 0.6s ease forwards;
}

/* ── FAQ ── */
.faq-row {
    border-top: 1px solid rgba(28, 36, 33, 0.1);
    padding: 4px 0;
}

.faq-row:last-child { border-bottom: 1px solid rgba(28, 36, 33, 0.1); }

.faq-btn {
    width: 100%;
    text-align: left;
    padding: 22px 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-radius: 10px;
    transition: padding-left var(--transition), background var(--transition);
}

.faq-btn:hover {
    padding-left: 14px;
    background: rgba(14, 91, 77, 0.035);
}

.faq-question {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: clamp(17px, 1.5vw, 19px);
    color: #1C2421;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(28, 36, 33, 0.06);
    color: #1C2421;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: transform 0.25s ease, background var(--transition), color var(--transition);
}

.faq-icon.is-open {
    background: #0E5B4D;
    color: #FFFFFF;
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 4px 22px;
    font-size: 15.5px;
    color: #5C6660;
    line-height: 1.6;
    max-width: 580px;
    display: none;
    animation: fadeUp 0.3s ease forwards;
}

.faq-answer.is-open { display: block; }

/* ── CTA Section ── */
.cta-section {
    background: #0E5B4D;
    color: #F4F7F5;
    padding: var(--section-pad) var(--pad-x);
    position: relative;
    overflow: hidden;
}

.cta-glow-1 {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: rgba(240, 137, 76, 0.1);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.cta-glow-2 {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(240, 137, 76, 0.08);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.cta-pill-row {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cta-pill {
    padding: 9px 16px;
    background: rgba(244, 247, 245, 0.08);
    border: 1px solid rgba(244, 247, 245, 0.15);
    border-radius: var(--radius-pill);
    font-size: 13px;
    color: #F4F7F5;
    font-weight: 500;
}

/* ── Footer ── */
.footer {
    background: #1C2421;
    color: #F4F7F5;
    padding: clamp(60px, 8vw, 100px) var(--pad-x) 36px;
}

.footer-top {
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(244, 247, 245, 0.1);
}

.footer-brand-name {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #F4F7F5;
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 18px;
}

.footer-brand-name .nav-logo-icon {
    width: 40px;
    height: 40px;
    max-width: 40px;
    max-height: 40px;
}

.footer-brand-desc {
    font-size: 14px;
    color: rgba(244, 247, 245, 0.6);
    line-height: 1.6;
    margin: 0 0 24px;
    max-width: 320px;
}

.footer-col-label {
    font-size: 11px;
    color: rgba(244, 247, 245, 0.5);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 18px;
}

.footer-link {
    font-size: 14px;
    color: rgba(244, 247, 245, 0.75);
    transition: color var(--transition), transform var(--transition);
    display: block;
}

.footer-link:hover {
    color: #F4F7F5;
    transform: translateX(3px);
}

.footer-contact-label {
    font-size: 12px;
    color: rgba(244, 247, 245, 0.5);
    margin-bottom: 4px;
}

.footer-contact-value {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 500;
    font-size: 17px;
    color: #F4F7F5;
    letter-spacing: -0.01em;
}

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

.footer-copy {
    font-size: 12px;
    color: rgba(244, 247, 245, 0.5);
}

.footer-socials {
    display: flex;
    gap: 18px;
}

.footer-social {
    font-size: 12px;
    color: rgba(244, 247, 245, 0.5);
    transition: color var(--transition);
}

.footer-social:hover { color: #F4F7F5; }

/* ── Demo Modal ── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(28, 36, 33, 0.6);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    animation: fadeIn 0.2s ease forwards;
    overflow-y: auto;
}

.modal-box {
    background: #FBFAF7;
    border-radius: 20px;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideUp 0.3s ease forwards;
    margin: auto;
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(28, 36, 33, 0.06);
    color: #1C2421;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background var(--transition);
}

.modal-close:hover { background: rgba(28, 36, 33, 0.12); }

.modal-body { padding: 36px 36px 32px; }

.modal-success { padding: 56px 40px; text-align: center; }

.modal-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(14, 91, 77, 0.1);
    color: #0E5B4D;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 24px;
}

.form-group { display: flex; flex-direction: column; gap: 14px; }

.form-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #5C6660;
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(28, 36, 33, 0.12);
    background: white;
    font-size: 14.5px;
    color: #1C2421;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-input:focus {
    border-color: #0E5B4D;
    box-shadow: 0 0 0 3px rgba(14, 91, 77, 0.1);
}

.emp-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.emp-chip {
    padding: 9px 15px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(28, 36, 33, 0.14);
    background: #FFFFFF;
    color: #1C2421;
    font-size: 13.5px;
    font-weight: 500;
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition), color var(--transition);
}

.emp-chip:hover { border-color: rgba(14, 91, 77, 0.45); }

.emp-chip.is-selected {
    background: #0E5B4D;
    color: #F4F7F5;
    border-color: #0E5B4D;
    font-weight: 600;
}

.form-note {
    font-size: 11.5px;
    color: #8A938E;
    text-align: center;
    margin: 4px 0 0;
    line-height: 1.4;
}

/* ── Payroll Table (product preview) ── */
.data-table {
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.data-table-head {
    display: grid;
    gap: 16px;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(28, 36, 33, 0.06);
    font-size: 10px;
    color: #8A938E;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 500;
}

.data-table-row {
    display: grid;
    gap: 16px;
    padding: 13px 18px;
    border-bottom: 1px solid rgba(28, 36, 33, 0.04);
    align-items: center;
}

.data-table-row:last-child { border-bottom: none; }

.status-pill {
    font-size: 10px;
    padding: 3px 8px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    display: inline-block;
}

.status-green { background: #E8EEEA; color: #0E5B4D; }
.status-amber { background: rgba(240, 137, 76, 0.18); color: #C56A35; }

/* ── Progress bar ── */
.progress-bar-wrap {
    height: 5px;
    background: #F4F7F5;
    border-radius: var(--radius-pill);
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: #0E5B4D;
    border-radius: var(--radius-pill);
}

/* ── Animations ── */
@keyframes fadeIn    { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeUp    { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideUp   { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulseDot  { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ── Utility ── */
.hidden    { display: none !important; }
.sr-only   { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.mb-0  { margin-bottom: 0; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-18 { margin-bottom: 18px; }
.mb-22 { margin-bottom: 22px; }
.mb-24 { margin-bottom: 24px; }
.mb-28 { margin-bottom: 28px; }
.mb-32 { margin-bottom: 32px; }
.mb-36 { margin-bottom: 36px; }
.mb-40 { margin-bottom: 40px; }
.mb-44 { margin-bottom: 44px; }
.mb-56 { margin-bottom: 56px; }
.mb-64 { margin-bottom: 64px; }
.mt-14 { margin-top: 14px; }
.mt-32 { margin-top: 32px; }
.w-full { width: 100%; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .grid-footer { grid-template-columns: 1fr 1fr; gap: 40px; }
    .grid-modules-layout { grid-template-columns: 1fr; }
    .stack-panel { position: static; }
}

@media (max-width: 880px) {
    .grid-hero   { grid-template-columns: 1fr; gap: 56px; }
    .grid-split  { grid-template-columns: 1fr; gap: 32px; }
    .grid-2col   { grid-template-columns: 1fr; gap: 20px; }
    .grid-3col   { grid-template-columns: 1fr; gap: 18px; }
    .grid-faq    { grid-template-columns: 1fr; gap: 32px; }
    .grid-roi    { grid-template-columns: 1fr; gap: 32px; }
    .hide-mobile { display: none !important; }
    .arrow-circle { margin: 0 auto; }
    .nav-links   { display: none; }
    .hamburger   { display: flex; }
    .product-stat-grid { grid-template-columns: repeat(2, 1fr); }
    .dashboard-float-card { display: none; }
    .mobile-section-grid { grid-template-columns: 1fr !important; }
    .mobile-section-grid .flex-center { order: -1; }
    .phone-frame { margin: 0 auto; max-width: 240px; }
    .phone-float-notification { display: none; }
    .mobile-section { overflow: hidden; }
    .mobile-section .flex-center { overflow: hidden; }
}

@media (max-width: 640px) {
    .grid-4col { grid-template-columns: repeat(2, 1fr); }
    .grid-footer { grid-template-columns: 1fr; }
    .btn-stack-mobile { flex-direction: column; align-items: stretch; }
    .btn-stack-mobile > * { width: 100%; justify-content: center; }
    .modal-body { padding: 28px 24px 24px; }
    .trust-logos { gap: 20px; }
    .hero-checks { gap: 16px; }
}

@media (max-width: 480px) {
    .h1 { font-size: clamp(40px, 9vw, 56px); line-height: 1.02; }
    .h2 { font-size: clamp(32px, 7.5vw, 44px); }
    .product-stat-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════════════
   MODULES PAGE
══════════════════════════════════════════════════ */

/* ── Page header ── */
.mods-header {
    padding: clamp(64px, 9vw, 112px) 0 clamp(40px, 5vw, 64px);
}

.mods-header-inner {
    max-width: 760px;
}

/* ── Main content area ── */
.mods-main {
    padding: 0 0 clamp(56px, 7vw, 96px);
}

/* ── Module group section ── */
.mod-group {
    margin-bottom: clamp(48px, 6vw, 72px);
    scroll-margin-top: 96px;
}

.mod-group:last-child { margin-bottom: 0; }

.mod-group-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.mod-group-label {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
    white-space: nowrap;
}

.mod-group-line {
    flex: 1;
    height: 1px;
    background: rgba(28, 36, 33, 0.1);
}

.mod-group-count {
    font-size: 13px;
    color: #8A938E;
    white-space: nowrap;
}

/* ── Cards grid — 4-col with first col wider ── */
.mod-page-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 20px;
    align-items: stretch;
}

/* ── Individual card ── */
.mod-page-card {
    background: #FFFFFF;
    border: 1px solid rgba(28, 36, 33, 0.07);
    border-radius: 18px;
    padding: 23px 22px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(28, 36, 33, 0.04);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease, border-color 0.25s ease;
    scroll-margin-top: 96px;
}

.mod-page-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(28, 36, 33, 0.13);
    border-color: rgba(14, 91, 77, 0.22);
}

.mod-page-card:hover .mod-page-link { color: #0A4036; }
.mod-page-card:hover .mod-arrow     { transform: translateX(4px); }

/* Featured (large) card — green variant */
.mod-page-card-feat {
    background: linear-gradient(160deg, rgba(14,91,77,0.10), rgba(14,91,77,0.035));
    border-color: rgba(14, 91, 77, 0.20);
    padding: 36px 32px;
    box-shadow: 0 6px 22px rgba(14,91,77,0.08);
}

/* Featured amber variant */
.mod-page-card-feat.mod-page-card-amber {
    background: linear-gradient(160deg, rgba(240,137,76,0.13), rgba(240,137,76,0.04));
    border-color: rgba(240,137,76,0.28);
    box-shadow: 0 6px 22px rgba(240,137,76,0.10);
}

/* ── Card icon ── */
.mod-page-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(14, 91, 77, 0.08);
    color: #0E5B4D;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.mod-page-icon-lg {
    width: 56px;
    height: 56px;
    border-radius: 15px;
    background: #0E5B4D;
    color: #FFFFFF;
    margin-bottom: 22px;
}

.mod-page-icon-amber {
    background: rgba(240, 137, 76, 0.12);
    color: #D97740;
}

.mod-page-card-feat .mod-page-icon-amber.mod-page-icon-lg {
    background: #F0894C;
    color: #FFFFFF;
}

/* ── Card text ── */
.mod-page-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: 19px;
    letter-spacing: -0.02em;
    color: #1C2421;
    margin: 0 0 9px;
}

.mod-page-title-lg {
    font-size: 24px;
    letter-spacing: -0.025em;
    margin-bottom: 11px;
}

.mod-page-desc {
    font-size: 14px;
    color: #5C6660;
    line-height: 1.5;
    margin: 0 0 20px;
    flex-grow: 1;
}

.mod-page-desc-lg {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 22px;
}

.mod-page-link {
    font-size: 13.5px;
    font-weight: 600;
    color: #0E5B4D;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
    margin-top: auto;
}

.mod-page-card-feat .mod-page-link { font-size: 14px; }

.mod-arrow {
    display: inline-block;
    transition: transform 0.2s ease;
}

/* ── Callout band ── */
.mods-callout {
    background: #0E5B4D;
    padding: clamp(60px, 8vw, 96px) 0;
}

.mods-callout-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.06;
    letter-spacing: -0.03em;
    color: #F4F7F5;
    margin: 0 0 18px;
}

.mods-callout-desc {
    font-size: 17px;
    color: rgba(244, 247, 245, 0.78);
    line-height: 1.55;
    margin: 0 auto 34px;
    max-width: 600px;
}

/* ── Final CTA ── */
.mods-final-cta { text-align: center; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .mod-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mod-page-card-feat {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    .mod-page-grid {
        grid-template-columns: 1fr;
    }
    .mod-page-card-feat {
        grid-column: auto;
    }
}

/* ══════════════════════════════════════════════════
   MODULE DETAIL PAGES (shared by all /modules/*.php)
══════════════════════════════════════════════════ */

/* ── Breadcrumb ── */
.mod-breadcrumb {
    max-width: 1320px;
    margin: 0 auto;
    padding: clamp(28px, 4vw, 44px) clamp(20px, 4vw, 40px) 0;
}

.mod-breadcrumb-inner {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13.5px;
    color: #8A938E;
}

.crumb-link {
    color: #5C6660;
    font-weight: 500;
    transition: color 0.2s ease;
}

.crumb-link:hover { color: #0E5B4D; }

.crumb-sep { opacity: 0.5; }

.crumb-current {
    color: #1C2421;
    font-weight: 500;
}

/* ── Mini-hero ── */
.mod-hero {
    max-width: 1320px;
    margin: 0 auto;
    padding: clamp(28px, 4vw, 44px) clamp(20px, 4vw, 40px) clamp(48px, 6vw, 72px);
}

.mod-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: clamp(40px, 5vw, 72px);
    align-items: center;
}

.mod-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(14, 91, 77, 0.08);
    color: #0E5B4D;
    padding: 7px 14px;
    border-radius: 999px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.mod-hero-badge-amber {
    background: rgba(240, 137, 76, 0.1);
    color: #B45F2B;
}

.mod-hero-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.mod-hero-h1 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: clamp(44px, 5.2vw, 68px);
    line-height: 1.0;
    letter-spacing: -0.035em;
    color: #1C2421;
    margin: 0 0 14px;
}

.mod-hero-tagline {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 500;
    font-size: clamp(20px, 2.4vw, 28px);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #46504A;
    margin: 0 0 20px;
}

.mod-hero-desc {
    font-size: 17px;
    color: #5C6660;
    line-height: 1.55;
    margin: 0 0 32px;
    max-width: 460px;
}

.mod-hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ── Browser frame mockup ── */
.browser-frame {
    background: #FFFFFF;
    border: 1px solid rgba(28, 36, 33, 0.08);
    border-radius: 16px;
    box-shadow: 0 30px 70px rgba(28, 36, 33, 0.16);
    overflow: hidden;
}

.browser-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 16px;
    border-bottom: 1px solid rgba(28, 36, 33, 0.07);
    background: #F7F6F2;
}

.browser-dots {
    display: flex;
    gap: 7px;
}

.browser-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.browser-dot-red  { background: #E5654C; }
.browser-dot-yel  { background: #E9B23C; }
.browser-dot-grn  { background: #4FB06A; }

.browser-url {
    flex: 1;
    background: #FFFFFF;
    border: 1px solid rgba(28, 36, 33, 0.08);
    border-radius: 7px;
    padding: 6px 12px;
    font-size: 12px;
    color: #8A938E;
    text-align: center;
}

.browser-body {
    display: grid;
    grid-template-columns: 64px 1fr;
    min-height: 360px;
}

/* ── App sidebar (inside mockup) ── */
.app-sidebar {
    background: #0E5B4D;
    padding: 18px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.app-logo-mark {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: rgba(244, 247, 245, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    color: #F4F7F5;
    font-size: 14px;
}

.app-nav-item {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-nav-item-active { background: #F0894C; }

.app-nav-ghost-sq {
    width: 17px;
    height: 17px;
    border-radius: 4px;
    border: 1.7px solid rgba(244, 247, 245, 0.45);
}

.app-nav-ghost-circle {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    border: 1.7px solid rgba(244, 247, 245, 0.45);
}

.app-nav-ghost-bar {
    width: 17px;
    height: 4px;
    border-radius: 2px;
    background: rgba(244, 247, 245, 0.45);
}

/* ── App main area (inside mockup) ── */
.app-main {
    padding: 22px 24px;
    background: #FBFAF9;
}

.app-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.app-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #1C2421;
    letter-spacing: -0.01em;
}

.app-subtitle {
    font-size: 13px;
    color: #8A938E;
    margin-top: 2px;
}

.app-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 11px;
    border-radius: 999px;
    white-space: nowrap;
}

.app-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.app-status-label {
    font-size: 11.5px;
    font-weight: 600;
}

.app-status-green { background: rgba(79, 176, 106, 0.12); }
.app-status-green .app-status-dot { background: #3E9D5B; }
.app-status-green .app-status-label { color: #2D7E49; }

.app-status-amber { background: rgba(201, 136, 47, 0.14); }
.app-status-amber .app-status-dot { background: #C9882F; }
.app-status-amber .app-status-label { color: #A66F22; }

/* Reusable app stat box */
.app-stat-box {
    background: #FFFFFF;
    border: 1px solid rgba(28, 36, 33, 0.07);
    border-radius: 10px;
    padding: 11px 13px;
}

.app-stat-label {
    font-size: 10.5px;
    color: #A0A8A3;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
}

.app-stat-value {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 21px;
    font-weight: 600;
    line-height: 1;
    color: #1C2421;
}

.app-stat-value-green { color: #2D7E49; }
.app-stat-value-amber { color: #C9882F; }
.app-stat-value-red   { color: #C0503A; }

/* Reusable app field box */
.app-field-box {
    background: #FFFFFF;
    border: 1px solid rgba(28, 36, 33, 0.07);
    border-radius: 10px;
    padding: 12px 14px;
}

.app-field-label {
    font-size: 10.5px;
    color: #A0A8A3;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 5px;
}

.app-field-value {
    font-size: 14px;
    font-weight: 600;
    color: #1C2421;
}

/* ── Feature section ── */
.mod-features {
    max-width: 1320px;
    margin: 0 auto;
    padding: clamp(56px, 7vw, 88px) clamp(20px, 4vw, 40px);
}

.mod-section-eyebrow {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0E5B4D;
    margin-bottom: 16px;
}

.mod-section-h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: clamp(30px, 3.6vw, 44px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #1C2421;
    margin: 0;
}

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

.feat-card {
    background: #FFFFFF;
    border: 1px solid rgba(28, 36, 33, 0.07);
    border-radius: 18px;
    padding: 28px 26px;
    box-shadow: 0 1px 3px rgba(28, 36, 33, 0.04);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease, border-color 0.25s ease;
}

.feat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(28, 36, 33, 0.1);
    border-color: rgba(14, 91, 77, 0.2);
}

.feat-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(14, 91, 77, 0.08);
    color: #0E5B4D;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    flex-shrink: 0;
}

.feat-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: -0.02em;
    color: #1C2421;
    margin: 0 0 8px;
}

.feat-desc {
    font-size: 14px;
    color: #5C6660;
    line-height: 1.5;
    margin: 0;
}

/* ── How it connects ── */
.mod-connects {
    background: #F4F7F5;
    padding: clamp(64px, 8vw, 104px) clamp(20px, 4vw, 40px);
}

.mod-connects-inner { max-width: 1100px; margin: 0 auto; }

.connect-row {
    display: grid;
    grid-template-columns: 0.9fr auto 1.4fr;
    align-items: center;
    gap: 28px;
}

.connect-hub {
    background: #0E5B4D;
    border-radius: 18px;
    padding: 28px 26px;
    color: #F4F7F5;
    box-shadow: 0 14px 36px rgba(14, 91, 77, 0.22);
}

.connect-hub-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(240, 137, 76, 0.22);
    color: #F0894C;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.connect-hub-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: 19px;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
    color: #F4F7F5;
}

.connect-hub-desc {
    font-size: 13.5px;
    color: rgba(244, 247, 245, 0.7);
    line-height: 1.5;
}

.connect-mid {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0E5B4D;
}

.connect-targets {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.chip-card {
    background: #FFFFFF;
    border: 1px solid rgba(28, 36, 33, 0.08);
    border-radius: 14px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.chip-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(28, 36, 33, 0.1);
    border-color: rgba(14, 91, 77, 0.25);
}

.chip-card:hover .chip-arrow { transform: translateX(3px); }

.chip-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(14, 91, 77, 0.08);
    color: #0E5B4D;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chip-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: 15.5px;
    color: #1C2421;
}

.chip-desc {
    font-size: 13px;
    color: #8A938E;
    margin-top: 1px;
}

.chip-arrow {
    color: #0E5B4D;
    font-size: 15px;
    display: inline-block;
    transition: transform 0.2s ease;
}

/* Explore-other chip-row (3-col) */
.chip-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.chip-row .chip-card {
    border-radius: 16px;
    padding: 22px;
}

.chip-row-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: rgba(14, 91, 77, 0.08);
    color: #0E5B4D;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chip-row-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #1C2421;
    flex: 1;
}

.chip-arrow-lg {
    color: #0E5B4D;
    font-size: 16px;
    display: inline-block;
    transition: transform 0.2s ease;
}

/* ── Module FAQ ── */
.mod-faq {
    max-width: 860px;
    margin: 0 auto;
    padding: clamp(64px, 8vw, 104px) clamp(20px, 4vw, 40px);
}

.mod-faq-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: clamp(28px, 3.4vw, 40px);
    line-height: 1.06;
    letter-spacing: -0.03em;
    color: #1C2421;
    margin: 0 0 32px;
}

.mod-faq-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mod-faq-item { border-top: 1px solid rgba(28, 36, 33, 0.1); padding: 4px 0; }

.mod-faq-row {
    width: 100%;
    text-align: left;
    padding: 22px 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-radius: 10px;
    transition: padding-left 0.2s ease, background 0.2s ease;
}

.mod-faq-row:hover {
    padding-left: 14px;
    background: rgba(14, 91, 77, 0.035);
}

.faq-q {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: clamp(16px, 1.5vw, 18px);
    color: #1C2421;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
    background: rgba(28, 36, 33, 0.06);
    color: #1C2421;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.faq-icon.is-open {
    background: #0E5B4D;
    color: #FFFFFF;
    transform: rotate(45deg);
}

.faq-answer,
.mod-faq-answer {
    padding: 0 4px 24px;
    max-width: 660px;
    animation: fadeIn 0.3s ease;
}

.mod-faq-answer.hidden { display: none; }

.faq-answer p,
.mod-faq-answer p {
    font-size: 15px;
    color: #5C6660;
    line-height: 1.6;
    margin: 0;
}

/* ── Explore other modules ── */
.mod-explore {
    background: #F4F7F5;
    padding: clamp(56px, 7vw, 88px) clamp(20px, 4vw, 40px);
}

.mod-explore-inner { max-width: 1320px; margin: 0 auto; }

.mod-explore-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.mod-explore-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: clamp(24px, 2.6vw, 32px);
    letter-spacing: -0.025em;
    color: #1C2421;
    margin: 0;
}

.text-link {
    font-size: 14px;
    font-weight: 600;
    color: #0E5B4D;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    transition: gap 0.2s ease, color 0.2s ease;
}

.text-link:hover { gap: 11px; color: #0A4036; }
.text-link span { display: inline-block; transition: transform 0.2s ease; }
.text-link:hover span { transform: translateX(3px); }

/* ── Module final CTA ── */
.mod-cta {
    max-width: 1320px;
    margin: 0 auto;
    padding: clamp(72px, 9vw, 120px) clamp(20px, 4vw, 40px);
    text-align: center;
}

.mod-cta-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: clamp(32px, 4.4vw, 52px);
    line-height: 1.04;
    letter-spacing: -0.03em;
    color: #1C2421;
    margin: 0 0 16px;
}

.mod-cta-desc {
    font-size: 18px;
    color: #5C6660;
    line-height: 1.55;
    margin: 0 auto 36px;
    max-width: 520px;
}

/* ── fadeIn animation (used in FAQ answers) ── */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ── Responsive: module detail pages ── */
@media (max-width: 880px) {
    .mod-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .mod-hero-h1 { font-size: clamp(40px, 9vw, 56px); }
    .connect-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .connect-mid { transform: rotate(90deg); justify-self: center; }
}

@media (max-width: 980px) {
    .feat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
    .feat-grid { grid-template-columns: 1fr; }
    .chip-row  { grid-template-columns: 1fr; }
    .mod-hero-btns { flex-direction: column; align-items: stretch; }
    .mod-hero-btns > * { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════════════
   WHY SUVIO PAGE
══════════════════════════════════════════════════ */

/* Header */
.why-header {
    max-width: 1320px;
    margin: 0 auto;
    padding: clamp(64px, 9vw, 112px) clamp(20px, 4vw, 40px) clamp(44px, 5vw, 68px);
}

.why-header-inner { max-width: 820px; }

.why-header-h1 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: clamp(44px, 5.4vw, 74px);
    line-height: 1.0;
    letter-spacing: -0.035em;
    color: #1C2421;
    margin: 0 0 24px;
    text-wrap: balance;
}

.why-header-desc {
    font-size: 19px;
    color: #5C6660;
    line-height: 1.55;
    margin: 0;
    max-width: 640px;
}

/* Philosophy cards */
.why-philosophy {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px) clamp(56px, 7vw, 96px);
}

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

.phil-card {
    background: #FFFFFF;
    border: 1px solid rgba(28, 36, 33, 0.07);
    border-radius: 18px;
    padding: 34px 30px;
    box-shadow: 0 1px 3px rgba(28, 36, 33, 0.04);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease, border-color 0.25s ease;
}

.phil-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(28, 36, 33, 0.13);
    border-color: rgba(14, 91, 77, 0.22);
}

.phil-num {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #0E5B4D;
    letter-spacing: 0.04em;
    margin-bottom: 22px;
}

.phil-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: 22px;
    letter-spacing: -0.02em;
    color: #1C2421;
    margin: 0 0 12px;
    line-height: 1.12;
}

.phil-desc {
    font-size: 15px;
    color: #5C6660;
    line-height: 1.55;
    margin: 0;
}

/* Who we built for */
.why-for {
    background: #F4F7F5;
    padding: clamp(72px, 9vw, 120px) clamp(20px, 4vw, 40px);
}

.why-for-inner {
    max-width: 980px;
    margin: 0 auto;
}

.why-eyebrow {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0E5B4D;
    margin-bottom: 20px;
}

.why-section-h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: clamp(34px, 4.6vw, 56px);
    line-height: 1.04;
    letter-spacing: -0.03em;
    color: #1C2421;
    margin: 0 0 26px;
    max-width: 720px;
    text-wrap: balance;
}

.why-for-desc {
    font-size: 19px;
    color: #46504A;
    line-height: 1.6;
    margin: 0;
    max-width: 720px;
    text-wrap: pretty;
}

/* Founders */
.why-founders {
    max-width: 1320px;
    margin: 0 auto;
    padding: clamp(72px, 9vw, 120px) clamp(20px, 4vw, 40px);
}

.why-founders-intro { max-width: 760px; margin: 0 0 48px; }

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

.founder-card {
    background: #FFFFFF;
    border: 1px solid rgba(28, 36, 33, 0.07);
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 1px 3px rgba(28, 36, 33, 0.04);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease, border-color 0.25s ease;
}

.founder-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(28, 36, 33, 0.13);
    border-color: rgba(14, 91, 77, 0.22);
}

.founder-card-head {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}

.founder-photo {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    flex-shrink: 0;
    border: 2px solid rgba(14, 91, 77, 0.15);
}

.founder-avatar {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.founder-avatar-green {
    background: linear-gradient(160deg, rgba(14, 91, 77, 0.12), rgba(14, 91, 77, 0.04));
    border: 1px solid rgba(14, 91, 77, 0.14);
}

.founder-avatar-amber {
    background: linear-gradient(160deg, rgba(240, 137, 76, 0.14), rgba(240, 137, 76, 0.05));
    border: 1px solid rgba(240, 137, 76, 0.2);
}

.founder-name {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: 21px;
    letter-spacing: -0.02em;
    color: #1C2421;
}

.founder-role {
    font-size: 14px;
    color: #8A938E;
    margin-top: 3px;
}

.founder-quote {
    font-size: 16.5px;
    font-style: italic;
    color: #46504A;
    line-height: 1.6;
    margin: 0;
    text-wrap: pretty;
}

.why-founders-note {
    font-size: 14px;
    color: #8A938E;
    margin: 32px 0 0;
}

/* Founding partner CTA (dark green band) */
.why-cta {
    background: #0E5B4D;
    color: #F4F7F5;
    padding: clamp(80px, 10vw, 140px) clamp(20px, 4vw, 40px);
    position: relative;
    overflow: hidden;
}

.why-cta-blobs {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.why-cta-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.why-cta-blob-1 {
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: rgba(240, 137, 76, 0.1);
}

.why-cta-blob-2 {
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(240, 137, 76, 0.08);
    filter: blur(60px);
}

.why-cta-inner {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.why-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(240, 137, 76, 0.15);
    border: 1px solid rgba(240, 137, 76, 0.3);
    border-radius: 999px;
    margin-bottom: 32px;
}

.why-cta-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #F0894C;
    animation: pulseDot 2s ease-in-out infinite;
}

.why-cta-badge-text {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #F0894C;
    text-transform: uppercase;
}

.why-cta-h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: clamp(40px, 6.5vw, 80px);
    line-height: 0.98;
    letter-spacing: -0.035em;
    color: #F4F7F5;
    margin: 0 0 24px;
    text-wrap: balance;
}

.why-cta-desc {
    font-size: clamp(16px, 1.5vw, 19px);
    color: rgba(244, 247, 245, 0.75);
    line-height: 1.55;
    margin: 0 auto 36px;
    max-width: 620px;
}

.why-cta-perks {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.why-cta-perk {
    padding: 9px 16px;
    background: rgba(244, 247, 245, 0.08);
    border: 1px solid rgba(244, 247, 245, 0.15);
    border-radius: 999px;
    font-size: 13px;
    color: #F4F7F5;
    font-weight: 500;
}

.why-cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.why-cta-note {
    font-size: 13px;
    color: rgba(244, 247, 245, 0.5);
    margin: 0;
}

.btn-ghost-light {
    background: transparent;
    color: #F4F7F5;
    padding: 16px 24px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 15px;
    border: 1px solid rgba(244, 247, 245, 0.25);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.18s ease;
}

.btn-ghost-light:hover {
    background: rgba(244, 247, 245, 0.07);
    border-color: rgba(244, 247, 245, 0.5);
    transform: translateY(-2px);
}

/* Why page responsive */
@media (max-width: 880px) {
    .phil-grid { grid-template-columns: 1fr; gap: 18px; }
    .founder-grid { grid-template-columns: 1fr; }
    .why-header-h1 { font-size: clamp(38px, 8.5vw, 54px); }
    .why-section-h2 { font-size: clamp(30px, 7vw, 44px); }
    .why-cta-h2 { font-size: clamp(36px, 9vw, 56px); }
}

@media (max-width: 560px) {
    .why-cta-btns { flex-direction: column; align-items: stretch; }
    .why-cta-btns > * { width: 100%; justify-content: center; }
    .why-cta-perks { flex-direction: column; align-items: center; }
}

/* ══════════════════════════════════════════════════
   LEGAL PAGES (Privacy & Terms)
══════════════════════════════════════════════════ */

.legal-header {
    max-width: 1320px;
    margin: 0 auto;
    padding: clamp(64px, 9vw, 112px) clamp(20px, 4vw, 40px) clamp(44px, 5vw, 68px);
    border-bottom: 1px solid rgba(28, 36, 33, 0.07);
}

.legal-header-inner { max-width: 680px; }

.legal-h1 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1;
    letter-spacing: -0.03em;
    color: #1C2421;
    margin: 0 0 16px;
}

.legal-meta {
    font-size: 14px;
    color: #8A938E;
    margin: 0;
}

.legal-body {
    max-width: 1320px;
    margin: 0 auto;
    padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 40px) clamp(80px, 10vw, 140px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 64px;
    align-items: flex-start;
}

.legal-content h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: -0.015em;
    color: #1C2421;
    margin: 40px 0 12px;
}

.legal-content h2:first-child { margin-top: 0; }

.legal-intro {
    font-size: 17px;
    color: #3D4A46;
    line-height: 1.65;
    margin: 0 0 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(28, 36, 33, 0.07);
}

.legal-content p {
    font-size: 15px;
    color: #5C6660;
    line-height: 1.7;
    margin: 0 0 16px;
}

.legal-content ul {
    margin: 0 0 16px;
    padding-left: 20px;
}

.legal-content ul li {
    font-size: 15px;
    color: #5C6660;
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-content a {
    color: #0E5B4D;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-content a:hover { color: #0A4036; }

.legal-sidebar {
    position: sticky;
    top: 100px;
}

.legal-sidebar-card {
    background: #F4F7F5;
    border: 1px solid rgba(28, 36, 33, 0.07);
    border-radius: var(--radius-lg);
    padding: 20px 22px;
}

.legal-sidebar-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #8A938E;
    margin-bottom: 12px;
}

.legal-sidebar-link {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #0E5B4D;
    padding: 8px 0;
    border-bottom: 1px solid rgba(28, 36, 33, 0.07);
    transition: color 0.15s ease;
}

.legal-sidebar-link:last-child { border-bottom: none; }
.legal-sidebar-link:hover { color: #0A4036; }

@media (max-width: 900px) {
    .legal-body {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .legal-sidebar {
        position: static;
        order: -1;
    }
}

/* ══════════════════════════════════════════════════
   CAREERS PAGE
══════════════════════════════════════════════════ */

.careers-header {
    max-width: 1320px;
    margin: 0 auto;
    padding: clamp(64px, 9vw, 112px) clamp(20px, 4vw, 40px) clamp(44px, 5vw, 68px);
}

.careers-header-inner { max-width: 820px; }

.careers-h1 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: clamp(44px, 5.4vw, 74px);
    line-height: 1;
    letter-spacing: -0.03em;
    color: #1C2421;
    margin: 0 0 20px;
}

.careers-desc {
    font-size: clamp(17px, 1.5vw, 20px);
    color: #5C6660;
    line-height: 1.55;
    max-width: 620px;
    margin: 0;
}

.careers-eyebrow {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0E5B4D;
    margin-bottom: 16px;
}

.careers-section-h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: #1C2421;
    margin: 0 0 40px;
}

/* Why work here */
.careers-why {
    background: #F4F7F5;
    padding: clamp(64px, 8vw, 112px) 0;
}

.careers-why-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
}

.careers-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    gap: 20px;
}

.careers-value-card {
    background: #FFFFFF;
    border: 1px solid rgba(28, 36, 33, 0.07);
    border-radius: var(--radius-lg);
    padding: 28px 28px 24px;
}

.careers-value-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(14, 91, 77, 0.08);
    color: #0E5B4D;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.careers-value-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: 17px;
    letter-spacing: -0.01em;
    color: #1C2421;
    margin: 0 0 10px;
}

.careers-value-desc {
    font-size: 14px;
    color: #5C6660;
    line-height: 1.6;
    margin: 0;
}

/* Open roles */
.careers-roles {
    padding: clamp(64px, 8vw, 112px) 0;
}

.careers-roles-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
}

.careers-roles-desc {
    font-size: 17px;
    color: #5C6660;
    line-height: 1.6;
    max-width: 640px;
    margin: -20px 0 40px;
}

.careers-open-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #F4F7F5;
    border: 1px solid rgba(28, 36, 33, 0.07);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    margin-bottom: 48px;
}

.careers-open-icon {
    width: 52px;
    height: 52px;
    background: rgba(14, 91, 77, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.careers-open-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #1C2421;
    margin-bottom: 4px;
}

.careers-open-sub {
    font-size: 14px;
    color: #5C6660;
}

.careers-speculative {
    border-top: 1px solid rgba(28, 36, 33, 0.07);
    padding-top: 40px;
}

.careers-spec-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: 22px;
    letter-spacing: -0.015em;
    color: #1C2421;
    margin: 0 0 10px;
}

.careers-spec-desc {
    font-size: 15px;
    color: #5C6660;
    line-height: 1.6;
    max-width: 520px;
    margin: 0 0 24px;
}

@media (max-width: 760px) {
    .careers-h1 { font-size: clamp(38px, 8.5vw, 54px); }
    .careers-section-h2 { font-size: clamp(28px, 7vw, 42px); }
    .careers-open-card { flex-direction: column; align-items: flex-start; gap: 14px; }
}
