/* ==========================================================================
   GRCPro public site — light, solids, logo navy + cyan
   Outfit / Plus Jakarta Sans / JetBrains Mono
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@500;600&family=Outfit:wght@500;600;700&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
    --navy: #061B4A;
    --navy-2: #0A2463;
    --cyan: #00A8FF;
    --cyan-deep: #0077C2;
    --ink: #12203A;
    --muted: #3E4F6B;
    --muted-2: #5B6C86;
    --paper: #F4F7FB;
    --paper-2: #E8EEF6;
    --white: #FFFFFF;
    --line: rgba(6, 27, 74, 0.10);
    --line-strong: rgba(6, 27, 74, 0.18);
    --on-navy: #F4F8FF;
    --on-navy-muted: #C5D3EA;
    --danger: #C0262D;
    --success: #0F766E;

    --text-primary: var(--ink);
    --text-secondary: var(--muted);
    --text-muted: var(--muted-2);
    --bg-dark: var(--navy);
    --bg-card: var(--white);
    --border-glass: var(--line);
    --glow: var(--cyan);

    --font-display: 'Outfit', ui-sans-serif, system-ui, sans-serif;
    --font-body: 'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, monospace;

    --nav-height: 72px;
    --nav-offset: calc(var(--nav-height) + 0.75rem);
    --section-pad: clamp(3.25rem, 7vw, 5.5rem);
    --container: min(1120px, 92vw);
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 18px;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 1px 2px rgba(6, 27, 74, 0.05), 0 6px 18px rgba(6, 27, 74, 0.05);
    --shadow-md: 0 10px 28px rgba(6, 27, 74, 0.10);
}

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

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

body {
    font-family: var(--font-body);
    background: var(--paper);
    color: var(--ink);
    font-size: 0.95rem;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
::selection { background: var(--cyan-deep); color: #fff; }

.container {
    width: var(--container);
    margin-inline: auto;
}

.gradient-text { color: var(--cyan); }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cyan-deep);
    margin-bottom: 0.7rem;
}

.section-label::before {
    content: '';
    width: 18px;
    height: 2px;
    background: var(--cyan-deep);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 3.2vw, 2.15rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 0.65rem;
    color: var(--ink);
}

.section-subtitle {
    font-size: 0.98rem;
    color: var(--muted);
    max-width: 38rem;
    line-height: 1.6;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.section-header .section-subtitle { margin-inline: auto; }

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }

/* Buttons — solids, no gradient tiles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.68rem 1.2rem;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 999px;
    transition: transform 0.25s var(--ease-out), box-shadow 0.25s, background 0.2s, color 0.2s, border-color 0.2s;
    white-space: nowrap;
    cursor: pointer;
    border: 1.5px solid transparent;
}
.btn-primary {
    background: var(--cyan-deep);
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 119, 194, 0.22);
}
.btn-primary:hover { background: #0066a8; transform: translateY(-1px); color: #fff; }
.btn-ghost {
    background: transparent;
    color: var(--navy);
    border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--navy); background: rgba(6, 27, 74, 0.04); }
.btn-lg { padding: 0.78rem 1.4rem; font-size: 0.92rem; }

.hero .btn-ghost,
.footer .btn-ghost,
.cta .btn-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.08);
}
.hero .btn-ghost:hover,
.cta .btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.16); }

.glass {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}
.glass-glow { box-shadow: var(--shadow-md); }

/* ── Nav ─────────────────────────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 80;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    background: rgba(244, 247, 251, 0.88);
    border-bottom: 1px solid transparent;
    transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.nav.scrolled {
    background: rgba(255, 255, 255, 0.96);
    border-bottom-color: var(--line);
    box-shadow: 0 6px 20px rgba(6, 27, 74, 0.06);
}
.nav-inner {
    width: var(--container);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.nav-logo img,
.footer-brand img,
.auth-brand img {
    background: transparent !important;
    mix-blend-mode: normal;
}
.nav-logo img {
    height: 44px;
    width: auto;
}
.nav-toggle {
    display: none;
    width: 42px; height: 42px;
    border-radius: 999px;
    border: 1px solid var(--line-strong);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.nav-toggle span {
    display: block;
    width: 16px; height: 2px;
    background: var(--navy);
    border-radius: 2px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.15rem;
}
.nav-links > a {
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--navy);
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
}
.nav-links > a:hover,
.nav-links > a.is-active { color: var(--navy); background: rgba(6, 27, 74, 0.05); }
.nav-cta { margin-left: 0.4rem; }

.page-hero {
    padding: calc(var(--nav-height) + 3.2rem) 0 2.2rem;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
}
.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 650;
    letter-spacing: -0.03em;
    max-width: 18ch;
    margin: 0.45rem 0 0.55rem;
}
.page-hero-sub {
    font-size: 1.02rem;
    color: var(--muted);
    max-width: 42ch;
}
.page-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 2rem;
}
.solution-card--link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.solution-card--link:hover {
    border-color: rgba(0, 119, 194, 0.28);
}

body.public-page .solutions,
body.public-page .platform,
body.public-page .why,
body.public-page .industries,
body.public-page .pricing,
body.public-page .contact {
    padding-top: 2.4rem;
}

/* ── Hero 100vh ──────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: calc(var(--nav-height) + 1.5rem) 0 4.5rem;
    overflow: hidden;
    color: var(--on-navy);
    background: var(--navy);
}
.hero-photo {
    position: absolute;
    inset: 0;
    background: #061B4A center/cover no-repeat;
}
.hero-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(6, 27, 74, 0.78) 0%, rgba(6, 27, 74, 0.42) 52%, rgba(6, 27, 74, 0.18) 100%),
        linear-gradient(180deg, rgba(6, 27, 74, 0.08) 0%, rgba(6, 27, 74, 0.35) 100%);
}
.hero-grid, .hero-orb, .hero-orb-1, .hero-orb-2, .hero-orb-3, .hero-mouse-glow { display: none !important; }

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.72fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
    width: var(--container);
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 0.9rem;
}
.hero-badge-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--cyan);
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.35rem);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1.08;
    color: #fff;
    max-width: 14ch;
    word-spacing: 0.06em;
}
.hero-subtitle {
    margin-top: 0.9rem;
    max-width: 34ch;
    color: var(--on-navy-muted);
    font-size: 1rem;
    line-height: 1.55;
}
.hero-journey { display: none; }
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.4rem;
}
.hero-trust { display: none; }

.hero-visual { position: relative; }
.hero-visual img {
    width: 100%;
    height: min(58vh, 420px);
    object-fit: cover;
    object-position: 22% 32%;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}
.hero-visual-caption {
    position: absolute;
    left: 1rem; bottom: 1rem;
    background: rgba(6, 27, 74, 0.78);
    color: #fff;
    font-size: 0.75rem;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
}

.hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 1.35rem;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.78);
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.hero-scroll span.chev {
    width: 22px; height: 36px;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    border-radius: 12px;
    position: relative;
}
.hero-scroll span.chev::after {
    content: '';
    position: absolute;
    top: 7px; left: 50%;
    width: 3px; height: 8px;
    margin-left: -1.5px;
    border-radius: 2px;
    background: var(--cyan);
    animation: scrollCue 1.6s var(--ease-out) infinite;
}
@keyframes scrollCue {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(10px); opacity: 0; }
}

/* ── Proof strip ─────────────────────────────────────────────────────────── */
.proof {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 1.35rem 0;
}
.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}
.proof-value {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.03em;
}
.proof-label {
    font-size: 0.75rem;
    color: var(--muted-2);
    margin-top: 0.15rem;
}

