/* asksigne — Apple-minimalisme. Mobile-first. */

:root {
    --white: #ffffff;
    --grey: #f5f5f7;
    --ink: #1d1d1f;
    --muted: #6e6e73;
    --line: #e3e3e6;
    --accent: #ff5500;
    --accent-soft: #fff1eb;
    --accent-ink: #e64d00;
    --radius: 18px;
    --max: 1080px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display",
        "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-feature-settings: "cv02", "cv03", "cv04", "cv11";
    color: var(--ink);
    background: var(--white);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.container {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
}

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

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
    padding: 11px 22px;
    border-radius: 980px;
    transition: opacity .25s var(--ease), background .25s var(--ease), transform .15s var(--ease);
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { opacity: .85; }
.btn-light { background: var(--grey); color: var(--ink); border-color: var(--line); }
.btn-light:hover { background: #ededf0; }
.btn-lg { font-size: 17px; padding: 15px 32px; }
.btn-block { display: flex; width: 100%; }

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--line);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
}
.logo { font-weight: 700; font-size: 19px; letter-spacing: -.02em; }
.logo-sm { font-size: 17px; }

.nav-desktop { display: none; gap: 26px; }
.nav-desktop a { font-size: 14px; color: var(--muted); transition: color .2s var(--ease); }
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a.is-active { color: var(--ink); font-weight: 500; }
.nav-mobile a.is-active { color: var(--ink); font-weight: 600; }

.header-right { display: flex; align-items: center; gap: 16px; }

.lang-switch { display: flex; gap: 4px; align-items: center; }
.lang-link {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--muted);
    padding: 4px 6px;
    border-radius: 6px;
    transition: color .2s var(--ease), background .2s var(--ease);
}
.lang-link:hover { color: var(--ink); }
.lang-link.is-active { color: var(--ink); background: var(--grey); }

/* Hide desktop login on mobile to save room */
.header-right > .btn-dark { display: none; }

/* Mobile menu toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
}
.menu-toggle span {
    display: block;
    height: 1.5px;
    width: 20px;
    background: var(--ink);
    transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.menu-toggle.is-open span:first-child { transform: translateY(3.25px) rotate(45deg); }
.menu-toggle.is-open span:last-child { transform: translateY(-3.25px) rotate(-45deg); }

.nav-mobile {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s var(--ease), padding .35s var(--ease);
    border-top: 1px solid transparent;
}
.nav-mobile.is-open {
    max-height: 360px;
    padding: 16px 24px 24px;
    border-top-color: var(--line);
}
.nav-mobile a:not(.btn) {
    font-size: 17px;
    padding: 10px 0;
    color: var(--ink);
}
.nav-mobile .btn-block { margin-top: 8px; }
.lang-switch-mobile { margin-top: 16px; }

/* ---------- Hero ---------- */
.hero {
    padding: 96px 0 80px;
    text-align: center;
}
.hero-title {
    font-size: 40px;
    line-height: 1.07;
    font-weight: 600;
    letter-spacing: -.03em;
    max-width: 800px;
    margin: 0 auto 24px;
}
.hero-sub {
    font-size: 19px;
    font-weight: 400;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.5;
}

/* ---------- Sections shared ---------- */
.kicker {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .02em;
    color: var(--muted);
    text-align: center;
    margin-bottom: 12px;
}
.section-title {
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -.02em;
    text-align: center;
    margin-bottom: 48px;
}

/* ---------- Values ---------- */
.values { padding: 80px 0; }
.value-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
}
.value { text-align: center; }
.value h3 {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -.01em;
    margin-bottom: 8px;
}
.value p { color: var(--muted); font-size: 17px; }

/* ---------- Privacy ---------- */
.privacy { padding: 40px 0 80px; }
.privacy-box {
    background: var(--grey);
    border-radius: var(--radius);
    padding: 56px 32px;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}
.privacy-box h2 {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -.02em;
    margin-bottom: 16px;
}
.privacy-box p { color: var(--muted); font-size: 18px; line-height: 1.55; }

/* ---------- Pricing ---------- */
.pricing { padding: 80px 0 100px; }
.price-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.plan {
    position: relative;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 36px 28px;
    background: var(--white);
    text-align: center;
}
.plan-featured { border-color: var(--ink); }
.badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ink);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .03em;
    padding: 5px 12px;
    border-radius: 980px;
}
.plan h3 { font-size: 20px; font-weight: 600; margin-bottom: 16px; }
.price { margin-bottom: 28px; display: flex; align-items: baseline; justify-content: center; gap: 4px; }
.price .amount { font-size: 40px; font-weight: 600; letter-spacing: -.03em; }
.price .per { font-size: 15px; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer {
    border-top: 1px solid var(--line);
    background: var(--grey);
    padding: 56px 0 32px;
}
.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px;
}
.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--muted);
    padding: 5px 0;
    transition: color .2s var(--ease);
}
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}
.footer-bottom p { font-size: 13px; color: var(--muted); }

/* ---------- Responsive (tablet / desktop) ---------- */
/* Desktop-header aktiveres først når det er plass til alle nav-punktene */
@media (min-width: 960px) {
    .nav-desktop { display: flex; }
    .header-right > .btn-dark { display: inline-flex; }
    .menu-toggle { display: none; }
    .nav-mobile { display: none; }
}

@media (min-width: 768px) {
    .container { padding: 0 40px; }

    .hero { padding: 130px 0 100px; }
    .hero-title { font-size: 64px; }
    .hero-sub { font-size: 21px; }

    .section-title { font-size: 40px; }
    .value-grid { grid-template-columns: repeat(3, 1fr); }

    .price-grid { grid-template-columns: repeat(3, 1fr); align-items: center; }
    .plan-featured { padding: 48px 28px; }

    .footer-inner { flex-direction: row; justify-content: space-between; }
    .footer-cols { grid-template-columns: repeat(3, minmax(120px, auto)); gap: 64px; }
}

@media (min-width: 1024px) {
    .hero-title { font-size: 72px; }
}

/* ============================================================
   SUBPAGES — features / pricing / documentation
   ============================================================ */

/* Hero-handlinger (forside) */
.hero-actions { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--grey); }

/* Generisk sidetopp */
.page-hero { padding: 80px 0 48px; text-align: center; }
.page-title {
    font-size: 38px;
    font-weight: 600;
    letter-spacing: -.03em;
    line-height: 1.1;
    margin-bottom: 16px;
}
.page-lead {
    font-size: 19px;
    color: var(--muted);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Venstrestilt kicker for innholdsblokker */
.kicker-left { text-align: left; }

/* Feature-blokker */
.feature-block { padding: 64px 0; }
.feature-block-alt { background: var(--grey); }
.block-title {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -.02em;
    margin-bottom: 12px;
    max-width: 640px;
}
.block-sub {
    font-size: 18px;
    color: var(--muted);
    max-width: 640px;
    line-height: 1.55;
    margin-bottom: 40px;
}

.feature-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.feature-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
}
/* "Plain"-varianten er nå et ekte hvitt kort — leser rent både på hvit og grå bakgrunn */
.feature-card-plain {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
}
.feature-block-alt .feature-card,
.feature-block-alt .feature-card-plain { background: var(--white); }
.feature-card h3 {
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -.01em;
    margin-bottom: 8px;
}
.feature-card p { color: var(--muted); font-size: 16px; line-height: 1.55; }

/* CTA-band */
.cta-band { padding: 80px 0; text-align: center; }
.cta-band h2 {
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -.02em;
    margin-bottom: 28px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- Pricing full ---------- */
.container-narrow { max-width: 720px; }
.pricing-full { padding: 24px 0 64px; }
.plans { display: grid; grid-template-columns: 1fr; gap: 20px; }
.plan-tall { text-align: left; display: flex; flex-direction: column; }
.plan-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .02em;
    color: var(--muted);
    margin-bottom: 8px;
}
.plan-tall h3 { font-size: 24px; font-weight: 600; margin-bottom: 8px; }
.plan-desc { color: var(--muted); font-size: 15px; line-height: 1.5; margin-bottom: 20px; min-height: 0; }
.plan-tall .price { justify-content: flex-start; margin-bottom: 2px; }
.price-note { font-size: 13px; color: var(--muted); margin-bottom: 20px; display: block; }
.plan-features { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.plan-features li {
    font-size: 15px;
    color: var(--ink);
    padding-left: 26px;
    position: relative;
    line-height: 1.4;
}
.plan-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 14px;
    height: 8px;
    border-left: 1.5px solid var(--ink);
    border-bottom: 1.5px solid var(--ink);
    transform: rotate(-45deg);
}

/* ---------- FAQ ---------- */
.faq { padding: 48px 0 96px; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
    border-top: 1px solid var(--line);
    padding: 22px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    font-size: 22px;
    font-weight: 300;
    color: var(--muted);
    transition: transform .25s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--muted); font-size: 16px; line-height: 1.6; margin-top: 14px; }

/* ============================================================
   DOCUMENTATION — Mintlify-style
   ============================================================ */
.docs { padding: 40px 0 96px; }
.docs-layout { display: block; }
.docs-sidebar { display: none; }
.docs-sidebar-title {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 16px;
}
.docs-nav { display: flex; flex-direction: column; gap: 2px; }
.docs-nav a {
    font-size: 14px;
    color: var(--muted);
    padding: 8px 12px;
    border-radius: 8px;
    transition: color .2s var(--ease), background .2s var(--ease);
}
.docs-nav a:hover { color: var(--ink); background: var(--grey); }

