/* ============================================
   RankUp SEO – Apple-style: Hell, Sauber, Modern
   Basis: Weiß + Hellgrau  /  Akzent: Anthrazit
   Dunkel: nur 1–2 Sections als Kontrast
   ============================================ */

:root {
    /* Kernfarben */
    --black:       #000000;
    --ink:         #1d1d1f;   /* Apple near-black – Überschriften */
    --charcoal:    #3a3a3c;
    --body:        #4a4a4e;   /* Fließtext */
    --muted:       #6e6e73;   /* Subtexte */
    --subtle:      #a1a1a6;   /* Captions, Labels */

    /* Grau-Skala für Hintergründe / Borders */
    --surface:     #f5f5f7;   /* Heller Abschnittshintergrund */
    --surface-2:   #e8e8ed;
    --border:      #d2d2d7;
    --border-dark: #86868b;
    --white:       #ffffff;

    /* Dunkel – sparsam eingesetzt */
    --dark-bg:     #1d1d1f;
    --dark-border: rgba(255,255,255,0.1);

    /* Schatten */
    --shadow-xs:  0 1px 4px  rgba(0,0,0,0.05);
    --shadow-sm:  0 2px 16px rgba(0,0,0,0.07);
    --shadow-md:  0 8px 36px rgba(0,0,0,0.09);
    --shadow-lg:  0 24px 64px rgba(0,0,0,0.11);

    --radius:     16px;
    --radius-lg:  24px;
    --radius-xl:  32px;

    --container:  1140px;
    --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --t:          0.3s;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 52px; }
body {
    font-family: -apple-system, 'SF Pro Display', 'Inter', system-ui, sans-serif;
    color: var(--body);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; }

/* ---------- Typografie ---------- */
.eyebrow {
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 14px;
}
.eyebrow--light { color: rgba(255,255,255,0.5); }

.section__title {
    font-size: clamp(2rem, 4.2vw, 2.9rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.035em;
    color: var(--ink);
    margin-bottom: 16px;
}
.section__title--light { color: var(--white); }

.section__lead {
    font-size: 1.08rem;
    color: var(--muted);
    max-width: 560px;
    line-height: 1.8;
}
.section__lead--center { margin: 0 auto; }
.section__lead--light { color: rgba(255,255,255,0.5); }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 68px; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 7px;
    font-family: inherit; font-size: 0.95rem; font-weight: 600;
    padding: 13px 26px; border-radius: 999px;
    border: 1.5px solid transparent;
    cursor: pointer; transition: all var(--t) var(--ease);
    white-space: nowrap; letter-spacing: -0.01em;
}

/* Anthrazit → Haupt-CTA */
.btn--primary {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
}
.btn--primary:hover {
    background: var(--black);
    border-color: var(--black);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}

/* Hell auf dunklem Hintergrund */
.btn--ghost {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.25);
    color: var(--white);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.btn--ghost:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.45);
    transform: translateY(-1px);
}

/* Umriss auf hellem Hintergrund */
.btn--outline {
    background: transparent;
    border-color: var(--border);
    color: var(--ink);
}
.btn--outline:hover {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
    transform: translateY(-1px);
}

.btn--lg  { padding: 15px 32px; font-size: 1rem; }
.btn--sm  { padding: 10px 20px; font-size: 0.87rem; }
.btn--block { width: 100%; }

/* ---------- Header – Apple-Menüleiste ---------- */
.header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
}
.header__inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 52px;
    background: rgba(255,255,255,0.82);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.10);
    padding: 0 32px;
    transition: background var(--t), box-shadow var(--t);
}
.header.scrolled .header__inner { box-shadow: 0 1px 0 rgba(0,0,0,0.08); }
.header--hero .header__inner {
    background: rgba(0,0,0,0.45);
    border-bottom-color: rgba(255,255,255,0.08);
}

.logo {
    display: flex; align-items: center; gap: 9px;
    font-weight: 800; font-size: 1.15rem; color: var(--ink);
    letter-spacing: -0.025em;
}
.logo__mark {
    width: 32px; height: 32px;
    display: grid; place-items: center;
    background: var(--ink); color: var(--white);
    border-radius: 8px; font-weight: 900; font-size: 0.9rem;
}
.logo__text strong { color: var(--muted); font-weight: 700; }
.logo--light { color: var(--white); }
.logo--light .logo__mark { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.2); }
.logo--light .logo__text strong { color: rgba(255,255,255,0.4); }

