/* BoothCRM v3 — Component Stylesheet
   No framework dependency. All styles are custom CSS.
   Fonts: Plus Jakarta Sans · Space Grotesk · JetBrains Mono (Google Fonts)
   ------------------------------------------------------------------ */

/* ====================================================
   KEYFRAME ANIMATIONS
==================================================== */
@keyframes cardIn   { from{opacity:0;transform:translateY(-10px) scale(.96)} to{opacity:1;transform:none} }
@keyframes pulseDot { 0%,100%{opacity:1;box-shadow:0 0 0 0 rgba(249,115,22,.5)} 50%{opacity:.5;box-shadow:0 0 0 7px rgba(249,115,22,0)} }
@keyframes floaty   { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes scanline { 0%{top:6%} 100%{top:90%} }
@keyframes gridmove { from{background-position:0 0} to{background-position:64px 64px} }
@keyframes marquee  { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes shimmer  { from{background-position:-200% 0} to{background-position:200% 0} }
@keyframes barGrow  { from{transform:scaleY(.08)} to{transform:scaleY(1)} }
@keyframes fadeSlideUp { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:none} }
@keyframes countUp  { from{opacity:0} to{opacity:1} }

/* ====================================================
   SCROLL-REVEAL  (.rv → add .shown when in viewport)
==================================================== */
.rv { opacity:0; transform:translateY(28px); transition:opacity .8s cubic-bezier(.16,.84,.44,1),transform .8s cubic-bezier(.16,.84,.44,1); }
.rv.shown { opacity:1; transform:none; }

/* ====================================================
   GRADIENT TEXT
==================================================== */
.gradtext {
    background: linear-gradient(100deg,#F97316,#fb923c,#F97316);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 6s linear infinite;
}

/* ====================================================
   NAVLINK HOVER UNDERLINE
==================================================== */
.navlink { position: relative; }
.navlink::after {
    content: '';
    position: absolute;
    left: 0; bottom: -4px;
    height: 2px; width: 0;
    background: #F97316;
    transition: width .25s ease;
}
.navlink:hover::after { width: 100%; }

/* ====================================================
   PROGRESS BAR (scroll indicator)
==================================================== */
#scroll-progress-bar {
    position: fixed;
    top: 0; left: 0;
    height: 3px; width: 0;
    background: linear-gradient(90deg,#F97316,#fb923c);
    z-index: 100;
    box-shadow: 0 0 12px rgba(249,115,22,.6);
    transition: width .1s linear;
}

/* ====================================================
   SITE HEADER
==================================================== */
.site-header {
    position: sticky;
    top: 0; z-index: 50;
    background: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,.08);
    transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.1); }
.site-header.scrolled { box-shadow: 0 8px 30px rgba(0,0,0,.3); }

