/* ── HERO ── */
.hero {
    background: linear-gradient(155deg, #ffffff 0%, var(--color-violet-tint) 50%, #dbeafe 100%);
    padding: 5rem 1.5rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(124,58,237,0.07) 0%, transparent 65%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -150px; left: -150px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(57,187,248,0.06) 0%, transparent 65%);
    pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-logo { margin-bottom: 1.5rem; }
.hero-logo img {
    height: 160px; width: auto;
    filter: drop-shadow(0 8px 24px rgba(124,58,237,0.15));
}
.hero-badges {
    display: flex; justify-content: center; align-items: center;
    gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1.75rem;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--color-violet-tint);
    border: 1px solid var(--color-border);
    color: var(--color-violet);
    font-size: 0.8rem; font-weight: 600;
    padding: 5px 14px; border-radius: 20px;
}
.hero-badge.pulse::before {
    content: ''; width: 6px; height: 6px;
    border-radius: 50%; background: var(--color-violet);
    animation: pulse 2s infinite;
}
.hero-badge.eu {
    background: #EFF6FF;
    border-color: #BFDBFE;
    color: #1D4ED8;
}
.hero-badge.dsgvo {
    background: #ECFDF5;
    border-color: #A7F3D0;
    color: #059669;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
.hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700; letter-spacing: -0.02em;
    margin-bottom: 1.2rem; line-height: 1.15;
}
.hero-sub {
    font-size: 1.1rem; color: var(--color-text-muted);
    max-width: 540px; margin: 0 auto 2.5rem;
    font-weight: 300; line-height: 1.7;
}
.hero-actions {
    display: flex; justify-content: center;
    align-items: center; gap: 1rem; flex-wrap: wrap;
}

/* ── TRUST BAR ── */
.trust-bar { background: var(--color-navy); padding: 2.5rem 1.5rem; }
.trust-bar .container {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 2rem;
}
.trust-item {
    display: flex; align-items: center; gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    transition: background 0.2s;
}
.trust-item:hover { background: rgba(255,255,255,0.09); }
.trust-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: var(--grad);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem; color: white; flex-shrink: 0;
}
.trust-text strong {
    display: block; color: white; font-size: 0.95rem;
    font-weight: 600; margin-bottom: 2px;
}
.trust-text span { color: rgba(255,255,255,0.55); font-size: 0.8rem; }

/* ── FEATURES ── */
.features-section { padding: 5rem 1.5rem; background: #fff; }
.features-section .container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-label {
    display: inline-block; font-size: 0.78rem; font-weight: 600;
    color: var(--color-violet); text-transform: uppercase;
    letter-spacing: 0.1em; margin-bottom: 0.75rem;
}
.section-header h2 { font-size: clamp(1.6rem,3vw,2.2rem); margin-bottom: 0.75rem; }
.section-header p { color: var(--color-text-muted); font-size:1rem; font-weight:300; max-width:520px; margin:0 auto; }
.vorteile-img-wrap { text-align: center; }
.vorteile-img-wrap img {
    width: 100%; max-width: 900px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ── HOW IT WORKS ── */
.how-section { padding: 5rem 1.5rem; background: var(--color-bg-soft); }
.how-section .container { max-width: 1100px; margin: 0 auto; }
.steps-grid {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 2rem; margin-top: 3.5rem; position: relative;
}
.steps-grid::before {
    content: '';
    position: absolute; top: 32px; left: calc(16.66% + 1rem); right: calc(16.66% + 1rem);
    height: 2px;
    background: linear-gradient(90deg, var(--color-violet), var(--color-sky));
    z-index: 0;
}
.step-card {
    text-align: center; position: relative; z-index: 1;
    background: white;
    border: 1px solid var(--color-border-soft);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.25s, transform 0.2s;
}
.step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.step-number {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--grad);
    color: white; font-size: 1.4rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 16px rgba(122,61,237,0.3);
}
.step-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.5rem; }
.step-card p { font-size: 0.88rem; color: var(--color-text-muted); line-height: 1.65; font-weight: 300; }