.docs-header { margin-bottom: 48px; }
.docs-content .page-title { font-size: 34px; }
.docs-section { margin-bottom: 56px; scroll-margin-top: 80px; }
.docs-section h2 {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -.02em;
    margin-bottom: 12px;
}
.docs-section > p { color: var(--muted); font-size: 17px; line-height: 1.6; margin-bottom: 24px; }

/* Steg (kom i gang) */
.steps { list-style: none; display: flex; flex-direction: column; gap: 24px; }
.steps li { display: flex; gap: 16px; align-items: flex-start; }
.step-num {
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}
.steps h3 { font-size: 17px; font-weight: 600; margin-bottom: 4px; }
.steps p { color: var(--muted); font-size: 15px; line-height: 1.5; }

.ordered { padding-left: 20px; display: flex; flex-direction: column; gap: 12px; }
.ordered li { font-size: 16px; line-height: 1.55; color: var(--ink); }

/* Kodeblokk */
.code-block {
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    background: #1d1d1f;
    margin-bottom: 20px;
}
.code-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    background: #262629;
    border-bottom: 1px solid #333;
}
.code-lang {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .04em;
    color: #a1a1a6;
}
.code-copy {
    font-size: 12px;
    font-weight: 500;
    color: #a1a1a6;
    background: transparent;
    border: 1px solid #444;
    border-radius: 7px;
    padding: 4px 12px;
    cursor: pointer;
    transition: color .2s var(--ease), border-color .2s var(--ease);
}
.code-copy:hover { color: #fff; border-color: #666; }
.code-block pre {
    margin: 0;
    padding: 18px 16px;
    overflow-x: auto;
}
.code-block code {
    font-family: "SF Mono", ui-monospace, "Cascadia Code", Menlo, Consolas, monospace;
    font-size: 13.5px;
    line-height: 1.6;
    color: #f5f5f7;
    white-space: pre;
}

/* Callout */
.callout {
    background: var(--grey);
    border-left: 3px solid var(--ink);
    border-radius: 8px;
    padding: 16px 18px;
    margin-top: 4px;
}
.callout p { font-size: 14.5px; color: var(--muted); line-height: 1.55; margin: 0; }

/* ---------- Responsive (subpages) ---------- */
@media (min-width: 768px) {
    .page-hero { padding: 110px 0 56px; }
    .page-title { font-size: 52px; }
    .feature-block { padding: 88px 0; }
    .block-title { font-size: 34px; }
    .cta-band h2 { font-size: 40px; }

    .feature-grid-2 { grid-template-columns: repeat(2, 1fr); }
    .feature-grid-3 { grid-template-columns: repeat(3, 1fr); }

    .hero-actions { flex-direction: row; justify-content: center; }

    .plans { grid-template-columns: repeat(3, 1fr); align-items: start; }
    .plan-featured { padding-top: 48px; }

    /* Docs: to-kolonners layout med sticky sidebar */
    .docs-layout {
        display: grid;
        grid-template-columns: 220px 1fr;
        gap: 56px;
        align-items: start;
    }
    .docs-sidebar {
        display: block;
        position: sticky;
        top: 80px;
    }
    .docs-content .page-title { font-size: 40px; }
}

@media (min-width: 1024px) {
    .page-title { font-size: 60px; }
}

/* ============================================================
   V2 — selling sections, calculator, testimonials, about, weather
   ============================================================ */

/* Hero badge */
.hero-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    background: var(--grey);
    border: 1px solid var(--line);
    border-radius: 980px;
    padding: 6px 14px;
    margin-bottom: 24px;
}

/* Section sub (under section-title) */
.section-sub {
    text-align: center;
    font-size: 18px;
    color: var(--muted);
    max-width: 560px;
    margin: -32px auto 40px;
    line-height: 1.5;
}

/* Social proof strip */
.proof { padding: 32px 0 8px; }
.proof-label {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
}
.proof-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 36px;
}
.proof-logos span {
    font-size: 18px;
    font-weight: 600;
    color: #c2c2c7;
    letter-spacing: -.01em;
}

/* How it works */
.how { padding: 72px 0; }
.how-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
.how-step { text-align: center; }
.how-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}
.how-step h3 { font-size: 20px; font-weight: 600; margin-bottom: 8px; letter-spacing: -.01em; }
.how-step p { color: var(--muted); font-size: 16px; line-height: 1.5; max-width: 320px; margin: 0 auto; }

/* Stats */
.stats { padding: 72px 0; background: var(--grey); }
.stats-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
.stat { text-align: center; }
.stat-num {
    display: block;
    font-size: 52px;
    font-weight: 600;
    letter-spacing: -.04em;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}
.stat p { color: var(--muted); font-size: 15px; line-height: 1.55; max-width: 320px; margin: 0 auto; }

/* Lead calculator */
.calc { padding: 80px 0; }
.calc-card {
    background: var(--grey);
    border-radius: var(--radius);
    padding: 32px 24px;
    margin-top: 8px;
}
.calc-control { margin-bottom: 28px; }
.calc-control label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    margin-bottom: 6px;
}
.calc-control output {
    display: block;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -.02em;
    margin-bottom: 12px;
}
.calc-control input[type=range] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 4px;
    background: #d8d8dd;
    outline: none;
}
.calc-control input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--ink);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,.18);
}
.calc-control input[type=range]::-moz-range-thumb {
    width: 26px; height: 26px; border: none; border-radius: 50%;
    background: var(--ink); cursor: pointer;
}
.calc-result {
    background: var(--white);
    border-radius: 14px;
    padding: 24px;
    text-align: center;
    margin-bottom: 20px;
}
.calc-result-label { display: block; font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 8px; }
.calc-result-num {
    display: block;
    font-size: 44px;
    font-weight: 600;
    letter-spacing: -.03em;
    line-height: 1.05;
    margin-bottom: 10px;
}
.calc-leads { font-size: 14px; color: var(--muted); }
.calc-leads strong { color: var(--ink); }
.calc-note { font-size: 12px; color: var(--muted); margin-top: 14px; line-height: 1.5; }

/* Testimonials */
.tst { padding: 80px 0; }
.tst-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.tst-card {
    background: var(--grey);
    border-radius: var(--radius);
    padding: 28px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.tst-card blockquote {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: -.01em;
}
.tst-card figcaption { display: flex; flex-direction: column; gap: 2px; }
.tst-name { font-weight: 600; font-size: 15px; }
.tst-role { font-size: 13px; color: var(--muted); }

/* About story */
.about-story { padding: 24px 0 56px; }
.story-p { font-size: 19px; line-height: 1.6; color: #333; margin-bottom: 20px; }

/* Weather */
.weather { padding: 64px 0; background: var(--grey); }
.weather-grid { display: grid; grid-template-columns: 1fr; gap: 16px; max-width: 640px; margin: 0 auto; }
.weather-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.weather-emoji { font-size: 44px; line-height: 1; }
.weather-meta { display: flex; flex-direction: column; }
.weather-city { font-size: 15px; color: var(--muted); font-weight: 500; }
.weather-temp { font-size: 34px; font-weight: 600; letter-spacing: -.03em; }
.weather-offline { font-size: 15px; font-weight: 400; color: var(--muted); }

/* Team */
.team { padding: 80px 0; }
.team-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.team-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
}
.avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    letter-spacing: -.01em;
}
.team-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 2px; }
.team-role { display: block; font-size: 14px; font-weight: 500; margin-bottom: 2px; }
.team-city { display: block; font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.team-card p { font-size: 15px; color: var(--muted); line-height: 1.5; }

/* Easter egg overlay */
.egg {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.4);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s var(--ease), visibility .3s var(--ease);
    padding: 24px;
}
.egg.is-open { opacity: 1; visibility: visible; }
.egg-card {
    background: var(--white);
    border-radius: 22px;
    padding: 40px 32px;
    text-align: center;
    max-width: 360px;
    transform: scale(.9) translateY(10px);
    transition: transform .35s var(--ease);
    box-shadow: 0 24px 60px rgba(0,0,0,.25);
}
.egg.is-open .egg-card { transform: scale(1) translateY(0); }
.egg-emoji { font-size: 48px; margin-bottom: 16px; }
.egg-card p { font-size: 17px; line-height: 1.45; font-weight: 500; }

/* ---------- Responsive (v2) ---------- */
@media (min-width: 768px) {
    .how-grid { grid-template-columns: repeat(3, 1fr); }
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
    .tst-grid { grid-template-columns: repeat(3, 1fr); }
    .weather-grid { grid-template-columns: repeat(2, 1fr); max-width: none; }
    .team-grid { grid-template-columns: repeat(3, 1fr); }
    .calc-card { padding: 40px; }
    .stat-num { font-size: 60px; }
}

/* ============================================================
   INTEGRATIONS PAGE
   ============================================================ */
.int-card { position: relative; display: flex; flex-direction: column; }
.int-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px;
}
.int-card h3 { font-size: 20px; margin-bottom: 8px; }

/* Coming soon-kort: dempet, med badge */
.int-card-soon { opacity: .72; }
.int-card-soon:hover { opacity: 1; transition: opacity .25s var(--ease); }
.soon-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--muted);
    background: var(--grey);
    border: 1px solid var(--line);
    border-radius: 980px;
    padding: 3px 10px;
}
.feature-block-alt .soon-badge { background: var(--white); }