.nav { display: flex; align-items: center; gap: 26px; }
.nav__link {
    font-size: 0.86rem; font-weight: 500; color: var(--muted);
    transition: color var(--t);
}
.nav__link:hover { color: var(--ink); }
.header--hero .nav__link { color: rgba(255,255,255,0.65); }
.header--hero .nav__link:hover { color: var(--white); }

.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 5px;
}
.nav-toggle span {
    width: 22px; height: 1.5px; background: var(--ink);
    border-radius: 2px; display: block;
    transition: all var(--t) var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- HERO – groß, hell, modern ---------- */
.hero {
    padding: 148px 0 100px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

/* Sehr sanfte Hintergrund-Textur */
.hero__bg {
    position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(ellipse 80% 60% at 60% -10%,  rgba(210,210,215,0.35) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 100% 80%, rgba(210,210,215,0.2) 0%, transparent 65%);
}

.hero__inner {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
}

.hero__eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.76rem; font-weight: 500; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--muted);
    margin-bottom: 22px;
    animation: fadeSlideUp 0.7s var(--ease) both;
}
.hero__eyebrow::before {
    content: '';
    width: 20px; height: 1px; background: var(--border);
}

.hero__title {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.045em;
    color: var(--ink);
    margin-bottom: 22px;
    animation: fadeSlideUp 0.7s var(--ease) 0.1s both;
}
.hero__title .text-gradient {
    background: linear-gradient(135deg, var(--ink) 0%, var(--charcoal) 60%, var(--muted) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__subtitle {
    font-size: 1.1rem; color: var(--muted);
    max-width: 480px; margin-bottom: 36px;
    line-height: 1.8; font-weight: 400;
    animation: fadeSlideUp 0.7s var(--ease) 0.2s both;
}

.hero__actions {
    display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 56px;
    animation: fadeSlideUp 0.7s var(--ease) 0.3s both;
}
/* Ghost-Button auf weißem Hintergrund: Outline statt Glas */
.hero__actions .btn--ghost {
    background: transparent;
    border-color: var(--border);
    color: var(--ink);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.hero__actions .btn--ghost:hover {
    background: var(--surface);
    border-color: var(--border-dark);
}

.hero__trust {
    display: flex; gap: 40px; flex-wrap: wrap;
    padding-top: 36px;
    border-top: 1px solid var(--border);
    animation: fadeSlideUp 0.7s var(--ease) 0.4s both;
}
.hero__trust-item { display: flex; flex-direction: column; gap: 3px; }
.hero__trust-item strong { font-size: 1.4rem; font-weight: 800; color: var(--ink); letter-spacing: -0.04em; }
.hero__trust-item span  { font-size: 0.8rem; color: var(--subtle); }

/* ---------- Hero Visual ---------- */
.hero__visual {
    position: relative;
    animation: fadeSlideLeft 0.85s var(--ease) 0.15s both;
}
@keyframes fadeSlideLeft {
    from { opacity: 0; transform: translateX(32px); }
    to   { opacity: 1; transform: translateX(0); }
}

.rank-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    animation: floaty 8s ease-in-out infinite;
}
@keyframes floaty {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}
.rank-card__header {
    display: flex; align-items: center; gap: 7px;
    padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.rank-card__dot { width: 11px; height: 11px; border-radius: 50%; background: #ff5f57; }
.rank-card__dot--y { background: #febc2e; }
.rank-card__dot--g { background: #28c840; }
.rank-card__url {
    margin-left: auto; font-size: 0.77rem; color: var(--subtle);
    background: var(--surface); padding: 3px 12px; border-radius: 999px;
}
.rank-card__body { padding: 16px 0; display: flex; flex-direction: column; gap: 9px; }
.rank-row {
    display: flex; align-items: center; gap: 12px;
    padding: 11px 13px; border-radius: 12px;
    background: var(--surface); border: 1px solid var(--border);
}
.rank-row--top {
    background: var(--ink);
    border-color: var(--ink);
}
.rank-row__pos {
    width: 28px; height: 28px; flex-shrink: 0;
    display: grid; place-items: center;
    background: var(--surface-2); color: var(--muted);
    border-radius: 8px; font-weight: 700; font-size: 0.82rem;
}
.rank-row--top .rank-row__pos { background: rgba(255,255,255,0.15); color: var(--white); }
.rank-row__bars { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.bar { height: 6px; border-radius: 3px; background: var(--border); }
.rank-row--top .bar { background: rgba(255,255,255,0.25); }
.bar--long { width: 88%; } .bar--mid { width: 60%; } .bar--short { width: 36%; }
.rank-row__badge {
    font-size: 0.69rem; font-weight: 600;
    color: rgba(255,255,255,0.75);
    background: rgba(255,255,255,0.12);
    padding: 3px 10px; border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.18);
    white-space: nowrap;
}
.rank-card__chart {
    position: relative; padding-top: 16px;
    border-top: 1px solid var(--border);
}
.rank-card__chart svg { width: 100%; height: 58px; }
.rank-card__chart polyline { stroke: var(--charcoal); }
.rank-card__chart-label {
    position: absolute; top: 16px; right: 0;
    font-size: 0.73rem; font-weight: 600; color: var(--muted);
}

.floating-badge {
    position: absolute;
    display: flex; align-items: center; gap: 9px;
    background: var(--white); border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    color: var(--ink); font-weight: 600; font-size: 0.86rem;
    padding: 11px 16px; border-radius: 14px;
    letter-spacing: -0.01em;
}
.floating-badge__icon { font-size: 1rem; }
.floating-badge--1 { top: -22px; right: -18px; animation: floaty 5s ease-in-out 1s infinite; }
.floating-badge--2 { bottom: -18px; left: -22px; animation: floaty 6.5s ease-in-out 2s infinite; }

/* ---------- Trust Strip ---------- */
.trust-strip { background: var(--surface); padding: 32px 0; border-bottom: 1px solid var(--border); }
.trust-strip__text { text-align: center; font-size: 0.8rem; color: var(--subtle); margin-bottom: 14px; }
.trust-strip__items { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 52px; }
.trust-strip__items span { font-weight: 600; color: var(--charcoal); font-size: 0.94rem; opacity: 0.6; }

/* ---------- About ---------- */
.about { background: var(--white); }
.about__inner {
    display: grid; grid-template-columns: 0.85fr 1.15fr;
    gap: 90px; align-items: center;
}
.about__media { position: relative; }
.about__photo {
    aspect-ratio: 1; border-radius: var(--radius-xl);
    background: linear-gradient(160deg, var(--ink) 0%, var(--charcoal) 100%);
    display: grid; place-items: center;
    box-shadow: var(--shadow-lg); overflow: hidden; position: relative;
}
.about__photo::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.07), transparent 55%);
}
.about__photo-inner {
    font-size: 3rem; font-weight: 900; letter-spacing: 0.1em;
    color: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,255,255,0.1);
    width: 120px; height: 120px; border-radius: 50%;
    display: grid; place-items: center; position: relative;
}
.about__stat {
    position: absolute; bottom: -22px; right: -18px;
    background: var(--white); padding: 16px 20px;
    border-radius: var(--radius); box-shadow: var(--shadow-md);
    display: flex; flex-direction: column; gap: 2px;
    border: 1px solid var(--border);
}
.about__stat strong { font-size: 1rem; color: var(--ink); font-weight: 800; }
.about__stat span { font-size: 0.79rem; color: var(--muted); }

.check-list { display: flex; flex-direction: column; gap: 20px; margin: 28px 0 34px; }
.check-list li { display: flex; gap: 14px; }
.check-list__icon {
    flex-shrink: 0; width: 26px; height: 26px;
    display: grid; place-items: center;
    background: var(--surface); border: 1px solid var(--border);
    color: var(--ink); border-radius: 50%;
    font-size: 0.78rem; font-weight: 800;
}
.check-list li div { display: flex; flex-direction: column; gap: 2px; }
.check-list li strong { color: var(--ink); font-size: 1rem; letter-spacing: -0.01em; font-weight: 700; }
.check-list li div > :last-child { color: var(--muted); font-size: 0.94rem; }

/* ---------- Services ---------- */
.services { background: var(--surface); }
.services__grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 16px; margin-bottom: 80px;
}
.service-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 36px 28px; border: 1px solid var(--border);
    transition: all var(--t) var(--ease);
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg); border-color: var(--surface-2);
}
.service-card__icon {
    width: 50px; height: 50px;
    display: grid; place-items: center; font-size: 1.4rem;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 13px; margin-bottom: 18px;
}
.service-card h3 { font-size: 1.18rem; color: var(--ink); margin-bottom: 10px; letter-spacing: -0.02em; font-weight: 700; }
.service-card p { color: var(--muted); line-height: 1.75; font-size: 0.96rem; }

