:root {
    --flame: #E8571F;
    --flame-light: #FF8A50;
    --flame-glow: #FFC297;
    --ember: #C43E0C;
    --navy: #0B1A2E;
    --navy-mid: #132B4A;
    --navy-light: #1E3A5F;
    --cream: #FDF8F4;
    --cream-warm: #FFF1E8;
    --sand: #F5EDE6;
    --text: #1A1A1A;
    --text-mid: #555;
    --text-soft: #888;
    --green: #1B9E4B;
    --white: #FFFFFF;
    --r-sm: 6px;
    --r-md: 12px;
    --r-lg: 20px;
    --r-pill: 100px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
    line-height: 1.65;
}

h1, h2, h3 { font-family: 'DM Serif Display', serif; font-weight: 400; line-height: 1.15; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ═══ NAV ═══ */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 1.1rem 2rem;
    transition: all 0.4s ease;
    background: rgba(253, 248, 244, 0.95);
    backdrop-filter: blur(16px);
}
.nav.scrolled {
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}
.nav-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; color: var(--text); }
.logo-img {
    width: 38px; height: 38px;
    object-fit: contain;
    border-radius: 6px;
}
.footer .logo-img {
    width: 32px; height: 32px;
}
.logo-name { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 1.15rem; letter-spacing: -0.03em; }
.logo-name span { color: var(--flame); }

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
    text-decoration: none; color: var(--text-mid); font-weight: 600;
    font-size: 0.88rem; letter-spacing: 0.01em; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--flame); }
.nav-cta {
    background: var(--navy) !important; color: var(--white) !important;
    padding: 0.6rem 1.4rem; border-radius: var(--r-pill);
    font-size: 0.85rem !important; transition: all 0.3s !important;
}
.nav-cta:hover { background: var(--flame) !important; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,87,31,0.3); }

/* Kundenportal-Button (Nav) */
.nav-links a.nav-portal {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: var(--flame) !important; color: var(--white) !important;
    padding: 0.6rem 1.4rem; border-radius: var(--r-pill);
    font-size: 0.85rem !important; transition: all 0.3s !important;
}
.nav-links a.nav-portal svg { width: 15px; height: 15px; }
.nav-links a.nav-portal:hover {
    background: var(--ember) !important; color: var(--white) !important;
    transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,87,31,0.3);
}

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }

.mobile-nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--cream); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: 'DM Serif Display', serif; font-size: 1.8rem; color: var(--text); text-decoration: none; }
.mobile-nav a:hover { color: var(--flame); }
.mobile-close { position: absolute; top: 1.5rem; right: 2rem; background: none; border: none; font-size: 2rem; cursor: pointer; color: var(--text); }

/* Kundenportal-Button (Mobile-Menü) */
.mobile-nav a.mobile-portal {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: 'Manrope', sans-serif; font-size: 1.1rem; font-weight: 700;
    background: var(--flame); color: var(--white);
    padding: 0.7rem 1.8rem; border-radius: var(--r-pill);
}
.mobile-nav a.mobile-portal:hover { background: var(--ember); color: var(--white); }
.mobile-nav a.mobile-portal svg { width: 20px; height: 20px; }

/* ═══ HERO ═══ */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    padding: 8rem 2rem 5rem; position: relative; overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background: radial-gradient(ellipse 70% 50% at 75% 30%, rgba(255,194,151,0.18), transparent),
                radial-gradient(ellipse 50% 40% at 10% 80%, rgba(232,87,31,0.06), transparent);
}
.hero-texture {
    position: absolute; inset: 0; z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23000' fill-opacity='0.015'%3E%3Ccircle cx='20' cy='20' r='1'/%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    max-width: 1200px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 4rem; align-items: center;
    position: relative; z-index: 1;
}

.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-weight: 700; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--flame); margin-bottom: 1.5rem;
    opacity: 0; animation: fadeUp 0.7s ease forwards;
}
.hero-eyebrow::before {
    content: ''; width: 28px; height: 2px; background: var(--flame); border-radius: 2px;
}