/* Kunnskap inn — sjekkliste */
.know-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 8px; }
.know-item { display: flex; gap: 14px; align-items: flex-start; }
.know-check {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--ink);
    position: relative;
    margin-top: 2px;
}
.know-check::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 6px;
    width: 7px;
    height: 12px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
}
.know-item h3 { font-size: 17px; font-weight: 600; margin-bottom: 2px; }
.know-item p { color: var(--muted); font-size: 15px; line-height: 1.5; }

@media (min-width: 768px) {
    .know-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 48px; }
}

/* ============================================================
   ACCENT — subtil oransje (#ff5500). Hvit/svart forblir basen.
   ============================================================ */

/* Kickers: oransje, gir varme uten å rope */
.kicker { color: var(--accent); }

/* "Mest populær"-badge på pris-kort */
.badge { background: var(--accent); }

/* Hero-badge får en liten oransje prikk foran teksten */
.hero-badge { display: inline-flex; align-items: center; gap: 8px; }
.hero-badge::before {
    content: "";
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--accent);
    flex: 0 0 auto;
}

/* Statistikk-tall: positiv vekst i oransje */
.stat-num { color: var(--ink); }

/* Kalkulator-resultat i oransje for å trekke blikket */
.calc-result-num { color: var(--accent); }

/* Lenker i prosatekst (callouts, faq) */
.callout { border-left-color: var(--accent); }

/* Aktiv språkvelger får et hint av oransje */
.lang-link.is-active { color: var(--accent); background: var(--accent-soft); }

/* Ghost-knapp hover med varm kant */
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-ink); }

/* Plan-featured ramme i oransje i stedet for svart */
.plan-featured { border-color: var(--accent); }

/* Steg-tall (how it works / docs) i oransje */
.how-num, .step-num { background: var(--accent); }

/* ============================================================
   NAVBAR v2 — produkt-dropdown + accent CTA
   ============================================================ */
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-ink); }
.btn-sm { font-size: 14px; padding: 9px 18px; }

.header-cta { display: none; }

/* Dropdown */
.nav-dd { position: relative; }
.nav-dd-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-family: inherit;
    color: var(--muted);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: color .2s var(--ease);
}
.nav-dd-btn:hover, .nav-dd-btn.is-active { color: var(--ink); }
.nav-dd-caret { transition: transform .25s var(--ease); }
.nav-dd-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 8px;
    min-width: 200px;
    box-shadow: 0 12px 40px rgba(0,0,0,.1);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s var(--ease);
    z-index: 60;
}
.nav-dd:hover .nav-dd-menu,
.nav-dd:focus-within .nav-dd-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav-dd:hover .nav-dd-caret { transform: rotate(180deg); }
.nav-dd-menu a {
    display: block;
    font-size: 14px;
    color: var(--ink);
    padding: 9px 12px;
    border-radius: 9px;
    transition: background .15s var(--ease);
}
.nav-dd-menu a:hover { background: var(--grey); }
.nav-dd-menu a.is-active { color: var(--accent); }

/* En liten usynlig bro så musen ikke mister menyen */
.nav-dd::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 16px;
}

/* Mobil-meny grupper */
.nav-mobile-group {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 8px 0 4px;
}
.nav-mobile-sub { padding-left: 12px !important; }

/* ============================================================
   MOCKUPS — produkt-i-aksjon (ren CSS, ingen bilder)
   ============================================================ */
.mock {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,.07);
    padding: 20px;
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
}