.header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--px);
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.site-logo-link { display:flex; align-items:center; gap:11px; text-decoration:none; cursor:pointer; }
.logo-icon {
    width: 36px; height: 36px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg,#F97316,#EA580C);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-weight: 700;
    font-family: var(--font-display);
    font-size: 19px;
    box-shadow: 0 6px 16px rgba(249,115,22,.35);
    flex-shrink: 0;
}
.logo-text { font-weight:800; font-size:20px; letter-spacing:-.02em; color:#fff; }
.logo-text .accent { color: var(--orange); }

/* Custom logo from Customizer */
.custom-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.custom-logo-link img.custom-logo,
.site-logo-link img.custom-logo {
    height: 60px !important;
    width: auto !important;
    max-width: 220px !important;
    object-fit: contain;
}

/* Desktop nav */
.main-nav {
    display: none;
    gap: 36px;
    font-weight: 600;
    font-size: 14.5px;
    list-style: none;
}
@media (min-width: 768px) { .main-nav { display: flex; } }
.main-nav li a, .main-nav a {
    color: #374151;
    cursor: pointer;
    transition: color .2s;
}
.main-nav li a:hover,
.main-nav .current-menu-item > a { color: var(--orange); }

/* Header CTA area */
.header-actions { display:flex; align-items:center; gap:12px; }

/* Mobile hamburger */
.mobile-menu-toggle {
    display: flex;
    align-items: center; justify-content: center;
    width: 40px; height: 40px;
    border: 1px solid rgba(0,0,0,.12);
    border-radius: 8px;
    color: #374151;
    background: none;
    cursor: pointer;
}
@media (min-width: 768px) { .mobile-menu-toggle { display:none; } }
.mobile-menu-toggle svg { width:18px; height:18px; }

/* Mobile nav drawer */
.mobile-nav {
    display: none;
    flex-direction: column;
    background: rgba(15,23,42,.96);
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 16px var(--px);
    gap: 4px;
}
.mobile-nav.is-open { display:flex; }
.mobile-nav a {
    display: block;
    padding: 10px 0;
    color: var(--slate-lighter);
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: color .2s;
}
.mobile-nav a:last-child { border-bottom:none; }
.mobile-nav a:hover { color: var(--orange); }
/* hidden-mobile: must live here (after .btn) so display:none wins over display:inline-flex */
.hidden-mobile { display: none !important; }
@media (min-width: 768px) { .hidden-mobile { display: inline-flex !important; } }

.mobile-auth-actions {
    display: none;
    gap: 10px;
    padding: 12px var(--px) 16px;
    background: rgba(15,23,42,.96);
    border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-auth-actions.is-open { display: flex; }
.mobile-auth-btn { flex: 1; justify-content: center; }
.mobile-auth-actions .btn-ghost { color: #fff; }
.mobile-auth-actions .btn-ghost:hover { background: rgba(255,255,255,.08); color: #fff; }
.mobile-auth-actions .btn-outline-navy { border-color: rgba(255,255,255,.4); color: #fff; }
.mobile-auth-actions .btn-outline-navy:hover { background: #fff; color: var(--navy); }
@media (min-width: 768px) { .mobile-auth-actions { display:none !important; } }

/* ====================================================
   BUTTONS
==================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-align: center;
    line-height: 1;
    text-decoration: none;
    transition: transform .15s ease, background .2s, border-color .2s, opacity .2s;
    cursor: pointer;
    border: none;
    background: none;
}
.btn-primary {
    background: var(--orange);
    color: #fff;
    padding: 11px 22px;
    border-radius: var(--radius-sm);
    box-shadow: 0 6px 16px rgba(249,115,22,.3);
    font-size: 14.5px;
}
.btn-primary:hover { background: var(--orange-hover); color:#fff; transform:translateY(-1px); }
.btn-primary-lg {
    padding: 16px 34px;
    border-radius: 11px;
    box-shadow: 0 16px 34px rgba(249,115,22,.36);
    font-size: 1rem;
}
.btn-primary-lg:hover { background: var(--orange-hover); transform:translateY(-1px); }
.btn-outline-white {
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    padding: 16px 32px;
    border-radius: 11px;
    display: inline-flex; align-items:center; gap:9px;
    font-size: 1rem;
}
.btn-outline-white:hover { border-color:#fff; background:rgba(255,255,255,.05); }
.btn-ghost-dark {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.16);
    color: #fff;
    padding: 16px 36px;
    border-radius: 11px;
    font-size: 1rem;
}
.btn-ghost-dark:hover { border-color:#fff; }
.btn-outline-sm {
    border: 1px solid rgba(255,255,255,.14);
    color: #fff;
    padding: 9px 18px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
}
.btn-outline-sm:hover { border-color: rgba(255,255,255,.4); }
.btn-ghost {
    background: transparent;
    border: none;
    color: var(--navy);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 14.5px;
    font-weight: 600;
}
.btn-ghost:hover { background: rgba(15,23,42,.06); color: var(--navy); }
.btn-outline-navy {
    background: transparent;
    border: 1.5px solid var(--navy);
    color: var(--navy);
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-size: 14.5px;
    font-weight: 700;
}
.btn-outline-navy:hover { background: var(--navy); color: #fff; }

/* ====================================================
   SECTION UTILITIES
==================================================== */
.section-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px); }

.label-tag {
    color: var(--orange);
    font-family: var(--font-mono);
    font-weight: 600;
    letter-spacing: .14em;
    font-size: 12.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

/* ====================================================
   HERO SECTION  (#home)
==================================================== */
.hero-section {
    background: var(--navy);
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 88px 0 104px;
}
.hero-grid-bg {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.028) 1px,transparent 1px);
    background-size: 64px 64px;
    animation: gridmove 9s linear infinite;
    pointer-events: none;
}
.hero-spotlight {
    position: absolute;
    top: 0; left: 0;
    width: 560px; height: 560px;
    margin: -280px 0 0 -280px;
    background: radial-gradient(circle,rgba(249,115,22,.16),transparent 62%);
    pointer-events: none;
    transition: transform .18s ease-out;
    will-change: transform;
}
.hero-grid {
    display: grid;
    gap: 56px;
    align-items: center;
    position: relative; z-index: 1;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.08fr .92fr; } }

.hero-badge {
    display: inline-flex;
    align-items: center; gap: 9px;
    background: rgba(249,115,22,.1);
    border: 1px solid rgba(249,115,22,.28);
    color: var(--orange-light);
    font-family: var(--font-mono);
    font-weight: 600; letter-spacing:.04em; font-size:12px;
    padding: 7px 14px;
    border-radius: 999px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.hero-badge .dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--orange);
    animation: pulseDot 1.6s ease-in-out infinite;
    flex-shrink: 0;
}
.hero-heading {
    font-size: clamp(2.4rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -.035em;
    margin: 0 0 24px;
}
.hero-sub {
    color: var(--slate-light);
    font-size: 19px;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 0 24px;
}
.hero-ctas { display:flex; flex-wrap:wrap; gap:15px; padding-top:6px; }

.hero-stats {
    display: flex; flex-wrap: wrap; gap: 24px 0;
    justify-content: space-between;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 8px;
}
.hero-stat-val {
    font-family: var(--font-display);
    font-size: 26px; font-weight: 700; color: #fff;
}
.hero-stat-lbl { font-size: 12.5px; color: var(--slate); margin-top: 2px; }

/* Dashboard widget */
.hero-widget-wrap { position: relative; }
.hero-widget-float {
    position: absolute;
    top: -20px; right: -14px; z-index: 3;
    animation: floaty 6s ease-in-out infinite;
    background: #fff; color: var(--navy);
    border-radius: 13px;
    padding: 13px 17px;
    box-shadow: 0 20px 44px rgba(0,0,0,.4);
}
.hero-widget-float .float-label {
    font-size: 11px; color: var(--slate);
    font-weight: 600; font-family: var(--font-mono);
    text-transform: uppercase; letter-spacing:.05em;
}
.hero-widget-float .float-val {
    font-family: var(--font-display);
    font-size: 24px; font-weight: 700; color: #16a34a;
}
.hero-widget {
    background: var(--navy-light);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,.1);
    padding: 22px;
    box-shadow: 0 44px 80px rgba(0,0,0,.5);
}
.widget-dots { display:flex; gap:7px; }
.widget-dot { width:11px; height:11px; border-radius:50%; }
.widget-titlebar {
    display: flex; align-items:center;
    justify-content:space-between;
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding-bottom: 15px; margin-bottom: 18px;
}
.widget-label {
    font-size: 11.5px; color: var(--slate);
    font-family: var(--font-mono);
}
.widget-card {
    position: relative;
    background: var(--navy);
    padding: 18px; border-radius: 15px;
    border: 1px solid rgba(255,255,255,.06);
    overflow: hidden;
}
.widget-scanline {
    position: absolute; left:0; right:0; height:2px;
    background: linear-gradient(90deg,transparent,rgba(249,115,22,.8),transparent);
    animation: scanline 2.6s ease-in-out infinite alternate;
}
.widget-card-hdr {
    display: flex; justify-content:space-between;
    border-bottom: 1px solid rgba(255,255,255,.06);
    padding-bottom: 10px; margin-bottom:12px;
    font-size: 12px; color: var(--slate); font-family: var(--font-mono);
}
.widget-live { color: var(--orange); font-weight:600; display:flex; align-items:center; gap:6px; }
.widget-live .pulse { width:8px; height:8px; border-radius:50%; background:var(--orange); animation: pulseDot 1.5s ease-in-out infinite; }
.widget-lead-row { display:flex; align-items:center; gap:14px; margin-bottom:14px; }
.widget-qr {
    width:48px; height:48px;
    background: rgba(249,115,22,.18); border-radius:10px;
    display:flex; align-items:center; justify-content:center;
    color: var(--orange); font-weight:700; font-size:20px; flex-shrink:0;
}
.widget-lead-name { margin:0; font-weight:700; font-size:15px; color:#fff; }
.widget-lead-meta { margin:3px 0 0; font-size:12px; color:var(--slate); }
.widget-tags { display:grid; grid-template-columns:repeat(3,1fr); gap:8px; }
.widget-tag {
    text-align:center; font-size:11px;
    padding: 6px 0; border-radius:7px; font-weight:700;
}
.widget-tag-hot { background:rgba(249,115,22,.12); color:var(--orange); border:1px solid rgba(249,115,22,.25); }
.widget-tag-plain { background:rgba(255,255,255,.05); color:var(--slate-lighter); }
.widget-card-content { position:relative; z-index:1; }

/* ====================================================
   MARQUEE
==================================================== */
.marquee-section {
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 24px 0;
    overflow: hidden;
}
.marquee-label {
    text-align: center;
    color: var(--slate-mid);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-family: var(--font-mono);
    margin-bottom: 14px;
}
.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 28s linear infinite;
    gap: 64px;
}
.marquee-item {
    color: rgba(148,163,184,.5);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 21px;
    white-space: nowrap;
}

/* ====================================================
   PROBLEM SECTION  (#problem)
==================================================== */
.problem-section {
    padding: 96px 0;
    background: var(--navy);
    color: #fff;
    position: relative;
}
.problem-section h2 {
    font-size: clamp(1.75rem,4vw,2.5rem);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.08;
    margin: 0 0 16px;
}
.problem-section .section-sub {
    color: var(--slate-light);
    font-size: 18px; line-height: 1.6;
    max-width: 600px; margin: 0;
}
.problem-grid {
    display: grid;
    gap: 20px;
    background: none;
    border: none;
    border-radius: 0;
    overflow: visible;
}
@media (min-width: 640px)  { .problem-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .problem-grid { grid-template-columns: repeat(4,1fr); } }

.problem-card {
    background: var(--navy-light);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 20px;
    padding: 28px 24px 24px;
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.problem-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), #ea580c);
    opacity: 0;
    transition: opacity .25s ease;
    border-radius: 20px 20px 0 0;
}
.problem-card:hover {
    transform: translateY(-5px);
    border-color: rgba(249,115,22,.25);
    box-shadow: 0 20px 44px rgba(0,0,0,.35);
}
.problem-card:hover::before { opacity: 1; }

