/* =============================================
   ORION STORE - DESIGN TOKENS (Landing Style)
   ============================================= */
:root {
    --bg: rgb(210,214,225);
    --page: rgb(245,247,252);
    --panelGrey: #EEEFF4;
    --text: rgb(35,38,45);
    --muted: rgb(70,85,115);

    --accent: rgb(120,165,210);
    --accentDark: rgb(90,130,180);
    --accentText: rgb(10,18,28);

    --surface: rgba(255,255,255,.72);
    --surface2: rgba(255,255,255,.58);
    --surface3: rgba(255,255,255,.42);

    --stroke: rgba(35,38,45,.10);
    --stroke2: rgba(35,38,45,.06);

    --success: #22c55e;
    --warning: #f59e0b;
    --danger:  #dc2626;
    --purple:  #9333ea;

    --shadow:   0 18px 50px rgba(35,38,45,.14);
    --shadowMd: 0 12px 34px rgba(35,38,45,.12);
    --shadowSm: 0  6px 20px rgba(35,38,45,.08);

    --radius:   16px;
    --radiusMd: 12px;
    --radiusSm:  8px;

    --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

.container { max-width: 1400px; margin: 0 auto; padding: 0 32px; }

/* =============================================
   NAVIGATION (Landing 1:1)
   ============================================= */
.nav {
    position: sticky;
    top: 0;
    background: var(--panelGrey);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--stroke);
    z-index: 1000;
    padding: 10px 0;
}

.nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    color: var(--text);
}

.brand-logo { height: 40px; }

.nav-menu { display: flex; align-items: center; gap: 25px; }

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    text-decoration: none;
    color: var(--muted);
    font-size: 14px;
    border-radius: var(--radiusSm);
    transition: all 0.2s;
}

.nav-link:hover {
    color: var(--text);
    background: rgba(120,165,210,.14);
    transform: translateY(-1px);
}

.nav-link svg { flex-shrink: 0; }

.nav-link--active {
    color: var(--accent);
}

/* Mobile Nav (Landing 1:1) */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--text);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 61px;
    left: 0;
    right: 0;
    background: var(--panelGrey);
    border-bottom: 1px solid var(--stroke);
    padding: 20px;
    z-index: 999;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav.active { display: flex; }

.mobile-nav-link {
    padding: 12px 16px;
    text-decoration: none;
    color: var(--text);
    font-size: 16px;
    border-radius: var(--radiusSm);
    transition: background 0.2s;
}

.mobile-nav-link:hover { background: rgba(120,165,210,.14); }

.mobile-nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--stroke);
}

/* =============================================
   BUTTONS (Landing 1:1)
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border: none;
    border-radius: var(--radiusSm);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn--primary {
    background: var(--accent);
    color: white;
    border: 1px solid var(--accent);
}

.btn--primary:hover {
    background: var(--accentDark);
    border-color: var(--accentDark);
    transform: translateY(-2px);
    box-shadow: var(--shadowSm);
}

.btn--secondary {
    background: var(--panelGrey);
    color: var(--accent);
    border: 1px solid var(--accent);
}

.btn--secondary:hover {
    color: white;
    background: var(--accent);
    transform: translateY(-1px);
}

.btn--ghost {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
}

.btn--ghost:hover {
    background: var(--surface2);
    border-color: var(--accent);
    color: var(--accent);
}

.btn--hero { padding: 14px 28px; font-size: 16px; font-weight: 600; }
.btn--cta  { padding: 16px 32px; font-size: 16px; font-weight: 600; }
.btn--pricing { width: 100%; padding: 14px 24px; font-size: 15px; }
.btn--full { width: 100%; }

/* =============================================
   SECTION STYLES (Landing Style)
   ============================================= */
.section-header { text-align: center; margin-bottom: 60px; }

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--accent);
    color: white;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
}

.section-badge svg { width: 16px; height: 16px; }

.section-title {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: var(--text);
}

.section-subtitle {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 720px;
    margin: 0 auto;
}

/* =============================================
   HERO (Landing Style)
   ============================================= */