/* --- Chat-mockup --- */
.mock-chat-head { display: flex; align-items: center; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.mock-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--accent); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 600; flex: 0 0 auto;
}
.mock-chat-id { display: flex; flex-direction: column; line-height: 1.2; }
.mock-chat-id strong { font-size: 15px; }
.mock-chat-status { font-size: 11px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--accent); }
.mock-takeover {
    margin-left: auto;
    font-size: 12px; font-weight: 500;
    background: var(--ink); color: #fff;
    padding: 6px 12px; border-radius: 980px;
}
.mock-chat-body { display: flex; flex-direction: column; gap: 10px; padding-top: 16px; }
.bubble {
    max-width: 80%;
    font-size: 14px;
    line-height: 1.45;
    padding: 11px 14px;
    border-radius: 16px;
}
.bubble-user { align-self: flex-end; background: var(--grey); border-bottom-right-radius: 5px; }
.bubble-ai {
    align-self: flex-start;
    background: linear-gradient(135deg, var(--accent), #ff7a33);
    color: #fff;
    border-bottom-left-radius: 5px;
}
.bubble-sm { font-size: 13px; }
.mock-lead-pill {
    align-self: flex-start;
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 500;
    background: var(--grey);
    color: var(--muted);
    padding: 8px 14px;
    border-radius: 980px;
}
.mock-lead-pill .tick {
    display: inline-flex; align-items: center; justify-content: center;
    width: 18px; height: 18px; border-radius: 50%;
    background: var(--ink); color: #fff; font-size: 11px;
}

/* --- Kunnskapskilder-mockup --- */
.mock-sources { display: flex; flex-direction: column; gap: 12px; background: transparent; border: none; box-shadow: none; }
.src-row {
    display: flex; align-items: center; gap: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,.05);
    padding: 16px 18px;
}
.src-ico {
    width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 18px; flex: 0 0 auto;
}
.src-w { background: #dbe7ff; color: #2b5bd7; }
.src-s { background: #d7f5e3; color: #1f9d57; }
.src-n { background: #ececf0; color: #1d1d1f; }
.src-meta { display: flex; flex-direction: column; line-height: 1.3; }
.src-meta strong { font-size: 15px; }
.src-ok { font-size: 12px; font-weight: 600; letter-spacing: .03em; text-transform: uppercase; color: #1f9d57; }
.src-sync { font-size: 12px; font-weight: 600; letter-spacing: .03em; text-transform: uppercase; color: var(--accent); }

/* --- Workflow-mockup --- */
.mock-flow {
    position: relative;
    background: #1d1d1f;
    border: none;
    padding: 28px;
    min-height: 220px;
}
.mock-flow .node {
    border-radius: 16px;
    padding: 16px 18px;
    width: 64%;
}
.node-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: .06em; margin-bottom: 6px; }
.node strong { font-size: 16px; color: #fff; }
.node-trigger { background: #2c2c2e; }
.node-trigger .node-label { color: #8e8e93; }
.node-action {
    background: var(--accent);
    margin-left: auto;
    margin-top: 70px;
    box-shadow: 0 0 40px rgba(255,85,0,.45);
}
.node-action .node-label { color: rgba(255,255,255,.8); }
.node-emoji { font-size: 14px; }
.node-link { position: absolute; top: 72px; left: 30%; width: 90px; height: 70px; }
.node-link line { stroke: #555; stroke-width: 1.5; }

/* --- Leads-graf-mockup --- */
.mock-chart { padding: 24px; }
.chart-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; }
.chart-kicker { display: block; font-size: 12px; font-weight: 700; letter-spacing: .05em; color: var(--muted); margin-bottom: 4px; }
.chart-num { font-size: 44px; font-weight: 700; letter-spacing: -.03em; line-height: 1; }
.chart-delta { font-size: 16px; font-weight: 700; color: var(--accent); }
.chart-bars { display: flex; align-items: flex-end; gap: 8px; height: 130px; }
.bar { flex: 1; background: var(--grey); border-radius: 6px 6px 4px 4px; }
.bar-hi { background: var(--accent); box-shadow: 0 0 24px rgba(255,85,0,.4); }

/* Mockup-i-seksjon layout (tekst + bilde side om side) */
.split { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.split-text h2 { font-size: 28px; font-weight: 600; letter-spacing: -.02em; margin-bottom: 14px; }
.split-text p { font-size: 18px; color: var(--muted); line-height: 1.55; }
.split-list { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.split-list li { font-size: 16px; padding-left: 26px; position: relative; }
.split-list li::before {
    content: ""; position: absolute; left: 0; top: 6px;
    width: 14px; height: 8px;
    border-left: 1.5px solid var(--accent); border-bottom: 1.5px solid var(--accent);
    transform: rotate(-45deg);
}

@media (min-width: 768px) {
    .header-cta { display: inline-flex; }
    .split { grid-template-columns: 1fr 1fr; gap: 56px; }
    .split-reverse .split-text { order: 2; }
}

/* ============================================================
   V3 — hero mockup, steps-lg, strat/result cards, contact, coming-soon
   ============================================================ */

/* Hero med mockup under */
.hero-mock { margin-top: 56px; }

/* Store steg (how it works) */
.steps-lg li { padding: 18px 0; border-bottom: 1px solid var(--line); }
.steps-lg li:last-child { border-bottom: none; }
.steps-lg .step-num { width: 34px; height: 34px; font-size: 15px; }
.steps-lg h3 { font-size: 19px; }
.steps-lg p { font-size: 16px; }
.hotpath-total {
    margin-top: 20px;
    font-size: 17px;
    font-weight: 600;
    color: var(--accent);
}

/* Strategi-kort (lead capture) */
.strat-card { display: flex; gap: 16px; align-items: flex-start; }
.strat-num {
    flex: 0 0 auto;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent-ink);
    font-weight: 600; font-size: 15px;
    display: flex; align-items: center; justify-content: center;
}
.trig-grid { margin-top: 40px; grid-column: 1 / -1; }

/* Use case-kort med liste */
.usecase-card { display: flex; flex-direction: column; }
.usecase-list { margin-top: 18px; }

/* Resultat-kort (før/etter) */
.result-card { display: flex; flex-direction: column; gap: 14px; }
.result-line { display: flex; gap: 12px; align-items: flex-start; }
.result-k {
    flex: 0 0 auto;
    width: 22px; height: 22px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700;
    background: var(--grey); color: var(--muted);
    margin-top: 2px;
}
.result-line p { font-size: 15px; color: var(--muted); line-height: 1.5; }
.result-win {
    margin-top: 6px;
    font-size: 18px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: -.01em;
}

/* ---------- Contact ---------- */
.contact { padding: 24px 0 96px; }
.contact-layout { display: grid; grid-template-columns: 1fr; gap: 48px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field span { font-size: 14px; font-weight: 500; color: var(--ink); }
.field input, .field textarea {
    font-family: inherit;
    font-size: 16px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px 14px;
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}
.field textarea { resize: vertical; }
.contact-msg { font-size: 15px; padding: 12px 14px; border-radius: 10px; margin-top: 4px; }
.contact-msg-ok { background: var(--accent-soft); color: var(--accent-ink); }
.contact-msg-err { background: #fdeaea; color: #c0392b; }
.contact-side { display: flex; flex-direction: column; gap: 32px; }
.contact-block { }
.contact-or { font-size: 14px; color: var(--muted); margin-bottom: 6px; }
.contact-email { font-size: 20px; font-weight: 600; color: var(--accent); letter-spacing: -.01em; }
.contact-h { font-size: 14px; font-weight: 600; margin-bottom: 14px; }
.office { display: flex; align-items: center; gap: 12px; font-size: 16px; padding: 6px 0; }
.office-emoji { font-size: 22px; }

@media (min-width: 768px) {
    .contact-layout { grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: start; }
}

/* ---------- Coming soon ---------- */
.cs-body { background: var(--white); }
.cs {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    background:
        radial-gradient(60% 50% at 50% 0%, var(--accent-soft) 0%, transparent 70%),
        var(--white);
}
.cs-inner { max-width: 520px; text-align: center; }
.cs-logo { display: inline-block; font-size: 22px; margin-bottom: 28px; }
.cs-badge { margin-bottom: 22px; }
.cs-title { font-size: 38px; font-weight: 600; letter-spacing: -.03em; line-height: 1.1; margin-bottom: 16px; }
.cs-sub { font-size: 18px; color: var(--muted); line-height: 1.55; margin-bottom: 32px; }
.cs-count { display: flex; justify-content: center; gap: 14px; margin-bottom: 32px; }
.cs-unit {
    background: var(--grey);
    border-radius: 14px;
    padding: 14px 8px;
    min-width: 64px;
}
.cs-n { display: block; font-size: 30px; font-weight: 700; letter-spacing: -.02em; line-height: 1; }
.cs-l { display: block; font-size: 12px; color: var(--muted); margin-top: 4px; text-transform: uppercase; letter-spacing: .05em; }
.cs-form { display: flex; flex-direction: column; gap: 12px; max-width: 380px; margin: 0 auto; }
.cs-input {
    font-family: inherit; font-size: 16px;
    border: 1px solid var(--line); border-radius: 980px;
    padding: 14px 20px; text-align: center;
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.cs-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.cs-msg { font-size: 15px; margin-top: 16px; }
.cs-msg-ok { color: var(--accent-ink); }
.cs-msg-err { color: #c0392b; }
.cs-lang { display: flex; justify-content: center; gap: 6px; margin-top: 40px; }

@media (min-width: 600px) {
    .cs-form { flex-direction: row; }
    .cs-input { flex: 1; text-align: left; }
    .cs-title { font-size: 46px; }
}

/* ============================================================
   V4 — fancy: mørk seksjon med lys, scroll-reveal, smooth nav
   ============================================================ */

/* ---------- Mørk manifest-seksjon med spotlight ---------- */
.dark-band {
    position: relative;
    overflow: hidden;
    background: #0a0a0b;
    color: #fff;
    padding: 110px 0;
    text-align: center;
}
/* Lys som lekker inn ovenfra — den «fancy» gløden */
.dark-band::before {
    content: "";
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(255,85,0,.28) 0%, rgba(255,85,0,.08) 35%, transparent 65%);
    pointer-events: none;
    filter: blur(20px);
}
/* Et ekstra, mykt lyspunkt nede til høyre */
.dark-glow {
    position: absolute;
    right: -10%;
    bottom: -30%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(120,90,255,.16) 0%, transparent 60%);
    pointer-events: none;
}
.dark-band .container { position: relative; z-index: 1; }
.kicker-dark { color: var(--accent); }
.dark-title {
    font-size: 34px;
    font-weight: 600;
    letter-spacing: -.03em;
    line-height: 1.12;
    max-width: 720px;
    margin: 8px auto 20px;
    background: linear-gradient(180deg, #fff 0%, #c9c9cf 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.dark-line {
    font-size: 19px;
    line-height: 1.6;
    color: #a1a1a6;
    max-width: 600px;
    margin: 0 auto 48px;
}
.dark-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 720px;
    margin: 0 auto 48px;
}
.dark-stat-n {
    display: block;
    font-size: 46px;
    font-weight: 700;
    letter-spacing: -.04em;
    line-height: 1;
    color: #fff;
    margin-bottom: 8px;
    text-shadow: 0 0 30px rgba(255,85,0,.4);
}
.dark-stat-t { font-size: 14px; color: #8e8e93; letter-spacing: .01em; }

/* ---------- Scroll-reveal ---------- */
[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
    will-change: opacity, transform;
}
[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}
/* Trygg fallback: hvis JS er av eller bruker vil ha mindre bevegelse */
@media (prefers-reduced-motion: reduce) {
    [data-reveal] { opacity: 1; transform: none; transition: none; }
}
.no-js [data-reveal] { opacity: 1; transform: none; }

/* ---------- Smooth nav (skygge + komprimering ved scroll) ---------- */
.site-header {
    transition: box-shadow .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.site-header.is-scrolled {
    box-shadow: 0 1px 24px rgba(0,0,0,.07);
    border-bottom-color: transparent;
    background: rgba(255,255,255,.92);
}
/* Litt mer luft som krymper når man scroller */
.header-inner { transition: height .3s var(--ease); }
.site-header.is-scrolled .header-inner { height: 52px; }

/* Mykere knappe-løft */
.btn { transition: opacity .25s var(--ease), background .25s var(--ease), transform .15s var(--ease), box-shadow .25s var(--ease); }
.btn-accent:hover { box-shadow: 0 8px 24px rgba(255,85,0,.3); transform: translateY(-1px); }
.btn-dark:hover { transform: translateY(-1px); }

/* Mockup-kort hever seg mykt når man holder over */
.mock { transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.split-media:hover .mock { transform: translateY(-4px); box-shadow: 0 28px 60px rgba(0,0,0,.1); }

@media (min-width: 768px) {
    .dark-band { padding: 140px 0; }
    .dark-title { font-size: 46px; }
    .dark-stats { grid-template-columns: repeat(3, 1fr); }
    .dark-stat-n { font-size: 54px; }
}

/* ============================================================
   V5 — store seksjoner, bilder, sterk copy-layout
   ============================================================ */

/* Eyebrow (erstatter/utfyller kicker i store seksjoner) */
.eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
}
.eyebrow-light { color: #ff9a66; }

/* Glass-knapp (på mørk bakgrunn) */
.btn-glass {
    background: rgba(255,255,255,.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,.22);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.btn-glass:hover { background: rgba(255,255,255,.16); transform: translateY(-1px); }

/* ---------- BIG HERO ---------- */
.bighero {
    position: relative;
    overflow: hidden;
    background: #08080a;
    color: #fff;
    text-align: center;
    padding: 120px 0 90px;
}
.bighero-bg {
    position: absolute; inset: 0;
    background-image: url('/assets/img/hero-bg.svg');
    background-size: cover; background-position: center;
}
.bighero-bg::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(8,8,10,.2) 0%, rgba(8,8,10,.65) 75%, #08080a 100%);
}
.bighero-inner { position: relative; z-index: 1; }
.bighero-title {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: -.035em;
    line-height: 1.06;
    max-width: 820px;
    margin: 0 auto 22px;
    background: linear-gradient(180deg,#fff 0%, #cfcfd6 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.bighero-sub {
    font-size: 19px; line-height: 1.55; color: #b4b4ba;
    max-width: 620px; margin: 0 auto 32px;
}
.bighero-trust { font-size: 13px; color: #8a8a90; margin-top: 18px; }
.bighero-mock { margin-top: 56px; }
.bighero .hero-actions { justify-content: center; }

/* ---------- BIG SECTIONS (text + media) ---------- */
.bigsec { padding: 88px 0; }
.bigsec-alt { background: var(--grey); }
.bigsec-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
.bigsec-title {
    font-size: 32px; font-weight: 600; letter-spacing: -.03em;
    line-height: 1.12; margin-bottom: 20px;
}
.bigsec-body { font-size: 18px; line-height: 1.62; color: var(--muted); }
.bigsec-list { list-style: none; margin-top: 26px; display: flex; flex-direction: column; gap: 14px; }
.bigsec-list li { font-size: 16px; line-height: 1.45; padding-left: 30px; position: relative; }
.bigsec-list li::before {
    content: ""; position: absolute; left: 0; top: 3px;
    width: 18px; height: 18px; border-radius: 50%;
    background: var(--accent-soft);
}
.bigsec-list li::after {
    content: ""; position: absolute; left: 6px; top: 8px;
    width: 6px; height: 9px;
    border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
    transform: rotate(45deg);
}
.bigsec-list-light li { color: #d4d4da; }
.bigsec-list-light li::before { background: rgba(255,255,255,.12); }
.bigsec-list-light li::after { border-color: #ff9a66; }

.bigsec-head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.bigsec-title-center, .bigsec-body-center { text-align: center; }
.bigsec-body-center { margin: 0 auto; }

/* Bilde-kort (når vi ikke har mockup) */
.bigsec-media { display: flex; justify-content: center; }
.img-card {
    width: 100%; max-width: 460px; min-height: 320px;
    border-radius: 22px; overflow: hidden;
    display: flex; align-items: flex-end;
    padding: 32px;
    box-shadow: 0 24px 60px rgba(0,0,0,.14);
}
.img-nordic { background-image: url('/assets/img/mesh-dark.svg'); background-size: cover; }
.img-quote { font-size: 22px; font-weight: 600; line-height: 1.3; color: #fff; letter-spacing: -.01em; }

/* Shield (trust) */
.shield {
    width: 180px; height: 180px; border-radius: 40px;
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
    display: flex; align-items: center; justify-content: center;
    font-size: 80px;
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 0 60px rgba(46,110,142,.4);
}

/* ---------- DARK BAND with image bg ---------- */
.dark-band-img .dark-band-bg, .dark-band-bg {
    position: absolute; inset: 0;
    background-image: url('/assets/img/mesh-dark.svg');
    background-size: cover; background-position: center;
}
.dark-band-bg-nordic { background-image: url('/assets/img/nordic.svg'); }
.dark-band-img .container, .dark-band-nordic .container { position: relative; z-index: 1; }
.dark-band-img::before { display: none; } /* bytt glød mot bilde */
.dark-title-left { text-align: left; margin-left: 0; }
.dark-line-left { text-align: left; margin-left: 0; }

/* Store stats (proof) */
.bigstats { display: grid; grid-template-columns: 1fr; gap: 40px; max-width: 980px; margin: 8px auto 0; }
.bigstat { text-align: center; }
.bigstat-n {
    display: block; font-size: 56px; font-weight: 700; letter-spacing: -.04em;
    line-height: 1; color: #fff; margin-bottom: 10px;
    text-shadow: 0 0 36px rgba(255,85,0,.5);
}
.bigstat-t { display: block; font-size: 16px; font-weight: 600; color: #ff9a66; margin-bottom: 10px; }
.bigstat p { font-size: 15px; color: #9a9aa0; line-height: 1.5; max-width: 280px; margin: 0 auto; }

/* How-grid large */
.how-grid-lg .how-step { padding: 8px; }

/* ---------- FINAL CTA ---------- */
.finalcta {
    position: relative; overflow: hidden;
    background: #08080a; color: #fff;
    text-align: center; padding: 110px 0;
}
.finalcta-bg {
    position: absolute; inset: 0;
    background-image: url('/assets/img/hero-bg.svg');
    background-size: cover; background-position: center bottom;
    opacity: .9;
}
.finalcta-bg::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(8,8,10,.55), rgba(8,8,10,.4)); }
.finalcta .container { position: relative; z-index: 1; }
.finalcta-title {
    font-size: 34px; font-weight: 600; letter-spacing: -.03em; line-height: 1.1;
    max-width: 680px; margin: 0 auto 18px;
    background: linear-gradient(180deg,#fff,#cfcfd6);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.finalcta-sub { font-size: 18px; color: #b4b4ba; max-width: 540px; margin: 0 auto 34px; line-height: 1.55; }
.finalcta .hero-actions { justify-content: center; }

@media (min-width: 768px) {
    .bighero { padding: 160px 0 110px; }
    .bighero-title { font-size: 60px; }
    .bighero-sub { font-size: 22px; }
    .bigsec { padding: 120px 0; }
    .bigsec-grid { grid-template-columns: 1fr 1fr; gap: 72px; }
    .bigsec-reverse .bigsec-text { order: 2; }
    .bigsec-title { font-size: 42px; }
    .bigstats { grid-template-columns: repeat(3, 1fr); gap: 48px; }
    .bigstat-n { font-size: 68px; }
    .finalcta { padding: 150px 0; }
    .finalcta-title { font-size: 52px; }
}

@media (min-width: 1024px) {
    .bighero-title { font-size: 68px; }
}

/* ============================================================
   HOMEPAGE v2 — premium, asymmetrisk, tall-drevet
   ============================================================ */

/* ---------- Hero ---------- */
.nx-hero { padding: 72px 0 64px; text-align: center; }
.nx-hero-title {
    font-size: 38px;
    font-weight: 600;
    letter-spacing: -.035em;
    line-height: 1.05;
    max-width: 820px;
    margin: 22px auto 22px;
}
.nx-hero-sub {
    font-size: 19px;
    line-height: 1.5;
    color: var(--muted);
    max-width: 580px;
    margin: 0 auto 32px;
}
.nx-hero-note { display: block; font-size: 13px; color: var(--muted); margin-top: 18px; }
.nx-hero-mock { margin-top: 56px; }

/* ---------- Smerte: stort tall ---------- */
.nx-pain { padding: 80px 0; border-top: 1px solid var(--line); }
.nx-pain-grid { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; margin-top: 20px; }
.nx-pain-num {
    font-size: 110px;
    font-weight: 700;
    letter-spacing: -.05em;
    line-height: .85;
    color: var(--accent);
    text-shadow: 0 0 50px rgba(255,85,0,.18);
}
.nx-pain-lead { font-size: 26px; font-weight: 600; letter-spacing: -.02em; line-height: 1.25; margin-bottom: 16px; }
.nx-pain-body { font-size: 17px; line-height: 1.6; color: var(--muted); max-width: 520px; }

/* ---------- Bento-grid ---------- */
.nx-bento { padding: 80px 0; }
.bento { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
.bento-cell {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 28px;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.bento-cell:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(0,0,0,.06); }
.bento-cell h3 { font-size: 20px; font-weight: 600; letter-spacing: -.01em; margin-bottom: 8px; }
.bento-cell p { font-size: 16px; color: var(--muted); line-height: 1.55; }
.bento-dark {
    background: #0a0a0b;
    border-color: #0a0a0b;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.bento-dark::before {
    content: "";
    position: absolute; top: -30%; right: -10%;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(255,85,0,.25) 0%, transparent 65%);
    pointer-events: none;
}
.bento-dark h3 { color: #fff; position: relative; }
.bento-dark p { color: #a1a1a6; position: relative; }
.bento-cell-text { position: relative; z-index: 1; }
.bento-mock { margin-top: 24px; }
.bento-mock .mock { max-width: 100%; box-shadow: none; }
.bento-mock-sm .mock { padding: 0; border: none; background: transparent; }

/* ---------- Metrics: mørkt bånd med store tall ---------- */
.nx-metrics {
    padding: 88px 0;
    background: #0a0a0b;
    color: #fff;
    text-align: center;
}
.nx-metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
    margin-top: 40px;
}
.nx-metric-n {
    display: block;
    font-size: 52px;
    font-weight: 700;
    letter-spacing: -.04em;
    line-height: 1;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(255,85,0,.35);
}
.nx-metric-t { font-size: 14px; color: #8e8e93; line-height: 1.4; display: block; max-width: 200px; margin: 0 auto; }

/* ---------- Hvordan: asymmetrisk (tittel | steg) ---------- */
.nx-how { padding: 88px 0; }
.nx-how-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
.nx-how-title { font-size: 32px; font-weight: 600; letter-spacing: -.025em; line-height: 1.1; margin-top: 10px; }
.nx-how-steps { list-style: none; display: flex; flex-direction: column; gap: 24px; }
.nx-how-steps li { display: flex; gap: 16px; align-items: flex-start; }
.nx-how-num {
    flex: 0 0 auto;
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--accent); color: #fff;
    font-weight: 600; font-size: 15px;
    display: flex; align-items: center; justify-content: center;
}
.nx-how-steps h3 { font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.nx-how-steps p { font-size: 16px; color: var(--muted); line-height: 1.5; }

/* ---------- Avsluttende CTA ---------- */
.nx-final { padding: 100px 0; text-align: center; }
.nx-final-title {
    font-size: 34px;
    font-weight: 600;
    letter-spacing: -.03em;
    line-height: 1.12;
    max-width: 640px;
    margin: 0 auto 16px;
}
.nx-final-sub { font-size: 19px; color: var(--muted); max-width: 520px; margin: 0 auto 32px; line-height: 1.5; }

/* ---------- Responsive ---------- */
@media (min-width: 768px) {
    .nx-hero { padding: 120px 0 80px; }
    .nx-hero-title { font-size: 60px; }
    .nx-hero-sub { font-size: 21px; }

    .nx-pain { padding: 120px 0; }
    .nx-pain-grid { grid-template-columns: auto 1fr; gap: 56px; }
    .nx-pain-num { font-size: 180px; }

    /* Bento: 3-kolonners asymmetri */
    .bento { grid-template-columns: repeat(3, 1fr); grid-auto-rows: minmax(180px, auto); }
    .bento-lg { grid-column: span 2; grid-row: span 2; display: flex; flex-direction: column; justify-content: space-between; }
    .bento-wide { grid-column: span 2; display: flex; align-items: center; gap: 28px; }
    .bento-wide .bento-cell-text { flex: 1; }
    .bento-wide .bento-mock { margin-top: 0; flex: 1; }

    .nx-metrics-grid { grid-template-columns: repeat(4, 1fr); }
    .nx-metric-n { font-size: 60px; }

    .nx-how-grid { grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
    .nx-how-title { font-size: 40px; }

    .nx-final-title { font-size: 46px; }
}

@media (min-width: 1024px) {
    .nx-hero-title { font-size: 68px; }
}

/* ============================================================
   REBUILD v3 — full site
   ============================================================ */

/* ---------- Announcement bar ---------- */
.topbar { background: var(--ink); color: #fff; font-size: 13px; }
.topbar-inner { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 9px 0; flex-wrap: wrap; }
.topbar-text { color: #d6d6d8; }
.topbar-link { color: #fff; font-weight: 500; white-space: nowrap; }
.topbar-link:hover { color: var(--accent); }

/* ---------- Header demo-link ---------- */
.header-demo { font-size: 14px; color: var(--ink); font-weight: 500; }
.header-demo:hover { color: var(--accent-ink); }

/* ---------- Dropdown wide ---------- */
.nav-dd-menu-wide { min-width: 320px; padding: 18px; }
.nav-dd-blurb { font-size: 13px; color: var(--muted); line-height: 1.45; margin-bottom: 14px; padding: 0 4px; }
.nav-dd-links { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }

/* ---------- HERO + bento ---------- */
.rb-hero { padding: 56px 0 64px; text-align: center; }
.rb-eyebrow {
    display: inline-block; font-size: 13px; font-weight: 600;
    letter-spacing: .02em; color: var(--accent);
    background: var(--accent-soft); padding: 6px 14px; border-radius: 980px; margin-bottom: 22px;
}
.rb-hero-title { font-size: 40px; font-weight: 600; letter-spacing: -.035em; line-height: 1.05; max-width: 800px; margin: 0 auto 22px; }
.rb-hero-sub { font-size: 19px; line-height: 1.55; color: var(--muted); max-width: 620px; margin: 0 auto 30px; }
.rb-hero-foot { display: block; font-size: 13px; color: var(--muted); margin-top: 18px; }
.rb-hero-bento { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 56px; text-align: left; }
.rb-bento-chat .mock, .rb-bento-lead .mock, .rb-bento-auto .mock { max-width: 100%; }

/* ---------- Manifest ---------- */
.rb-manifest { padding: 96px 0; text-align: center; }
.rb-man-title { font-size: 30px; font-weight: 600; letter-spacing: -.025em; line-height: 1.15; margin-bottom: 18px; }
.rb-man-sub { font-size: 19px; color: var(--muted); line-height: 1.6; }

/* ---------- Logo-rad ---------- */
.rb-logos { padding: 32px 0 72px; }
.rb-logos-inner { display: flex; flex-direction: column; gap: 24px; align-items: center; }
.rb-logos-label { font-size: 14px; font-weight: 600; color: var(--muted); }
.rb-logos-row { display: flex; flex-wrap: wrap; gap: 28px 44px; justify-content: center; align-items: center; }
.rb-logos-row span { font-size: 18px; font-weight: 600; color: #b8b8bd; letter-spacing: -.01em; }

/* ---------- Overview ---------- */
.rb-overview { padding: 40px 0 96px; }
.rb-ov-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 40px; flex-wrap: wrap; }
.rb-ov-title { font-size: 32px; font-weight: 600; letter-spacing: -.025em; margin-top: 8px; max-width: 520px; }
.rb-ov-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
.rb-ov-item { display: flex; gap: 16px; align-items: flex-start; }
.rb-ov-ico {
    flex: 0 0 auto; width: 44px; height: 44px; border-radius: 12px;
    background: var(--grey); display: flex; align-items: center; justify-content: center;
    color: var(--ink);
}
.rb-ov-ico .ic { width: 22px; height: 22px; }
.rb-ov-item h3 { font-size: 17px; font-weight: 600; margin-bottom: 4px; }
.rb-ov-item p { font-size: 15px; color: var(--muted); line-height: 1.5; }

/* ---------- Store feature-seksjoner ---------- */
.rb-feature { padding: 72px 0; }
.rb-feature-alt { background: var(--grey); }

/* ---------- Less switching ---------- */
.rb-less { padding: 96px 0; text-align: center; }
.rb-less-title { font-size: 34px; font-weight: 600; letter-spacing: -.03em; margin-bottom: 48px; }
.rb-less-grid { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 760px; margin: 0 auto; }
.rb-less-card { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 32px; text-align: left; }
.rb-less-ico { display: block; margin-bottom: 14px; color: var(--accent); }
.rb-less-ico .ic { width: 26px; height: 26px; }
.rb-less-card h3 { font-size: 19px; font-weight: 600; margin-bottom: 8px; }
.rb-less-card p { font-size: 16px; color: var(--muted); line-height: 1.55; }

/* ---------- Resultat-kort ---------- */
.rb-results { padding: 72px 0 96px; }
.rb-results-title { font-size: 30px; font-weight: 600; letter-spacing: -.025em; margin: 8px 0 40px; }
.rb-results-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.rb-result-card { background: var(--grey); border-radius: 18px; padding: 32px; }
.rb-result-n { font-size: 52px; font-weight: 700; letter-spacing: -.04em; line-height: 1; display: block; margin-bottom: 18px; }
.rb-arrow { font-size: 30px; color: var(--accent); }
.rb-result-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.rb-result-card p { font-size: 15px; color: var(--muted); line-height: 1.5; }

/* ---------- Testimonial ---------- */
.rb-tst { padding: 0 0 96px; }
.rb-tst-card { background: var(--grey); border-radius: 24px; overflow: hidden; display: grid; grid-template-columns: 1fr; }
.rb-tst-text { padding: 44px; }
.rb-tst-text blockquote { font-size: 24px; font-weight: 500; letter-spacing: -.02em; line-height: 1.35; margin: 14px 0 28px; }
.rb-tst-by { display: flex; align-items: center; gap: 12px; }
.rb-tst-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 15px; }
.rb-tst-name { display: block; font-weight: 600; font-size: 15px; }
.rb-tst-role { display: block; font-size: 14px; color: var(--muted); }
.rb-tst-media { background: #1d1d1f; display: flex; align-items: center; justify-content: center; padding: 44px; }

/* ---------- Final banner ---------- */
.rb-final { padding: 0 0 96px; }
.rb-final-banner {
    position: relative; overflow: hidden;
    background: #0a0a0b; color: #fff; border-radius: 28px;
    padding: 64px 44px; text-align: center;
}
.rb-final-glow { position: absolute; top: -40%; left: 50%; transform: translateX(-50%); width: 700px; height: 700px; background: radial-gradient(circle, rgba(255,85,0,.3) 0%, transparent 65%); pointer-events: none; }
.rb-final-text { position: relative; z-index: 1; }
.rb-final-banner h2 { font-size: 36px; font-weight: 600; letter-spacing: -.03em; margin-bottom: 12px; }
.rb-final-banner p { font-size: 19px; color: #a1a1a6; margin-bottom: 32px; }
.rb-final-actions { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 12px; align-items: center; }

/* ---------- Lead-mockup ---------- */
.mock-leadcard { padding: 22px; }
.lc-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 28px; }
.lc-head strong { font-size: 17px; display: block; }
.lc-sub { font-size: 13px; color: var(--muted); }
.lc-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 500; background: var(--accent-soft); color: var(--accent-ink); padding: 5px 10px; border-radius: 980px; }
.lc-tag .tick { display: inline-flex; align-items: center; justify-content: center; width: 15px; height: 15px; border-radius: 50%; background: var(--accent); color: #fff; font-size: 9px; }
.lc-row { display: flex; align-items: center; gap: 10px; background: var(--grey); border-radius: 12px; padding: 12px; }
.lc-ico { width: 32px; height: 32px; border-radius: 8px; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 14px; }
.lc-src { font-size: 14px; color: var(--muted); }

/* ---------- Automation-mockup ---------- */
.mock-auto { padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.auto-top { display: flex; justify-content: space-between; align-items: center; background: var(--grey); border-radius: 12px; padding: 14px 16px; }
.auto-label { font-size: 14px; color: var(--muted); }
.auto-val { font-size: 14px; font-weight: 600; }
.auto-box { background: var(--grey); border-radius: 12px; padding: 16px; }
.auto-title { display: block; font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.auto-line { display: flex; align-items: center; gap: 10px; font-size: 15px; padding: 7px 0; }
.cbx { width: 20px; height: 20px; border-radius: 6px; border: 1.5px solid var(--line); display: inline-flex; align-items: center; justify-content: center; font-size: 11px; }
.cbx.on { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ---------- Inbox-mockup ---------- */
.mock-inbox { padding: 14px; display: flex; flex-direction: column; gap: 8px; }
.ib-row { display: flex; align-items: center; gap: 12px; padding: 14px; border-radius: 14px; background: var(--grey); }
.ib-active { background: var(--accent-soft); }
.ib-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); flex: 0 0 auto; }
.ib-dot-ai { background: #c7c7cc; }
.ib-meta { flex: 1; display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.ib-meta strong { font-size: 14px; }
.ib-meta span { font-size: 13px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ib-badge { font-size: 12px; font-weight: 500; background: var(--ink); color: #fff; padding: 5px 11px; border-radius: 980px; white-space: nowrap; }
.ib-time { font-size: 12px; color: var(--muted); }

/* ---------- Book demo ---------- */
.field-row { display: grid; grid-template-columns: 1fr; gap: 18px; }
.bd-points { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.bd-point { font-size: 16px; line-height: 1.5; padding-left: 26px; position: relative; }
.bd-point::before { content: ""; position: absolute; left: 0; top: 7px; width: 13px; height: 8px; border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg); }
.bd-steps { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.bd-steps li { display: flex; align-items: center; gap: 12px; font-size: 15px; }
.bd-num { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-ink); font-weight: 600; font-size: 13px; display: flex; align-items: center; justify-content: center; }

/* ---------- Support ---------- */
.sup-status-wrap { padding: 8px 0 24px; }
.sup-status { display: flex; align-items: center; gap: 14px; background: var(--accent-soft); border-radius: 14px; padding: 18px 22px; }
.sup-status-dot { width: 11px; height: 11px; border-radius: 50%; background: #1f9d57; flex: 0 0 auto; box-shadow: 0 0 0 4px rgba(31,157,87,.18); }
.sup-status strong { display: block; font-size: 15px; }
.sup-status span { font-size: 14px; color: var(--muted); }
.sup-card { display: flex; flex-direction: column; }
.sup-ico { display: block; margin-bottom: 14px; color: var(--accent); }
.sup-ico .ic { width: 26px; height: 26px; }
.sup-link { margin-top: auto; padding-top: 16px; font-size: 15px; font-weight: 500; color: var(--accent-ink); }
.faq { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 18px 22px; }
.faq-item summary { font-size: 16px; font-weight: 600; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { margin-bottom: 10px; }
.faq-item p { font-size: 15px; color: var(--muted); line-height: 1.55; }

/* ---------- AI-side ---------- */
.ai-hero { text-align: center; }
.ai-bento { display: grid; grid-template-columns: 1fr; gap: 16px; }
.ai-cell { background: var(--grey); border-radius: 18px; padding: 30px; }
.ai-cell h3 { font-size: 19px; font-weight: 600; margin-bottom: 8px; letter-spacing: -.01em; }
.ai-cell p { font-size: 16px; color: var(--muted); line-height: 1.55; }
.ai-cell-lead { background: #0a0a0b; color: #fff; }
.ai-cell-lead h3 { color: #fff; }
.ai-cell-lead p { color: #a1a1a6; }
.ai-quote-band { position: relative; overflow: hidden; background: #0a0a0b; color: #fff; padding: 100px 0; text-align: center; }
.ai-quote-glow { position: absolute; top: -30%; left: 50%; transform: translateX(-50%); width: 700px; height: 700px; background: radial-gradient(circle, rgba(255,85,0,.22) 0%, transparent 65%); pointer-events: none; }
.ai-quote { position: relative; z-index: 1; font-size: 28px; font-weight: 500; letter-spacing: -.02em; line-height: 1.35; background: linear-gradient(180deg,#fff,#c9c9cf); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ---------- Responsive ---------- */
@media (min-width: 768px) {
    .rb-hero { padding: 72px 0 80px; }
    .rb-hero-title { font-size: 60px; }
    .rb-hero-bento { grid-template-columns: 1.4fr 1fr; grid-template-rows: auto auto; gap: 18px; }
    .rb-bento-chat { grid-row: span 2; }
    .rb-man-title { font-size: 40px; }
    .rb-ov-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 48px; }
    .rb-less-grid { grid-template-columns: 1fr 1fr; }
    .rb-results-grid { grid-template-columns: repeat(3, 1fr); }
    .rb-tst-card { grid-template-columns: 1.3fr 1fr; }
    .rb-final-banner { padding: 80px 64px; }
    .rb-final-actions { flex-direction: row; justify-content: center; }
    .field-row { grid-template-columns: 1fr 1fr; }
    .ai-bento { grid-template-columns: repeat(3, 1fr); }
    .ai-cell-lead { grid-column: span 3; }
    .ai-quote { font-size: 38px; }
}

@media (min-width: 1024px) {
    .rb-hero-title { font-size: 66px; }
}

/* ============================================================
   v4 — mega-menu, counter, compare, story, FAQ, footer CTA
   ============================================================ */

/* ---------- Mega-menu ---------- */
.nav-mega { position: static; }
.mega {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    width: min(720px, calc(100vw - 48px));
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(0,0,0,.12);
    padding: 24px;
    opacity: 0; visibility: hidden;
    transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s var(--ease);
    z-index: 60;
}
.nav-mega:hover .mega, .nav-mega:focus-within .mega {
    opacity: 1; visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav-mega:hover .nav-dd-caret { transform: rotate(180deg); }
.nav-mega::after { content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 18px; }
.mega-inner { display: grid; grid-template-columns: 1.7fr 1fr; gap: 24px; }
.mega-label { display: block; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.mega-item { display: flex; gap: 12px; align-items: flex-start; padding: 11px; border-radius: 12px; transition: background .15s var(--ease); }
.mega-item:hover { background: var(--grey); }
.mega-ico { flex: 0 0 auto; width: 36px; height: 36px; border-radius: 9px; background: var(--accent-soft); color: var(--accent-ink); display: flex; align-items: center; justify-content: center; }
.mega-ico .ic { width: 18px; height: 18px; }
.mega-text { display: flex; flex-direction: column; line-height: 1.3; }
.mega-t { font-size: 14px; font-weight: 600; color: var(--ink); }
.mega-item.is-active .mega-t { color: var(--accent); }
.mega-d { font-size: 12px; color: var(--muted); margin-top: 2px; }
.mega-col-side { border-left: 1px solid var(--line); padding-left: 24px; }
.mega-side-item { display: block; padding: 9px 11px; border-radius: 10px; transition: background .15s var(--ease); }
.mega-side-item:hover { background: var(--grey); }
.mega-side-item .mega-t, .mega-side-item .mega-d { display: block; }

/* ---------- Counter band ---------- */
.cnt-band { position: relative; overflow: hidden; background: #0a0a0b; color: #fff; padding: 88px 0; text-align: center; }
.cnt-glow { position: absolute; bottom: -40%; left: 50%; transform: translateX(-50%); width: 800px; height: 600px; background: radial-gradient(circle, rgba(255,85,0,.2) 0%, transparent 65%); pointer-events: none; }
.cnt-band .container { position: relative; z-index: 1; }
.cnt-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 24px; margin-top: 40px; }
.cnt-n { display: block; font-size: 52px; font-weight: 700; letter-spacing: -.04em; line-height: 1; color: #fff; margin-bottom: 10px; text-shadow: 0 0 30px rgba(255,85,0,.35); font-variant-numeric: tabular-nums; }
.cnt-t { font-size: 14px; color: #8e8e93; display: block; max-width: 180px; margin: 0 auto; line-height: 1.4; }

/* ---------- Compare ---------- */
.cmp { padding: 96px 0; text-align: center; }
.cmp-title { font-size: 32px; font-weight: 600; letter-spacing: -.025em; margin: 8px 0 40px; }
.cmp-card { background: var(--white); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; text-align: left; }
.cmp-head { display: grid; grid-template-columns: 1fr 1fr; }
.cmp-head span { padding: 18px 24px; font-size: 14px; font-weight: 700; letter-spacing: .02em; }
.cmp-head-them { color: var(--muted); background: var(--grey); }
.cmp-head-us { color: var(--accent-ink); background: var(--accent-soft); }
.cmp-row { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.cmp-row span { padding: 18px 24px; font-size: 15px; display: flex; gap: 10px; align-items: flex-start; line-height: 1.45; }
.cmp-them { color: var(--muted); border-right: 1px solid var(--line); }
.cmp-x { flex: 0 0 auto; width: 20px; height: 20px; border-radius: 50%; background: #ececef; color: #9b9ba1; display: inline-flex; align-items: center; justify-content: center; font-size: 11px; margin-top: 1px; }
.cmp-check { flex: 0 0 auto; width: 20px; height: 20px; border-radius: 50%; background: var(--accent); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 11px; margin-top: 1px; }
.cmp-us { font-weight: 500; }

/* ---------- Story ---------- */
.story { position: relative; overflow: hidden; background: #0a0a0b; color: #fff; padding: 110px 0; text-align: center; }
.story-glow { position: absolute; top: -30%; left: 50%; transform: translateX(-50%); width: 760px; height: 760px; background: radial-gradient(circle, rgba(255,85,0,.18) 0%, transparent 62%); pointer-events: none; }
.story .container { position: relative; z-index: 1; }
.story-quote { font-size: 28px; font-weight: 500; letter-spacing: -.02em; line-height: 1.4; margin: 16px auto 40px; max-width: 760px; background: linear-gradient(180deg,#fff,#cfcfd4); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.story-foot { display: flex; flex-direction: column; gap: 28px; align-items: center; }
.story-by { display: flex; align-items: center; gap: 12px; }
.story-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 600; }
.story-name { display: block; font-weight: 600; font-size: 15px; }
.story-role { display: block; font-size: 14px; color: #8e8e93; }
.story-stat { padding-top: 28px; border-top: 1px solid rgba(255,255,255,.12); }
.story-stat-n { display: block; font-size: 44px; font-weight: 700; letter-spacing: -.03em; color: #fff; text-shadow: 0 0 24px rgba(255,85,0,.4); }
.story-stat-t { font-size: 14px; color: #8e8e93; }

/* ---------- FAQ ---------- */
.faq-section { padding: 96px 0; }
.faq-title { font-size: 32px; font-weight: 600; letter-spacing: -.025em; margin: 8px 0 40px; }
.faq { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 20px 24px; transition: border-color .2s var(--ease); }
.faq-item[open] { border-color: var(--accent); }
.faq-item summary { font-size: 17px; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus { flex: 0 0 auto; width: 22px; height: 22px; position: relative; }
.faq-plus::before, .faq-plus::after { content: ""; position: absolute; background: var(--accent); border-radius: 2px; transition: transform .25s var(--ease); }
.faq-plus::before { top: 10px; left: 3px; right: 3px; height: 2px; }
.faq-plus::after { left: 10px; top: 3px; bottom: 3px; width: 2px; }
.faq-item[open] .faq-plus::after { transform: scaleY(0); }
.faq-item p { font-size: 15px; color: var(--muted); line-height: 1.6; margin-top: 14px; }
.faq-more { text-align: center; margin-top: 32px; font-size: 16px; color: var(--muted); }
.faq-more a { color: var(--accent-ink); font-weight: 500; }

/* ---------- Footer CTA banner ---------- */
.footer-cta { padding: 0 0 8px; }
.footer-cta-banner { position: relative; overflow: hidden; background: #0a0a0b; color: #fff; border-radius: 28px; padding: 56px 44px; text-align: center; }
.footer-cta-glow { position: absolute; top: -50%; left: 50%; transform: translateX(-50%); width: 800px; height: 800px; background: radial-gradient(circle, rgba(255,85,0,.3) 0%, transparent 64%); pointer-events: none; }
.footer-cta-text { position: relative; z-index: 1; }
.footer-cta-banner h2 { font-size: 34px; font-weight: 600; letter-spacing: -.03em; margin-bottom: 12px; }
.footer-cta-banner p { font-size: 18px; color: #a1a1a6; margin-bottom: 30px; }
.footer-cta-actions { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 12px; align-items: center; }

/* ---------- Footer extras ---------- */
.footer-tagline { font-size: 14px; color: var(--muted); line-height: 1.5; margin-top: 12px; max-width: 240px; }
.footer-col-news { grid-column: 1 / -1; }
.footer-news-sub { font-size: 13px; color: var(--muted); margin-bottom: 12px; line-height: 1.5; }
.footer-news { display: flex; gap: 8px; max-width: 360px; }
.footer-news-input { flex: 1; font-family: inherit; font-size: 14px; border: 1px solid var(--line); border-radius: 10px; padding: 10px 14px; transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
.footer-news-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.footer-news-msg { font-size: 13px; margin-top: 10px; }
.footer-news-ok { color: var(--accent-ink); }
.footer-news-err { color: #c0392b; }
.footer-social { display: flex; gap: 20px; }
.footer-social a { font-size: 14px; color: var(--muted); }
.footer-social a:hover { color: var(--accent-ink); }

@media (min-width: 768px) {
    .cnt-grid { grid-template-columns: repeat(4, 1fr); }
    .cnt-n { font-size: 60px; }
    .cmp-title, .faq-title { font-size: 40px; }
    .story-quote { font-size: 38px; }
    .footer-cta-banner { padding: 72px 64px; }
    .footer-cta-actions { flex-direction: row; justify-content: center; }
    .footer-col-news { grid-column: auto; }
    .footer-bottom { display: flex; justify-content: space-between; align-items: center; }
}

/* ============================================================
   v5 — GleSYS-style product page + hero caption
   ============================================================ */

/* Hero visual caption */
.rb-hero-cap { margin-top: 22px; font-size: 14px; color: var(--muted); }

/* Left-aligned hero actions (product page) */
.hero-actions-left { justify-content: flex-start; }

/* ---------- Product hero ---------- */
.pr-hero { padding: 64px 0 56px; }
.pr-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600; letter-spacing: .02em;
    color: var(--accent-ink); background: var(--accent-soft);
    padding: 7px 14px; border-radius: 980px; margin-bottom: 20px;
}
.pr-eyebrow .ic { width: 16px; height: 16px; }
.pr-title { font-size: 48px; font-weight: 600; letter-spacing: -.035em; line-height: 1.02; margin-bottom: 20px; }
.pr-sub { font-size: 19px; line-height: 1.6; color: var(--muted); max-width: 680px; }

/* ---------- Value cards ---------- */
.pr-values { padding: 32px 0 72px; }
.pr-values-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.pr-value { padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.pr-value-ic { display: inline-flex; width: 44px; height: 44px; border-radius: 12px; background: var(--grey); color: var(--accent); align-items: center; justify-content: center; margin-bottom: 16px; }
.pr-value-ic .ic { width: 22px; height: 22px; }
.pr-value h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.pr-value p { font-size: 15px; color: var(--muted); line-height: 1.55; }

/* ---------- Plans / spec cards ---------- */
.pr-plans { padding: 72px 0; background: var(--grey); }
.pr-plans-title { font-size: 32px; font-weight: 600; letter-spacing: -.025em; margin: 8px 0 40px; }
.pr-plans-grid { display: grid; grid-template-columns: 1fr; gap: 20px; align-items: start; }
.pr-plan {
    position: relative; background: var(--white);
    border: 1px solid var(--line); border-radius: 20px; padding: 32px;
    display: flex; flex-direction: column;
}
.pr-plan-feat { border-color: var(--accent); box-shadow: 0 16px 50px rgba(255,85,0,.1); }
.pr-plan-badge {
    position: absolute; top: 24px; right: 24px;
    font-size: 12px; font-weight: 600; color: #fff; background: var(--accent);
    padding: 5px 12px; border-radius: 980px;
}
.pr-plan-name { font-size: 22px; font-weight: 600; letter-spacing: -.01em; margin-bottom: 14px; }
.pr-plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.pr-plan-num { font-size: 44px; font-weight: 700; letter-spacing: -.03em; line-height: 1; }
.pr-plan-cur { font-size: 18px; font-weight: 600; color: var(--muted); }
.pr-plan-per { font-size: 14px; color: var(--muted); margin-left: 4px; }
.pr-plan-specs { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 28px; flex: 1; }
.pr-plan-specs li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; line-height: 1.4; }
.pr-spec-check { flex: 0 0 auto; color: var(--accent); display: inline-flex; margin-top: 1px; }
.pr-spec-check .ic { width: 16px; height: 16px; }
.pr-plan-note { text-align: center; font-size: 14px; color: var(--muted); margin-top: 28px; }

/* ---------- Custom box ---------- */
.pr-custom { padding: 72px 0; }
.pr-custom-box {
    background: var(--white); border: 1px solid var(--line); border-radius: 20px;
    padding: 36px; display: flex; flex-direction: column; gap: 24px; align-items: flex-start;
}
.pr-custom-box h3 { font-size: 22px; font-weight: 600; letter-spacing: -.01em; margin-bottom: 8px; }
.pr-custom-box p { font-size: 16px; color: var(--muted); line-height: 1.55; max-width: 620px; }

/* ---------- Docs block ---------- */
.pr-docs { padding: 0 0 72px; }
.pr-docs-inner {
    background: #0a0a0b; color: #fff; border-radius: 20px; padding: 40px;
    display: flex; flex-direction: column; gap: 20px; align-items: flex-start;
}
.pr-docs-ic { display: inline-flex; width: 56px; height: 56px; border-radius: 14px; background: rgba(255,255,255,.08); color: var(--accent); align-items: center; justify-content: center; }
.pr-docs-text h2 { font-size: 24px; font-weight: 600; letter-spacing: -.02em; margin-bottom: 10px; }
.pr-docs-text p { font-size: 16px; color: #a1a1a6; line-height: 1.6; max-width: 620px; }

/* ---------- Why grid ---------- */
.pr-why { padding: 72px 0; }
.pr-why-title { font-size: 32px; font-weight: 600; letter-spacing: -.025em; margin: 8px 0 40px; }
.pr-why-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
.pr-why-item { padding-top: 20px; border-top: 2px solid var(--ink); }
.pr-why-item h3 { font-size: 19px; font-weight: 600; margin-bottom: 8px; }
.pr-why-item p { font-size: 15px; color: var(--muted); line-height: 1.55; }

/* ---------- Long story ---------- */
.pr-story { padding: 72px 0 110px; }
.pr-story-title { font-size: 32px; font-weight: 600; letter-spacing: -.025em; margin-bottom: 24px; }
.pr-story-p { font-size: 18px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.pr-story .btn { margin-top: 12px; }

@media (min-width: 768px) {
    .pr-hero { padding: 88px 0 64px; }
    .pr-title { font-size: 64px; }
    .pr-values-grid { grid-template-columns: repeat(3, 1fr); }
    .pr-plans-title, .pr-why-title, .pr-story-title { font-size: 40px; }
    .pr-plans-grid { grid-template-columns: repeat(3, 1fr); }
    .pr-plan-feat { transform: translateY(-12px); }
    .pr-custom-box { flex-direction: row; align-items: center; justify-content: space-between; }
    .pr-custom-box > div { flex: 1; }
    .pr-docs-inner { flex-direction: row; align-items: center; }
    .pr-docs-text { flex: 1; }
    .pr-why-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 48px; }
}
