﻿
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --white: #ffffff;
    --off-white: #f8f8f6;
    --light-gray: #efefed;
    --mid-gray: #d0d0cc;
    --text-muted: #8a8a85;
    --text-body: #3a3a38;
    --text-heading: #111110;
    --navy: #1a2540;
    --navy-mid: #243055;
    --navy-light: #2e3d6a;
    --slate: #4a5568;
    --slate-light: #6b7a94;
    --accent: #1a2540;
    --accent-hover: #0f1730;
    --border: #e2e2de;
    --border-light: #ebebе7;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.07), 0 2px 6px rgba(0,0,0,0.04);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.05);
    --radius: 8px;
    --radius-lg: 14px;
    --font-serif: 'Outfit', system-ui, sans-serif;
    --font-sans: 'DM Sans', system-ui, sans-serif;
    --max-w: 1140px;
    --section-gap: 96px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    color: var(--text-body);
    background: var(--white);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
    color: var(--text-heading);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 700;
}

h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 600;
}

h3 {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 600;
}

p {
    max-width: 62ch;
}

.label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--slate-light);
    display: block;
    margin-bottom: 14px;
}

/* ─── LAYOUT ─── */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 28px;
}

section {
    padding: var(--section-gap) 0;
    scroll-margin-top: 64px;
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    border: none;
    transition: all 0.18s ease;
    white-space: nowrap;
    line-height: 1;
}

.btn-primary {
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(26,37,64,0.22);
}

    .btn-primary:hover {
        background: var(--accent-hover);
        transform: translateY(-1px);
        box-shadow: 0 4px 16px rgba(26,37,64,0.28);
    }

.btn-secondary {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--border);
    background: var(--white);
}

    .btn-secondary:hover {
        border-color: var(--navy);
        background: var(--off-white);
    }

.btn-ghost {
    background: transparent;
    color: var(--text-body);
    padding: 13px 16px;
}

    .btn-ghost:hover {
        color: var(--navy);
    }

.btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* ─── NAV ─── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

nav {
    position: relative;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1.18rem;
    color: var(--navy);
    text-decoration: none;
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .logo img {
        display: block;
        height: 70px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
    }

.logo-mark {
    width: 28px;
    height: 28px;
    background: var(--navy);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .logo-mark svg {
        width: 16px;
        height: 16px;
        color: white;
    }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
}

    .nav-links a {
        font-size: 0.88rem;
        font-weight: 400;
        color: var(--slate);
        text-decoration: none;
        padding: 8px 14px;
        border-radius: 6px;
        transition: all 0.15s;
    }

        .nav-links a:hover {
            color: var(--navy);
            background: var(--off-white);
        }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

    .hamburger span {
        display: block;
        width: 22px;
        height: 1.5px;
        background: var(--text-body);
        transition: all 0.2s;
    }

/* ─── HERO ─── */
.hero {
    background: var(--off-white);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
        background-size: 48px 48px;
        opacity: 0.45;
        pointer-events: none;
    }

    .hero::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 70% 60% at 40% 50%, rgba(248,248,246,0.95) 40%, rgba(248,248,246,0.4) 100%);
        pointer-events: none;
    }

.hero-solo {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.hero-eyebrow {
    margin-bottom: 20px;
}

.beta-banner {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--navy);
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 28px;
    line-height: 1.4;
    flex-wrap: wrap;
}

    .beta-banner strong {
        color: white;
        font-weight: 600;
    }

.beta-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #2ecc71;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(46,204,113,0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%,100% {
        box-shadow: 0 0 0 3px rgba(46,204,113,0.3);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(46,204,113,0.1);
    }
}

.beta-link {
    color: white;
    font-weight: 600;
    text-decoration: none;
    background: rgba(255,255,255,0.15);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    white-space: nowrap;
    transition: background 0.15s;
}

    .beta-link:hover {
        background: rgba(255,255,255,0.25);
    }