.hero {
    position: relative;
    padding: 80px 0 70px;
    background: var(--page);
    overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.hero-glow--1 {
    width: 600px; height: 600px;
    background: var(--accent);
    top: -200px; right: -100px;
    opacity: 0.15;
}

.hero-glow--2 {
    width: 400px; height: 400px;
    background: #a855f7;
    bottom: -120px; left: -120px;
    opacity: 0.10;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(120,165,210,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(120,165,210,.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--surface);
    border: 1px solid var(--accent);
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 24px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
    color: var(--text);
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent), #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 28px;
    max-width: 740px;
    margin-left: auto;
    margin-right: auto;
}

.hero-price {
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
    padding: 18px 22px;
    background: var(--surface);
    border: 1px solid var(--accent);
    border-radius: var(--radius);
    box-shadow: var(--shadowSm);
    margin: 6px 0 26px;
}

.price-amount {
    font-size: 44px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.price-details { font-size: 14px; color: var(--muted); }

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--muted);
}

.trust-item svg { color: var(--success); flex-shrink: 0; }

/* =============================================
   PERFORMANCE
   ============================================= */
.performance { padding: 100px 0; background: var(--bg); }

.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
}

.carousel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--surface);
    border: 1px solid var(--stroke);
    border-radius: var(--radiusSm);
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text);
    box-shadow: var(--shadowSm);
}

.carousel-btn:hover { background: var(--surface2); }
.carousel-btn--prev:hover { transform: translateX(-2px); }
.carousel-btn--next:hover { transform: translateX(2px); }

.carousel-indicator { text-align: center; min-width: 420px; }

.carousel-badge {
    display: inline-block;
    padding: 5px 14px;
    background: var(--accent);
    color: white;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.carousel-label { display: block; font-size: 14px; color: var(--muted); }

.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-bottom: 44px; }

.carousel-dot {
    width: 8px;
    height: 8px;
    background: var(--stroke);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
}

.carousel-dot:hover { background: var(--muted); transform: scale(1.2); }

.carousel-dot--active {
    width: 24px;
    border-radius: 100px;
    background: var(--accent);
}

/* Setup Content */
.setup-content { display: none; }
.setup-content--active { display: block; }

/* Metrics */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 28px;
}

.metric-card {
    background: var(--surface);
    backdrop-filter: blur(20px);
    border: 1px solid var(--stroke);
    border-radius: var(--radiusMd);
    padding: 26px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: all 0.25s;
}

.metric-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadowMd);
}

.metric-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    border: 1px solid;
    box-shadow: 0 12px 26px rgba(35,38,45,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.metric-icon svg { width: 30px; height: 30px; display: block; color: currentColor; }

/* =============================================
   METRIC COLOR MODIFIERS (instead of nth-child)
   ============================================= */

/* stärkere Border (wie Screenshot) */
.metric-card { border: 2px solid var(--stroke); }

/* GREEN */
.metric-card--green { border-color: var(--success); }
.metric-card--green .metric-icon {
    background: rgba(34,197,94,.18);
    border-color: rgba(34,197,94,.24);
    color: var(--success);
}
.metric-card--green .metric-value { color: var(--success); }

/* BLUE */
.metric-card--blue { border-color: var(--accent); }
.metric-card--blue .metric-icon {
    background: rgba(120,165,210,.28);
    border-color: rgba(120,165,210,.30);
    color: var(--accent);
}
.metric-card--blue .metric-value { color: var(--accent); }

/* PURPLE */
.metric-card--purple { border-color: var(--purple); }
.metric-card--purple .metric-icon {
    background: rgba(147,51,234,.18);
    border-color: rgba(147,51,234,.24);
    color: var(--purple);
}
.metric-card--purple .metric-value { color: var(--purple); }

/* ORANGE */
.metric-card--orange { border-color: var(--warning); }
.metric-card--orange .metric-icon {
    background: rgba(245,158,11,.20);
    border-color: rgba(245,158,11,.26);
    color: var(--warning);
}
.metric-card--orange .metric-value { color: var(--warning); }


.metric-content { flex: 1; }

.metric-label {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.metric-value {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 6px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}



.metric-sub { font-size: 13px; color: var(--muted); }

/* Chart */
.chart-container {
    background: var(--surface);
    backdrop-filter: blur(20px);
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadowSm);
}

.chart-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 22px;
}

.chart-header svg { width: 28px; height: 28px; color: var(--success); flex-shrink: 0; }

.chart-header-content { text-align: center; display: flex; flex-direction: column; gap: 6px; }

.chart-title { font-size: 20px; font-weight: 700; color: var(--text); }
.chart-subtitle { font-size: 15px; color: var(--muted); }