/* ── Solutions ───────────────────────────────────────────────────────────── */
.solutions { padding: var(--section-pad) 0; background: var(--paper); }
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9rem;
}
.solution-card {
    padding: 1.2rem 1.15rem 1.25rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}
.solution-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: #E8F4FC;
    color: var(--cyan-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 0.85rem;
}
.solution-title {
    font-family: var(--font-display);
    font-size: 1.02rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}
.solution-desc { font-size: 0.86rem; color: var(--muted); line-height: 1.55; }

/* ── Platform ────────────────────────────────────────────────────────────── */
.platform { padding: var(--section-pad) 0; background: var(--white); }
.platform-showcase {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1.5rem;
    align-items: stretch;
}
.platform-step {
    padding: 0.95rem 1rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    margin-bottom: 0.6rem;
    cursor: pointer;
    background: var(--paper);
}
.platform-step.active {
    background: var(--white);
    border-color: rgba(0, 119, 194, 0.35);
    box-shadow: var(--shadow-sm);
}
.platform-step-num {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--cyan-deep);
    letter-spacing: 0.08em;
}
.platform-step-title {
    font-family: var(--font-display);
    font-size: 0.98rem;
    font-weight: 600;
    margin: 0.15rem 0 0.25rem;
}
.platform-step-desc { font-size: 0.82rem; color: var(--muted); }
.platform-preview {
    overflow: hidden;
    border-radius: 16px;
    min-height: 360px;
    position: relative;
}
.platform-preview img {
    width: 100%; height: 100%;
    object-fit: cover;
    min-height: 360px;
    transition: opacity 0.25s;
}
.platform-preview-overlay {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 1rem 1.1rem;
    background: linear-gradient(transparent, rgba(6, 27, 74, 0.78));
    color: #fff;
}
.platform-preview-label { font-size: 0.86rem; font-weight: 600; }