.hero h1 {
    margin-bottom: 26px;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--slate);
    line-height: 1.7;
    margin-bottom: 36px;
    font-weight: 300;
    max-width: 56ch;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-note {
    margin-top: 18px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 52px;
    flex-wrap: wrap;
}

.hero-stat {
    padding: 0 28px 0 0;
}

    .hero-stat:first-child {
        padding-left: 0;
    }

    .hero-stat strong {
        display: block;
        font-size: 0.92rem;
        font-weight: 600;
        color: var(--text-heading);
        letter-spacing: -0.01em;
    }

    .hero-stat span {
        display: block;
        font-size: 0.78rem;
        color: var(--text-muted);
        margin-top: 2px;
    }

.hero-stat-divider {
    width: 1px;
    height: 32px;
    background: var(--border);
    margin-right: 28px;
    flex-shrink: 0;
}

/* ─── PROBLEMS ─── */
.problems {
    background: var(--white);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 52px;
}

.problem-card {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--off-white);
}

.problem-icon {
    margin-bottom: 14px;
}

    .problem-icon svg {
        width: 22px;
        height: 22px;
        color: var(--text-muted);
    }

.problem-card h3 {
    margin-bottom: 8px;
    font-size: 1rem;
}

.problem-card p {
    font-size: 0.9rem;
    color: var(--slate);
    max-width: none;
}

/* ─── HOW IT WORKS ─── */
.how {
    background: var(--navy);
    color: white;
}

    .how .label {
        color: rgba(255,255,255,0.45);
    }

    .how h2 {
        color: white;
        margin-bottom: 14px;
    }

.how-intro {
    color: rgba(255,255,255,0.65);
    font-weight: 300;
    margin-bottom: 60px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0 32px;
    position: relative;
}

    .steps::before {
        display: none;
    }

.step {
    padding: 0;
    position: relative;
}

.step-num-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    flex-shrink: 0;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    position: relative;
    z-index: 1;
}

.step-connector {
    display: none;
}

.step h3 {
    color: white;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.step p {
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    max-width: none;
}

/* ─── FEATURES ─── */
.features {
    background: var(--off-white);
}

.features-header {
    margin-bottom: 56px;
    max-width: 560px;
}

    .features-header p {
        color: var(--slate);
        font-weight: 300;
        font-size: 1.05rem;
        margin-top: 14px;
    }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: box-shadow 0.2s, transform 0.2s;
}

    .feature-card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-2px);
    }

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--off-white);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

    .feature-icon svg {
        width: 20px;
        height: 20px;
        color: var(--navy);
    }

.feature-card h3 {
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--slate);
    max-width: none;
}

/* ─── USE CASES ─── */
.usecases {
    background: var(--white);
}

.usecases-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.usecases-left {
}

    .usecases-left p {
        color: var(--slate);
        margin-top: 14px;
        font-weight: 300;
        font-size: 1.05rem;
    }

.cases-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 36px;
}

.case-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--off-white);
    cursor: pointer;
    transition: all 0.15s;
}

    .case-item:hover, .case-item.active {
        background: var(--navy);
        border-color: var(--navy);
    }

        .case-item:hover *, .case-item.active * {
            color: white !important;
        }

.case-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

    .case-icon svg {
        width: 20px;
        height: 20px;
        color: var(--navy);
    }

.case-item span {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-heading);
}

.usecases-right {
}

.case-detail {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
}

    .case-detail h3 {
        margin-bottom: 12px;
        font-size: 1.2rem;
    }

    .case-detail p {
        color: var(--slate);
        font-size: 0.95rem;
        margin-bottom: 20px;
        max-width: none;
    }

.case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.case-tag {
    font-size: 0.78rem;
    font-weight: 500;
    padding: 5px 11px;
    border-radius: 20px;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--slate);
}

/* ─── BENEFITS ─── */
.benefits {
    background: var(--off-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 52px;
}

.benefit {
    display: flex;
    gap: 18px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--white);
}

.benefit-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

    .benefit-icon svg {
        width: 20px;
        height: 20px;
        color: var(--navy);
    }