/* ---------- Pricing ---------- */
.pricing { max-width: 1080px; margin: 0 auto; }
.pricing__tabs {
    display: inline-flex; gap: 3px;
    background: var(--surface); border: 1px solid var(--border);
    padding: 4px; border-radius: 999px;
    position: relative; left: 50%; transform: translateX(-50%);
    margin-bottom: 14px;
}
.pricing__tab {
    display: flex; align-items: center; gap: 7px;
    font-family: inherit; font-weight: 600; font-size: 0.9rem;
    padding: 10px 22px; border: none;
    background: transparent; color: var(--muted);
    border-radius: 999px; cursor: pointer;
    transition: all var(--t) var(--ease);
}
.pricing__tab.is-active {
    background: var(--white); color: var(--ink);
    box-shadow: var(--shadow-xs), 0 0 0 1px var(--border);
}
.pricing__tab-badge {
    font-size: 0.67rem; font-weight: 700;
    background: var(--ink); color: var(--white);
    padding: 2px 8px; border-radius: 999px;
}
.pricing__intro { text-align: center; color: var(--muted); max-width: 540px; margin: 0 auto 44px; font-size: 0.96rem; }
.pricing__panel { animation: fadeUp 0.4s var(--ease); }
.pricing__panel[hidden] { display: none; }
.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }

.plan {
    position: relative; display: flex; flex-direction: column;
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 32px 26px;
    transition: all var(--t) var(--ease);
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--surface-2); }
.plan--featured { border-color: var(--ink); box-shadow: var(--shadow-md); }
.plan__tag {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: var(--ink); color: var(--white);
    font-size: 0.71rem; font-weight: 700;
    padding: 4px 14px; border-radius: 999px; white-space: nowrap;
}
.plan__name { font-size: 1.2rem; font-weight: 800; color: var(--ink); margin-bottom: 5px; letter-spacing: -0.02em; }
.plan__desc { color: var(--muted); font-size: 0.91rem; margin-bottom: 20px; min-height: 38px; }
.plan__price {
    font-size: 2rem; font-weight: 900; color: var(--ink);
    line-height: 1; margin-bottom: 22px;
    display: flex; align-items: baseline; gap: 5px; flex-wrap: wrap;
    letter-spacing: -0.04em;
}
.plan__price-from { font-size: 0.88rem; font-weight: 500; color: var(--subtle); }
.plan__price small { font-size: 0.83rem; font-weight: 500; color: var(--subtle); }
.plan__features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; flex: 1; }
.plan__features li { padding-left: 22px; position: relative; color: var(--body); font-size: 0.92rem; }
.plan__features li::before { content: '✓'; position: absolute; left: 0; color: var(--ink); font-weight: 800; }
.plan--featured .btn--outline { background: var(--ink); color: var(--white); border-color: var(--ink); }
.pricing__note { text-align: center; font-size: 0.82rem; color: var(--subtle); max-width: 600px; margin: 36px auto 0; }

/* ---------- Benefits – DUNKLE Sektion ---------- */
.benefits { background: var(--ink); position: relative; overflow: hidden; }
.benefits::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(ellipse 70% 60% at 90% 10%, rgba(255,255,255,0.04) 0%, transparent 55%);
}
.benefits .container { position: relative; }
.benefits__grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 14px; margin-bottom: 72px;
}
.benefit {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg); padding: 30px 24px;
    transition: all var(--t) var(--ease);
}
.benefit:hover {
    background: rgba(255,255,255,0.07);
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.15);
}
.benefit__icon {
    width: 46px; height: 46px;
    display: grid; place-items: center; font-size: 1.35rem;
    background: rgba(255,255,255,0.08);
    border-radius: 12px; margin-bottom: 15px;
}
.benefit h3 { color: var(--white); font-size: 1.08rem; margin-bottom: 8px; letter-spacing: -0.02em; font-weight: 700; }
.benefit p { color: rgba(255,255,255,0.42); font-size: 0.93rem; line-height: 1.7; }