.problem-card .num {
    position: absolute;
    top: 18px; right: 20px;
    font-family: var(--font-display);
    font-size: 48px; font-weight: 800;
    color: rgba(255,255,255,.04);
    line-height: 1; pointer-events: none;
}
.problem-icon {
    width: 50px; height: 50px;
    border-radius: 14px;
    background: rgba(249,115,22,.1);
    border: 1px solid rgba(249,115,22,.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}
.problem-card h4 { font-weight:700; font-size:16.5px; margin:0 0 10px; color:#fff; line-height:1.3; }
.problem-card p  { color:var(--slate); font-size:13.5px; line-height:1.6; margin:0; }

/* ====================================================
   HOW IT WORKS SECTION  (#how-it-works)
==================================================== */
.hiw-section {
    padding: 96px 0;
    background: var(--navy-dark);
    color: #fff;
    border-top: 1px solid rgba(255,255,255,.06);
    position: relative;
    overflow: hidden;
}
.hiw-glow {
    position: absolute; top:40px; right:-120px;
    width:420px; height:420px;
    background: radial-gradient(circle,rgba(249,115,22,.1),transparent 66%);
    pointer-events: none;
}
.hiw-section h2 {
    font-size: clamp(1.75rem,4vw,2.5rem);
    font-weight: 800; letter-spacing:-.03em; line-height:1.08;
    margin: 0;
}
.hiw-section .section-sub { color:var(--slate-light); font-size:18px; line-height:1.6; margin:14px 0 0; }

.hiw-steps {
    display: grid;
    gap: 0;
    position: relative;
}
/* Tablet: 2 cols */
@media (min-width: 640px) { .hiw-steps { grid-template-columns: repeat(2,1fr); align-items: stretch; } }
/* Desktop: 3+2 layout — 6-col grid, each step spans 2; last 2 centered */
@media (min-width: 1024px) {
    .hiw-steps { grid-template-columns: repeat(6,1fr); align-items: stretch; }
    .hiw-step { grid-column: span 2; }
    .hiw-step:nth-child(4) { grid-column: 2 / span 2; }
    .hiw-step:nth-child(5) { grid-column: 4 / span 2; }
}
/* Features page 3-col variant — clean 3-col grid, cancels base nth-child rules */
.hiw-steps--3col { gap: 16px; }
@media (min-width: 640px) { .hiw-steps--3col { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 900px) { .hiw-steps--3col { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1024px) {
    .hiw-steps--3col { grid-template-columns: repeat(3,1fr) !important; }
    .hiw-steps--3col .hiw-step,
    .hiw-steps--3col .hiw-step:nth-child(4),
    .hiw-steps--3col .hiw-step:nth-child(5) { grid-column: auto !important; }
}

.hiw-step {
    position: relative;
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    padding: 26px 20px;
    text-align: center;
    transition: background .3s, border-color .3s;
    margin: 8px;
}
.hiw-step:hover { background: rgba(255,255,255,.05); border-color: rgba(249,115,22,.35); }

.hiw-step-num {
    font-family: var(--font-mono); font-size: 11px; font-weight: 700;
    color: var(--orange); text-transform: uppercase; letter-spacing: .14em;
    margin-bottom: 12px; display: block;
}
.hiw-step-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(249,115,22,.12); border: 1px solid rgba(249,115,22,.25);
    color: var(--orange); font-size: 22px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
}
.hiw-step h4 { font-size: 14.5px; font-weight: 700; color: #fff; margin: 0 0 8px; line-height: 1.3; }
.hiw-step p  { font-size: 12.5px; color: var(--slate-light); line-height: 1.6; margin: 0; }

.hiw-connector {
    display: none;
}
@media (min-width: 768px) {
    .hiw-connector {
        display: none; /* arrows handled by grid gap visual flow */
    }
}

/* Hero widget 2-panel body */
.hero-widget-body {
    display: flex;
    gap: 16px;
    align-items: stretch;
}
.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    min-width: 0;
}

/* Right stats panel */
.hw-stats-panel {
    width: 130px;
    flex-shrink: 0;
    background: var(--navy);
    border-radius: 12px;
    padding: 14px 12px;
    border: 1px solid rgba(255,255,255,.07);
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.hw-stats-title {
    font-size: 9px; font-weight: 700;
    color: var(--slate); letter-spacing: .08em;
    font-family: var(--font-mono);
}
.hw-stats-num {
    font-family: var(--font-display);
    font-size: 34px; font-weight: 800; color: #fff; line-height: 1;
}
.hw-stats-divider { border: none; border-top: 1px solid rgba(255,255,255,.07); margin: 4px 0; }
.hw-qual-row {
    display: flex; align-items: center; gap: 5px;
    font-size: 10px;
}
.hw-qual-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.hw-qual-label { font-weight: 700; font-size: 10px; flex-shrink: 0; }
.hw-qual-bar-wrap { flex: 1; height: 4px; background: rgba(255,255,255,.07); border-radius: 2px; overflow: hidden; }
.hw-qual-bar { height: 100%; border-radius: 2px; }
.hw-qual-count { font-size: 10px; color: var(--slate); flex-shrink: 0; }
.hw-export-badge {
    margin-top: 4px;
    background: rgba(34,197,94,.1);
    border: 1px solid rgba(34,197,94,.2);
    border-radius: 7px; padding: 6px 8px;
    font-size: 10px; font-weight: 700; color: #22c55e;
    text-align: center;
}
.workflow-step {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.workflow-step:last-child { border-bottom: none; }
.workflow-step-icon {
    width: 38px; height: 38px; border-radius: 9px;
    background: rgba(249,115,22,.12);
    color: var(--orange); font-size: 17px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.workflow-step-title {
    font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 2px;
}
.workflow-step-sub {
    font-size: 11px; color: var(--slate); line-height: 1.4;
}
.workflow-arrow {
    text-align: center; color: var(--orange);
    font-size: 14px; line-height: 1;
    padding: 2px 0 2px 52px;
    opacity: .5;
}

/* ====================================================
   FEATURES SECTION  (#features)
==================================================== */
.features-section {
    padding: 96px 0;
    background: var(--surface-light);
    color: var(--navy);
}
.features-section h2 {
    font-size: clamp(1.75rem,4vw,2.5rem);
    font-weight:800; letter-spacing:-.03em; line-height:1.08; margin:0;
}
.features-section .label-tag { color: var(--orange); }
.features-section .section-sub { color:var(--slate); font-size:18px; line-height:1.6; margin:14px 0 0; max-width:600px; }

.features-bento {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 44px;
}
@media (min-width: 640px)  { .features-bento { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .features-bento { grid-template-columns: repeat(4,1fr); grid-auto-rows: minmax(150px,auto); } }

.feat-card {
    background: #fff;
    border: 1px solid var(--support);
    border-radius: 18px;
    padding: 24px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feat-card:hover { transform:translateY(-4px); box-shadow:0 16px 38px rgba(15,23,42,.1); border-color:var(--orange); }
.feat-card-hero {
    background: var(--navy);
    color: #fff;
    position: relative; overflow:hidden;
    display:flex; flex-direction:column; justify-content:space-between;
}
.feat-card-hero:hover { transform:translateY(-4px); box-shadow:0 24px 50px rgba(15,23,42,.2); border-color:transparent; }
.feat-card-glow {
    position:absolute; top:-60px; right:-60px;
    width:240px; height:240px;
    background: radial-gradient(circle,rgba(249,115,22,.18),transparent 65%);
    pointer-events:none;
}
@media (min-width: 1024px) {
    .feat-card-hero { grid-column: span 2; grid-row: span 2; }
    .feat-wide { grid-column: span 2; display:flex; align-items:center; gap:22px; }
    /* Last card fills the empty 4th column slot in the bottom row */
    .features-bento .feat-card:last-child { grid-column: span 2; }
    .feat-card-export { display: flex; align-items: center; gap: 20px; }
}
.feat-icon {
    width:42px; height:42px; border-radius:10px;
    background: rgba(249,115,22,.1); color:var(--orange);
    display:flex; align-items:center; justify-content:center;
    font-size:19px; margin-bottom:14px;
    flex-shrink:0;
}
.feat-card-hero .feat-icon {
    width:46px; height:46px; border-radius:11px;
    background: rgba(249,115,22,.16);
    font-size:22px; margin-bottom:18px;
}
.feat-card h3  { font-size:24px; font-weight:700; letter-spacing:-.02em; margin:0 0 10px; }
.feat-card h4  { font-size:15.5px; font-weight:700; margin:0 0 6px; }
.feat-card h4.wide-title { font-size:15.5px; margin-bottom:6px; }
.feat-card p   { font-size:13px; color:var(--slate); line-height:1.55; margin:0; }
.feat-card-hero p { color:var(--slate-light); font-size:15px; line-height:1.6; max-width:340px; }
.feat-hero-chips { display:flex; gap:10px; margin-top:24px; }
.feat-hero-chip {
    flex:1;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:10px; padding:12px;
}
.feat-hero-chip-val { font-family:var(--font-display); font-size:20px; font-weight:700; }
.feat-hero-chip-lbl { font-size:11px; color:var(--slate); margin-top:2px; }
.feat-chart-bars { display:flex; align-items:flex-end; gap:7px; height:74px; }
.feat-chart-bar  { width:14px; border-radius:4px 4px 0 0; }
.feat-crm-logos { display:flex; gap:8px; flex-wrap:wrap; margin-left:auto; flex-shrink:0; }
.feat-crm-logo {
    padding: 5px 10px; border-radius: 7px;
    background: rgba(249,115,22,.08); border: 1px solid rgba(249,115,22,.2);
    font-size: 11px; font-weight: 700; color: var(--orange);
    white-space: nowrap;
}

/* ====================================================
   WHY US SECTION  (#why-us)
==================================================== */
.whyus-section {
    padding: 96px 0;
    background: var(--navy);
    color: #fff;
}
.whyus-section h2 {
    font-size: clamp(1.75rem,4vw,2.5rem);
    font-weight:800; letter-spacing:-.03em; line-height:1.08;
    margin: 0;
}
.whyus-section .section-sub { color:var(--slate-light); font-size:18px; line-height:1.6; margin:14px 0 0; }

.whyus-grid {
    display: grid;
    gap: 18px;
}
@media (min-width: 640px)  { .whyus-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .whyus-grid { grid-template-columns: repeat(3,1fr); } }

.whyus-card {
    background: var(--navy-light);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.whyus-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(0,0,0,.28); border-color: rgba(249,115,22,.38); }

.whyus-icon {
    width: 46px; height: 46px; border-radius: 12px;
    background: rgba(249,115,22,.12); border: 1px solid rgba(249,115,22,.25);
    color: var(--orange); font-size: 22px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.whyus-card h4 { font-size: 16px; font-weight: 700; color: #fff; margin: 0 0 9px; }
.whyus-card p  { font-size: 13.5px; color: var(--slate-light); line-height: 1.65; margin: 0; }

/* Pricing section removed — dedicated pricing page will be added later */

/* ====================================================
   FAQ SECTION  (#faq)
==================================================== */
.faq-section {
    padding: 96px 0;
    background: var(--navy);
    color: #fff;
}
.faq-section h2 {
    font-size: clamp(1.75rem,4vw,2.5rem);
    font-weight:800; letter-spacing:-.03em;
    margin:16px 0 44px; text-align:center;
}
.faq-inner { max-width:780px; margin:0 auto; padding:0 var(--px); }
.faq-label-wrap { text-align:center; }
.faq-list { display:flex; flex-direction:column; gap:10px; }
.faq-item {
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.faq-question {
    display: flex; align-items:center; justify-content:space-between;
    padding: 20px 22px;
    font-weight:700; font-size:15.5px; color:#fff;
    cursor: pointer;
    gap: 14px;
    transition: background .2s;
    background: none;
    width:100%; text-align:left;
}
.faq-question:hover { background:rgba(255,255,255,.04); }
.faq-question[aria-expanded="true"] { background:rgba(255,255,255,.05); }
.faq-chevron {
    width: 22px; height: 22px;
    border-radius: 6px; background: rgba(255,255,255,.08);
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0; align-self: center;
    transition: transform .3s ease;
    font-size: 0; /* hide the character glyph */
}
.faq-chevron::after {
    content: '';
    display: block;
    width: 7px; height: 7px;
    border-right: 2px solid var(--orange);
    border-bottom: 2px solid var(--orange);
    transform: rotate(45deg);
    margin-top: -3px; /* shift up so the downward point is centred */
}
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-answer {
    display: none;
    padding: 0 22px 20px;
    color: var(--slate-light);
    font-size: 14.5px; line-height: 1.7;
}
.faq-answer.is-open { display:block; }

/* ====================================================
   TESTIMONIALS SECTION  (#testimonials)
==================================================== */
.testimonials-section {
    padding: 84px 0;
    background: var(--navy-dark);
    color: #fff;
    position: relative; overflow:hidden;
    text-align: center;
}
.testimonials-glow {
    position:absolute; top:-130px; left:50%; transform:translateX(-50%);
    width:680px; height:340px;
    background: radial-gradient(ellipse,rgba(249,115,22,.14),transparent 70%);
    pointer-events:none;
}
.testimonials-inner { max-width:820px; margin:0 auto; padding:0 var(--px); position:relative; z-index:1; }
.testimonials-stars { color:var(--orange); font-size:22px; letter-spacing:5px; margin-bottom:18px; }
.testimonials-quote {
    font-size: clamp(1.2rem,3vw,1.8rem);
    font-weight:700; line-height:1.4;
    margin:0; letter-spacing:-.02em;
}
.testimonials-attrib {
    margin-top:22px; color:var(--slate);
    font-size:13.5px; font-weight:600;
    font-family:var(--font-mono); letter-spacing:.04em;
}

/* ====================================================
   DEMO / CTA SECTION  (#demo)
==================================================== */
.demo-section { background:var(--navy); padding:88px 0; }
.demo-card {
    background: linear-gradient(135deg,#1E293B,#0B1120);
    color: #fff;
    border-radius: 26px; padding: 64px;
    display: flex; flex-wrap:wrap;
    justify-content:space-between; align-items:center;
    gap: 30px;
    position: relative; overflow:hidden;
    border: 1px solid rgba(255,255,255,.08);
}
.demo-grid-bg {
    position:absolute; inset:0;
    background-image:
        linear-gradient(rgba(255,255,255,.02) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.02) 1px,transparent 1px);
    background-size:48px 48px;
    pointer-events:none;
}
.demo-glow {
    position:absolute; bottom:-150px; right:-70px;
    width:400px; height:400px;
    background: radial-gradient(circle,rgba(249,115,22,.2),transparent 68%);
    pointer-events:none;
}
.demo-copy { max-width:560px; position:relative; z-index:1; }
.demo-copy h3 {
    font-size: clamp(1.75rem,4vw,2.375rem);
    font-weight:800; letter-spacing:-.03em; line-height:1.08;
    margin:0 0 14px;
}
.demo-copy p { color:var(--slate-light); font-size:17px; line-height:1.6; margin:0; }
.demo-actions { display:flex; flex-wrap:wrap; gap:15px; position:relative; z-index:1; }

/* ====================================================
   FOOTER
==================================================== */
.site-footer {
    background: var(--navy-dark);
    color: #fff;
    padding: 32px 0;
    border-top: 1px solid rgba(255,255,255,.08);
}
.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto; padding: 0 var(--px);
    display:flex; flex-wrap:wrap;
    justify-content:space-between; align-items:center;
    gap: 16px;
    font-size: 13px; color: var(--slate);
}
.footer-brand { display:flex; align-items:center; gap:11px; }
/* Footer logo — white card so original orange+dark colors show on dark bg */
.footer-brand a:has(.footer-logo-img) {
    display: inline-flex;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    padding: 6px 14px;
    text-decoration: none;
}
.footer-brand .footer-logo-img {
    height: 32px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    display: block;
}
/* Text fallback logo in footer */
.footer-brand .site-logo-link .logo-text { color: #fff; font-size: 16px; }
.footer-brand .site-logo-link .logo-icon { width:28px; height:28px; font-size:14px; }
.footer-logo-icon {
    width:32px; height:32px; border-radius:8px;
    background: linear-gradient(135deg,#F97316,#EA580C);
    display:flex; align-items:center; justify-content:center;
    color:#fff; font-weight:700; font-family:var(--font-display);
    font-size:16px;
}
.footer-logo-text { color:var(--support); font-weight:700; font-size:14px; }
.footer-logo-text .accent { color:var(--orange); }
.footer-copy {
    font-family:var(--font-mono); font-size:12px;
    margin-left:16px; color:var(--slate);
}
.footer-links { display:flex; gap:28px; list-style:none; padding:0; margin:0; }
.footer-links a { color:var(--slate-light); transition:color .2s; }
.footer-links a:hover { color:var(--orange); }

/* ====================================================
   GENERIC PAGE / BLOG / 404
==================================================== */
.page-content-wrap {
    max-width: var(--max-w); margin:0 auto;
    padding: 4rem var(--px);
    background: var(--surface-light); color:var(--navy);
    min-height: 60vh;
}
.page-content-wrap h1 { font-size:2rem; font-weight:800; color:var(--navy); margin:0 0 1.5rem; }
.page-content-wrap h2 { font-size:1.5rem; font-weight:700; color:var(--navy); margin:2rem 0 .75rem; }
.page-content-wrap p  { color:var(--slate); line-height:1.8; margin:0 0 1rem; }
.page-content-wrap ul,
.page-content-wrap ol { color:var(--slate); padding-left:1.5rem; margin:0 0 1rem; line-height:1.8; }

.error-404-wrap { max-width:var(--max-w); margin:0 auto; padding:6rem var(--px); text-align:center; background:var(--navy); min-height:80vh; display:flex; flex-direction:column; align-items:center; justify-content:center; }
.error-404-code { font-size:6rem; font-weight:900; color:var(--orange); line-height:1; font-family:var(--font-display); display:block; margin-bottom:1rem; }
.error-404-wrap h2 { font-size:1.75rem; font-weight:800; color:#fff; margin:0 0 1rem; }
.error-404-wrap p  { color:var(--slate-light); max-width:36rem; margin:0 auto 2rem; }

/* ====================================================
   BLOG / ARCHIVE CARD
==================================================== */
.posts-grid { display:grid; gap:2rem; }
@media (min-width:640px)  { .posts-grid { grid-template-columns:1fr 1fr; } }
@media (min-width:1024px) { .posts-grid { grid-template-columns:repeat(3,1fr); } }
.post-card {
    border: 1px solid var(--support);
    border-radius: 14px; padding: 1.5rem;
    background:#fff;
    transition: box-shadow .2s, transform .2s;
}
.post-card:hover { box-shadow:0 10px 28px rgba(15,23,42,.1); transform:translateY(-3px); }
.post-card h2 { font-size:1.15rem; font-weight:700; margin:0 0 .5rem; }
.post-card h2 a { color:var(--navy); }
.post-card h2 a:hover { color:var(--orange); }
.post-card-date { font-size:.8rem; color:var(--slate); margin-bottom:.75rem; }
.post-card-excerpt { color:var(--slate); font-size:.875rem; line-height:1.7; }

/* Geo banner */
.geo-banner {
    display:none; text-align:center; padding:.5rem var(--px);
    background:rgba(249,115,22,.08); border-bottom:1px solid rgba(249,115,22,.2);
    font-size:.8rem; color:var(--navy);
}
.geo-banner.is-visible { display:block; }
.geo-banner strong { color:var(--orange); }

/* ====================================================
   RESPONSIVE — MOBILE / TABLET OVERRIDES
==================================================== */

/* --- Reduce side padding on small screens --- */
@media (max-width: 639px) {
    :root { --px: 16px; }
}
@media (min-width: 640px) and (max-width: 767px) {
    :root { --px: 20px; }
}

/* --- Header --- */
@media (max-width: 767px) {
    .header-inner { height: 62px; }
}

/* --- Hero --- */
@media (max-width: 767px) {
    .hero-section { padding: 60px 0 72px; }
    .hero-spotlight { display: none; }
    .hero-sub { font-size: 16px; max-width: 100%; }
    .hero-stats { gap: 20px; flex-wrap: wrap; }
    .hero-stat-val { font-size: 22px; }
    .hero-widget-float { display: none; }
    .hw-stats-panel { display: none; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn-primary-lg,
    .hero-ctas .btn-outline-white {
        width: 100%;
        justify-content: center;
        text-align: center;
        box-sizing: border-box;
    }
}

/* --- Marquee --- */
@media (max-width: 767px) {
    .marquee-track { gap: 32px; }
    .marquee-item { font-size: 16px; }
}

/* --- Section vertical paddings --- */
@media (max-width: 767px) {
    .problem-section,
    .hiw-section,
    .features-section,
    .whyus-section,
    .faq-section { padding: 64px 0; }
    .testimonials-section { padding: 56px 0; }
    .demo-section { padding: 56px 0; }
}

/* --- Problem cards --- */
@media (max-width: 639px) {
    .problem-card { padding: 22px 20px; }
}

/* --- How It Works: stack steps on mobile --- */
@media (max-width: 767px) {
    .hiw-steps { grid-template-columns: 1fr; }
    .hiw-step  { margin: 6px 0; grid-column: auto !important; }
    .whyus-grid { gap: 14px; }
}

/* --- Features bento --- */
@media (max-width: 767px) {
    .feat-card { padding: 20px; }
    .feat-card h3 { font-size: 20px; }
    .feat-hero-chips { flex-direction: column; }
}

/* --- Why Us --- */
@media (max-width: 639px) {
    .whyus-card { padding: 22px 18px; }
}

/* --- FAQ --- */
@media (max-width: 639px) {
    .faq-question { padding: 16px 18px; font-size: 14px; }
    .faq-answer { padding: 0 18px 16px; }
}

/* --- Demo / CTA card --- */
@media (max-width: 767px) {
    .demo-card {
        padding: 36px 28px;
        flex-direction: column;
        align-items: flex-start;
    }
    .demo-actions { flex-direction: column; width: 100%; }
    .demo-actions .btn-primary-lg,
    .demo-actions .btn-ghost-dark {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
}

/* --- Footer --- */
@media (max-width: 639px) {
    .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
    .footer-links { gap: 16px; }
    .footer-copy { margin-left: 0; margin-top: 2px; }
}

/* ====================================================
   INNER PAGE — SHARED COMPONENTS
==================================================== */

/* Breadcrumb */
.breadcrumb-nav {
    display: flex; align-items: center; flex-wrap: wrap; gap: 0;
    font-size: 12px; font-family: var(--font-mono);
    color: var(--slate); letter-spacing: .04em;
    margin-bottom: 18px;
}
.breadcrumb-nav a { color: rgba(255,255,255,.48); transition: color .2s; }
.breadcrumb-nav a:hover { color: var(--orange-light); }
.breadcrumb-sep { margin: 0 8px; color: rgba(255,255,255,.22); }
.breadcrumb-current { color: rgba(255,255,255,.68); }

/* Inner-page hero */
.inner-hero {
    background: var(--navy-dark);
    color: #fff;
    padding: 82px 0 90px;
    position: relative; overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.inner-hero-bg {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridmove 14s linear infinite;
    pointer-events: none;
}
.inner-hero-glow {
    position: absolute; top: -110px; left: 50%; transform: translateX(-50%);
    width: 700px; height: 400px;
    background: radial-gradient(ellipse, rgba(249,115,22,.13), transparent 68%);
    pointer-events: none;
}
.inner-hero-inner {
    position: relative; z-index: 1;
    max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px);
}
.inner-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(249,115,22,.1);
    border: 1px solid rgba(249,115,22,.26);
    color: var(--orange-light);
    font-family: var(--font-mono); font-size: 11px; font-weight: 600;
    letter-spacing: .1em; text-transform: uppercase;
    padding: 6px 14px; border-radius: 999px; margin-bottom: 22px;
}
.inner-hero-badge .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--orange); animation: pulseDot 1.6s ease-in-out infinite;
}
.inner-hero h1 {
    font-size: clamp(2.1rem, 5vw, 3.2rem);
    font-weight: 800; letter-spacing: -.038em; line-height: 1.05;
    margin: 0 0 20px; max-width: 780px;
}
.inner-hero-sub {
    color: var(--slate-light); font-size: 17px; line-height: 1.68;
    max-width: 620px; margin: 0 0 30px;
}
.inner-hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* Centered hero variant */
.inner-hero-centered { text-align: center; }
.inner-hero-centered h1 { margin-left: auto; margin-right: auto; }
.inner-hero-centered .inner-hero-sub { margin-left: auto; margin-right: auto; }
.inner-hero-centered .inner-hero-ctas { justify-content: center; }
.inner-hero-centered .breadcrumb-nav { justify-content: center; }

/* Feature highlight pills (features hero) */
.hero-highlights {
    display: flex; flex-wrap: wrap; gap: 10px;
    margin: 0 0 30px; justify-content: center;
}
.hero-hl-item {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(249,115,22,.1); border: 1px solid rgba(249,115,22,.28);
    color: var(--orange-light); border-radius: 8px;
    padding: 7px 14px; font-size: 13px; font-weight: 600;
    font-family: var(--font-body);
}

/* Section wrappers */
.page-sec { padding: 88px 0; }
.page-sec-sm { padding: 64px 0; }
.sec-navy    { background: var(--navy); color: #fff; }
.sec-light   { background: var(--surface-light); color: var(--navy); }
.sec-white   { background: #fff; color: var(--navy); }
.sec-dark    { background: var(--navy-dark); color: #fff; border-top: 1px solid rgba(255,255,255,.06); }

/* Section header */
.sec-hdr { margin-bottom: 48px; }
.sec-hdr.centered { text-align: center; }
.sec-hdr.centered .sec-sub { margin-left: auto; margin-right: auto; }
.sec-hdr h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800; letter-spacing: -.032em; line-height: 1.08;
    margin: 10px 0 14px;
}
.sec-navy .sec-hdr h2, .sec-dark .sec-hdr h2 { color: #fff; }
.sec-light .sec-hdr h2, .sec-white .sec-hdr h2 { color: var(--navy); }
.sec-sub { font-size: 17px; line-height: 1.65; max-width: 640px; }
.sec-navy .sec-sub, .sec-dark .sec-sub { color: var(--slate-light); }
.sec-light .sec-sub, .sec-white .sec-sub { color: var(--slate); }

/* Grid utilities */
.grid-3 { display: grid; gap: 20px; }
@media (min-width: 640px)  { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.grid-5 { display: grid; gap: 16px; }
@media (min-width: 640px)  { .grid-5 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .grid-5 { grid-template-columns: repeat(5, 1fr); } }

.grid-4-bd {
    display: grid; gap: 1px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 20px; overflow: hidden;
}
@media (min-width: 640px)  { .grid-4-bd { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .grid-4-bd { grid-template-columns: repeat(4, 1fr); } }

.grid-5-bd {
    display: grid; gap: 1px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 20px; overflow: hidden;
}
@media (min-width: 640px)  { .grid-5-bd { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .grid-5-bd { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .grid-5-bd { grid-template-columns: repeat(5, 1fr); } }

.grid-4-bd-light {
    display: grid; gap: 1px;
    background: var(--support);
    border: 1px solid var(--support);
    border-radius: 20px; overflow: hidden;
}
@media (min-width: 640px)  { .grid-4-bd-light { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .grid-4-bd-light { grid-template-columns: repeat(4, 1fr); } }

/* Generic cards */
.card-l {
    background: #fff; border: 1px solid var(--support);
    border-radius: var(--radius-md); padding: 26px;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.card-l:hover { transform: translateY(-4px); box-shadow: 0 16px 38px rgba(15,23,42,.09); border-color: var(--orange); }

.card-d {
    background: var(--navy-light); border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-md); padding: 26px;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.card-d:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(0,0,0,.28); border-color: rgba(249,115,22,.38); }

/* Bordered grid cell */
.cell-d { background: var(--navy);        padding: 30px 24px; transition: background .3s; }
.cell-d:hover { background: var(--navy-light); }
.cell-l { background: #fff;               padding: 30px 24px; transition: background .3s; }
.cell-l:hover { background: var(--surface-light); }

/* Card icon */
.c-icon {
    width: 44px; height: 44px; border-radius: 11px;
    background: rgba(249,115,22,.1); border: 1px solid rgba(249,115,22,.22);
    color: var(--orange); display: flex; align-items: center; justify-content: center;
    font-size: 20px; margin-bottom: 16px; flex-shrink: 0;
}
.c-icon-sm {
    width: 36px; height: 36px; border-radius: 9px;
    background: rgba(249,115,22,.1); border: 1px solid rgba(249,115,22,.2);
    color: var(--orange); display: flex; align-items: center; justify-content: center;
    font-size: 16px; flex-shrink: 0;
}
.c-num {
    font-family: var(--font-mono); font-size: 11px; font-weight: 600;
    color: var(--slate-mid); text-transform: uppercase; letter-spacing: .12em;
    margin-bottom: 12px; display: block;
}
.h4-l { font-size: 15.5px; font-weight: 700; color: var(--navy); margin: 0 0 8px; }
.h4-d { font-size: 15.5px; font-weight: 700; color: #fff; margin: 0 0 8px; }
.p-l  { font-size: 13.5px; color: var(--slate); line-height: 1.6; margin: 0; }
.p-d  { font-size: 13.5px; color: var(--slate-light); line-height: 1.6; margin: 0; }

/* Row card */
.row-card {
    display: flex; gap: 15px; align-items: flex-start;
    border-radius: var(--radius-md); padding: 18px 20px;
    transition: border-color .25s, transform .2s;
}
.row-card:hover { transform: translateX(3px); }
.row-card-l { background: #fff; border: 1px solid var(--support); }
.row-card-l:hover { border-color: var(--orange); }
.row-card-d { background: var(--navy-light); border: 1px solid rgba(255,255,255,.08); }
.row-card-d:hover { border-color: rgba(249,115,22,.38); }
.row-card h4 { font-size: 14.5px; font-weight: 700; margin: 0 0 5px; }
.row-card-l h4 { color: var(--navy); }
.row-card-d h4 { color: #fff; }
.row-card p  { font-size: 13px; line-height: 1.55; margin: 0; }
.row-card-l p { color: var(--slate); }
.row-card-d p { color: var(--slate-light); }

/* Checkmark list */
.check-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.check-list li { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; line-height: 1.5; }
.check-list-l li { color: var(--slate); }
.check-list-d li { color: var(--slate-light); }
.check-list li::before { content: '✓'; color: var(--orange); font-weight: 800; flex-shrink: 0; margin-top: 1px; }

/* Page CTA (reused across pages) */
.page-cta-sec { background: var(--navy); padding: 88px 0; }
.page-cta-card {
    background: linear-gradient(135deg, #1E293B, #0B1120);
    color: #fff; border-radius: 26px; padding: 64px;
    display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
    gap: 30px; position: relative; overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
}
.page-cta-grid-bg {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
    background-size: 48px 48px; pointer-events: none;
}
.page-cta-glow {
    position: absolute; bottom: -150px; right: -70px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(249,115,22,.22), transparent 68%);
    pointer-events: none;
}
.page-cta-copy { max-width: 560px; position: relative; z-index: 1; }
.page-cta-copy h2 {
    font-size: clamp(1.75rem, 4vw, 2.4rem);
    font-weight: 800; letter-spacing: -.032em; line-height: 1.08; margin: 0 0 14px;
}
.page-cta-copy p { color: var(--slate-light); font-size: 17px; line-height: 1.6; margin: 0; }
.page-cta-actions { display: flex; flex-wrap: wrap; gap: 15px; position: relative; z-index: 1; }

/* ====================================================
   ABOUT PAGE
==================================================== */
.why-layout {
    display: grid; gap: 52px; align-items: center;
}
@media (min-width: 1024px) { .why-layout { grid-template-columns: 1fr 1.05fr; } }
.why-copy h2 {
    font-size: clamp(1.75rem, 4vw, 2.4rem);
    font-weight: 800; letter-spacing: -.032em; line-height: 1.08;
    color: #fff; margin: 10px 0 16px;
}
.why-copy p { color: var(--slate-light); font-size: 16px; line-height: 1.72; margin: 0; }
.why-cards  { display: flex; flex-direction: column; gap: 13px; }

.beliefs-grid { display: grid; gap: 14px; }
@media (min-width: 640px)  { .beliefs-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .beliefs-grid { grid-template-columns: repeat(5, 1fr); } }
.belief-card {
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-md); padding: 24px 20px;
    transition: background .25s, border-color .25s, transform .25s;
}
.belief-card:hover { background: rgba(255,255,255,.07); border-color: rgba(249,115,22,.38); transform: translateY(-3px); }
.belief-icon { font-size: 26px; margin-bottom: 14px; display: block; }
.belief-card h4 { font-size: 14px; font-weight: 700; color: #fff; margin: 0 0 7px; }
.belief-card p  { font-size: 12.5px; color: var(--slate-light); line-height: 1.55; margin: 0; }

.omnexa-layout { display: grid; gap: 50px; align-items: center; }
@media (min-width: 1024px) { .omnexa-layout { grid-template-columns: 1.15fr 1fr; } }
.omnexa-copy h2 {
    font-size: clamp(1.75rem, 4vw, 2.4rem);
    font-weight: 800; letter-spacing: -.032em; line-height: 1.08;
    color: var(--navy); margin: 10px 0 18px;
}
.omnexa-copy p { color: var(--slate); font-size: 15.5px; line-height: 1.72; margin: 0 0 12px; }
.omnexa-panel {
    background: var(--navy); border-radius: var(--radius-lg); padding: 30px;
    border: 1px solid rgba(255,255,255,.08); box-shadow: 0 24px 50px rgba(15,23,42,.12);
}
.omnexa-panel-hdr {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 20px; padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.omnexa-panel-logo {
    width: 40px; height: 40px; border-radius: 10px;
    background: linear-gradient(135deg, var(--orange), var(--orange-hover));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-family: var(--font-display); font-size: 18px; font-weight: 800;
}
.omnexa-panel-title { font-size: 15px; font-weight: 700; color: #fff; }
.omnexa-panel-sub   { font-size: 12px; color: var(--slate); margin-top: 2px; }
.omnexa-highlights  { display: flex; flex-direction: column; gap: 10px; }
.omnexa-hl {
    display: flex; align-items: center; gap: 11px;
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06);
    border-radius: 10px; padding: 10px 14px;
    font-size: 14px; font-weight: 600; color: var(--slate-lighter);
}
.omnexa-hl-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }

.roadmap-grid { display: grid; gap: 20px; }
@media (min-width: 1024px) { .roadmap-grid { grid-template-columns: repeat(3, 1fr); } }
.roadmap-card {
    background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-md); padding: 28px;
    transition: transform .25s, border-color .25s, background .25s;
}
.roadmap-card:hover { transform: translateY(-4px); border-color: rgba(249,115,22,.36); background: rgba(255,255,255,.055); }
.roadmap-step {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-hover));
    font-family: var(--font-display); font-size: 15px; font-weight: 700; color: #fff;
    margin-bottom: 16px;
}
.roadmap-card h4 { font-size: 16px; font-weight: 700; color: #fff; margin: 0 0 9px; }
.roadmap-card p  { font-size: 13.5px; color: var(--slate-light); line-height: 1.6; margin: 0; }

/* ====================================================
   FEATURES PAGE
==================================================== */
.fold-grid { display: grid; gap: 52px; align-items: center; }
@media (min-width: 1024px) { .fold-grid { grid-template-columns: 1fr 1.05fr; } }
@media (min-width: 1024px) {
    .fold-grid.flip > *:first-child { order: 2; }
    .fold-grid.flip > *:last-child  { order: 1; }
}
.fold-copy h2 {
    font-size: clamp(1.65rem, 3.8vw, 2.3rem);
    font-weight: 800; letter-spacing: -.032em; line-height: 1.1;
    margin: 10px 0 14px;
}
.sec-navy .fold-copy h2,
.sec-dark .fold-copy h2  { color: #fff; }
.sec-light .fold-copy h2,
.sec-white .fold-copy h2 { color: var(--navy); }
.fold-copy .fold-sub { font-size: 16px; line-height: 1.7; margin: 0 0 26px; }
.sec-navy .fold-sub, .sec-dark .fold-sub { color: var(--slate-light); }
.sec-light .fold-sub, .sec-white .fold-sub { color: var(--slate); }
.fold-cards { display: flex; flex-direction: column; gap: 12px; }

.feat-insights-grid {
    display: grid; gap: 1px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 20px; overflow: hidden;
}
@media (min-width: 640px)  { .feat-insights-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .feat-insights-grid { grid-template-columns: repeat(5, 1fr); } }
.feat-insight-cell {
    background: var(--navy-dark); padding: 28px 22px; transition: background .3s;
}
.feat-insight-cell:hover { background: var(--navy); }
.feat-insight-icon { font-size: 24px; margin-bottom: 12px; display: block; }
.feat-insight-cell h4 { font-size: 14px; font-weight: 700; color: #fff; margin: 0 0 7px; }
.feat-insight-cell p  { font-size: 12.5px; color: var(--slate); line-height: 1.55; margin: 0; }

/* ====================================================
   CONTACT PAGE
==================================================== */
.contact-types-grid { display: grid; gap: 20px; }
@media (min-width: 768px) { .contact-types-grid { grid-template-columns: repeat(3, 1fr); } }
.contact-type-card {
    background: #fff; border: 1px solid var(--support);
    border-radius: var(--radius-lg); padding: 28px 24px;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.contact-type-card:hover { transform: translateY(-4px); box-shadow: 0 18px 42px rgba(15,23,42,.1); border-color: var(--orange); }
.contact-type-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(249,115,22,.1); border: 1px solid rgba(249,115,22,.22);
    color: var(--orange); display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin-bottom: 16px;
}
.contact-type-card h3  { font-size: 16px; font-weight: 700; color: var(--navy); margin: 0 0 10px; }
.contact-type-card > p { font-size: 13.5px; color: var(--slate); line-height: 1.6; margin: 0 0 16px; }
.ideal-label {
    font-size: 10.5px; font-weight: 700; font-family: var(--font-mono);
    color: var(--slate-mid); text-transform: uppercase; letter-spacing: .1em;
    display: block; margin-bottom: 8px;
}
.ideal-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 5px; }
.ideal-list li { font-size: 13px; color: var(--slate); display: flex; align-items: center; gap: 8px; }
.ideal-list li::before { content: '→'; color: var(--orange); font-weight: 700; font-size: 12px; }

.contact-form-sec { background: var(--navy-dark); padding: 88px 0; border-top: 1px solid rgba(255,255,255,.06); }
.contact-form-sec .sec-hdr h2 { color: #fff; }
.contact-form-sec .sec-sub     { color: var(--slate-light); }
.contact-form-layout { display: grid; gap: 48px; align-items: start; }
@media (min-width: 1024px) { .contact-form-layout { grid-template-columns: 1.3fr 1fr; } }

.form-box {
    background: #fff; border-radius: var(--radius-lg); padding: 38px;
    box-shadow: 0 28px 60px rgba(0,0,0,.3);
}
.form-box-hdr { margin-bottom: 26px; }
.form-box-hdr h3 { font-size: 19px; font-weight: 800; color: var(--navy); margin: 0 0 6px; letter-spacing: -.02em; }
.form-box-hdr p  { font-size: 13.5px; color: var(--slate); margin: 0; line-height: 1.55; }

/* Fluent Forms + generic form overrides */
.form-box .ff-el-group,
.form-box .ffs-row { margin-bottom: 18px; }
.form-box .ff-el-input--label > label,
.form-box label {
    display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px;
}
.form-box .ff-el-form-control,
.form-box input[type="text"],
.form-box input[type="email"],
.form-box input[type="tel"],
.form-box input[type="number"],
.form-box select,
.form-box textarea {
    width: 100%; background: var(--surface-light);
    border: 1.5px solid var(--support); border-radius: 9px;
    padding: 11px 14px; font-family: var(--font-body);
    font-size: 14px; color: var(--navy);
    transition: border-color .2s, box-shadow .2s; outline: none; -webkit-appearance: none;
}
.form-box .ff-el-form-control:focus,
.form-box input:focus,
.form-box select:focus,
.form-box textarea:focus {
    border-color: var(--orange); box-shadow: 0 0 0 3px rgba(249,115,22,.12);
}
.form-box textarea { min-height: 120px; resize: vertical; }
.form-box .ff-btn-submit,
.form-box button[type="submit"],
.form-box input[type="submit"] {
    background: var(--orange); color: #fff; border: none;
    border-radius: 10px; padding: 14px 28px;
    font-family: var(--font-body); font-size: 15px; font-weight: 700;
    cursor: pointer; transition: background .2s, transform .15s;
    width: 100%; display: block; text-align: center;
}
.form-box .ff-btn-submit:hover,
.form-box button[type="submit"]:hover { background: var(--orange-hover); transform: translateY(-1px); }
.form-box .ff-el-is-error .ff-el-form-control { border-color: #ef4444; }
.form-box .error { font-size: 12px; color: #ef4444; margin-top: 4px; }
.form-privacy { font-size: 12px; color: var(--slate); text-align: center; margin-top: 12px; line-height: 1.5; }
.form-privacy a { color: var(--orange); text-decoration: underline; }

.contact-sidebar { display: flex; flex-direction: column; gap: 16px; }
.contact-sidebar-card {
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-md); padding: 22px;
}
.sidebar-tag {
    display: inline-block;
    background: rgba(249,115,22,.12); color: var(--orange-light);
    font-family: var(--font-mono); font-size: 10px; font-weight: 700;
    padding: 3px 10px; border-radius: 6px;
    text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px;
}
.contact-sidebar-card h4 { font-size: 14px; font-weight: 700; color: #fff; margin: 0 0 8px; }
.contact-sidebar-card p  { font-size: 13px; color: var(--slate-light); line-height: 1.6; margin: 0; }

.omnexa-compact { display: grid; gap: 40px; align-items: center; }
@media (min-width: 1024px) { .omnexa-compact { grid-template-columns: 1.2fr 1fr; } }
.omnexa-compact h2 {
    font-size: clamp(1.65rem, 3.8vw, 2.3rem);
    font-weight: 800; letter-spacing: -.03em; line-height: 1.1;
    color: #fff; margin: 10px 0 16px;
}
.omnexa-compact p { color: var(--slate-light); font-size: 15.5px; line-height: 1.72; margin: 0; }
.omnexa-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.omnexa-pill {
    display: flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px; padding: 10px 14px;
    font-size: 13.5px; font-weight: 600; color: var(--slate-lighter);
}
.omnexa-pill-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }

/* ── INDUSTRY TAGS (about page built-for section) ── */
.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}
.industry-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 50px;
    padding: 12px 22px;
    transition: background .2s, border-color .2s, transform .2s;
    cursor: default;
}
.industry-tag:hover {
    background: rgba(249,115,22,.12);
    border-color: rgba(249,115,22,.45);
    transform: translateY(-2px);
}
.industry-tag-icon {
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
}
.industry-tag-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--slate-lighter);
    white-space: nowrap;
}

/* ── WHAT HAPPENS NEXT (5-step process) ── */
.next-steps {
    display: flex; flex-direction: column; gap: 0;
    max-width: 700px; margin: 0 auto;
}
.next-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    grid-template-rows: auto auto;
    column-gap: 24px;
    position: relative;
}
.next-step-num {
    grid-column: 1; grid-row: 1;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--orange); color: #fff;
    font-family: var(--font-mono); font-size: 13px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; z-index: 1; position: relative;
}
.next-step-body {
    grid-column: 2; grid-row: 1;
    padding-bottom: 32px;
}
.next-step-body h4 {
    font-size: 15px; font-weight: 700; color: var(--navy);
    margin: 10px 0 6px; line-height: 1.3;
}
.next-step-body p {
    font-size: 13.5px; color: var(--slate); line-height: 1.65; margin: 0;
}
.next-step-line {
    grid-column: 1; grid-row: 2;
    width: 2px; height: 100%; min-height: 24px;
    background: linear-gradient(180deg, var(--orange) 0%, rgba(249,115,22,.15) 100%);
    margin: 0 auto; justify-self: center;
}
.next-step:last-child .next-step-line { display: none; }
.next-step:last-child .next-step-body { padding-bottom: 0; }

/* ── ENTERPRISE TRUST GRID ── */
.enterprise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 860px; margin: 0 auto;
}
@media (min-width: 640px)  { .enterprise-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .enterprise-grid { grid-template-columns: repeat(6, 1fr); } }
.enterprise-item {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09);
    border-radius: var(--radius-md); padding: 22px 16px;
    text-align: center; transition: background .2s, border-color .2s;
}
.enterprise-item:hover { background: rgba(255,255,255,.08); border-color: rgba(249,115,22,.35); }
.enterprise-icon { font-size: 28px; line-height: 1; }
.enterprise-item > span:last-child {
    font-size: 12px; font-weight: 600; color: var(--slate-lighter);
    line-height: 1.4;
}

/* ====================================================
   LEGAL PAGES
==================================================== */
.legal-hero {
    background: var(--navy-dark); padding: 60px 0 68px;
    border-bottom: 1px solid rgba(255,255,255,.07);
    position: relative; overflow: hidden;
}
.legal-hero-bg {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
    background-size: 48px 48px; pointer-events: none;
}
.legal-hero-inner {
    position: relative; z-index: 1;
    max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px);
}
.legal-hero h1 {
    font-size: clamp(1.9rem, 4vw, 2.75rem);
    font-weight: 800; letter-spacing: -.035em; line-height: 1.06;
    color: #fff; margin: 12px 0 10px;
}
.legal-hero-meta { font-family: var(--font-mono); font-size: 12px; color: var(--slate); letter-spacing: .04em; }
.legal-content-wrap { background: #fff; padding: 70px 0 80px; }
.legal-content { max-width: 820px; margin: 0 auto; padding: 0 var(--px); }
.legal-notice {
    background: rgba(249,115,22,.06); border: 1px solid rgba(249,115,22,.2);
    border-radius: var(--radius-md); padding: 14px 18px;
    margin-bottom: 2.5rem; font-size: 13px; color: var(--slate); line-height: 1.6;
}
.legal-notice strong { color: var(--orange); }
.legal-toc {
    background: var(--surface-light); border: 1px solid var(--support);
    border-radius: var(--radius-md); padding: 22px 26px; margin-bottom: 44px;
}
.legal-toc-title {
    font-family: var(--font-mono); font-size: 11px; font-weight: 700;
    color: var(--slate-mid); text-transform: uppercase; letter-spacing: .1em;
    margin-bottom: 12px; display: block;
}
.legal-toc ol { margin: 0; padding-left: 1.25rem; }
.legal-toc li { font-size: 13.5px; color: var(--slate); margin-bottom: 5px; }
.legal-toc li a { color: var(--orange); }
.legal-toc li a:hover { color: var(--orange-hover); text-decoration: underline; }
.legal-content h2 {
    font-family: var(--font-display); font-size: 1.3rem; font-weight: 800;
    color: var(--navy); letter-spacing: -.02em; line-height: 1.2;
    margin: 3rem 0 .9rem; padding-bottom: .6rem;
    border-bottom: 1px solid var(--support); scroll-margin-top: 90px;
}
.legal-content h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin: 1.75rem 0 .6rem; }
.legal-content p  { color: var(--slate); font-size: 14px; line-height: 1.85; margin: 0 0 1rem; }
.legal-content ul,
.legal-content ol { color: var(--slate); font-size: 14px; line-height: 1.85; padding-left: 1.4rem; margin: 0 0 1rem; }
.legal-content li { margin-bottom: .35rem; }
.legal-content a  { color: var(--orange); text-decoration: underline; text-underline-offset: 2px; }
.legal-content a:hover { color: var(--orange-hover); }
.legal-content strong { font-weight: 700; color: var(--navy-light); }

/* ====================================================
   INNER PAGE RESPONSIVE
==================================================== */
@media (max-width: 767px) {
    .inner-hero  { padding: 56px 0 64px; }
    .inner-hero h1 { font-size: clamp(1.8rem, 6vw, 2.6rem); }
    .inner-hero-sub { font-size: 15px; }
    .inner-hero-ctas { flex-direction: column; }
    .inner-hero-ctas .btn-primary-lg,
    .inner-hero-ctas .btn-outline-white { width: 100%; justify-content: center; }
    .page-sec  { padding: 60px 0; }
    .page-sec-sm { padding: 44px 0; }
    .sec-hdr { margin-bottom: 32px; }
    .why-layout    { gap: 32px; }
    .omnexa-layout { gap: 32px; }
    .fold-grid     { gap: 34px; }
    .contact-form-layout { gap: 32px; }
    .omnexa-compact { gap: 28px; }
    .form-box { padding: 26px 20px; }
    .next-steps { max-width: 100%; }
    .enterprise-grid { grid-template-columns: repeat(2, 1fr); }
    .page-cta-card  { padding: 36px 28px; flex-direction: column; align-items: flex-start; }
    .page-cta-actions { flex-direction: column; width: 100%; }
    .page-cta-actions .btn-primary-lg,
    .page-cta-actions .btn-ghost-dark { width: 100%; text-align: center; }
    .legal-hero { padding: 44px 0 52px; }
}
@media (max-width: 639px) {
    .beliefs-grid  { grid-template-columns: 1fr; }
    .roadmap-grid  { grid-template-columns: 1fr; }
    .contact-types-grid { grid-template-columns: 1fr; }
    .enterprise-grid    { grid-template-columns: repeat(2, 1fr); }
    .grid-4-bd     { grid-template-columns: 1fr; border-radius: 14px; }
    .grid-4-bd-light { grid-template-columns: 1fr; border-radius: 14px; }
    .grid-5-bd     { grid-template-columns: 1fr; border-radius: 14px; }
    .feat-insights-grid { grid-template-columns: 1fr; border-radius: 14px; }
}