.hero h1 {
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    letter-spacing: -0.02em; margin-bottom: 1.5rem;
    opacity: 0; animation: fadeUp 0.7s ease forwards 0.1s;
}
.hero h1 em { font-style: italic; color: var(--flame); font-family: 'DM Serif Display', serif; }

.hero-sub {
    font-size: 1.15rem; color: var(--text-mid); line-height: 1.75;
    max-width: 520px; margin-bottom: 2.5rem;
    opacity: 0; animation: fadeUp 0.7s ease forwards 0.2s;
}

.hero-actions {
    display: flex; gap: 1rem; flex-wrap: wrap; align-items: center;
    opacity: 0; animation: fadeUp 0.7s ease forwards 0.3s;
}

.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.9rem 2rem; border-radius: var(--r-pill); font-weight: 700; font-size: 0.95rem; text-decoration: none; border: none; cursor: pointer; transition: all 0.3s ease; font-family: 'Manrope', sans-serif; }
.btn-flame { background: var(--flame); color: white; }
.btn-flame:hover { background: var(--ember); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(232,87,31,0.3); }
.btn-outline { background: transparent; color: var(--text); border: 2px solid rgba(0,0,0,0.1); }
.btn-outline:hover { border-color: var(--flame); color: var(--flame); }
.btn-white { background: white; color: var(--flame); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.btn svg { width: 18px; height: 18px; }

/* Hero card */
.hero-card-wrapper {
    position: relative;
    opacity: 0; animation: fadeUp 0.9s ease forwards 0.35s;
}
.hero-card {
    background: var(--white); border-radius: var(--r-lg); padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(11,26,46,0.07), 0 1px 3px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.04);
}
.hero-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
.hero-card-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; color: var(--text-soft); }
.hero-card-live { display: flex; align-items: center; gap: 0.4rem; font-size: 0.75rem; font-weight: 700; color: var(--green); }
.hero-card-live::before { content: ''; width: 7px; height: 7px; background: var(--green); border-radius: 50%; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-card-amount { font-family: 'DM Serif Display', serif; font-size: 3.2rem; color: var(--flame); margin-bottom: 0.25rem; }
.hero-card-amount small { font-family: 'Manrope', sans-serif; font-size: 0.85rem; color: var(--text-soft); font-weight: 500; }
.hero-card-note { font-size: 0.82rem; color: var(--text-soft); margin-bottom: 1.5rem; }

.hero-card-rows { border-top: 1px solid rgba(0,0,0,0.05); padding-top: 1.2rem; display: flex; flex-direction: column; gap: 0.6rem; }
.hero-card-row { display: flex; justify-content: space-between; font-size: 0.88rem; }
.hero-card-row .label { color: var(--text-soft); }
.hero-card-row .val { font-weight: 700; }
.hero-card-row .val.old { text-decoration: line-through; color: var(--text-soft); font-weight: 400; }
.hero-card-row .val.new { color: var(--green); }

.hero-float {
    position: absolute; background: white; border-radius: var(--r-md); padding: 0.75rem 1.1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08); display: flex; align-items: center; gap: 0.5rem;
    font-weight: 700; font-size: 0.8rem;
}
.hero-float svg { width: 18px; height: 18px; flex-shrink: 0; }
.hero-float-1 { top: -16px; right: -20px; animation: floatA 5s ease-in-out infinite; }
.hero-float-2 { bottom: -12px; left: -24px; animation: floatA 5s ease-in-out infinite 1.5s; }
@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }

@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

