/* ==========================================================================
   Scatyc SmartERP — Design System
   Modern glassmorphic SaaS UI
   ========================================================================== */

:root {
    /* Brand palette derived from the Scatyc logo (electric blue + black) */
    --indigo-50:  #ecefff;
    --indigo-100: #dbe0ff;
    --indigo-200: #bcc4ff;
    --indigo-300: #939dff;
    --indigo-400: #6670ff;
    --indigo-500: #3a3dff;
    --indigo-600: #1414e6;
    --indigo-700: #0000c2;
    --violet-500: #3a3dff;
    --violet-600: #1414e6;
    --cyan-400:   #4d7bff;

    --ink-900: #05061a;
    --ink-800: #0b0d24;
    --ink-700: #171a3a;
    --slate-500: #5b6178;
    --slate-400: #8b91a8;
    --slate-300: #cbd0e0;
    --slate-200: #e3e6f0;
    --slate-100: #f1f2f9;
    --slate-50:  #f7f8fc;
    --white: #ffffff;

    --grad-brand: linear-gradient(135deg, #0000e0 0%, #2b2bff 55%, #5e6bff 130%);
    --grad-brand-soft: linear-gradient(135deg, rgba(0,0,224,.12), rgba(58,61,255,.12));
    --grad-hero: radial-gradient(1200px 620px at 12% -12%, rgba(0,0,224,.30), transparent 60%),
                 radial-gradient(1000px 520px at 100% 0%, rgba(58,61,255,.20), transparent 55%),
                 radial-gradient(900px 500px at 60% 120%, rgba(20,20,230,.10), transparent 60%);

    --glass-bg: rgba(255,255,255,.72);
    --glass-border: rgba(255,255,255,.55);
    --glass-shadow: 0 20px 45px -18px rgba(30,27,75,.35);

    --radius-sm: 12px;
    --radius: 18px;
    --radius-lg: 26px;

    --container: 1180px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--ink-800);
    background: var(--slate-50);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Ambient background blobs */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(700px 500px at 8% 3%, rgba(124,58,237,.12), transparent 60%),
        radial-gradient(700px 500px at 96% 8%, rgba(34,211,238,.10), transparent 55%),
        radial-gradient(600px 500px at 50% 100%, rgba(99,102,241,.10), transparent 60%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -0.02em; color: var(--ink-900); font-weight: 700; }
h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.25rem; }
p { color: var(--slate-500); }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--indigo-600);
    background: var(--indigo-50);
    border: 1px solid var(--indigo-100);
    padding: 7px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
}

.gradient-text {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section { padding: 92px 0; }
.section-sm { padding: 60px 0; }
.section-head { max-width: 720px; margin: 0 auto 54px; text-align: center; }
.section-head p { font-size: 1.08rem; margin-top: 14px; }
.text-center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-weight: 600;
    font-size: .98rem;
    padding: 13px 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .25s ease, background .2s ease;
    white-space: nowrap;
}
.btn-primary {
    background: var(--grad-brand);
    color: #fff;
    box-shadow: 0 14px 30px -12px rgba(99,102,241,.7);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 38px -12px rgba(99,102,241,.75); }
.btn-ghost {
    background: rgba(255,255,255,.7);
    border-color: var(--slate-200);
    color: var(--ink-800);
    backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--indigo-400); color: var(--indigo-600); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--indigo-600); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(0,0,0,.35); }
.btn-outline-light { border-color: rgba(255,255,255,.55); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,.12); }
.btn-lg { padding: 16px 30px; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(248,250,252,.72);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226,232,240,.7);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 74px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.25rem; color: var(--ink-900); letter-spacing: -.02em; }
.brand img { height: 34px; width: auto; }
.brand span.badge {
    font-size: .6rem; font-weight: 700; letter-spacing: .1em;
    background: var(--grad-brand); color: #fff; padding: 3px 7px; border-radius: 6px; text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
    font-size: .93rem; font-weight: 500; color: var(--ink-700);
    padding: 9px 13px; border-radius: 10px; transition: background .18s, color .18s;
}
.nav-links a:hover, .nav-links a.active { background: var(--indigo-50); color: var(--indigo-600); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink-800); border-radius: 2px; margin: 5px 0; transition: .25s; }