.stats {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 28px; text-align: center;
    border-top: 1px solid rgba(255,255,255,0.08); padding-top: 56px;
}
.stat { display: flex; flex-direction: column; align-items: center; }
.stat__num, .stat__suffix {
    font-size: clamp(2.8rem, 5.5vw, 4rem);
    font-weight: 900; color: var(--white);
    line-height: 1; letter-spacing: -0.05em;
}
.stat p { color: rgba(255,255,255,0.38); font-size: 0.9rem; margin-top: 12px; max-width: 200px; line-height: 1.65; }

/* ---------- FAQ ---------- */
.faq { background: var(--white); }
.faq__list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.faq__item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.faq__item.is-open {
    border-color: var(--ink);
    box-shadow: var(--shadow-sm);
}
.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    text-align: left;
    transition: background var(--t);
    letter-spacing: -0.01em;
}
.faq__question:hover { background: var(--surface); }
.faq__item.is-open .faq__question { background: var(--surface); }
.faq__icon {
    flex-shrink: 0;
    width: 22px; height: 22px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    position: relative;
    transition: all var(--t) var(--ease);
}
.faq__icon::before,
.faq__icon::after {
    content: '';
    position: absolute;
    background: var(--ink);
    border-radius: 2px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    transition: transform var(--t) var(--ease), opacity var(--t);
}
.faq__icon::before { width: 10px; height: 1.5px; }
.faq__icon::after  { width: 1.5px; height: 10px; }
.faq__item.is-open .faq__icon { border-color: var(--ink); background: var(--ink); }
.faq__item.is-open .faq__icon::before,
.faq__item.is-open .faq__icon::after { background: var(--white); }
.faq__item.is-open .faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq__answer {
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.3s var(--ease);
}
.faq__item.is-open .faq__answer {
    max-height: 400px;
    padding-bottom: 20px;
}
.faq__answer p { color: var(--muted); line-height: 1.75; font-size: 0.97rem; }
.faq__answer a { color: var(--ink); text-decoration: underline; }

/* ---------- Footer Address ---------- */
.footer__address {
    margin-top: 14px;
    font-style: normal;
    font-size: 0.86rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.32);
}
.footer__address a { transition: color var(--t); }
.footer__address a:hover { color: rgba(255,255,255,0.7); }

/* ---------- CTA Banner ---------- */
.cta-banner { background: var(--surface); padding: 72px 0; }
.cta-banner__inner {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-xl); padding: 56px 64px;
    display: flex; align-items: center;
    justify-content: space-between; gap: 36px; flex-wrap: wrap;
    box-shadow: var(--shadow-md);
}
.cta-banner h2 { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--ink); font-weight: 800; letter-spacing: -0.03em; }
.cta-banner p { color: var(--muted); margin-top: 6px; font-size: 0.97rem; }

/* ---------- Kontakt ---------- */
.contact { background: var(--white); }
.contact__inner {
    display: grid; grid-template-columns: 0.9fr 1.1fr;
    gap: 72px; align-items: start;
}
.contact__list { margin-top: 32px; display: flex; flex-direction: column; gap: 22px; }
.contact__list li { display: flex; gap: 14px; align-items: center; }
.contact__list-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    display: grid; place-items: center; font-size: 1.1rem;
    background: var(--surface); border-radius: 11px; border: 1px solid var(--border);
}
.contact__list strong { display: block; color: var(--ink); font-size: 0.87rem; font-weight: 700; }
.contact__list a, .contact__list span { color: var(--muted); font-size: 0.94rem; }
.contact__list a:hover { color: var(--ink); }

.contact__form {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-xl); padding: 40px;
    box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; display: flex; flex-direction: column; }
.form-group label { font-weight: 600; font-size: 0.85rem; color: var(--ink); margin-bottom: 7px; }
.form-group input,
.form-group select,
.form-group textarea {
    font-family: inherit; font-size: 0.95rem; color: var(--ink);
    padding: 12px 14px; border: 1.5px solid var(--border);
    border-radius: 10px; background: var(--surface);
    transition: all var(--t) var(--ease);
    width: 100%; -webkit-appearance: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none; border-color: var(--ink); background: var(--white);
    box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}
