/* ── Custom Properties ── */
:root {
    --bg-dark: #0d0f1e;
    --bg-dark-2: #161929;
    --bg-light: #f8fafc;
    --bg-card: #ffffff;
    --accent: #3a6fea;
    --accent-2: #4a8fd4;
    --accent-glow: rgba(58, 111, 234, 0.35);
    --text: #1e293b;
    --text-muted: #475569;
    --text-light: #f1f5f9;
    --text-dim: #a8b8cc;
    --success: #15803d;
    --disabled: #94a3b8;
    --border: #e2e8f0;
    --border-strong: #cbd5e1;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 2px 16px rgba(0,0,0,0.07);
    --shadow-sm: 0 1px 4px rgba(15,23,42,0.06);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);
    --shadow-focus: 0 0 0 4px rgba(58, 111, 234, 0.18);
    --nav-h: 64px;

    /* Spacing scale */
    --space-1: .25rem;
    --space-2: .5rem;
    --space-3: .75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;

    /* Type scale */
    --fs-xs: .78rem;
    --fs-sm: .88rem;
    --fs-base: 1rem;
    --fs-md: 1.05rem;
    --fs-lg: 1.15rem;
    --fs-xl: 1.4rem;
    --fs-2xl: 1.75rem;
    --fs-3xl: 2.5rem;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--bg-card);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }

/* ── Accessibility ── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--accent);
    color: #fff;
    padding: .5rem 1rem;
    border-radius: 0 0 var(--radius) var(--radius);
    font-weight: 600;
    z-index: 9999;
    transition: top .2s;
}
.skip-link:focus { top: 0; }

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ── Container ── */
.container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform .15s ease, box-shadow .2s ease, opacity .15s ease, background .15s ease, color .15s ease;
    text-decoration: none;
    line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
    background: linear-gradient(180deg, #6894ee 0%, var(--accent) 60%, #1858d8 100%);
    color: #fff;
    box-shadow:
        0 6px 24px var(--accent-glow),
        inset 0 1px 0 rgba(255,255,255,.22),
        inset 0 -1px 0 rgba(0,0,0,.10);
}
.btn-primary:hover {
    box-shadow:
        0 12px 40px var(--accent-glow),
        inset 0 1px 0 rgba(255,255,255,.22),
        inset 0 -1px 0 rgba(0,0,0,.10);
    opacity: .98;
}
.btn-ghost {
    background: rgba(255,255,255,.04);
    color: var(--text-light);
    border: 1.5px solid rgba(255,255,255,0.22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.btn-ghost:hover { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.09); }
.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}
.btn-outline:hover { background: var(--accent); color: #fff; }
.btn-lg { padding: .9rem 2.25rem; font-size: 1.05rem; }

/* ── Section layout ── */
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-light); }
.section-dark { background: var(--bg-dark-2); color: var(--text-light); }
.section-head { text-align: center; margin-bottom: 3rem; }
.section-head h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: .75rem;
    letter-spacing: -0.015em;
}
.section-head p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto;
}
.section-dark .section-head p { color: var(--text-dim); }
.accent-line {
    width: 48px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
    margin: .75rem auto 0;
}

