/* ============================================
   RISIKOANALYSE – CSS Design System
   Matches rechtsschutzprofis.de CI
   ============================================ */

/* --- CSS Variables (Brand Tokens) --- */
:root {
    --color-navy: #0f172a;
    --color-navy-light: #1e293b;
    --color-navy-mid: #334155;
    --color-cyan: #00c2cb;
    --color-cyan-dark: #00a8b0;
    --color-cyan-glow: rgba(0, 194, 203, 0.3);
    --color-orange: #f97316;
    --color-green: #22c55e;
    --color-yellow: #f59e0b;
    --color-red: #ef4444;
    --color-white: #ffffff;
    --color-bg: #f8fafc;
    --color-bg-alt: #f1f5f9;
    --color-text: #334155;
    --color-text-light: #64748b;
    --color-text-muted: #94a3b8;
    --color-border: #e2e8f0;
    --color-border-light: #f1f5f9;

    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 0 20px var(--color-cyan-glow), 0 0 60px rgba(0, 194, 203, 0.1);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition);
}

.nav.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--color-navy);
}

.nav-logo-icon {
    width: 32px;
    height: 32px;
    color: var(--color-cyan);
}

.nav-logo-icon svg {
    width: 100%;
    height: 100%;
}

.nav-logo-text {
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text);
    font-size: 14px;
    font-weight: 500;
    transition: color var(--transition);
}

.nav-links a:hover {
    color: var(--color-cyan);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    background: var(--color-navy);
    color: var(--color-white) !important;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--color-navy-light);
    transform: scale(1.03);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-navy);
    transition: var(--transition);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            #0a0e1a 0%,
            #0f172a 30%,
            #1a2542 60%,
            #1e293b 85%,
            var(--color-bg) 100%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 32px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-cyan);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.3);
    }
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-title-accent {
    display: block;
    background: linear-gradient(135deg, var(--color-cyan), #5eead4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.65);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.7);
    font-size: 12.5px;
    font-weight: 500;
}

.trust-check {
    color: var(--color-green);
    font-weight: 700;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-family: var(--font-family);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--color-cyan);
    color: var(--color-navy);
}

.btn-primary:hover {
    background: var(--color-cyan-dark);
    transform: translateY(-2px);
}

.btn-glow {
    box-shadow: var(--shadow-glow);
}

.btn-glow:hover {
    box-shadow: 0 0 30px var(--color-cyan-glow), 0 0 80px rgba(0, 194, 203, 0.15);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btn-back {
    background: transparent;
    color: var(--color-text-light);
    border: 1px solid var(--color-border);
}

.btn-back:hover {
    background: var(--color-bg-alt);
    color: var(--color-text);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 194, 203, 0.08);
    color: var(--color-cyan-dark);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 12px;
}

.section-header p {
    font-size: 16px;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   5 DIMENSIONS (Section B)
   ============================================ */
.dimensions {
    padding: 100px 0;
    background: var(--color-bg);
}

.dimensions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.dim-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.dim-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.dim-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-cyan);
}

.dim-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 194, 203, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--color-cyan);
}

.dim-card-icon svg {
    width: 24px;
    height: 24px;
}

.dim-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 10px;
}

.dim-card p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.65;
}

/* ============================================
   HOW IT WORKS (Section C)
   ============================================ */
.how-it-works {
    padding: 100px 0;
    background: var(--color-white);
}

.steps-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 48px;
}

.step-card {
    text-align: center;
    padding: 32px 28px;
    max-width: 280px;
}

.step-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-cyan), #5eead4);
    color: var(--color-navy);
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 14px rgba(0, 194, 203, 0.25);
}

.step-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 8px;
}

.step-card p {
    font-size: 14px;
    color: var(--color-text-light);
}

.step-connector {
    width: 40px;
    color: var(--color-border);
    flex-shrink: 0;
}

.step-connector svg {
    width: 100%;
}

.steps-cta {
    text-align: center;
}

/* ============================================
   FUNNEL
   ============================================ */
.funnel-section {
    padding: 80px 0 120px;
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-bg) 100%);
}

.funnel-container {
    max-width: 720px;
    margin: 0 auto;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

/* Progress Bar */
.funnel-progress {
    margin-bottom: 36px;
}

.funnel-progress-bar {
    height: 6px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 10px;
    position: relative;
}

.funnel-progress-bar::after {
    content: '';
    display: block;
    height: 100%;
    width: var(--progress, 10%);
    background: linear-gradient(90deg, var(--color-cyan), #5eead4);
    border-radius: var(--radius-full);
    transition: width 0.5s ease;
}

.funnel-progress-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-muted);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.progress-phase {
    display: inline-block;
    padding: 3px 12px;
    background: rgba(0, 194, 203, 0.08);
    color: var(--color-cyan-dark);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.progress-detail {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text-muted);
}

/* Step Dots */
.step-dots {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-bottom: 24px;
}

.step-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-border);
    transition: all 0.3s ease;
}

.step-dots .dot.done {
    background: var(--color-cyan);
}

.step-dots .dot.active {
    background: var(--color-navy);
    width: 24px;
    border-radius: var(--radius-full);
}

/* Step Content */
.funnel-step-wrapper {
    min-height: 300px;
}

.funnel-step {
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Step Header with Icon */
.funnel-step-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 4px;
}

.funnel-step-icon {
    font-size: 28px;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}

.funnel-step-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 4px;
}

.funnel-step-subtitle {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 0;
}