.benefit h3 {
    margin-bottom: 6px;
    font-size: 1rem;
}

.benefit p {
    font-size: 0.9rem;
    color: var(--slate);
    max-width: none;
}

/* ─── TRUST ─── */
.trust {
    background: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 52px;
}

.trust-card {
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--off-white);
    text-align: center;
}

.trust-badge {
    width: 52px;
    height: 52px;
    margin: 0 auto 18px;
    background: var(--navy);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .trust-badge svg {
        width: 24px;
        height: 24px;
        color: white;
    }

.trust-card h3 {
    margin-bottom: 8px;
}

.trust-card p {
    font-size: 0.9rem;
    color: var(--slate);
    margin: 0 auto;
}

/* ─── FAQ ─── */
.faq {
    background: var(--off-white);
}

.faq-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
}

.faq-left h2 {
}

.faq-left p {
    color: var(--slate);
    margin-top: 12px;
    font-size: 0.95rem;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    cursor: pointer;
    user-select: none;
    font-weight: 500;
    font-size: 0.93rem;
    color: var(--text-heading);
}

    .faq-q svg {
        width: 16px;
        height: 16px;
        color: var(--text-muted);
        transition: transform 0.2s;
        flex-shrink: 0;
    }

.faq-item.open .faq-q svg {
    transform: rotate(45deg);
}

.faq-a {
    padding: 0 22px 18px;
    font-size: 0.9rem;
    color: var(--slate);
    display: none;
}

.faq-item.open .faq-a {
    display: block;
}

/* ─── CTA ─── */
.cta-section {
    background: var(--navy);
    padding: 88px 0;
    text-align: center;
}

    .cta-section .label {
        color: rgba(255,255,255,0.4);
        margin-bottom: 18px;
    }

    .cta-section h2 {
        color: white;
        max-width: 640px;
        margin: 0 auto 16px;
    }

    .cta-section p {
        color: rgba(255,255,255,0.6);
        max-width: 480px;
        margin: 0 auto 40px;
        font-weight: 300;
    }

.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-light {
    background: white;
    color: var(--navy);
}

    .btn-light:hover {
        background: var(--off-white);
        transform: translateY(-1px);
    }

.btn-outline-light {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255,255,255,0.35);
}

    .btn-outline-light:hover {
        border-color: white;
        background: rgba(255,255,255,0.07);
    }

/* ─── FOOTER ─── */
footer {
    background: var(--off-white);
    border-top: 1px solid var(--border);
    padding: 56px 0 32px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-brand {
}

.footer-logo {
    font-weight: 600;
    color: var(--navy);
    font-size: 1rem;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 28ch;
    margin-bottom: 12px;
}

.footer-location {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--text-heading);
    margin-bottom: 4px;
}

.footer-col a {
    font-size: 0.87rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.15s;
}

    .footer-col a:hover {
        color: var(--navy);
    }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-email {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.15s;
}

    .footer-email:hover {
        color: var(--navy);
    }