/* ── Navigation ── */
#nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    z-index: 1000;
    transition: background .25s, box-shadow .25s;
}
#nav.scrolled {
    background: rgba(13,15,30,.97);
    box-shadow: 0 2px 24px rgba(0,0,0,.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.nav-logo img { height: 36px; width: auto; }
.nav-links {
    display: flex;
    align-items: center;
    gap: .25rem;
}
.nav-links a {
    color: rgba(255,255,255,.92);
    font-size: .92rem;
    font-weight: 500;
    padding: .45rem .85rem;
    border-radius: 6px;
    transition: color .15s, background .15s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav-links .nav-cta {
    background: var(--accent);
    color: #fff;
    margin-left: .5rem;
    padding: .45rem 1.25rem;
    border-radius: 50px;
}
.nav-links .nav-cta:hover { opacity: .9; background: var(--accent); }

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: .5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
#home {
    min-height: 100svh;
    min-height: 100vh;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: calc(var(--nav-h) + 3rem) 0 4rem;
}
#home::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 240px;
    background:
        radial-gradient(ellipse 50% 100% at 50% 100%, rgba(58,111,234,.08), transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .55;
    will-change: transform;
}
.orb-1 {
    width: 520px; height: 520px;
    background: radial-gradient(circle, #5b3fda 0%, transparent 70%);
    top: -200px; right: -180px;
    animation: floatOrb 12s ease-in-out infinite;
}
.orb-2 {
    width: 380px; height: 380px;
    background: radial-gradient(circle, #3a6fea 0%, transparent 70%);
    bottom: -160px; left: -160px;
    animation: floatOrb 16s ease-in-out infinite reverse;
}
.orb-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, #4a8fd4 0%, transparent 70%);
    top: 40%; left: 40%;
    animation: floatOrb 20s ease-in-out infinite 4s;
}
.hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 48px 48px;
    -webkit-mask-image: radial-gradient(ellipse 80% 65% at 50% 50%, #000 35%, transparent 95%);
            mask-image: radial-gradient(ellipse 80% 65% at 50% 50%, #000 35%, transparent 95%);
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0,0) scale(1); }
    33% { transform: translate(30px,-20px) scale(1.05); }
    66% { transform: translate(-20px,30px) scale(.95); }
}

@media (prefers-reduced-motion: reduce) {
    .orb { animation: none; }
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    padding: 0 1.5rem;
    margin: 0 auto;
    text-align: center;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.025));
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 50px;
    padding: .5rem 1.15rem;
    font-size: .82rem;
    color: #d8e2ee;
    margin-bottom: 1.75rem;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.10),
        0 6px 24px rgba(0,0,0,.20);
    letter-spacing: .005em;
    font-weight: 500;
}
.hero-eyebrow span {
    color: #ffd166;
    letter-spacing: 1.5px;
    font-size: .78rem;
    filter: drop-shadow(0 0 6px rgba(255,209,102,.4));
}
.hero-content h1 {
    font-size: clamp(2.4rem, 6vw, 4.1rem);
    font-weight: 800;
    line-height: 1.05;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    letter-spacing: -0.028em;
}
.gradient-text {
    background: linear-gradient(135deg, #88abf2 0%, #3a6fea 38%, #c2557a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-desc {
    font-size: 1.18rem;
    color: #c8d6e5;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.65;
    font-weight: 400;
}
.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.75rem;
}
.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    justify-content: center;
    max-width: 680px;
    margin: 0 auto;
}
.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
    border: 1px solid rgba(255,255,255,.10);
    color: #d2dbe7;
    font-size: .82rem;
    padding: .5rem 1rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
    transition: border-color .25s ease, color .25s ease, background .25s ease;
    position: relative;
    overflow: hidden;
    font-weight: 500;
}
.hero-pill svg { flex-shrink: 0; transition: color .25s ease; color: rgba(255,255,255,.6); }
.hero-pill:hover {
    border-color: rgba(58,111,234,.45);
    color: #b1c8f6;
    background: linear-gradient(145deg, rgba(58,111,234,.18), rgba(74,143,212,.06));
}
.hero-pill:hover svg { color: var(--accent); }