/* ── Why ─────────────────────────────────────────────────────────────────── */
.why { padding: var(--section-pad) 0; background: var(--paper); }
.feature-matrix {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    background: var(--white);
    margin-bottom: 1.5rem;
}
.matrix-cell {
    padding: 0.72rem 0.9rem;
    font-size: 0.84rem;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
}
.matrix-cell.header {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--paper-2);
    color: var(--navy);
    font-weight: 600;
}
.matrix-cell.feature-name { color: var(--ink); font-weight: 550; }
.matrix-cell.highlight { background: #F0F8FF; }
.matrix-cell.check { color: var(--success); }
.matrix-cell.cross { color: #94A3B8; }
.why-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}
.why-feature {
    padding: 1.05rem 1rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
}
.why-feature-icon {
    width: 36px; height: 36px;
    border-radius: 9px;
    background: #E8F4FC;
    color: var(--cyan-deep);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 0.65rem;
}
.why-feature h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}
.why-feature p { font-size: 0.82rem; color: var(--muted); }

/* ── Industries ──────────────────────────────────────────────────────────── */
.industries { padding: var(--section-pad) 0; background: var(--white); }
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}
.industry-card {
    position: relative;
    min-height: 210px;
    border-radius: 14px;
    overflow: hidden;
}
.industry-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    position: absolute; inset: 0;
    min-height: 210px;
}
.industry-overlay {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 1rem;
    background: linear-gradient(transparent 20%, rgba(6, 27, 74, 0.88));
    color: #fff;
}
.industry-icon { display: none; }
.industry-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
}
.industry-desc { font-size: 0.78rem; color: #D5E0F2; margin-top: 0.2rem; }

/* ── Stats / testimonials / pricing ──────────────────────────────────────── */
.stats { padding: 2.25rem 0; background: var(--navy); }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.stat-card {
    background: transparent;
    border: 0;
    box-shadow: none;
    text-align: center;
    color: #fff;
}
.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--cyan);
}
.stat-label { font-size: 0.78rem; color: var(--on-navy-muted); margin-top: 0.2rem; }