/* dropdown */
.has-drop { position: relative; }
.drop-menu {
    position: absolute; top: calc(100% + 8px); left: 0;
    min-width: 230px; background: var(--white);
    border: 1px solid var(--slate-200); border-radius: 16px;
    box-shadow: var(--glass-shadow); padding: 8px;
    opacity: 0; visibility: hidden; transform: translateY(8px); transition: .2s;
}
.has-drop:hover .drop-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.drop-menu a { display: block; padding: 10px 12px; border-radius: 10px; font-size: .9rem; }
.drop-menu a:hover { background: var(--indigo-50); color: var(--indigo-600); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 84px 0 92px; background: var(--grad-hero); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { margin-bottom: 20px; }
.hero p.lead { font-size: 1.18rem; color: var(--slate-500); max-width: 560px; margin-bottom: 30px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.hero-note { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; font-size: .88rem; color: var(--slate-500); }
.hero-note .dot { display: inline-flex; align-items: center; gap: 7px; }
.hero-note .dot::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,.18); }

/* Dashboard mock */
.dash {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(18px);
    padding: 22px;
    position: relative;
}
.dash-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.dash-dots { display: flex; gap: 6px; }
.dash-dots i { width: 11px; height: 11px; border-radius: 50%; background: var(--slate-300); }
.dash-dots i:nth-child(1){ background:#fb7185;} .dash-dots i:nth-child(2){ background:#fbbf24;} .dash-dots i:nth-child(3){ background:#34d399;}
.dash-pill { font-size: .72rem; font-weight: 600; color: var(--indigo-600); background: var(--indigo-50); padding: 5px 10px; border-radius: 999px; }
.dash-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 16px; }
.dash-stat { background: #fff; border: 1px solid var(--slate-200); border-radius: 14px; padding: 14px; }
.dash-stat span { font-size: .72rem; color: var(--slate-400); font-weight: 600; }
.dash-stat b { display: block; font-size: 1.35rem; color: var(--ink-900); margin-top: 4px; }
.dash-stat em { font-style: normal; font-size: .72rem; font-weight: 700; color: #16a34a; }
.dash-chart { background: #fff; border: 1px solid var(--slate-200); border-radius: 14px; padding: 16px; }
.dash-chart .bars { display: flex; align-items: flex-end; gap: 8px; height: 96px; margin-top: 12px; }
.dash-chart .bars i { flex: 1; border-radius: 6px 6px 0 0; background: var(--grad-brand); opacity: .85; }
.dash-float {
    position: absolute; background: #fff; border: 1px solid var(--slate-200);
    border-radius: 14px; padding: 12px 14px; box-shadow: var(--glass-shadow);
    display: flex; align-items: center; gap: 10px; font-size: .82rem; font-weight: 600;
}
.dash-float .ico { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: var(--indigo-50); color: var(--indigo-600); font-size: 1rem; }
.dash-float.f1 { top: -18px; right: -14px; }
.dash-float.f2 { bottom: -18px; left: -18px; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }

.card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius);
    padding: 26px;
    transition: transform .2s ease, box-shadow .25s ease, border-color .2s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--glass-shadow); border-color: var(--indigo-100); }
.card h3 { margin-bottom: 8px; }
.card p { font-size: .95rem; }
.card .ico {
    width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
    background: var(--grad-brand-soft); color: var(--indigo-600); font-size: 1.35rem; margin-bottom: 16px;
    border: 1px solid var(--indigo-100);
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    border-radius: var(--radius);
    box-shadow: var(--glass-shadow);
}

