/* ==========================================
   SAKI HSK SERVICE - EDITORIAL MAGAZINE DESIGN
   ========================================== */

/* CSS VARIABLES - Editorial Palette */
:root {
    /* Typography Colors */
    --text-primary: #1A1A1A;
    --text-secondary: #4A5568;
    --text-light: #7A869A;
    --text-white: #FFFFFF;

    /* Brand Colors - Refined Navy/Gold */
    --navy: #0F2744;
    --navy-light: #1A3A5C;
    --navy-dark: #0A1F35;
    --gold: #C9A227;
    --gold-light: #D4AF37;
    --gold-dark: #B8921F;

    /* Background Colors */
    --bg-white: #FFFFFF;
    --bg-warm: #F8F6F3;
    --bg-light: #FAFAFA;
    --bg-gray: #F0F0F0;

    /* Accent Colors */
    --accent-green: #25D366;
    --border-color: #E8E8E8;
    --border-dark: #D0D0D0;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.16);
    --shadow-accent: 0 4px 0 rgba(201, 162, 39, 0.3);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Sans Pro', Helvetica, Arial, sans-serif;
}

/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-warm);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

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

/* PAGE WRAPPER */
.page-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    background: var(--bg-white);
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ==========================================
   HERO SECTION - Editorial Asymmetric
   ========================================== */

.hero-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-white) 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.hero-content {
    padding: var(--spacing-lg) 0;
}

/* Hero Typography */
.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.hero-accent {
    color: var(--gold);
    font-style: italic;
    display: block;
}

.hero-subline {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    max-width: 500px;
}

/* Hero Badges */
.hero-badges {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.badge {
    background: var(--bg-light);
    padding: 8px 16px;
    border-radius: 20px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.badge:hover {
    background: var(--navy);
    color: var(--gold);
    border-color: var(--navy);
    transform: translateY(-1px);
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    animation: fadeIn 0.8s ease-out;
}

.hero-image-frame {
    position: relative;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(15, 39, 68, 0.25), 0 0 0 1px rgba(15, 39, 68, 0.1);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.95;
}

.hero-image-frame picture {
    display: contents;
}

.decorative-corner {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid var(--gold);
    opacity: 0.4;
    z-index: 1;
}

.corner-tl {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
}

.corner-br {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
}

/* ==========================================
   BENEFITS SECTION - Editorial Grid
   ========================================== */

.benefits-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
    position: relative;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.section-eyebrow {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.section-headline {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--navy);
    font-weight: 700;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.benefit-card {
    background: linear-gradient(145deg, var(--bg-light) 0%, var(--bg-white) 100%);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--gold);
    padding: var(--spacing-lg);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.05), transparent);
    transition: left 0.5s ease;
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(15, 39, 68, 0.15);
    border-left-width: 4px;
}

.benefit-icon {
    font-size: 28px;
    margin-bottom: var(--spacing-sm);
}

.benefit-title {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: var(--spacing-xs);
}

.benefit-description {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================
   PROCESS SECTION - Flow Design
   ========================================== */

.process-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-warm);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(201, 162, 39, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: var(--spacing-md);
    position: relative;
    margin: var(--spacing-xl) 0;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: var(--border-color);
    z-index: 0;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 var(--spacing-xs);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--navy);
    color: var(--gold);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto var(--spacing-sm);
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
    line-height: 1;
    /* Playfair (Serife) sitzt optisch tief -> Glyph anheben, Kreis bleibt fix */
    padding-bottom: 6px;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: var(--shadow-accent);
}

.step-text {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--navy);
    font-weight: 600;
    line-height: 1.5;
}

/* Reliability Box */
.reliability-box {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--text-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    text-align: center;
    margin-top: var(--spacing-xl);
    position: relative;
    overflow: hidden;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.reliability-box::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px solid var(--gold);
    border-radius: calc(var(--radius-md) - 4px);
    pointer-events: none;
}

.reliability-icon {
    font-size: 48px;
    margin-bottom: var(--spacing-md);
    filter: drop-shadow(0 2px 4px rgba(201, 162, 39, 0.3));
}

.reliability-text {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
}

.reliability-text strong {
    color: var(--gold);
    font-weight: 700;
    font-size: 22px;
    display: block;
    margin-top: var(--spacing-xs);
}

/* ==========================================
   FORM + FAQ SECTION - Split Layout
   ========================================== */

.form-faq-section {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-white);
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}

/* Form Container */
.form-container {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--spacing-xl);
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--navy) 0%, var(--gold) 100%);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.form-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.1) 0%, transparent 70%);
    border-radius: 0 0 var(--radius-md) 0;
    pointer-events: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input,
.form-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-primary);
    background: var(--bg-white);
    transition: all 0.2s ease;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.form-input::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: var(--spacing-sm);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

.submit-btn:active {
    transform: translateY(0);
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    margin-top: var(--spacing-sm);
    font-style: italic;
}