/* ── EU & DSGVO SECTION ── */
.eu-section {
    padding: 5.5rem 1.5rem;
    background: var(--color-navy);
    position: relative; overflow: hidden;
}
.eu-section::before {
    content: '';
    position: absolute; top: -200px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(57,187,248,0.08) 0%, transparent 65%);
    pointer-events: none;
}
.eu-section::after {
    content: '';
    position: absolute; bottom: -200px; left: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(122,61,237,0.1) 0%, transparent 65%);
    pointer-events: none;
}
.eu-section .container { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.eu-section .section-label { color: var(--color-brand-blue); }
.eu-section h2 { color: white; font-size: clamp(1.7rem,3vw,2.4rem); margin-bottom: 0.75rem; }
.eu-section .section-header p { color: rgba(255,255,255,0.6); }
.eu-pillars {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 1.5rem; margin-top: 3.5rem;
}
.eu-pillar {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    transition: background 0.2s, border-color 0.2s;
}
.eu-pillar:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(255,255,255,0.2);
}
.eu-pillar-icon {
    width: 52px; height: 52px; border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; margin-bottom: 1.25rem;
}
.eu-pillar-icon.blue { background: rgba(57,187,248,0.15); color: var(--color-brand-blue); }
.eu-pillar-icon.violet { background: rgba(122,61,237,0.2); color: #C084FC; }
.eu-pillar-icon.green { background: rgba(0,206,155,0.15); color: var(--color-brand-green); }
.eu-pillar h3 { color: white; font-size: 1.05rem; font-weight: 600; margin-bottom: 0.6rem; }
.eu-pillar p { color: rgba(255,255,255,0.6); font-size: 0.88rem; line-height: 1.65; font-weight: 300; }
.eu-badge-row {
    display: flex; justify-content: center; gap: 1rem;
    flex-wrap: wrap; margin-top: 3rem;
}
.eu-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.85);
    font-size: 0.82rem; font-weight: 500;
    padding: 6px 16px; border-radius: 20px;
}
.eu-badge i { color: var(--color-brand-blue); }

/* ── CONTACT ── */
.contact-section { padding: 6rem 1.5rem; background: var(--color-bg-soft); }
.contact-layout { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 4rem; align-items: stretch; margin-top: 3rem; }
.contact-info-card {
    background: var(--color-navy);
    color: #ffffff;
    padding: 3.5rem;
    border-radius: var(--radius-xl);
    position: relative; overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.contact-info-card h3 { color: #ffffff; font-size: 1.8rem; margin-bottom: 1.2rem; }
.contact-info-card p { color: rgba(255,255,255,0.9); font-weight: 300; line-height: 1.7; margin-bottom: 2rem; }
.logged-in-hint {
    background: rgba(255,255,255,0.08);
    border-left: 4px solid var(--color-brand-blue);
    padding: 1.2rem; border-radius: var(--radius-md);
    margin-bottom: 2rem; font-size: 0.88rem;
    color: #ffffff; line-height: 1.6;
}
.logged-in-hint a { color: #ffffff; text-decoration: underline; font-weight: 600; }
.support-mail-link {
    display: inline-flex; align-items: center; gap: 0.75rem;
    color: rgba(255,255,255,0.6); font-size: 0.9rem;
    text-decoration: none; transition: color 0.2s;
}
.support-mail-link:hover { color: #ffffff; }
.contact-form-card { background: #fff; border-radius: var(--radius-xl); padding: 3.5rem; box-shadow: var(--shadow-md); }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.form-status-msg {
    padding: 1rem; border-radius: var(--radius-md); font-size: 0.9rem;
    margin-bottom: 1.5rem; display: none; text-align: center;
}
.form-status-success { background: #ecfdf5; color: #059669; border: 1px solid #10b981; display: block; }
.form-status-error { background: #fef2f2; color: #dc2626; border: 1px solid #ef4444; display: block; }
.character-counter {
    margin-top: 0.35rem;
    text-align: right;
    color: var(--color-text-muted);
    font-size: 0.78rem;
}
.character-counter.at-limit { color: var(--color-danger); font-weight: 600; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .features-grid,
    .steps-grid,
    .eu-pillars,
    .trust-bar .container { grid-template-columns: 1fr; }
    .steps-grid::before { display: none; }
    .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .form-grid-2 { grid-template-columns: 1fr; }
}