/* Diagnostic Intro Card */
.funnel-intro {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 12px 16px;
    background: var(--color-bg-alt, #f8fafc);
    border-left: 3px solid var(--color-cyan);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 16px 0 24px;
}

.funnel-intro-icon {
    color: var(--color-cyan-dark);
    font-weight: 700;
    font-size: 14px;
    line-height: 1.6;
    flex-shrink: 0;
}

.funnel-intro p {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
}

/* Micro-copy */
.funnel-micro {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding-top: 14px;
    border-top: 1px solid var(--color-border-light, #f1f5f9);
    font-size: 12px;
    color: var(--color-text-muted);
    font-weight: 500;
}

.funnel-micro-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-green);
    flex-shrink: 0;
}

/* Form Elements */
.form-group {
    margin-bottom: 22px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: var(--font-family);
    font-size: 14px;
    color: var(--color-text);
    background: var(--color-white);
    transition: var(--transition);
    outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--color-cyan);
    box-shadow: 0 0 0 3px rgba(0, 194, 203, 0.12);
}

.form-input::placeholder {
    color: var(--color-text-muted);
}

.form-textarea {
    min-height: 80px;
    resize: vertical;
}

.form-hint {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-top: 4px;
}

/* Radio & Checkbox Groups */
.radio-group,
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.radio-option,
.checkbox-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
}

.radio-option:hover,
.checkbox-option:hover {
    border-color: var(--color-cyan);
    background: rgba(0, 194, 203, 0.03);
}

.radio-option.selected,
.checkbox-option.selected {
    border-color: var(--color-cyan);
    background: rgba(0, 194, 203, 0.06);
}

.radio-option input,
.checkbox-option input {
    accent-color: var(--color-cyan);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Number Input Row (for units) */
.number-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    margin-bottom: 14px;
}

.number-row label {
    font-size: 14px;
    color: var(--color-text);
}

.number-row input[type="number"] {
    width: 80px;
    padding: 10px 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: var(--font-family);
    font-size: 14px;
    text-align: center;
    outline: none;
    transition: var(--transition);
}

.number-row input[type="number"]:focus {
    border-color: var(--color-cyan);
    box-shadow: 0 0 0 3px rgba(0, 194, 203, 0.12);
}

/* Object Cards (Block 1) */
.object-card {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 20px;
    position: relative;
}

.object-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.object-card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-navy);
}

.object-card-remove {
    background: none;
    border: none;
    color: var(--color-red);
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.object-card-remove:hover {
    background: rgba(239, 68, 68, 0.08);
}

.add-object-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: rgba(0, 194, 203, 0.08);
    color: var(--color-cyan-dark);
    border: 1px dashed var(--color-cyan);
    border-radius: var(--radius-md);
    font-family: var(--font-family);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.add-object-btn:hover {
    background: rgba(0, 194, 203, 0.14);
}

/* Funnel Nav */
.funnel-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border-light);
}

/* ============================================
   RESULT SECTION
   ============================================ */
.result-section {
    padding: 60px 0 120px;
    background: var(--color-bg);
}

.result-card {
    max-width: 640px;
    margin: 0 auto;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.result-score {
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.result-score-label {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.result-level {
    display: inline-block;
    padding: 6px 20px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 28px;
}

.result-bullets {
    text-align: left;
    margin-bottom: 36px;
}

.result-bullets li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--color-text);
    list-style: none;
    position: relative;
    padding-left: 24px;
}

.result-bullets li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--color-cyan);
    font-weight: 700;
}

/* Contact Form in Result */
.result-form {
    text-align: left;
}

.result-form h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 20px;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-checkbox-wrapper {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-top: 16px;
    margin-bottom: 20px;
}

.form-checkbox-wrapper input[type="checkbox"] {
    accent-color: var(--color-cyan);
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.form-checkbox-wrapper label {
    font-size: 12.5px;
    color: var(--color-text-light);
    line-height: 1.5;
}

.result-submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    margin-top: 8px;
}

.form-error {
    color: var(--color-red);
    font-size: 12px;
    margin-top: 4px;
}

.field-error {
    border-color: var(--color-red) !important;
}

/* Success state */
.result-success {
    text-align: center;
    padding: 40px 0;
}

.result-success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--color-green);
    font-size: 32px;
}

.result-success h3 {
    font-size: 22px;
    color: var(--color-navy);
    margin-bottom: 12px;
}

.result-success p {
    color: var(--color-text-light);
    font-size: 15px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-navy);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
    margin-bottom: 16px;
}

.footer-logo .nav-logo-icon {
    width: 28px;
    height: 28px;
    color: var(--color-cyan);
}

.footer-logo span {
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.footer-text {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 20px;
    max-width: 350px;
}

.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact-items a,
.footer-contact-items span {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13px;
    transition: color var(--transition);
}

.footer-contact-items a:hover {
    color: var(--color-cyan);
}

.footer-col h4 {
    color: var(--color-white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    padding: 4px 0;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--color-cyan);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--color-white);
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-lg);
    }

    .hero {
        padding: 100px 20px 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-trust {
        gap: 8px;
    }

    .trust-item {
        font-size: 11px;
        padding: 5px 10px;
    }

    .dimensions {
        padding: 60px 0;
    }

    .dimensions-grid {
        grid-template-columns: 1fr;
    }

    .how-it-works {
        padding: 60px 0;
    }

    .steps-row {
        flex-direction: column;
        gap: 0;
    }

    .step-connector {
        transform: rotate(90deg);
        margin: -8px 0;
    }

    .funnel-container {
        padding: 24px 20px;
        margin: 0 -8px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .result-card {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .number-row input[type="number"] {
        width: 70px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading spinner */
.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-border);
    border-top-color: var(--color-cyan);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}