@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-cols {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ─── DIVIDER ─── */
.section-divider {
    width: 100%;
    height: 1px;
    background: var(--border);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp 0.6s ease both;
}

.fade-up-delay-1 {
    animation-delay: 0.1s;
}

.fade-up-delay-2 {
    animation-delay: 0.2s;
}

.fade-up-delay-3 {
    animation-delay: 0.3s;
}

/* cursor blink */
@keyframes blink {
    0%,100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background: var(--navy);
    vertical-align: text-bottom;
    animation: blink 1s step-end infinite;
    margin-left: 2px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    .problems-grid {
        grid-template-columns: 1fr 1fr;
    }

    .steps {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

        .steps::before {
            display: none;
        }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .usecases-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    .faq-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .nav-links, .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-inner {
        padding-right: 16px;
    }
}

@media (max-width: 600px) {
    :root {
        --section-gap: 64px;
    }

    .problems-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

/* Mobile nav */
.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0;
    background: white;
    border-top: 1px solid var(--border);
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    box-shadow: var(--shadow-md);
}

    .mobile-nav.open {
        display: flex;
    }

    .mobile-nav a {
        padding: 16px 28px;
        font-size: 0.93rem;
        color: var(--text-body);
        text-decoration: none;
        border-bottom: 1px solid var(--border);
    }

        .mobile-nav a:hover {
            background: var(--off-white);
        }

/* PRICING */
.pricing {
    background: var(--white);
}

.pricing-header {
    text-align: center;
    margin-bottom: 48px;
}

    .pricing-header p {
        color: var(--slate);
        margin: 12px auto 0;
        font-weight: 300;
        font-size: 1.05rem;
    }

.pricing-toggle-wrap {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.pricing-toggle {
    display: inline-flex;
    align-items: center;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 4px;
}

.toggle-btn {
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    background: transparent;
    color: var(--slate);
    font-family: var(--font-sans);
    transition: all 0.15s;
    display: flex;
    align-items: center;
    gap: 7px;
}

    .toggle-btn.active {
        background: var(--white);
        color: var(--navy);
        box-shadow: var(--shadow-sm);
    }

.save-badge {
    font-size: 0.68rem;
    font-weight: 700;
    background: var(--navy);
    color: white;
    padding: 2px 7px;
    border-radius: 20px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.plan-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    background: var(--off-white);
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
}

    .plan-card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-2px);
    }

    .plan-card.featured {
        background: var(--navy);
        border-color: var(--navy);
    }

.plan-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: var(--navy);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 0 0 8px 8px;
}

.plan-name {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 6px;
}

.plan-card.featured .plan-name {
    color: white;
}

.plan-desc {
    font-size: 0.85rem;
    color: var(--slate);
    margin-bottom: 24px;
}

.plan-card.featured .plan-desc {
    color: rgba(255,255,255,0.6);
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 4px;
}

.plan-amount {
    font-family: var(--font-serif);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--text-heading);
    line-height: 1;
    letter-spacing: -0.04em;
}

.plan-card.featured .plan-amount {
    color: white;
}

.plan-currency {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--slate);
    align-self: flex-start;
    margin-top: 6px;
}

.plan-card.featured .plan-currency {
    color: rgba(255,255,255,0.7);
}

.plan-period {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.plan-card.featured .plan-period {
    color: rgba(255,255,255,0.5);
}

.plan-yearly-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    min-height: 18px;
}

.plan-card.featured .plan-yearly-note {
    color: rgba(255,255,255,0.45);
}

.plan-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 24px;
}

.plan-card.featured .plan-divider {
    background: rgba(255,255,255,0.15);
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

    .plan-features li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 0.88rem;
        color: var(--text-body);
    }

.plan-card.featured .plan-features li {
    color: rgba(255,255,255,0.85);
}

.plan-features li svg {
    width: 15px;
    height: 15px;
    color: var(--navy);
    flex-shrink: 0;
    margin-top: 2px;
}

.plan-card.featured .plan-features li svg {
    color: rgba(255,255,255,0.65);
}

.plan-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
}

    .plan-cta.featured-cta {
        background: white;
        color: var(--navy);
    }

        .plan-cta.featured-cta:hover {
            background: var(--off-white);
        }