.testimonials { padding: var(--section-pad) 0; background: var(--paper); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
}
.testimonial-card { padding: 1.2rem 1.15rem; }
.testimonial-quote { font-family: var(--font-display); font-size: 2rem; color: var(--cyan-deep); line-height: 1; }
.testimonial-text { font-size: 0.88rem; color: var(--muted); margin: 0.4rem 0 1rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.7rem; }
.testimonial-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    overflow: hidden;
    background: #E8F4FC;
    flex: none;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-weight: 600; font-size: 0.86rem; }
.testimonial-role { font-size: 0.74rem; color: var(--muted-2); }

.pricing { padding: var(--section-pad) 0; background: var(--white); }
.pricing-grid, .pricing-grid-duo, .pricing-grid-multi {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0.9rem;
    align-items: stretch;
}
.pricing-grid-multi {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.pricing-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.35rem 1.2rem 1.2rem;
    position: relative;
}
.pricing-card.featured { border-color: rgba(0, 119, 194, 0.35); }
.pricing-badge {
    position: absolute; top: 0.8rem; right: 0.8rem;
    background: var(--navy); color: #fff;
    font-size: 0.68rem; padding: 0.2rem 0.5rem; border-radius: 999px;
}
.pricing-tier { font-family: var(--font-display); font-size: 1.05rem; padding-right: 4.5rem; }
.pricing-amount { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--navy); margin: 0.35rem 0 0.1rem; }
.pricing-period, .pricing-desc { font-size: 0.8rem; color: var(--muted-2); margin-bottom: 0.55rem; min-height: 2.4em; }
.pricing-features {
    flex: 1 1 auto;
    margin: 0 0 1.15rem;
}
.pricing-features li {
    display: flex; align-items: flex-start; gap: 0.45rem;
    font-size: 0.82rem; color: var(--muted);
    margin-bottom: 0.35rem;
}
.pricing-features li.is-off { color: #94A3B8; }
.pricing-features i { color: var(--success); flex: none; margin-top: 0.12rem; }
.pricing-features li.is-off i { color: #C0262D; }
.pricing-card .btn {
    margin-top: auto;
    width: 100%;
}

/* ── CTA / contact / footer ──────────────────────────────────────────────── */
.cta { padding: var(--section-pad) 0; background: var(--paper); }
.cta-inner {
    position: relative;
    overflow: hidden;
    padding: clamp(1.8rem, 4vw, 2.6rem);
    background: var(--navy);
    color: #fff;
    border: 0;
}
.cta-inner::before {
    content: '';
    position: absolute; inset: 0;
    background: center/cover no-repeat;
    opacity: 0.22;
}
.cta-inner > * { position: relative; z-index: 1; }
.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    max-width: 18ch;
    color: #fff;
}
.cta-subtitle { color: var(--on-navy-muted); max-width: 38ch; margin: 0.7rem 0 1.2rem; font-size: 0.95rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; }

.contact { padding: var(--section-pad) 0; background: var(--white); }
.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 1.25rem;
}
.contact-item {
    display: flex; gap: 0.8rem;
    padding: 0.95rem 1rem;
    margin-bottom: 0.65rem;
}
.contact-icon {
    width: 36px; height: 36px;
    border-radius: 9px;
    background: #E8F4FC;
    color: var(--cyan-deep);
    display: flex; align-items: center; justify-content: center;
    flex: none;
}
.contact-item h4 { font-size: 0.88rem; margin-bottom: 0.15rem; }
.contact-item p, .contact-item a { font-size: 0.84rem; color: var(--muted); }
.contact-form { padding: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.form-group { margin-bottom: 0.75rem; }
.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 0.3rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    padding: 0.62rem 0.75rem;
    font: inherit;
    font-size: 0.88rem;
    color: var(--ink);
    background: var(--white);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 2px solid rgba(0, 119, 194, 0.35);
    border-color: var(--cyan-deep);
}