.form-group textarea { resize: vertical; min-height: 108px; }
.form-group.has-error input,
.form-group.has-error textarea { border-color: #ff3b30; }
.form-error { color: #ff3b30; font-size: 0.79rem; margin-top: 4px; min-height: 1em; }

.form-check {
    display: flex; gap: 11px; align-items: flex-start;
    font-size: 0.84rem; color: var(--muted);
    margin-bottom: 20px; cursor: pointer;
}
.form-check input { margin-top: 2px; width: 15px; height: 15px; accent-color: var(--ink); flex-shrink: 0; }
.form-check a { color: var(--ink); text-decoration: underline; }

.form-success {
    margin-top: 14px; padding: 14px 16px;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 10px; color: var(--ink);
    font-weight: 600; text-align: center; font-size: 0.93rem;
}

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,0.38); padding-top: 60px; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 48px; }
.footer__brand p { margin-top: 14px; max-width: 280px; font-size: 0.9rem; line-height: 1.75; }
.footer__col h4 { color: rgba(255,255,255,0.65); font-size: 0.83rem; margin-bottom: 16px; font-weight: 700; letter-spacing: 0.02em; }
.footer__col ul { display: flex; flex-direction: column; gap: 11px; }
.footer__col a { font-size: 0.87rem; transition: color var(--t); }
.footer__col a:hover { color: rgba(255,255,255,0.7); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 22px 0; }
.footer__bottom-inner {
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
    font-size: 0.8rem; color: rgba(255,255,255,0.28);
}

/* ---------- Animationen ---------- */
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Einzelne Elemente */
.reveal {
    opacity: 0; transform: translateY(26px);
    transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Gestaffelte Kinder-Animation */
.reveal-group > * {
    opacity: 0; transform: translateY(22px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal-group.is-visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.00s; }
.reveal-group.is-visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.09s; }
.reveal-group.is-visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.18s; }
.reveal-group.is-visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.27s; }
.reveal-group.is-visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.36s; }
.reveal-group.is-visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.45s; }

/* ---------- Responsive ---------- */

/* Tablet: 761–980px */
@media (max-width: 980px) {
    .hero__inner { grid-template-columns: 1fr; gap: 52px; }
    .hero__visual { max-width: 480px; margin: 0 auto; }
    .hero__subtitle { max-width: 100%; }
    .floating-badge { font-size: 0.79rem; padding: 9px 13px; }
    .floating-badge--1 { top: -12px; right: -8px; }
    .floating-badge--2 { bottom: -12px; left: -8px; }
    .about__inner { grid-template-columns: 1fr; gap: 56px; }
    .about__media { max-width: 380px; margin: 0 auto; }
    .services__grid { grid-template-columns: 1fr 1fr; }
    .benefits__grid { grid-template-columns: 1fr 1fr; }
    .contact__inner { grid-template-columns: 1fr; gap: 48px; }
    .footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
    .footer__brand { grid-column: 1 / -1; }
    .cta-banner__inner { padding: 44px 36px; }
}