.pricing-note {
    text-align: center;
    margin-top: 28px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ABOUT */
.about {
    background: var(--off-white);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-lead {
    font-size: 1.05rem;
    color: var(--slate);
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 20px;
}

.about-text {
    font-size: 0.93rem;
    color: var(--slate);
    line-height: 1.75;
}

.founder-card {
    margin-top: 32px;
    padding: 22px 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 16px;
}

.founder-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.02em;
}

.founder-name {
    font-weight: 600;
    font-size: 0.93rem;
    color: var(--text-heading);
}

.founder-role {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.value-item {
    padding: 22px 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.value-num {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--mid-gray);
    line-height: 1;
    flex-shrink: 0;
}

.value-item h3 {
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.value-item p {
    font-size: 0.87rem;
    color: var(--slate);
    max-width: none;
}

@media (max-width: 900px) {
    .about-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

/* CONTACT */
.contact {
    background: var(--white);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-left {
}

    .contact-left h2 {
        margin-bottom: 14px;
    }

    .contact-left p {
        color: var(--slate);
        font-weight: 300;
        font-size: 1.05rem;
        margin-bottom: 36px;
    }

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-info-icon {
    width: 38px;
    height: 38px;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .contact-info-icon svg {
        width: 16px;
        height: 16px;
        color: var(--navy);
    }

.contact-info-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--text-muted);
    margin-bottom: 3px;
}

.contact-info-value {
    font-size: 0.93rem;
    color: var(--text-heading);
    font-weight: 500;
}

    .contact-info-value a {
        color: var(--navy);
        text-decoration: none;
    }

        .contact-info-value a:hover {
            text-decoration: underline;
        }

.contact-right {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 16px;
}

    .form-group label {
        font-size: 0.78rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.07em;
        color: var(--text-muted);
    }

    .form-group input, .form-group select, .form-group textarea {
        font-family: var(--font-sans);
        font-size: 0.93rem;
        color: var(--text-body);
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        padding: 11px 14px;
        width: 100%;
        outline: none;
        transition: border-color 0.15s;
    }

        .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
            border-color: var(--navy);
        }

    .form-group textarea {
        resize: vertical;
        min-height: 110px;
        line-height: 1.6;
    }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-submit {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

.form-legal {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 12px;
    text-align: center;
}

    .form-legal a {
        color: var(--slate);
    }

@media (max-width: 900px) {
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

.hero-headline {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
}

.version-tag {
    display: inline-block;
    margin-top: 18px;
    padding: 4px 10px;
    background: transparent;
    color: #64748b;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ─── BETA BANNER ─── */
.beta-banner {
    position: relative;
    width: 100%;
    background: var(--navy);
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-align: center;
    padding: 9px 16px;
    margin: 0;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

    .beta-banner .dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #f59e0b;
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.5);
        animation: pulse 2s infinite;
        flex-shrink: 0;
    }

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.5);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(245, 158, 11, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
    }
}

.beta-banner strong {
    font-weight: 700;
    color: #ffffff;
}

/* ─── HOW IT WORKS ─── */
.how {
    background: var(--navy);
    color: white;
}

    .how .label {
        color: rgba(255,255,255,0.45);
    }

    .how h2 {
        color: white;
        margin-bottom: 14px;
    }

.how-intro {
    color: rgba(255,255,255,0.65);
    font-weight: 300;
    margin-bottom: 80px;
    font-size: 1.05rem;
    max-width: 56ch;
}

/* Steps Container */
.how-steps {
    display: flex;
    flex-direction: column;
    gap: 8rem;
    margin-top: 0;
}


/* Ein Schritt = Zeile mit zwei Spalten */
.how-step {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
    gap: 5rem;
}

    .how-step:nth-child(even) {
        grid-template-columns: 1fr 1.4fr;
    }

    /* Standard (ungerade): Bild links, Text rechts */
    .how-step .how-step-image {
        grid-column: 1;
        grid-row: 1;
    }

    .how-step .how-step-text {
        grid-column: 2;
        grid-row: 1;
    }

    /* Bei jedem zweiten Schritt: Text links, Bild rechts */
    .how-step:nth-child(even) .how-step-image {
        grid-column: 2;
        grid-row: 1;
    }

    .how-step:nth-child(even) .how-step-text {
        grid-column: 1;
        grid-row: 1;
    }

/* Text-Spalte */
.how-step-text {
    max-width: 480px;
}

.how-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: var(--font-sans);
}

/* WICHTIG: Spezifisch genug, um globales h3 zu überschreiben */
.how .how-step-text h3,
.how-step .how-step-text h3 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #ffffff !important;
    margin: 0 0 1rem 0;
}

.how .how-step-text p,
.how-step .how-step-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 300;
    margin: 0;
    max-width: 100%;
}