.chart-image {
    border-radius: var(--radiusMd);
    padding: 18px;
   
    margin-bottom: 22px;
    overflow: hidden;
}

.chart-image img { width: 100%; height: auto; display: block; border-radius: var(--radiusSm); }

.chart-stats {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--stroke);
}

.chart-stat { text-align: center; flex: 1; }
.chart-stat-label { font-size: 13px; color: var(--muted); margin-bottom: 8px; font-weight: 600; }
.chart-stat-value { font-size: 22px; font-weight: 800; color: var(--text); }
.chart-stat-value--success { color: var(--success); }
.chart-stat-value--accent { color: var(--accent); }
/* optional alternative:
.chart-stat-value--purple { color: var(--purple); }
.chart-stat-value--warning { color: var(--warning); }
*/


/* =============================================
   WHY CHOOSE
   ============================================= */
.why-choose { padding: 100px 0; background: var(--page); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--surface);
    backdrop-filter: blur(20px);
    border: 1px solid var(--stroke);
    border-radius: var(--radiusMd);
    padding: 32px;
    transition: all 0.25s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadowMd);
    border-color: rgba(120,165,210,.30);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(120,165,210,.28);
    border: 1px solid rgba(120,165,210,.30);
    box-shadow: 0 12px 26px rgba(35,38,45,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 16px;
}

.feature-icon svg { width: 30px; height: 30px; display: block; color: currentColor; }

.feature-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.feature-card p { color: var(--muted); line-height: 1.6; font-size: 15px; }

/* =============================================
   GET STARTED
   ============================================= */
.get-started { padding: 100px 0; background: var(--bg); }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step-card {
    position: relative;
    background: var(--surface);
    backdrop-filter: blur(20px);
    border: 1px solid var(--stroke);
    border-radius: var(--radiusMd);
    padding: 32px;
    text-align: center;
    transition: all 0.25s;
}

.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadowMd); border-color: rgba(120,165,210,.30); }

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
    border: 1px solid;
    box-shadow: 0 12px 26px rgba(35,38,45,.12);
}

.step-number--cyan   { background: rgba(120,165,210,.28); border-color: rgba(120,165,210,.30); color: var(--accent); }
.step-number--green  { background: rgba(34,197,94,.28);   border-color: rgba(34,197,94,.30);   color: rgb(34,197,94); }
.step-number--purple { background: rgba(168,85,247,.28);  border-color: rgba(168,85,247,.30);  color: rgba(168,85,247); }

.step-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.step-card p  { color: var(--muted); margin-bottom: 18px; }

.step-icon { display: flex; justify-content: center; color: var(--muted); }
.step-icon svg { opacity: .9; }

/* =============================================
   PRICING (Landing-like)
   ============================================= */
.pricing-preview { padding: 100px 0; background: var(--page); }

.pricing-card {
    position: relative;
    max-width: 520px;
    margin: 0 auto;
    background: var(--surface);
    backdrop-filter: blur(20px);
    border: 2px solid var(--accent);
    border-radius: var(--radius);
    padding: 48px;
    box-shadow: var(--shadow);
    text-align: center;
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    background: var(--accent);
    color: white;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.pricing-title { font-size: 26px; font-weight: 800; margin-bottom: 14px; }

.pricing-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    margin-bottom: 18px;
}

.currency { font-size: 22px; font-weight: 700; color: var(--muted); margin-top: 8px; }

.price {
    font-size: 58px;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.03em;
}

.period { font-size: 14px; color: var(--muted); margin-top: 10px; }

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 26px 0 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-features li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--text);
    font-size: 15px;
}

.pricing-features svg { color: var(--success); flex-shrink: 0; margin-top: 2px; }

.pricing-note { margin-top: 12px; font-size: 12px; color: var(--muted); }

/* =============================================
   FAQ
   ============================================= */
.faq { padding: 100px 0; background: var(--bg); }

.faq-list { max-width: 860px; margin: 0 auto; }

.faq-item {
    background: var(--surface);
    backdrop-filter: blur(20px);
    border: 1px solid var(--stroke);
    border-radius: var(--radiusMd);
    margin-bottom: 16px;
    overflow: hidden;
    transition: border-color .2s;
}

.faq-item:hover { border-color: rgba(120,165,210,.30); }

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 800;
    color: var(--text);
    transition: background 0.2s;
}

.faq-question:hover { background: var(--surface2); }