/* ═══ TRUST STRIP ═══ */
.trust-strip {
    background: var(--white); border-top: 1px solid rgba(0,0,0,0.04); border-bottom: 1px solid rgba(0,0,0,0.04);
    padding: 1.8rem 2rem;
}
.trust-strip-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap;
}
.trust-chip {
    display: flex; align-items: center; gap: 0.6rem;
    font-size: 0.88rem; font-weight: 600; color: var(--text-mid);
}
.trust-chip-icon {
    width: 36px; height: 36px; border-radius: 50%; background: var(--cream-warm);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.trust-chip-icon svg { width: 18px; height: 18px; color: var(--flame); }

/* ═══ SECTION BASICS ═══ */
.sec { padding: 6rem 2rem; }
.sec-tag {
    display: inline-block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em;
    font-weight: 700; color: var(--flame); margin-bottom: 0.75rem;
}
.sec-title { font-size: clamp(1.9rem, 3.5vw, 2.8rem); letter-spacing: -0.01em; margin-bottom: 1rem; }
.sec-sub { font-size: 1.05rem; color: var(--text-mid); line-height: 1.75; max-width: 580px; }
.sec-header { text-align: center; max-width: 660px; margin: 0 auto 3.5rem; }
.sec-header .sec-sub { margin: 0 auto; }

/* ═══ PROMISE / USP ═══ */
.promise { background: var(--white); }
.promise-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.promise-card {
    background: var(--cream); border-radius: var(--r-lg); padding: 2.2rem;
    border: 1px solid transparent; transition: all 0.4s ease; position: relative; overflow: hidden;
}
.promise-card:hover { border-color: rgba(232,87,31,0.12); transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,0.04); }
.promise-card::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--flame), var(--flame-light)); opacity: 0; transition: opacity 0.3s;
}
.promise-card:hover::after { opacity: 1; }
.promise-icon {
    width: 48px; height: 48px; border-radius: var(--r-md);
    background: linear-gradient(135deg, var(--flame), var(--flame-light));
    display: flex; align-items: center; justify-content: center; margin-bottom: 1.3rem;
}
.promise-icon svg { width: 24px; height: 24px; color: white; }
.promise-card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.promise-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; }

/* ═══ HOW / ABLAUF ═══ */
.how { background: var(--navy); color: white; position: relative; overflow: hidden; }
.how::before {
    content: ''; position: absolute; top: 50%; left: 50%; width: 700px; height: 700px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(232,87,31,0.07) 0%, transparent 70%); border-radius: 50%;
}
.how .sec-tag { color: var(--flame-light); }
.how .sec-sub { color: rgba(255,255,255,0.55); }
.how .sec-header { position: relative; z-index: 1; }

.steps-list { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; counter-reset: step; }
.step-item {
    display: grid; grid-template-columns: 64px 1fr; gap: 1.8rem; align-items: start;
    padding-bottom: 2.5rem; margin-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.step-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.step-num {
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, var(--flame), var(--ember));
    display: flex; align-items: center; justify-content: center;
    font-family: 'DM Serif Display', serif; font-size: 1.4rem; color: white;
}
.step-item h3 { font-size: 1.3rem; margin-bottom: 0.4rem; }
.step-item p { color: rgba(255,255,255,0.55); font-size: 0.95rem; line-height: 1.7; }

/* ═══ ABOUT ═══ */
.about-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-text .sec-sub { max-width: 100%; }
.about-text p + p { margin-top: 1rem; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.5rem; }
.stat {
    background: var(--white); border-radius: var(--r-md); padding: 1.3rem; text-align: center;
    box-shadow: 0 2px 16px rgba(0,0,0,0.03);
}
.stat-num { font-family: 'DM Serif Display', serif; font-size: 1.8rem; color: var(--flame); }
.stat-label { font-size: 0.78rem; color: var(--text-soft); margin-top: 0.2rem; font-weight: 600; }

.about-visual {
    background: var(--cream-warm); border-radius: var(--r-lg); padding: 3rem;
    display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 400px;
}
.about-timeline { width: 100%; max-width: 320px; }
.tl-item { display: flex; gap: 1rem; align-items: start; margin-bottom: 1.5rem; }
.tl-item:last-child { margin-bottom: 0; }
.tl-dot-wrap { display: flex; flex-direction: column; align-items: center; height: 100%;  }
.tl-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--flame); flex-shrink: 0; border: 3px solid var(--cream-warm); }
.tl-line { width: 2px; flex: 1; background: rgba(232,87,31,0.2); }
.tl-item { display: flex; gap: 1rem; align-items: stretch; margin-bottom: 1.5rem; }
.tl-year { font-family: 'DM Serif Display', serif; font-size: 1.1rem; color: var(--flame); }
.tl-desc { font-size: 0.82rem; color: var(--text-mid); line-height: 1.5; }