/* Bild mit dezentem Tilt + Schatten */
.how-step-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 10px 30px rgba(0, 0, 0, 0.3);
    background: var(--white);
    transition: transform 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.how-step-image img {
    display: block;
    width: 100%;
    height: auto;
}

/* Mobile */
@media (max-width: 900px) {
    .how-steps {
        gap: 5rem;
    }

    .how-step,
    .how-step:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

        .how-step .how-step-image,
        .how-step:nth-child(even) .how-step-image,
        .how-step .how-step-text,
        .how-step:nth-child(even) .how-step-text {
            grid-column: 1;
        }

        .how-step .how-step-text,
        .how-step:nth-child(even) .how-step-text {
            grid-row: 1;
        }

        .how-step .how-step-image,
        .how-step:nth-child(even) .how-step-image {
            grid-row: 2;
            transform: rotate(0deg);
        }

        .how .how-step-text h3,
        .how-step .how-step-text h3 {
            font-size: 1.4rem;
        }
}

/* Lightbox */
.how-step-image img {
    cursor: zoom-in;
    transition: transform 0.2s ease;
}

    .how-step-image img:hover {
        transform: scale(1.02);
    }

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.25s ease;
}

    .lightbox.open {
        display: flex;
        opacity: 1;
    }

    .lightbox img {
        max-width: 95vw;
        max-height: 90vh;
        width: auto;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        cursor: zoom-out;
    }

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

    .lightbox-close:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .lightbox-close svg {
        width: 22px;
        height: 22px;
    }

body.lightbox-open {
    overflow: hidden;
}


/* ============================================================
   SUB-PAGES: page-hero + content blocks
   (Loesungen, Blog, Article-Sub-Pages)
   ============================================================ */
.page-hero {
    background: var(--off-white);
    border-bottom: 1px solid var(--border);
    padding: 56px 0 48px;
}

.page-hero .label {
    margin-bottom: 12px;
}

.page-hero h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.15;
    margin-bottom: 16px;
    max-width: 22ch;
}

.content {
    padding: 64px 0 96px;
}

.content-inner {
    max-width: 760px;
}

.content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 44px 0 14px;
    line-height: 1.25;
}

.content h2:first-child {
    margin-top: 0;
}

.content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 28px 0 8px;
    line-height: 1.3;
}

.content p {
    margin-bottom: 16px;
    max-width: 72ch;
}

.content ul,
.content ol {
    padding-left: 22px;
    margin-bottom: 18px;
    max-width: 72ch;
}

.content li {
    margin-bottom: 8px;
}

.content a:not(.btn) {
    color: var(--navy);
}

.content hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 40px 0;
}

.info-box {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 26px;
    margin-bottom: 28px;
}

.info-box p {
    margin-bottom: 8px;
    max-width: none;
}

.info-box p:last-child {
    margin-bottom: 0;
}

/* Native FAQ via <details>/<summary> */
.content-faq {
    margin-top: 16px;
}

.content-faq details {
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
}

.content-faq details:first-of-type {
    border-top: 1px solid var(--border);
}

.content-faq summary {
    font-weight: 600;
    color: var(--text-heading);
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 32px;
    font-size: 1rem;
    line-height: 1.4;
}

.content-faq summary::-webkit-details-marker {
    display: none;
}

.content-faq summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: -2px;
    font-size: 22px;
    color: var(--navy);
    transition: transform .2s ease;
    line-height: 1;
}

.content-faq details[open] summary::after {
    transform: rotate(45deg);
}

.content-faq details p {
    margin: 12px 0 0;
    font-size: 0.96rem;
    color: var(--slate);
    max-width: none;
}

/* Breadcrumb above page-hero h1 */
.page-hero .breadcrumb {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.page-hero .breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
}

.page-hero .breadcrumb a:hover {
    color: var(--navy);
}