/* Problem / shift lists */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: start; }
.pain-item, .shift-item {
    display: flex; gap: 16px; padding: 18px 20px; border-radius: 16px;
    background: #fff; border: 1px solid var(--slate-200); margin-bottom: 14px;
}
.pain-item .ico { flex: none; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: #fee2e2; color: #dc2626; }
.shift-item .ico { flex: none; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: #dcfce7; color: #16a34a; }
.pain-item h4, .shift-item h4 { font-size: 1.02rem; margin-bottom: 3px; color: var(--ink-900); }
.pain-item p, .shift-item p { font-size: .9rem; margin: 0; }

/* Feature rows */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin-bottom: 80px; }
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse .feature-visual { order: -1; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; color: var(--ink-700); font-size: 1rem; }
.feature-list li::before { content: "✓"; flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--indigo-50); color: var(--indigo-600); font-weight: 700; display: grid; place-items: center; font-size: .8rem; }

/* Stat strip */
.stat-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat-strip .stat { text-align: center; }
.stat-strip .stat b { font-size: 2.2rem; display: block; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-strip .stat span { color: var(--slate-500); font-size: .92rem; }

/* CTA band */
.cta-band {
    background: var(--grad-brand);
    border-radius: var(--radius-lg);
    padding: 56px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.cta-band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 80% -20%, rgba(255,255,255,.25), transparent 60%); }
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { color: rgba(255,255,255,.88); max-width: 560px; margin: 14px auto 26px; position: relative; }
.cta-band .hero-cta { justify-content: center; position: relative; }