/* ── Trust bar ── */
.trust-bar {
    background: var(--bg-dark-2);
    border-bottom: 1px solid rgba(255,255,255,.07);
    padding: 1.25rem 0;
    text-align: center;
}
.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.trust-item {
    display: flex;
    align-items: baseline;
    gap: .5rem;
    color: #c8d6e5;
    font-size: .9rem;
    position: relative;
}
.trust-item + .trust-item::before {
    content: "";
    position: absolute;
    left: -1.25rem;
    top: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    transform: translateY(-50%);
}
.trust-item strong { color: #fff; font-size: 1.1rem; font-weight: 700; }

/* ── Industries strip ── */
.industries {
    background: var(--bg-dark);
    padding: 3rem 0 3.25rem;
    border-top: 1px solid rgba(255,255,255,.07);
    position: relative;
}
.industries::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 200px at 50% 0%, rgba(58,111,234,.06), transparent 70%);
    pointer-events: none;
}
.industries > .container { position: relative; }
.industries p {
    text-align: center;
    color: var(--text-dim);
    font-size: .76rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-weight: 600;
}
.industry-icons {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.industry-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .65rem;
    transition: transform .25s ease;
    cursor: default;
}
.industry-icon:hover { transform: translateY(-3px); }
.industry-icon-badge {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.015) 100%);
    border: 1px solid rgba(255,255,255,.09);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(232,236,245,.82);
    transition: border-color .25s ease, color .25s ease, background .25s ease, box-shadow .25s ease;
    position: relative;
    overflow: hidden;
}
.industry-icon-badge::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255,255,255,.08), transparent 40%);
    pointer-events: none;
    opacity: .8;
}
.industry-icon:hover .industry-icon-badge {
    color: #b1c8f6;
    background:
        linear-gradient(145deg, rgba(58,111,234,.22) 0%, rgba(74,143,212,.10) 100%);
    border-color: rgba(58,111,234,.55);
    box-shadow:
        0 12px 32px rgba(58,111,234,.22),
        inset 0 0 0 1px rgba(255,255,255,.04);
}
.industry-icon-badge svg {
    width: 26px;
    height: 26px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
    position: relative;
    z-index: 1;
}
.industry-icon span {
    font-size: .76rem;
    color: var(--text-dim);
    text-align: center;
    white-space: nowrap;
    transition: color .25s ease;
    letter-spacing: .02em;
    font-weight: 500;
}
.industry-icon:hover span { color: var(--text-light); }