/* Mobile: ≤ 760px */
@media (max-width: 760px) {
    .container { padding: 0 20px; }
    .section { padding: 64px 0; }
    .section__head { margin-bottom: 44px; }

    /* --- Navigation (Hamburger) --- */
    .nav {
        position: fixed; top: 52px; right: 0;
        width: min(84%, 320px);
        height: calc(100dvh - 52px);
        flex-direction: column; align-items: flex-start; gap: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
        padding: 16px 22px 32px;
        box-shadow: -12px 0 40px rgba(0,0,0,0.10);
        border-left: 1px solid var(--border);
        transform: translateX(100%);
        transition: transform var(--t) var(--ease);
        overflow-y: auto;
    }
    .nav.is-open { transform: translateX(0); }
    .nav__link {
        width: 100%;
        padding: 16px 0;
        font-size: 1.05rem;
        font-weight: 600;
        color: var(--ink);
        border-bottom: 1px solid var(--border);
        min-height: 52px;
        display: flex; align-items: center;
    }
    .nav__cta {
        margin-top: 22px; width: 100%;
        justify-content: center; min-height: 50px;
    }
    .nav-toggle { display: flex; }
    .header__inner { padding: 0 20px; }

    /* --- Buttons: touch targets min 44px --- */
    .btn { min-height: 44px; }
    .btn--lg { min-height: 52px; padding: 14px 28px; }
    .btn--sm { min-height: 40px; }

    /* --- Inputs: 16px verhindert iOS-Auto-Zoom --- */
    .form-group input,
    .form-group select,
    .form-group textarea { font-size: 16px; }

    /* --- Hero --- */
    .hero { padding: 108px 0 68px; }
    .hero__inner { grid-template-columns: 1fr; gap: 44px; }
    .hero__title { font-size: clamp(1.95rem, 7.5vw, 2.6rem); }
    .hero__subtitle { font-size: 1rem; max-width: 100%; margin-bottom: 28px; }
    .hero__eyebrow { margin-bottom: 16px; }
    .hero__actions { flex-direction: column; gap: 10px; margin-bottom: 36px; }
    .hero__actions .btn { width: 100%; justify-content: center; }
    .hero__trust { gap: 22px; padding-top: 24px; flex-wrap: wrap; }
    .hero__trust-item strong { font-size: 1.25rem; }
    .hero__visual { max-width: 100%; }
    .floating-badge { display: none; }

    /* --- About --- */
    .about__inner { grid-template-columns: 1fr; gap: 44px; }
    .about__media { max-width: 300px; }

    /* --- Services --- */
    .services__grid { grid-template-columns: 1fr; }
    .service-card { padding: 26px 20px; }

    /* --- Pricing --- */
    .pricing__tabs {
        width: 100%; position: relative;
        left: 0; transform: none;
        flex-wrap: wrap;
    }
    .pricing__tab { flex: 1; justify-content: center; padding: 10px 10px; font-size: 0.85rem; }
    .pricing__grid { grid-template-columns: 1fr; }
    .plan--featured { order: -1; }
    .pricing__intro { font-size: 0.93rem; margin-bottom: 30px; }

    /* --- Benefits --- */
    .benefits__grid { grid-template-columns: 1fr; }
    .benefit { padding: 24px 18px; }
    .stats { grid-template-columns: 1fr; gap: 28px; }
    .stat p { max-width: 100%; }

    /* --- FAQ --- */
    .faq__question { padding: 18px 16px; font-size: 0.97rem; }
    .faq__item.is-open .faq__answer { max-height: 800px; }
    .faq__answer { padding: 0 16px; }

    /* --- CTA Banner --- */
    .cta-banner { padding: 52px 0; }
    .cta-banner__inner {
        flex-direction: column; text-align: center;
        padding: 32px 22px; gap: 24px;
    }

    /* --- Kontakt --- */
    .contact__inner { grid-template-columns: 1fr; gap: 40px; }
    .contact__form { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }

    /* --- Footer --- */
    .footer { padding-top: 44px; }
    .footer__inner { grid-template-columns: 1fr; gap: 28px; }
    .footer__bottom-inner {
        flex-direction: column; align-items: center;
        text-align: center; gap: 6px;
    }
}

/* Kleines Smartphone: ≤ 440px */
@media (max-width: 440px) {
    .container { padding: 0 16px; }
    .section { padding: 52px 0; }

    .header__inner { padding: 0 16px; }

    .hero { padding: 96px 0 56px; }
    .hero__title { font-size: clamp(1.75rem, 8vw, 2.1rem); }
    .hero__actions .btn { font-size: 0.92rem; }

    .rank-card { padding: 16px 14px; }
    .rank-card__url { display: none; }

    .service-card { padding: 22px 16px; }
    .service-card h3 { font-size: 1.08rem; }

    .plan { padding: 24px 16px; }
    .plan__price { font-size: 1.75rem; }

    .benefit { padding: 20px 14px; }

    .faq__question { padding: 16px 14px; font-size: 0.93rem; }
    .faq__icon { width: 20px; height: 20px; }

    .contact__form { padding: 20px 14px; }
    .cta-banner__inner { padding: 26px 16px; }

    .pricing__tabs { flex-direction: column; gap: 4px; border-radius: var(--radius); }
    .pricing__tab { width: 100%; border-radius: calc(var(--radius) - 4px); }
    .pricing__tab.is-active { box-shadow: none; }

    .footer__col h4 { font-size: 0.8rem; }
    .footer__col a { font-size: 0.85rem; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
    html { scroll-behavior: auto; }
}