/* Integrations logos */
.logo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap: 16px; }
.logo-tile { background: #fff; border: 1px solid var(--slate-200); border-radius: 16px; padding: 22px; text-align: center; font-weight: 700; color: var(--ink-700); transition: .2s; }
.logo-tile:hover { border-color: var(--indigo-200); transform: translateY(-4px); box-shadow: var(--glass-shadow); }
.logo-tile span { display: block; font-size: .78rem; font-weight: 500; color: var(--slate-400); margin-top: 4px; }

/* Steps */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.step { position: relative; padding-top: 8px; }
.step .num { width: 54px; height: 54px; border-radius: 16px; background: var(--grad-brand); color: #fff; display: grid; place-items: center; font-size: 1.4rem; font-weight: 800; margin-bottom: 18px; box-shadow: 0 14px 26px -12px rgba(99,102,241,.6); }
.step h3 { margin-bottom: 8px; }

/* Pricing */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: stretch; }
.price-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius-lg); padding: 32px; position: relative; }
.price-card.featured { border-color: transparent; background: var(--ink-900); color: #fff; box-shadow: 0 30px 60px -25px rgba(30,27,75,.7); transform: scale(1.03); }
.price-card.featured h3, .price-card.featured .price b { color: #fff; }
.price-card.featured p, .price-card.featured .price-feats li { color: rgba(255,255,255,.8); }
.price-badge { position: absolute; top: 20px; right: 20px; font-size: .72rem; font-weight: 700; background: var(--grad-brand); color: #fff; padding: 5px 12px; border-radius: 999px; text-transform: uppercase; letter-spacing: .05em; }
.price { margin: 14px 0 20px; }
.price b { font-size: 2.4rem; color: var(--ink-900); }
.price small { color: var(--slate-400); font-weight: 500; }
.price-feats { margin: 6px 0 26px; }
.price-feats li { display: flex; gap: 10px; align-items: flex-start; font-size: .93rem; color: var(--slate-500); margin-bottom: 11px; }
.price-feats li::before { content: "✓"; color: var(--indigo-500); font-weight: 800; }
.price-card .btn { margin-top: auto; }

/* Tables */
.mod-table { width: 100%; border-collapse: separate; border-spacing: 0; background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius); overflow: hidden; }
.mod-table th, .mod-table td { text-align: left; padding: 16px 20px; border-bottom: 1px solid var(--slate-100); }
.mod-table th { background: var(--slate-50); font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--slate-500); }
.mod-table tr:last-child td { border-bottom: 0; }
.mod-table td:first-child { font-weight: 600; color: var(--ink-900); }

/* FAQ */
.faq-item { background: #fff; border: 1px solid var(--slate-200); border-radius: 16px; margin-bottom: 14px; overflow: hidden; }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 24px; cursor: pointer; font-weight: 600; color: var(--ink-900); }
.faq-q .plus { flex: none; width: 26px; height: 26px; border-radius: 8px; background: var(--indigo-50); color: var(--indigo-600); display: grid; place-items: center; font-size: 1.2rem; transition: .25s; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; padding: 0 24px; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 22px; }
.faq-a p { font-size: .95rem; }

/* Forms */
.form-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.form-card { background: var(--glass-bg); border: 1px solid var(--glass-border); backdrop-filter: blur(16px); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--glass-shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .86rem; font-weight: 600; color: var(--ink-700); margin-bottom: 7px; }
.field input, .field select, .field textarea {
    width: 100%; padding: 13px 15px; border: 1px solid var(--slate-200); border-radius: 12px;
    font-family: inherit; font-size: .95rem; color: var(--ink-800); background: #fff; transition: .18s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--indigo-400); box-shadow: 0 0 0 4px rgba(99,102,241,.12); }
.field textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-side .contact-item { display: flex; gap: 14px; margin-bottom: 22px; }
.contact-side .ico { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--grad-brand-soft); color: var(--indigo-600); display: grid; place-items: center; font-size: 1.2rem; border: 1px solid var(--indigo-100); }
.contact-side h4 { margin-bottom: 2px; }

.alert { padding: 14px 18px; border-radius: 12px; margin-bottom: 22px; font-weight: 500; font-size: .95rem; }
.alert-success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.post-card { background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius); overflow: hidden; transition: .2s; }
.post-card:hover { transform: translateY(-5px); box-shadow: var(--glass-shadow); }
.post-thumb { height: 160px; background: var(--grad-brand); position: relative; }
.post-thumb.v2 { background: linear-gradient(135deg,#0ea5e9,#6366f1); }
.post-thumb.v3 { background: linear-gradient(135deg,#7c3aed,#ec4899); }
.post-thumb.v4 { background: linear-gradient(135deg,#059669,#22d3ee); }
.post-thumb.v5 { background: linear-gradient(135deg,#f59e0b,#ef4444); }
.post-body { padding: 22px; }
.tag { display: inline-block; font-size: .72rem; font-weight: 700; color: var(--indigo-600); background: var(--indigo-50); padding: 4px 10px; border-radius: 999px; text-transform: uppercase; letter-spacing: .04em; }
.post-body h3 { font-size: 1.1rem; margin: 12px 0 8px; }
.post-meta { font-size: .8rem; color: var(--slate-400); margin-top: 10px; }

.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
.filter-bar button { border: 1px solid var(--slate-200); background: #fff; padding: 8px 16px; border-radius: 999px; font-weight: 600; font-size: .85rem; color: var(--slate-500); cursor: pointer; transition: .18s; }
.filter-bar button.active, .filter-bar button:hover { background: var(--indigo-600); color: #fff; border-color: var(--indigo-600); }

/* Page hero (inner pages) */
.page-hero { padding: 70px 0 40px; text-align: center; background: var(--grad-hero); }
.page-hero .lead { max-width: 640px; margin: 16px auto 0; font-size: 1.1rem; }

/* Industries / chips */
.chip-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 20px; }
.chip-card { background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius); padding: 28px; text-align: center; transition: .2s; }
.chip-card:hover { transform: translateY(-5px); box-shadow: var(--glass-shadow); border-color: var(--indigo-100); }
.chip-card .ico { width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 16px; background: var(--grad-brand-soft); color: var(--indigo-600); display: grid; place-items: center; font-size: 1.5rem; border: 1px solid var(--indigo-100); }

/* Case study */
.case-card { display: grid; grid-template-columns: 200px 1fr; gap: 26px; background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius); padding: 28px; margin-bottom: 20px; align-items: center; }
.case-logo { height: 90px; border-radius: 14px; background: var(--grad-brand-soft); display: grid; place-items: center; font-weight: 800; font-size: 1.2rem; color: var(--indigo-600); }
.case-card blockquote { border-left: 3px solid var(--indigo-300); padding-left: 14px; margin-top: 12px; font-style: italic; color: var(--slate-500); }

/* Trust list */
.trust-item { display: flex; gap: 16px; padding: 22px; background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius); }
.trust-item .ico { flex: none; width: 48px; height: 48px; border-radius: 12px; background: var(--grad-brand-soft); color: var(--indigo-600); display: grid; place-items: center; font-size: 1.3rem; border: 1px solid var(--indigo-100); }

/* Prose (legal pages) */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { font-size: 1.5rem; margin: 36px 0 12px; }
.prose h3 { font-size: 1.15rem; margin: 24px 0 8px; }
.prose p, .prose li { color: var(--slate-500); margin-bottom: 12px; }
.prose ul { list-style: disc; padding-left: 22px; }
.prose ul li { margin-bottom: 8px; }
.prose .muted-note { background: var(--indigo-50); border: 1px solid var(--indigo-100); border-radius: 12px; padding: 16px 18px; color: var(--indigo-600); font-size: .9rem; }

/* ---------- Footer (white) ---------- */
.site-footer { background: #fff; color: var(--slate-500); padding: 68px 0 28px; margin-top: 20px; border-top: 1px solid var(--slate-200); }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand img { height: 40px; width: auto; margin-bottom: 16px; }
.footer-brand p { color: var(--slate-500); font-size: .92rem; max-width: 320px; }
.footer-col h4 { color: var(--ink-900); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.footer-col a { display: block; color: var(--slate-500); font-size: .92rem; margin-bottom: 10px; transition: color .18s; }
.footer-col a:hover { color: var(--indigo-600); }
.footer-bottom { border-top: 1px solid var(--slate-200); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: .85rem; color: var(--slate-400); }
.footer-bottom .legal-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom .legal-links a:hover { color: var(--indigo-600); }

/* reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
    .hero-grid, .feature-row, .feature-row.reverse .feature-visual { grid-template-columns: 1fr; }
    .feature-row.reverse .feature-visual { order: 0; }
    .split, .form-wrap, .footer-grid { grid-template-columns: 1fr; }
    .grid-3, .grid-4, .steps, .price-grid, .blog-grid, .stat-strip { grid-template-columns: 1fr 1fr; }
    .price-card.featured { transform: none; }
    .case-card { grid-template-columns: 1fr; }
    .footer-grid { gap: 30px; }
    .nav-links, .nav-cta .btn-ghost { display: none; }
    .nav-toggle { display: block; }
    .nav-links.open {
        display: flex; flex-direction: column; align-items: stretch;
        position: absolute; top: 74px; left: 0; right: 0;
        background: #fff; border-bottom: 1px solid var(--slate-200);
        padding: 14px 24px; gap: 4px; box-shadow: var(--glass-shadow);
    }
    .has-drop .drop-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding-left: 12px; }
}
@media (max-width: 620px) {
    .grid-2, .grid-3, .grid-4, .steps, .price-grid, .blog-grid, .stat-strip, .form-row { grid-template-columns: 1fr; }
    .section { padding: 64px 0; }
    .cta-band { padding: 38px 24px; }
    .dash-float { display: none; }
}

/* ==========================================================================
   Additions: icons, brand logo, new closing section, contact map, hero boost
   ========================================================================== */

/* SVG icons use currentColor and inherit sizing from their container */
.svg-ico { width: 26px; height: 26px; display: block; }
.card .ico .svg-ico,
.chip-card .ico .svg-ico,
.trust-item .ico .svg-ico,
.contact-side .ico .svg-ico { width: 24px; height: 24px; }
.pain-item .ico .svg-ico, .shift-item .ico .svg-ico { width: 22px; height: 22px; }
.dash-float .ico .svg-ico { width: 18px; height: 18px; }
.feature-list li .svg-ico { width: 15px; height: 15px; }
.eyebrow .svg-ico, .gs-eyebrow .svg-ico { width: 15px; height: 15px; }

/* Brand: logo only, no text */
.brand img { height: 42px; width: auto; }
.site-header .brand { gap: 0; }

/* ---------- New closing section (replaces old CTA band) ---------- */
.get-started {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--ink-900);
    border-radius: var(--radius-lg);
    padding: 52px;
    position: relative;
    overflow: hidden;
}
.get-started::before {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(600px 300px at 85% -30%, rgba(58,61,255,.55), transparent 60%),
        radial-gradient(500px 300px at 0% 120%, rgba(0,0,224,.4), transparent 60%);
}
.get-started > * { position: relative; z-index: 1; }
.gs-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    color: #bcc4ff; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
    padding: 7px 14px; border-radius: 999px; margin-bottom: 18px;
}
.get-started h2 { color: #fff; margin-bottom: 12px; }
.get-started p { color: rgba(255,255,255,.78); max-width: 480px; margin-bottom: 26px; }
.gs-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.gs-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: var(--radius);
    padding: 26px 28px;
    backdrop-filter: blur(6px);
}
.gs-card ul li {
    display: flex; align-items: center; gap: 12px;
    color: #fff; font-weight: 500; font-size: .98rem;
    padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.08);
}
.gs-card ul li:last-child { border-bottom: 0; }
.gs-card .svg-ico { width: 22px; height: 22px; color: #6d9bff; flex: none; }

/* ---------- Contact address + map ---------- */
.map-embed { border: 0; width: 100%; height: 320px; border-radius: var(--radius); box-shadow: var(--glass-shadow); }
.address-card { background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius); padding: 24px; margin-top: 8px; }

/* ---------- Hero boost ---------- */
.hero { padding: 96px 0 104px; }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: .8rem; font-weight: 600; color: var(--indigo-700);
    background: rgba(255,255,255,.7); border: 1px solid var(--indigo-100);
    padding: 7px 13px; border-radius: 999px; backdrop-filter: blur(6px);
}
.hero-badge .svg-ico { width: 15px; height: 15px; }
.hero h1 .type-accent { position: relative; white-space: nowrap; }
.hero-trust { margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--slate-200); }
.hero-trust span { font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--slate-400); }
.hero-trust .logos { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 12px; align-items: center; font-weight: 700; color: var(--slate-400); }
.hero-trust .logos b { font-size: 1.05rem; }

/* Module detail cards */
.module-detail { background:#fff; border:1px solid var(--slate-200); border-radius: var(--radius); padding: 30px; height: 100%; }
.module-detail .head { display:flex; align-items:center; gap:14px; margin-bottom:14px; }
.module-detail .ico { width:52px; height:52px; border-radius:14px; display:grid; place-items:center; background: var(--grad-brand-soft); color: var(--indigo-600); border:1px solid var(--indigo-100); flex:none; }
.module-detail h3 { margin:0; }
.module-detail > p { margin-bottom: 16px; }
.module-detail ul li { display:flex; gap:10px; align-items:flex-start; font-size:.93rem; color:var(--slate-500); margin-bottom:9px; }
.module-detail ul li .svg-ico { width:16px; height:16px; color: var(--indigo-600); flex:none; margin-top:3px; }

/* Industry detail rows */
.ind-detail { display:grid; grid-template-columns: 64px 1fr; gap:20px; background:#fff; border:1px solid var(--slate-200); border-radius: var(--radius); padding:26px; margin-bottom:18px; }
.ind-detail .ico { width:64px; height:64px; border-radius:16px; display:grid; place-items:center; background: var(--grad-brand-soft); color:var(--indigo-600); border:1px solid var(--indigo-100); }
.ind-detail h3 { margin-bottom:6px; }
.ind-detail .ind-tags { display:flex; gap:8px; flex-wrap:wrap; margin-top:12px; }
.ind-detail .ind-tags span { font-size:.76rem; font-weight:600; color:var(--indigo-700); background:var(--indigo-50); border:1px solid var(--indigo-100); padding:4px 10px; border-radius:999px; }

@media (max-width: 960px) {
    .get-started { grid-template-columns: 1fr; padding: 38px; }
    .ind-detail { grid-template-columns: 1fr; }
}