.footer {
    background: var(--navy);
    color: var(--on-navy-muted);
    padding: 2.4rem 0 1.2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 1.4rem;
}
.footer-brand img { height: 46px; width: auto; max-width: 220px; margin-bottom: 0.7rem; object-fit: contain; }
.footer-brand p { font-size: 0.84rem; max-width: 32ch; }
.social-links { display: flex; gap: 0.5rem; margin-top: 0.85rem; }
.social-links a {
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
}
.footer-title {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0.7rem;
}
.footer-links li { margin-bottom: 0.4rem; }
.footer-links a { font-size: 0.84rem; color: var(--on-navy-muted); }
.footer-links a:hover { color: #fff; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.6rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
}

.scroll-top {
    position: fixed;
    right: 1rem; bottom: 1rem;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: none;
    align-items: center; justify-content: center;
    z-index: 70;
    box-shadow: var(--shadow-md);
}
.scroll-top.visible { display: flex; }

/* ── Legal ───────────────────────────────────────────────────────────────── */
.legal-page {
    padding: calc(var(--nav-height) + 2rem) 0 var(--section-pad);
    min-height: 70vh;
}
.legal-page-header { margin-bottom: 2rem; max-width: 760px; }
.legal-page-meta { color: var(--muted); font-size: 0.9rem; }
.legal-page-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 1.5rem;
}
.legal-sidebar-nav { display: flex; flex-direction: column; gap: 0.3rem; position: sticky; top: calc(var(--nav-height) + 1rem); }
.legal-sidebar-link {
    display: block;
    padding: 0.55rem 0.8rem;
    border-radius: 10px;
    font-size: 0.86rem;
    color: var(--muted);
}
.legal-sidebar-link:hover, .legal-sidebar-link.is-active {
    color: var(--navy);
    background: #E8F4FC;
}
.legal-document { padding: clamp(1.2rem, 3vw, 2rem); }
.legal-disclaimer {
    padding: 0.85rem 1rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    background: #E8F4FC;
    color: var(--muted);
    font-size: 0.86rem;
}
.legal-section { margin-bottom: 1.5rem; }
.legal-section h2 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
}
.legal-section p, .legal-section li { color: var(--muted); font-size: 0.92rem; line-height: 1.7; }
.legal-section p + p { margin-top: 0.7rem; }
.legal-section ul { list-style: disc; padding-left: 1.2rem; margin-top: 0.5rem; }
.legal-section a { color: var(--cyan-deep); text-decoration: underline; }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .pricing-grid-multi { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 1024px) {
    .hero-content,
    .platform-showcase,
    .contact-grid,
    .footer-grid { grid-template-columns: 1fr; }
    .solutions-grid, .why-features { grid-template-columns: 1fr 1fr; }
    .industries-grid { grid-template-columns: 1fr 1fr; }
    .hero-visual { display: none; }
    .hero-title { max-width: 16ch; }
}
@media (max-width: 860px) {
    .nav-toggle { display: flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: var(--nav-height);
        left: 0; right: 0;
        background: #fff;
        border-bottom: 1px solid var(--line);
        flex-direction: column;
        align-items: stretch;
        padding: 0.75rem 1rem 1rem;
        box-shadow: var(--shadow-md);
    }
    .nav-links.open { display: flex; }
    .nav-cta { margin: 0.4rem 0 0; }
    .proof-grid, .stats-grid, .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .feature-matrix { grid-template-columns: 1.2fr 0.7fr 0.7fr; }
}
@media (max-width: 640px) {
    .solutions-grid, .why-features, .proof-grid, .stats-grid,
    .testimonials-grid, .industries-grid, .form-row,
    .pricing-grid, .pricing-grid-duo, .pricing-grid-multi { grid-template-columns: 1fr; }
    .hero { padding-bottom: 5rem; }
    .hero-actions, .cta-actions { flex-direction: column; }
    .hero-actions .btn, .cta-actions .btn { width: 100%; }
    .legal-page-layout { grid-template-columns: 1fr; }
    .legal-sidebar-nav { position: static; flex-direction: row; flex-wrap: wrap; }
    .footer-bottom { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
    .hero-scroll span.chev::after { animation: none; }
}