/* ═══ AUSSENDIENST ═══ */
.ad-section { background: var(--white); }
.ad-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.ad-visual {
    background: var(--navy); border-radius: var(--r-lg); padding: 3rem;
    min-height: 420px; display: flex; flex-direction: column; justify-content: center; align-items: center;
    position: relative; overflow: hidden;
}
.ad-visual::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 70%, rgba(232,87,31,0.15), transparent 60%);
}
.ad-icon-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; position: relative; z-index: 1; }
.ad-icon-card {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--r-md); padding: 1.5rem; text-align: center; color: white;
}
.ad-icon-card svg { width: 32px; height: 32px; color: var(--flame-light); margin-bottom: 0.75rem; }
.ad-icon-card span { display: block; font-size: 0.82rem; font-weight: 600; }

.ad-text h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.ad-features { list-style: none; margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.ad-features li {
    display: flex; align-items: start; gap: 0.75rem;
    font-size: 0.92rem; color: var(--text-mid); line-height: 1.6;
}
.ad-features li svg { width: 20px; height: 20px; color: var(--green); flex-shrink: 0; margin-top: 2px; }

/* ═══ CTA BAND ═══ */
.cta-band {
    background: linear-gradient(135deg, var(--flame), var(--ember));
    padding: 4.5rem 2rem; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 25% 50%, rgba(255,200,150,0.2), transparent 50%),
                radial-gradient(circle at 75% 50%, rgba(196,62,12,0.3), transparent 50%);
}
.cta-band-inner { position: relative; z-index: 1; max-width: 650px; margin: 0 auto; }
.cta-band h2 { color: white; font-size: clamp(1.9rem, 3.5vw, 2.8rem); margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 2rem; line-height: 1.7; }

/* ═══ CONTACT ═══ */
.contact { background: var(--white); }
.contact-grid {
    max-width: 1000px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 3.5rem;
}
.contact-info h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.contact-info > p { color: var(--text-mid); line-height: 1.7; margin-bottom: 1.5rem; }
.ci { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 1rem; }
.ci-icon {
    width: 40px; height: 40px; border-radius: 50%; background: var(--cream-warm);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ci-icon svg { width: 18px; height: 18px; color: var(--flame); }
.ci a { color: var(--text); text-decoration: none; font-weight: 600; font-size: 0.92rem; transition: color 0.2s; }
.ci a:hover { color: var(--flame); }
.ci span { font-weight: 600; font-size: 0.92rem; }

.contact-form { display: flex; flex-direction: column; gap: 0.9rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.fg { display: flex; flex-direction: column; gap: 0.3rem; }
.fg label { font-weight: 700; font-size: 0.78rem; color: var(--text-soft); text-transform: uppercase; letter-spacing: 0.04em; }
.fg input, .fg textarea, .fg select {
    padding: 0.8rem 1rem; border: 2px solid rgba(0,0,0,0.06); border-radius: var(--r-sm);
    font-family: 'Manrope', sans-serif; font-size: 0.92rem; background: var(--cream);
    outline: none; transition: border-color 0.2s;
}
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--flame); }
.fg textarea { resize: vertical; min-height: 100px; }