.error-message {
    display: block;
    font-size: 12px;
    color: #DC2626;
    margin-top: 4px;
    min-height: 16px;
}

/* WhatsApp Button */
.whatsapp-section {
    margin-top: var(--spacing-lg);
    text-align: center;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: var(--accent-green);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.whatsapp-icon {
    font-size: 18px;
}

.whatsapp-text {
    font-weight: 600;
}

/* Success Message */
.success-message {
    background: #E8F5E9;
    border: 1px solid #4CAF50;
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    text-align: center;
    margin-top: var(--spacing-md);
}

.success-message h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: #2E7D32;
    margin-bottom: var(--spacing-xs);
}

.success-message p {
    font-family: var(--font-body);
    font-size: 14px;
    color: #388E3C;
}

/* FAQ Section */
.faq-list {
    margin-top: var(--spacing-lg);
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: var(--spacing-md) 0;
}

.faq-question {
    width: 100%;
    padding: 16px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
    border-radius: var(--radius-sm);
}

.faq-question:hover {
    background: var(--bg-light);
    color: var(--gold);
}

.faq-icon {
    color: var(--gold);
    font-size: 24px;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
}

.faq-answer p {
    padding: 16px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* ==========================================
   FOOTER - Minimal Editorial
   ========================================== */

.footer {
    background: var(--navy);
    color: var(--text-white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.footer-location,
.footer-contact {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.footer-contact {
    flex-direction: column;
    align-items: flex-end;
    gap: var(--spacing-xs);
}

.footer-icon {
    font-size: 18px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
}

.footer-bottom p {
    font-family: var(--font-body);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================
   SITE HEADER / NAVIGATION
   ========================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(15, 39, 68, 0.08);
    background: rgba(255, 255, 255, 0.95);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-logo {
    width: 46px;
    height: 46px;
    display: block;
    flex-shrink: 0;
}

.header-emblem {
    display: flex;
    line-height: 0;
    filter: drop-shadow(0 2px 4px rgba(15, 39, 68, 0.15));
}

.header-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.5px;
    line-height: 1;
}

.header-sub {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-left: 6px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.header-nav a {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy);
    position: relative;
    transition: color 0.2s ease;
}

.header-nav a:not(.header-cta)::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.25s ease;
}

.header-nav a:not(.header-cta):hover {
    color: var(--gold);
}

.header-nav a:not(.header-cta):hover::after {
    width: 100%;
}

.header-cta {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--text-white) !important;
    padding: 9px 20px;
    border-radius: var(--radius-sm);
    border-top: 2px solid var(--gold);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

/* Offset anchored sections so they clear the sticky header */
#top, #vorteile, #ablauf, #bewerben, #faq {
    scroll-margin-top: 80px;
}

/* ==========================================
   BENEFIT ICONS (SVG chips)
   ========================================== */

.benefit-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--gold);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 10px rgba(15, 39, 68, 0.18);
    position: relative;
    z-index: 1;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
}

.benefit-card:hover .benefit-icon {
    transform: translateY(-2px) scale(1.03);
    transition: transform 0.3s ease;
}

/* ==========================================
   TRUST / TEAM SECTION
   ========================================== */

.trust-section {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-white);
}

.trust-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.trust-image {
    position: relative;
}

.trust-image::after {
    content: '';
    position: absolute;
    right: -14px;
    bottom: -14px;
    width: 70%;
    height: 70%;
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.trust-image picture,
.trust-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 32px rgba(15, 39, 68, 0.22);
}

.trust-content .section-eyebrow,
.trust-content .section-headline {
    text-align: left;
}

.trust-text {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: var(--spacing-md) 0 var(--spacing-lg);
    max-width: 540px;
}

.trust-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.trust-stat {
    padding: var(--spacing-md);
    background: linear-gradient(145deg, var(--bg-light) 0%, var(--bg-white) 100%);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius-sm);
}

.trust-stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 4px;
}

.trust-stat-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.trust-cta {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trust-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(201, 162, 39, 0.35);
}

/* ==========================================
   INLINE SVG ICONS (Emoji-Ersatz)
   ========================================== */

.reliability-icon {
    color: var(--gold);
    line-height: 0;
}

.reliability-icon svg {
    width: 44px;
    height: 44px;
}

.whatsapp-icon {
    display: inline-flex;
    line-height: 0;
}

.whatsapp-icon svg {
    width: 22px;
    height: 22px;
    display: block;
}

.footer-icon {
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

.footer-icon svg {
    width: 18px;
    height: 18px;
    display: block;
}

.success-check {
    width: 20px;
    height: 20px;
    color: #2E7D32;
    vertical-align: -4px;
    margin-right: 4px;
}

/* Footer contact mailto links */
.footer-contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-item a:hover {
    color: var(--gold);
}

/* Footer legal links */
.footer-legal {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--spacing-xs);
    font-size: 13px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--gold);
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.4);
}

/* ==========================================
   LEGAL PAGES (Impressum / Datenschutz)
   ========================================== */

