/* Angel Reminder — Marketing/Content shared styles
 * Premium-Look auf Basis des App-Erscheinungsbilds: Rosé #feb4ca, Kirschblüte,
 * helle Blush-Atmosphäre. Display-Serif „Fraunces" (lokal gehostet, DSGVO),
 * Body bleibt System-Sans (Performance). Keine externen Requests. */

@font-face {
    font-family: 'Fraunces';
    src: url('/fonts/fraunces-latin-var.woff2') format('woff2');
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0000-00FF, U+2013-2014, U+2018-201E, U+2026;
}
@font-face {
    font-family: 'Fraunces';
    src: url('/fonts/fraunces-latin-italic-var.woff2') format('woff2');
    font-weight: 400 700;
    font-style: italic;
    font-display: swap;
    unicode-range: U+0000-00FF, U+2013-2014, U+2018-201E, U+2026;
}

:root {
    --rose: #feb4ca;
    --rose-hell: #ffe3ec;
    --rose-bg: #fdf2f6;
    --rose-dunkel: #b03d63;
    --rose-tief: #92304f;
    --gold: #b8941f;
    --gold-hell: #fdf8ec;
    --gruen: #2a7a6c;
    --rot: #c44b4b;
    --ink: #2e2228;
    --grau: #82707a;
    --border: rgba(176, 61, 99, 0.12);
    --display: 'Fraunces', Georgia, 'Times New Roman', serif;
    --shadow-soft: 0 1px 2px rgba(146, 48, 79, 0.05), 0 12px 32px -8px rgba(146, 48, 79, 0.10);
    --shadow-lift: 0 2px 4px rgba(146, 48, 79, 0.06), 0 24px 48px -12px rgba(146, 48, 79, 0.18);
    /* Alias für Bestands-Inline-Styles (Footer-Brand) */
    --creme: #5a3a48;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    color: var(--ink);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    /* Atmosphäre: Kirschblüte (wie App) über sanftem Blush-Verlauf */
    background:
        url(/img/angel-reminder-background-3.png) no-repeat 0 91% / 64%,
        radial-gradient(1200px 600px at 85% -5%, rgba(254, 180, 202, 0.32), transparent 60%),
        radial-gradient(900px 700px at -10% 40%, rgba(255, 227, 236, 0.55), transparent 55%),
        #fffcfb;
}

::selection { background: var(--rose); color: var(--ink); }

a { color: var(--rose-dunkel); text-decoration: none; }
a:hover { color: var(--rose-tief); text-decoration: underline; text-underline-offset: 3px; }
:focus-visible { outline: 2px solid var(--rose-dunkel); outline-offset: 3px; border-radius: 4px; }

.wrap { max-width: 880px; margin: 0 auto; padding: 0 1.4rem; }

h1, h2 { font-family: var(--display); font-weight: 580; }