/* ═══ KARRIERE ═══ */
.karriere { background: var(--cream); }
.jobs-grid { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.job-card {
    background: var(--white); border-radius: var(--r-md); padding: 1.8rem 2rem;
    border: 1px solid rgba(0,0,0,0.04); transition: all 0.3s; cursor: pointer;
    display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 1.5rem;
}
.job-card:hover { border-color: rgba(232,87,31,0.15); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.04); }
.job-title { font-family: 'DM Serif Display', serif; font-size: 1.2rem; margin-bottom: 0.3rem; }
.job-meta { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.job-tag {
    display: inline-flex; align-items: center; gap: 0.35rem;
    font-size: 0.78rem; font-weight: 600; color: var(--text-soft);
}
.job-tag svg { width: 14px; height: 14px; }
.job-arrow { width: 40px; height: 40px; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center; transition: all 0.3s; flex-shrink: 0; }
.job-card:hover .job-arrow { background: var(--flame); }
.job-card:hover .job-arrow svg { color: white; }
.job-arrow svg { width: 18px; height: 18px; color: var(--text-soft); transition: color 0.3s; }

.job-detail { display: none; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(0,0,0,0.05); }
.job-detail.open { display: block; }
.job-detail p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 0.75rem; }
.job-detail ul { padding-left: 1.2rem; margin-bottom: 0.75rem; }
.job-detail li { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; }
.job-apply { margin-top: 1rem; }

/* ═══ PAGE HERO (subpages) ═══ */
.page-hero {
    padding: 10rem 2rem 4rem; text-align: center;
    background: var(--navy); color: white; position: relative; overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 100%, rgba(232,87,31,0.1), transparent 60%);
}
.page-hero h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); position: relative; z-index: 1; margin-bottom: 0.75rem; }
.page-hero h1 em { color: var(--flame-light); }
.page-hero p { color: rgba(255,255,255,0.55); font-size: 1.05rem; position: relative; z-index: 1; max-width: 550px; margin: 0 auto; }

/* Light steps (for Außendienst page) */
.steps-light .step-item { color: var(--text); border-bottom-color: rgba(0,0,0,0.06); }
.steps-light .step-item h3 { color: var(--text); }
.steps-light .step-item p { color: var(--text-mid); }

/* ═══ LEGAL PAGES ═══ */
.legal-content {
    max-width: 800px; margin: 0 auto; padding: 8rem 2rem 4rem;
}
.legal-content h1 {
    font-size: clamp(2rem, 3.5vw, 2.8rem); margin-bottom: 2rem;
    padding-bottom: 1.5rem; border-bottom: 2px solid rgba(232,87,31,0.15);
}
.legal-content h2 {
    font-size: 1.3rem; margin-top: 2.5rem; margin-bottom: 0.75rem; color: var(--navy);
}
.legal-content h3 {
    font-size: 1.05rem; margin-top: 1.5rem; margin-bottom: 0.5rem;
}
.legal-content p {
    color: var(--text-mid); line-height: 1.8; margin-bottom: 1rem; font-size: 0.95rem;
}
.legal-content ul, .legal-content ol {
    color: var(--text-mid); line-height: 1.8; margin-bottom: 1rem; padding-left: 1.5rem; font-size: 0.95rem;
}
.legal-content li { margin-bottom: 0.3rem; }
.legal-content a { color: var(--flame); text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }
.legal-content strong { color: var(--text); }
.legal-back {
    display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 2rem;
    color: var(--flame); font-weight: 600; text-decoration: none; font-size: 0.92rem;
}
.legal-back:hover { text-decoration: underline; }

/* ═══ FOOTER ═══ */
.footer { background: var(--navy); color: rgba(255,255,255,0.5); padding: 4rem 2rem 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem;
    padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand .logo-name { color: white; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 300px; }
.footer-col h4 { color: white; font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 0.85rem; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.87rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--flame-light); }
.footer-bottom { padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--flame-light); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 968px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-card-wrapper { max-width: 400px; margin: 0 auto; }
    .hero-float { display: none; }
    .promise-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .about-grid, .ad-grid, .contact-grid { grid-template-columns: 1fr; }
    .ad-visual { min-height: 320px; }
    .about-visual { min-height: 320px; }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero { padding: 7rem 1.5rem 3rem; min-height: auto; }
    .sec { padding: 4rem 1.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .trust-strip-inner { flex-direction: column; gap: 1rem; }
    .about-stats { grid-template-columns: repeat(3, 1fr); }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .step-item { grid-template-columns: 48px 1fr; gap: 1.2rem; }
    .step-num { width: 48px; height: 48px; font-size: 1.1rem; }
}

/* reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: all 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