.legal-header {
    background: var(--navy);
    padding: var(--spacing-md) 0;
}

.legal-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
}

.legal-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.legal-brand img {
    height: 46px;
    width: 46px;
    display: block;
}

.legal-brand-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
}

.legal-back {
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.legal-back:hover {
    text-decoration: underline;
}

.legal-main {
    background: var(--bg-white);
    padding: var(--spacing-2xl) 0;
}

.legal-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.legal-content h1 {
    font-family: var(--font-display);
    color: var(--navy);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    margin-bottom: var(--spacing-lg);
}

.legal-content h2 {
    font-family: var(--font-display);
    color: var(--navy);
    font-size: 1.25rem;
    margin: var(--spacing-lg) 0 var(--spacing-xs);
}

.legal-content p,
.legal-content address,
.legal-content li {
    font-family: var(--font-body);
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: var(--spacing-sm);
    font-style: normal;
}

.legal-content ul {
    padding-left: 1.2rem;
    margin-bottom: var(--spacing-sm);
}

.legal-content a {
    color: var(--navy);
    word-break: break-word;
}

.legal-content strong {
    color: var(--text-primary);
}

.legal-updated {
    font-size: 13px;
    color: var(--text-light);
    margin-top: var(--spacing-xl);
    border-top: 1px solid var(--border-color);
    padding-top: var(--spacing-md);
}

/* ==========================================
   THANK-YOU PAGE (nach Formularversand)
   ========================================== */

.thankyou-section {
    background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-white) 100%);
    min-height: 72vh;
    display: flex;
    align-items: center;
    padding: var(--spacing-2xl) 0;
}

.thankyou-card {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    padding: 0 var(--spacing-md);
}

.thankyou-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto var(--spacing-lg);
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    box-shadow: 0 12px 28px rgba(15, 39, 68, 0.22);
    border: 2px solid var(--gold);
}

.thankyou-icon svg {
    width: 46px;
    height: 46px;
}

.thankyou-card h1 {
    font-family: var(--font-display);
    color: var(--navy);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

.thankyou-card .thankyou-text {
    font-family: var(--font-body);
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

.thankyou-btn {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--text-white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    border-top: 2px solid var(--gold);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.thankyou-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

.thankyou-whatsapp {
    font-size: 14px;
    color: var(--text-light);
    margin-top: var(--spacing-lg);
}

.thankyou-whatsapp a {
    color: var(--accent-green);
    font-weight: 600;
}

/* Footer brand seal */
.footer-brand {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.footer-brand img {
    width: 84px;
    height: 84px;
    display: inline-block;
}

/* ==========================================
   ANIMATIONS - Fade In Effects
   ========================================== */

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

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
}

/* ==========================================
   RESPONSIVE DESIGN - Mobile First
   ========================================== */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .hero-image-frame {
        min-height: 400px;
    }

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

    .split-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .process-steps {
        flex-direction: column;
        gap: var(--spacing-lg);
    }

    .process-steps::before {
        display: none;
    }

    .process-step {
        margin-bottom: var(--spacing-md);
    }

    .footer-content {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }

    .footer-contact {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: var(--spacing-lg) 0;
        min-height: auto;
    }

    .form-faq-section {
        padding: var(--spacing-xl) 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }

    .hero-content {
        padding: var(--spacing-md) var(--spacing-lg);
    }

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

    .hero-badges {
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .process-steps {
        margin: var(--spacing-lg) 0;
    }

    .footer-content {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }

    .footer-contact {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    .hero-content {
        padding: var(--spacing-sm) var(--spacing-md);
    }

    .hero-badges {
        flex-direction: column;
    }

    .badge {
        width: 100%;
        text-align: center;
    }

    .form-container {
        padding: var(--spacing-md);
    }

    .hero-image-frame {
        min-height: 280px;
    }
}

/* ==========================================
   ACCESSIBILITY - Focus States
   ========================================== */

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    .fade-in {
        opacity: 1;
        transform: none;
    }
}

/* ==========================================
   RESPONSIVE - New Components
   ========================================== */

@media (max-width: 1024px) {
    .trust-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .trust-image {
        max-width: 420px;
        margin: 0 auto;
    }

    .trust-content .section-eyebrow,
    .trust-content .section-headline,
    .trust-text {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .trust-cta {
        display: block;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .header-nav {
        gap: var(--spacing-sm);
    }

    .header-nav a:not(.header-cta) {
        display: none;
    }

    .header-name {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .trust-section {
        padding: var(--spacing-xl) 0;
    }

    .trust-stats {
        grid-template-columns: 1fr;
    }

    .header-inner {
        padding: 0.6rem var(--spacing-sm);
    }

    .header-cta {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* Print Styles */
@media print {
    .site-header { position: static; }

    .hero-section,
    .benefits-section,
    .process-section,
    .trust-section,
    .form-faq-section {
        page-break-inside: avoid;
    }

    .form-section,
    .whatsapp-section {
        display: none;
    }
}