/* ── Features grid ── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.feature-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(58,111,234,.30);
}
.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(58,111,234,.12), rgba(74,143,212,.08));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--accent);
}
.feature-card h3 {
    font-size: 1.02rem;
    font-weight: 700;
    margin-bottom: .5rem;
    color: var(--text);
    letter-spacing: -0.005em;
}
.feature-card p {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.feature-card.highlight {
    border-color: var(--accent);
    background: linear-gradient(135deg, #f1f5fd 0%, #fff 100%);
    box-shadow: 0 1px 0 rgba(58,111,234,.08);
}
.feature-badge {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: .2rem .6rem;
    border-radius: 50px;
    margin-bottom: .6rem;
}

/* ── Client Portal section ── */
.portal-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.portal-text h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.015em;
}
.portal-text p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}
.portal-list { margin-bottom: 2rem; }
.portal-list li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: .6rem 0;
    font-size: .97rem;
    color: var(--text-light);
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.portal-list li:last-child { border-bottom: none; }
.portal-list .check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: rgba(22,163,74,.12);
    color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.portal-mockup {
    background: linear-gradient(145deg, #1a1d30 0%, #0d0f1e 100%);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 24px 64px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.06);
}
.mockup-header {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.mockup-avatar {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    max-width: 40px;
    max-height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #c2557a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    align-self: center;
    line-height: 1;
}
.mockup-header div { flex: 1; }
.mockup-name { color: var(--text-light); font-weight: 600; font-size: .95rem; }
.mockup-sub { color: var(--text-dim); font-size: .78rem; }
.mockup-stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.mockup-stat {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 10px;
    padding: .85rem 1rem;
}
.mockup-stat-label { font-size: .72rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .2rem; }
.mockup-stat-value { font-size: 1.4rem; font-weight: 700; color: var(--text-light); }
.mockup-stat-value span { color: var(--accent); }
.mockup-appt {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 10px;
    padding: .85rem 1rem;
    display: flex;
    align-items: center;
    gap: .75rem;
}
.mockup-appt-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}
.mockup-appt-info { flex: 1; }
.mockup-appt-title { color: var(--text-light); font-size: .88rem; font-weight: 600; }
.mockup-appt-date { color: var(--text-dim); font-size: .76rem; }
.mockup-appt-badge {
    background: rgba(22,163,74,.18);
    color: #4ade80;
    font-size: .7rem;
    font-weight: 600;
    padding: .2rem .55rem;
    border-radius: 50px;
}

/* ── Testimonials ── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.testi-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.testi-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    border-color: rgba(58,111,234,.18);
}
.testi-stars { color: #f4c542; font-size: 1rem; letter-spacing: 1px; }
.testi-quote {
    font-size: .92rem;
    color: var(--text-muted);
    line-height: 1.7;
    flex: 1;
    font-style: italic;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}
.testi-initials {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #c2557a);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .88rem;
    flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: .9rem; }
.testi-company { font-size: .8rem; color: var(--text-muted); }
.capterra-link {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}
.capterra-link img { height: 52px; width: auto; border-radius: 8px; }

/* ── Pricing ── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.price-card {
    position: relative;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .2s ease, box-shadow .2s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(58,111,234,.10), var(--shadow);
}
.price-card.featured:hover {
    box-shadow: 0 0 0 4px rgba(58,111,234,.14), var(--shadow-lg);
}
.price-header {
    padding: 2rem 2rem 1.5rem;
    border-bottom: 1px solid var(--border);
}
.price-card.featured .price-header { background: linear-gradient(135deg, #f1f5fd 0%, #fff 100%); }
.price-tier { font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin-bottom: .35rem; }
.price-name { font-size: 1.5rem; font-weight: 800; color: var(--text); margin-bottom: .5rem; letter-spacing: -0.01em; }
.price-amount {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    letter-spacing: -0.02em;
}
.price-amount sup { font-size: 1.2rem; vertical-align: super; font-weight: 700; }
.price-amount sub { font-size: .9rem; font-weight: 500; color: var(--text-muted); }
.price-note { font-size: .83rem; color: var(--text-muted); margin-top: .4rem; }
.price-features {
    padding: 1.5rem 2rem;
    flex: 1;
}
.price-features li {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .5rem 0;
    font-size: .9rem;
    color: var(--text);
    border-bottom: 1px solid var(--bg-light);
}
.price-features li:last-child { border-bottom: none; }
.price-features .icon-yes { color: var(--success); flex-shrink: 0; }
.price-features .icon-no { color: var(--disabled); flex-shrink: 0; }
.price-cta { padding: 1.5rem 2rem; }
.price-cta .btn { width: 100%; justify-content: center; }
.pricing-note {
    text-align: center;
    margin-top: 2rem;
    font-size: .9rem;
    color: var(--text-muted);
}

/* ── Brief/Split sections ── */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.split-reversed > .split-text { order: 2; }
.split-reversed > .split-visual { order: 1; }

.split-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: .75rem;
    letter-spacing: -0.015em;
}
.split-text p { color: var(--text-muted); margin-bottom: 1.25rem; font-size: 1rem; }
.split-list li {
    display: flex;
    gap: .75rem;
    padding: .75rem 0;
    border-bottom: 1px solid var(--border);
}
.split-list li:last-child { border-bottom: none; }
.split-list .icon-wrap {
    width: 36px;
    height: 36px;
    background: rgba(58,111,234,.1);
    color: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.split-list h4 { font-size: .95rem; font-weight: 700; margin-bottom: .2rem; }
.split-list p { font-size: .88rem; color: var(--text-muted); margin: 0; }
.split-visual {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
}
.section-dark .split-visual {
    background: rgba(255,255,255,.04);
    border-color: rgba(255,255,255,.07);
}
.visual-icon-large {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(58,111,234,.2), rgba(74,143,212,.15));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin: 0 auto 1.25rem;
}
.split-visual h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: .5rem; }
.split-visual p { font-size: .92rem; color: var(--text-muted); }
.section-dark .split-visual h3 { color: var(--text-light); }
.section-dark .split-visual p { color: var(--text-dim); }

/* ── Video section ── */
.video-wrap {
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.youtube-player {
    display: block;
    position: relative;
    cursor: pointer;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}
.youtube-player img {
    position: absolute;
    top: -16.84%;
    left: 0;
    width: 100%;
    height: auto;
}
.youtube-player .play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 68px;
    height: 68px;
    background: rgba(0,0,0,.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, transform .2s;
}
.youtube-player:hover .play-btn { background: var(--accent); transform: translate(-50%,-50%) scale(1.08); }

/* ── FAQ ── */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}
details.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease;
}
details.faq-item:hover { border-color: var(--border-strong); }
details.faq-item[open] {
    border-color: rgba(58,111,234,.45);
    box-shadow: var(--shadow-sm);
}
summary.faq-q {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: .97rem;
    color: var(--text);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    user-select: none;
}
summary.faq-q::-webkit-details-marker { display: none; }
.faq-arrow {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: transform .25s ease, color .15s ease;
}
details[open] summary .faq-arrow { transform: rotate(180deg); color: var(--accent); }
.faq-answer {
    padding: 0 1.5rem 1.25rem;
    font-size: .91rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.faq-answer a { color: var(--accent); text-decoration: underline; }

/* ── Contact ── */
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.contact-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: .75rem;
    letter-spacing: -0.015em;
}
.contact-text p { color: var(--text-dim); margin-bottom: 1.25rem; }
.contact-text a:not(.btn) { color: var(--accent); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--text-dim); letter-spacing: .02em; }
.form-group input,
.form-group textarea {
    padding: .8rem 1rem;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 10px;
    color: var(--text-light);
    font: inherit;
    font-size: .92rem;
    transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
    resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.32); }