.faq-question svg { color: var(--success); transition: transform 0.2s; }

.faq-item.active .faq-question svg { transform: rotate(180deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.active .faq-answer { max-height: 500px; }

.faq-answer p { padding: 0 24px 20px; color: var(--muted); line-height: 1.6; }

/* =============================================
   FINAL CTA (Landing Style)
   ============================================= */
.final-cta { padding: 100px 0; background: var(--page); }

.cta-card {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    padding: 60px;
    background: var(--surface);
    backdrop-filter: blur(20px);
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    box-shadow: var(--shadowMd);
}

.cta-card h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-card p { font-size: 18px; color: var(--muted); margin-bottom: 32px; }

.final-cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* =============================================
   FOOTER (Landing Style)
   ============================================= */
.footer { background: var(--page); border-top: 1px solid var(--stroke); padding: 60px 0 30px; }

.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; margin-bottom: 40px; }

.footer-brand { max-width: 420px; }

.footer-logo-wrapper { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo { height: 32px; }
.footer-name { font-size: 20px; font-weight: 800; letter-spacing: 0.5px; }
.footer-tagline { color: var(--muted); line-height: 1.6; }

.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }

.footer-col h4 { font-size: 14px; font-weight: 800; margin-bottom: 16px; }
.footer-col a { display: block; color: var(--muted); text-decoration: none; font-size: 14px; margin-bottom: 12px; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid var(--stroke);
    font-size: 14px;
    color: var(--muted);
}

.footer-meta { display: flex; gap: 12px; }

/* =============================================
   ANIMATIONS (Landing-like)
   ============================================= */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-content > * { animation: fadeInUp 0.6s ease forwards; }
.hero-badge   { animation-delay: 0.10s; }
.hero-title   { animation-delay: 0.20s; }
.hero-subtitle{ animation-delay: 0.30s; }
.hero-price   { animation-delay: 0.35s; }
.hero-actions { animation-delay: 0.45s; }
.hero-trust   { animation-delay: 0.55s; }

/* Animate-in helper (used by JS) */
.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Focus states */
.btn:focus, .nav-link:focus, .mobile-nav-link:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* =============================================
   RESPONSIVE
   ============================================= */

/* Desktop bleibt 4 Spalten */
@media (max-width: 1200px) {
    /* metrics-grid bleibt 4 Spalten auch auf iPad! */
    .metrics-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
    .hero-title { font-size: 52px; }
    
    /* Kompaktere metric-cards auf iPad */
    .metric-card { padding: 18px; gap: 12px; }
    .metric-icon { width: 44px; height: 44px; }
    .metric-icon svg { width: 22px; height: 22px; }
    .metric-value { font-size: 22px; }
    .metric-label { font-size: 10px; }
    .metric-sub { font-size: 11px; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .nav-menu { display: none; }
    .mobile-menu-btn { display: flex; }

    .hero { padding: 60px 0; }
    .hero-title { font-size: 40px; }
    .hero-subtitle { font-size: 16px; }
    .price-amount { font-size: 40px; }

    .hero-actions { flex-direction: column; align-items: center; }
    .hero-trust { flex-direction: column; align-items: center; gap: 12px; }

    .section-title { font-size: 32px; }

    .performance, .why-choose, .get-started, .pricing-preview, .faq, .final-cta { padding: 60px 0; }

    .carousel-indicator { min-width: 280px; }

    /* metrics-grid bleibt 4 Spalten auf iPad */
    .metrics-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
    
    .features-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }

    .chart-stats { flex-direction: column; gap: 18px; }

    .pricing-card { padding: 32px; }
    .price { font-size: 48px; }

    .cta-card { padding: 40px 24px; }
    .cta-card h2 { font-size: 28px; }
    .final-cta-actions { flex-direction: column; }

    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-links { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* Mobile - metrics werden 2x2 */
@media (max-width: 600px) {
    .metrics-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Sehr klein - metrics 1 Spalte */
@media (max-width: 400px) {
    .metrics-grid { grid-template-columns: 1fr; }
    
    .metric-card { padding: 20px; gap: 14px; }
    .metric-icon { width: 48px; height: 48px; }
    .metric-icon svg { width: 24px; height: 24px; }
    .metric-value { font-size: 26px; }
    .metric-label { font-size: 12px; }
    .metric-sub { font-size: 13px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 32px; }
    .section-title { font-size: 28px; }
}