/* ---------- Header / Nav: Glas über Blush, Rosé-Signaturlinie oben ---------- */
.site-head {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255, 251, 252, 0.78);
    -webkit-backdrop-filter: blur(14px) saturate(1.4);
    backdrop-filter: blur(14px) saturate(1.4);
    border-bottom: 1px solid var(--border);
}
.site-head::before {
    content: ""; display: block; height: 3px;
    background: linear-gradient(90deg, var(--rose), var(--rose-dunkel) 45%, var(--rose));
}
.site-head .wrap {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 0.7rem; padding-bottom: 0.7rem; gap: 1rem;
}
.brand {
    display: flex; align-items: center; gap: 0.65rem;
    font-family: var(--display); font-weight: 600; font-size: 1.12rem;
    letter-spacing: 0.01em; color: var(--ink); white-space: nowrap;
}
.brand:hover { text-decoration: none; color: var(--ink); }
.brand img { height: 40px; width: auto; }
.nav { display: flex; gap: 1.4rem; flex-wrap: wrap; font-size: 0.95rem; align-items: center; }
.nav a { color: #6e4256; font-weight: 500; position: relative; }
.nav a:not(.nav-cta)::after {
    content: ""; position: absolute; left: 0; right: 100%; bottom: -4px; height: 2px;
    background: var(--rose-dunkel); transition: right 0.25s ease;
}
.nav a:not(.nav-cta):hover::after { right: 0; }
.nav a:hover { color: var(--rose-tief); text-decoration: none; }
.nav .nav-cta {
    color: #fff; background: var(--rose-dunkel); padding: 0.4rem 1.15rem;
    border-radius: 999px; font-weight: 600;
    box-shadow: 0 4px 14px -4px rgba(146, 48, 79, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.nav .nav-cta:hover { background: var(--rose-tief); color: #fff; transform: translateY(-1px); box-shadow: 0 8px 20px -6px rgba(146, 48, 79, 0.5); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-block; padding: 0.85rem 2.2rem; border-radius: 999px;
    font-weight: 600; font-size: 1rem; cursor: pointer;
    border: 1px solid var(--rose-dunkel);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn-primary {
    background: linear-gradient(135deg, #c2476e, var(--rose-dunkel));
    color: #fff; border-color: transparent;
    box-shadow: 0 6px 18px -6px rgba(146, 48, 79, 0.55);
}
.btn-primary:hover { color: #fff; text-decoration: none; transform: translateY(-2px); box-shadow: 0 12px 28px -8px rgba(146, 48, 79, 0.6); }
.btn-ghost { background: rgba(255, 255, 255, 0.65); color: var(--rose-dunkel); border-color: var(--border); }
.btn-ghost:hover { background: var(--rose-hell); text-decoration: none; transform: translateY(-2px); }

/* ---------- Hero: editorial, sanft choreografiert ---------- */
.hero { padding: 6rem 0 4.5rem; text-align: center; position: relative; }
.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.08; letter-spacing: -0.02em;
    max-width: 18ch; margin: 0 auto;
}
.hero h1 .accent {
    font-style: italic; font-weight: 540;
    background: linear-gradient(120deg, var(--rose-dunkel), #d4708f);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: var(--rose-dunkel);
}
.hero .lead { font-size: 1.22rem; color: var(--grau); max-width: 620px; margin: 1.6rem auto 2.4rem; }
.hero .actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero h1, .hero .lead, .hero .actions, .hero .badges { animation: rise 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.hero .lead { animation-delay: 0.12s; }
.hero .actions { animation-delay: 0.22s; }
.hero .badges { animation-delay: 0.34s; }
@keyframes rise {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: none; }
}

/* ---------- Sections ---------- */
section { padding: 4.2rem 0; }
section.alt {
    background: linear-gradient(180deg, rgba(255, 240, 246, 0.7), rgba(255, 227, 236, 0.35));
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
h2 { font-size: clamp(1.6rem, 3.4vw, 2.1rem); letter-spacing: -0.01em; margin-bottom: 1.25rem; }
h2.center::after {
    content: ""; display: block; width: 56px; height: 3px; border-radius: 3px;
    margin: 0.9rem auto 0;
    background: linear-gradient(90deg, var(--rose), var(--rose-dunkel));
}
h3 { font-size: 1.2rem; font-weight: 650; margin: 1.75rem 0 0.6rem; color: var(--ink); }
p { margin-bottom: 1rem; }
ul, ol { margin: 0 0 1rem 1.4rem; }
li { margin-bottom: 0.5rem; }
.muted { color: var(--grau); }
.center { text-align: center; }

/* ---------- Cards / Grid ---------- */
.grid { display: grid; gap: 1.4rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--border);
    border-radius: 22px; padding: 1.8rem 1.6rem;
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card h3 { margin-top: 0; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
a.card { display: block; }
a.card:hover { text-decoration: none; }
.card .ico {
    display: inline-flex; align-items: center; justify-content: center;
    width: 3rem; height: 3rem; border-radius: 50%;
    background: linear-gradient(135deg, var(--rose-hell), rgba(254, 180, 202, 0.5));
    color: var(--rose-dunkel); font-size: 1.35rem; margin-bottom: 0.85rem;
}
/* Editoriale Serif-Ziffern statt Kreis-Badges */
.step-num {
    display: block; font-family: var(--display); font-style: italic;
    font-size: 2.8rem; font-weight: 480; line-height: 1;
    color: var(--rose-dunkel); margin-bottom: 0.55rem;
}
.step-num::after {
    content: ""; display: block; width: 34px; height: 2px; margin-top: 0.5rem;
    background: linear-gradient(90deg, var(--rose), transparent);
}

/* ---------- Positionierung-Box (ist / ist nicht) ---------- */
.contrast { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.contrast .yes { border-top: 3px solid var(--gruen); }
.contrast .no  { border-top: 3px solid var(--rot); }
.contrast .no h3 { color: var(--rot); }
.contrast .yes h3 { color: var(--gruen); }

/* ---------- Disclaimer-Komponente ---------- */
.disclaimer {
    background: var(--gold-hell); border: 1px solid rgba(184, 148, 31, 0.25);
    border-left: 4px solid var(--gold); border-radius: 14px;
    padding: 1.1rem 1.4rem; font-size: 0.92rem; color: var(--grau); margin: 2.2rem 0;
}
.disclaimer strong { color: var(--gold); }

/* ---------- Trust-Badges ---------- */
.badges { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; margin-top: 1.8rem; }
.badge {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--border); border-radius: 999px;
    padding: 0.5rem 1.05rem; font-size: 0.88rem; color: #5d4350;
    box-shadow: 0 1px 4px rgba(146, 48, 79, 0.06);
}
.badge .ico { color: var(--rose-dunkel); margin-right: 0.4rem; font-size: 0.6rem; vertical-align: 2px; }

/* ---------- Pricing ---------- */
.price-amount {
    font-family: var(--display); font-size: 3rem; font-weight: 560;
    color: var(--rose-dunkel); letter-spacing: -0.02em;
}
.price-amount small { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif; font-size: 1rem; color: var(--grau); font-weight: 400; letter-spacing: 0; }

/* ---------- Breadcrumb ---------- */
.crumb { font-size: 0.82rem; letter-spacing: 0.04em; color: var(--grau); padding: 1.4rem 0 0; }
.crumb a { color: var(--grau); }
.crumb a:hover { color: var(--rose-dunkel); }

/* ---------- TL;DR box ---------- */
.tldr {
    background: linear-gradient(135deg, rgba(255, 240, 246, 0.9), rgba(255, 227, 236, 0.55));
    border: 1px solid var(--border); border-radius: 18px;
    padding: 1.4rem 1.6rem; margin: 1.8rem 0;
    box-shadow: var(--shadow-soft);
}
.tldr strong { font-family: var(--display); font-style: italic; font-weight: 580; font-size: 1.05em; color: var(--rose-dunkel); }

/* ---------- Vorlesen (Web Speech, Button wird per JS injiziert) ---------- */
.readaloud { display: inline-flex; gap: 0.4rem; margin-left: 0.8rem; vertical-align: middle; }
.readaloud-btn {
    font: inherit; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.02em;
    color: var(--rose-dunkel); background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--border); border-radius: 999px;
    padding: 0.2rem 0.85rem; cursor: pointer;
    box-shadow: 0 1px 4px rgba(146, 48, 79, 0.08);
    transition: background 0.2s ease, transform 0.2s ease;
}
.readaloud-btn:hover { background: var(--rose-hell); transform: translateY(-1px); }
.readaloud-stop { background: transparent; box-shadow: none; }

/* ---------- Article ---------- */
.article { padding: 2.2rem 0 3.5rem; }
.article h1 {
    font-size: clamp(1.9rem, 4.4vw, 2.7rem);
    line-height: 1.15; letter-spacing: -0.015em; margin: 0.6rem 0 0.9rem;
}
.article .meta {
    text-transform: uppercase; letter-spacing: 0.09em; font-size: 0.74rem;
    font-weight: 600; color: var(--grau); margin-bottom: 1.8rem;
}
.article h2 { margin-top: 2.6rem; }
.checklist { list-style: none; margin-left: 0; }
.checklist li { padding-left: 1.9rem; position: relative; }
.checklist li::before {
    content: "✓"; position: absolute; left: 0; top: 0.05em;
    color: var(--gruen); font-weight: 700;
}

/* ---------- Tabellen (Legal-/Content-Seiten) ---------- */
table { width: 100%; border-collapse: collapse; margin: 0 0 1.5rem; font-size: 0.95rem; }
th, td { text-align: left; padding: 0.65rem 0.9rem; border-bottom: 1px solid var(--border); }
th { font-weight: 650; color: var(--rose-tief); background: rgba(255, 240, 246, 0.6); }
tr:last-child td { border-bottom: none; }

/* ---------- CTA-Band ---------- */
.cta-band {
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, #fff0f5, #ffe0eb 65%, #ffd6e4);
    border: 1px solid var(--border); border-radius: 26px;
    padding: 3rem 2.4rem; text-align: center; margin: 3rem 0;
    box-shadow: var(--shadow-soft);
}
.cta-band::before {
    content: "✿"; position: absolute; right: -1.2rem; top: -2.4rem;
    font-size: 9rem; line-height: 1; color: var(--rose-dunkel); opacity: 0.07;
    transform: rotate(18deg); pointer-events: none;
}
.cta-band h2 { margin-bottom: 0.75rem; }

/* ---------- Footer ---------- */
.site-foot {
    border-top: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255, 240, 246, 0.45), rgba(255, 255, 255, 0));
    padding: 3rem 0 2.5rem; margin-top: 3rem; color: var(--grau); font-size: 0.9rem;
}
.site-foot .cols { display: flex; flex-wrap: wrap; gap: 2.5rem; justify-content: space-between; }
.site-foot strong { font-family: var(--display); font-weight: 600; font-size: 1.05rem; }
.site-foot a { color: var(--grau); display: block; margin-bottom: 0.45rem; }
.site-foot a:hover { color: var(--rose-dunkel); }
.site-foot .legal { margin-top: 1.6rem; font-size: 0.8rem; color: #a78d98; }

/* ---------- Sprachumschalter ---------- */
.lang-switch { margin-top: 1.6rem; font-size: 0.84rem; letter-spacing: 0.05em; color: #a78d98; }
.lang-switch a { display: inline; color: var(--grau); margin: 0; }
.lang-switch a:hover { color: var(--rose-dunkel); }
.lang-switch .current { color: var(--rose-dunkel); font-weight: 700; }

/* ---------- Scroll-Reveal (Klassen setzt js/marketing.js) ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1); }
.reveal.in-view { opacity: 1; transform: none; }

/* ---------- Responsive / Motion ---------- */
@media (max-width: 720px) {
    .grid-3, .grid-2, .contrast { grid-template-columns: 1fr; }
    .nav { gap: 0.9rem; font-size: 0.88rem; }
    .nav .nav-hide { display: none; }
    .brand { font-size: 1rem; }
    .brand img { height: 34px; }
    .hero { padding: 4rem 0 3rem; }
    .cta-band { padding: 2.2rem 1.4rem; }
}
@media (max-width: 480px) {
    /* Logo-only Brand, damit die Nav einzeilig bleibt (alt-Text bleibt zugänglich) */
    .brand { font-size: 0; gap: 0; }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .hero h1, .hero .lead, .hero .actions, .hero .badges { animation: none; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .card, .btn, .nav .nav-cta, .readaloud-btn { transition: none; }
}