.form-group input:hover,
.form-group textarea:hover { background: rgba(255,255,255,.08); }
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: rgba(255,255,255,.09);
    outline: none;
    box-shadow: 0 0 0 4px rgba(58,111,234,.18);
}
.form-submit {
    background: var(--accent);
    color: #fff;
    padding: .85rem 2.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: opacity .15s, transform .15s, box-shadow .2s;
    align-self: flex-start;
    box-shadow: 0 4px 20px var(--accent-glow);
}
.form-submit:hover { opacity: .96; transform: translateY(-1px); box-shadow: 0 8px 28px var(--accent-glow); }
.form-note {
    font-size: .8rem;
    color: var(--text-dim);
    margin-top: -.25rem;
}
#form-success {
    display: none;
    background: rgba(22,163,74,.15);
    border: 1px solid rgba(22,163,74,.3);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    color: #4ade80;
    font-size: .92rem;
}

/* ── Footer ── */
footer {
    background: var(--bg-dark);
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 2.5rem 0;
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.footer-logo img { height: 32px; width: auto; }
.footer-copy {
    font-size: .82rem;
    color: var(--text-dim);
}
.footer-copy a { color: var(--text-dim); transition: color .15s ease; }
.footer-copy a:hover { color: var(--text-light); }
.footer-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}
.footer-links a {
    font-size: .85rem;
    color: var(--text-dim);
    transition: color .15s;
}
.footer-links a:hover { color: var(--text-light); }
.social-row {
    display: flex;
    gap: .75rem;
}
.social-row a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    transition: background .15s ease, color .15s ease, transform .15s ease;
}
.social-row a:hover { background: rgba(255,255,255,.12); color: var(--text-light); transform: translateY(-2px); }

/* ── Cookie consent ── */
#cookie-consent {
    display: none;
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    max-width: 520px;
    width: calc(100% - 3rem);
    background: #1e2237;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 1.25rem 1.5rem;
    z-index: 5000;
    color: var(--text-dim);
    font-size: .88rem;
}
.cookie-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.cookie-inner p { flex: 1; min-width: 200px; line-height: 1.55; }
.cookie-inner a { color: var(--accent); }
.cookie-accept {
    background: var(--accent);
    color: #fff;
    padding: .5rem 1.25rem;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    transition: opacity .15s ease;
}
.cookie-accept:hover { opacity: .92; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root { --nav-h: 56px; }
    .section { padding: 3.5rem 0; }
    .section-head { margin-bottom: 2.25rem; }
    .nav-links {
        display: none;
        position: absolute;
        top: var(--nav-h);
        left: 0; right: 0;
        background: rgba(13,15,30,.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 1rem;
        flex-direction: column;
        gap: .25rem;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: .75rem 1rem; border-radius: 8px; display: block; width: 100%; }
    .nav-links .nav-cta { margin-left: 0; margin-top: .25rem; text-align: center; }
    .nav-toggle { display: flex; }
    #nav { background: rgba(13,15,30,.97); }
    .hero-content h1 { font-size: 2.3rem; }
    .features-grid { grid-template-columns: 1fr; }
    .portal-split,
    .split-section,
    .contact-inner { grid-template-columns: 1fr; gap: 2rem; }
    .portal-split .portal-mockup { order: -1; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 460px; }
    .faq-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .trust-bar-inner { gap: 1.5rem; }
    .trust-item + .trust-item::before { display: none; }
}

@media (max-width: 480px) {
    .hero-content { padding: 0 1rem; }
    .industry-icon span { display: none; }
    .industry-icons { gap: 1.25rem; }
}

/* ── Utility ── */
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }
.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}
