:root {
    --accent: #3a97b5;
    --accent-dark: #2f7c94;
    --accent-tint: #e3f1f6;
    --ink: #17181a;
    --ink-soft: #55575c;
    --ink-mute: #8a8d93;
    --line: #e8e8ea;
    --bg-soft: #f7f7f8;
    --radius: 10px;
    --shadow: 0 10px 30px rgba(23, 24, 26, 0.07);
    --font: "Inter", "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

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

a { color: var(--accent-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 20px; }

/* ---------- Header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; gap: 28px; height: 68px; }
.logo img { display: block; height: 30px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.main-nav > a, .main-nav .nav-item > a {
    display: inline-flex; align-items: center; gap: 4px;
    color: var(--ink-soft); font-size: 15px; font-weight: 500;
    line-height: 1; padding: 10px 12px; border-radius: 8px;
}
.nav-item { display: flex; align-items: center; }
.main-nav a:hover, .main-nav a.active { color: var(--ink); background: var(--bg-soft); text-decoration: none; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.lang-switch { display: flex; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.lang-switch a {
    padding: 5px 10px; font-size: 12px; font-weight: 600; color: var(--ink-mute);
    text-transform: uppercase; letter-spacing: 0.04em;
}
.lang-switch a.active { background: var(--ink); color: #fff; }
.lang-switch a:hover { text-decoration: none; color: var(--ink); }
.lang-switch a.active:hover { color: #fff; }

.btn {
    display: inline-block; border: 0; cursor: pointer;
    font-family: var(--font); font-size: 15px; font-weight: 600;
    padding: 11px 22px; border-radius: 9px;
    background: var(--accent); color: #fff;
    transition: background 0.15s ease, transform 0.1s ease;
}
.btn:hover { background: var(--accent-dark); text-decoration: none; }
.btn:active { transform: scale(0.98); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { background: var(--bg-soft); border-color: var(--ink-mute); }
.btn-sm { padding: 8px 16px; font-size: 14px; }

/* ---------- Hero ---------- */
.hero { padding: 84px 0 64px; text-align: center; }
.hero h1 {
    margin: 0 0 14px; font-size: clamp(32px, 5vw, 52px);
    font-weight: 800; letter-spacing: -0.02em; line-height: 1.12;
}
.hero h1 .mark { position: relative; white-space: nowrap; }
.hero h1 .mark svg {
    position: absolute; left: 0; right: 0; bottom: -10px;
    width: 100%; height: 12px; color: var(--accent);
}
.hero p.sub { margin: 0 auto 34px; max-width: 560px; color: var(--ink-soft); font-size: 18px; }

/* ---------- Domain checker ---------- */
.domain-check { max-width: 560px; margin: 0 auto; }
.domain-check form { display: flex; gap: 10px; }
.domain-check input {
    flex: 1; min-width: 0; font: inherit;
    padding: 13px 18px; border: 1.5px solid var(--line); border-radius: 9px;
}
.domain-check input:hover { border-color: var(--ink-mute); }
.domain-check input:focus { border-color: var(--accent); outline: none; box-shadow: 0 0 0 3px var(--accent-tint); }
.tld-teaser { margin-top: 14px; font-size: 13.5px; color: var(--ink-mute); }
.tld-teaser strong { color: var(--ink-soft); font-weight: 600; }

.check-results { margin-top: 22px; text-align: left; display: grid; gap: 8px; }
.check-results .row {
    display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
    padding: 12px 16px; border: 1px solid var(--line); border-radius: var(--radius);
    background: #fff;
}
.check-results .domain { font-weight: 600; }
.check-results .state { font-size: 13px; font-weight: 600; padding: 3px 10px; border-radius: 999px; }
.state.ok { color: #0c6b3d; background: #e5f6ec; }
.state.no { color: #c0392b; background: #fdecea; }
.state.meh { color: var(--ink-mute); background: var(--bg-soft); }
.check-results .cta { margin-left: auto; }
.check-hint { margin-top: 14px; font-size: 14px; color: var(--ink-mute); }

/* ---------- Sections ---------- */
.section { padding: 56px 0; }
.section-alt { background: var(--bg-soft); }
.section h2 {
    margin: 0 0 8px; font-size: clamp(24px, 3vw, 32px);
    font-weight: 800; letter-spacing: -0.015em;
}
.section .lead { margin: 0 0 32px; color: var(--ink-soft); max-width: 640px; }

/* ---------- Product cards ---------- */
.product-grid {
    display: grid; gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 330px));
    justify-content: center;
}
.card {
    position: relative; display: flex; flex-direction: column;
    background: #fff; border: 1px solid var(--line); border-radius: 14px;
    padding: 26px 24px 24px;
    transition: box-shadow 0.15s ease, border-color 0.15s ease;
}
.card:hover { box-shadow: var(--shadow); border-color: #dcdcdf; }
.card.featured { border: 2px solid var(--accent); }
.card .flag {
    position: absolute; top: -11px; left: 20px;
    background: var(--accent); color: #fff;
    font-size: 11.5px; font-weight: 700; letter-spacing: 0.03em;
    padding: 3px 12px; border-radius: 999px;
}
.card h3 { margin: 0 0 4px; font-size: 19px; font-weight: 700; }
.card .desc { margin: 0 0 16px; font-size: 14px; color: var(--ink-soft); }
.card ul.specs { margin: 0 0 20px; padding: 0; list-style: none; flex: 1; }
.card ul.specs li {
    position: relative; padding: 4px 0 4px 26px;
    font-size: 14.5px; color: var(--ink-soft);
}
.card ul.specs li::before {
    content: ""; position: absolute; left: 0; top: 9px;
    width: 16px; height: 16px;
    background: var(--accent);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}
.card .price { margin: 0 0 4px; font-size: 30px; font-weight: 800; letter-spacing: -0.02em; }
.card .price small { font-size: 14px; font-weight: 500; color: var(--ink-mute); }
.card .price-note { margin: 0 0 18px; font-size: 12.5px; color: var(--ink-mute); }
.card .btn { text-align: center; }
.vat-note { margin-top: 20px; font-size: 13px; color: var(--ink-mute); }

/* ---------- Benefits ---------- */
.benefits { display: flex; justify-content: center; gap: 36px; flex-wrap: wrap; padding: 34px 0; }
.benefits span { display: flex; align-items: center; gap: 9px; font-size: 15px; font-weight: 500; color: var(--ink-soft); }
.benefits svg { width: 20px; height: 20px; color: var(--accent); flex: none; }

/* ---------- TLD table ---------- */
.tld-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.tld-table th, .tld-table td { padding: 12px 18px; text-align: left; font-size: 15px; }
.tld-table th { background: var(--bg-soft); font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-mute); }
.tld-table tr + tr td { border-top: 1px solid var(--line); }
.tld-table td.tld-name { font-weight: 700; }
.table-scroll { overflow-x: auto; border-radius: var(--radius); }

/* ---------- Prose (Rechtstexte) ---------- */
.prose { max-width: 760px; }
.prose h1 { font-size: 34px; font-weight: 800; letter-spacing: -0.02em; }
.prose-body { white-space: pre-wrap; color: var(--ink-soft); }

/* ---------- Footer ---------- */
.site-footer { margin-top: 40px; background: #32353a; color: #b9bbc0; }
.site-footer .wrap {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; flex-wrap: wrap; padding-top: 30px; padding-bottom: 30px;
    font-size: 14px;
}
.site-footer a { color: #e6e7e9; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
    .main-nav { display: none; }
    .site-header .wrap { height: 60px; }
    .logo img { height: 24px; }
    .hero { padding: 56px 0 44px; }
    .domain-check form { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    * { transition: none !important; }
}

/* ---------- Nav-Dropdown (Unterkategorien) ---------- */
.nav-item { position: relative; }
.nav-item .caret { font-size: 10px; color: var(--ink-mute); }
.nav-item .dropdown {
    position: absolute; top: 100%; left: 0; min-width: 200px;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    box-shadow: var(--shadow); padding: 6px;
    opacity: 0; visibility: hidden; transform: translateY(4px);
    transition: opacity 0.12s ease, transform 0.12s ease, visibility 0.12s;
}
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-item .dropdown a {
    display: block; padding: 8px 12px; border-radius: 7px;
    color: var(--ink-soft); font-size: 14.5px; font-weight: 500;
}
.nav-item .dropdown a:hover { background: var(--bg-soft); color: var(--ink); text-decoration: none; }

/* Unterkategorie-Abschnitte auf Kategorieseiten */
.subcat { margin-top: 44px; }
.subcat h3 { margin: 0 0 16px; font-size: 21px; font-weight: 700; }

/* ---------- Produktdetailseite & SEO-Text ---------- */
.crumbs { font-size: 13.5px; color: var(--ink-mute); margin: 0 0 18px; }
.crumbs a { color: var(--ink-soft); }
.product-detail h1 { margin: 0 0 10px; font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -0.02em; }
.product-detail .lead { color: var(--ink-soft); max-width: 680px; margin: 0 0 34px; font-size: 17px; }
.detail-grid { display: grid; grid-template-columns: 1fr 320px; gap: 32px; align-items: start; }
.detail-grid h2 { font-size: 20px; margin: 0 0 14px; }
.specs-lg { margin: 0; padding: 0; list-style: none; }
.specs-lg li { position: relative; padding: 6px 0 6px 28px; font-size: 15px; color: var(--ink-soft); }
.specs-lg li::before {
    content: ""; position: absolute; left: 0; top: 11px; width: 17px; height: 17px; background: var(--accent);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}
.price-box { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 14px; padding: 22px 24px; }
.price-box .price-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.price-box .price-row:last-of-type { border-bottom: 0; }
.price-box .amount { font-weight: 700; }
.price-box .hint { font-size: 12.5px; color: var(--ink-mute); margin: 10px 0; }
.card h3 .card-link { color: var(--ink); }
.card h3 .card-link:hover { color: var(--accent-dark); text-decoration: none; }
.seo-text {
    margin-top: 52px; padding-top: 34px; border-top: 1px solid var(--line);
    max-width: 760px; color: var(--ink-soft); font-size: 15.5px; white-space: pre-line;
}
@media (max-width: 800px) { .detail-grid { grid-template-columns: 1fr; } }

.subcat-link { color: var(--ink); }
.subcat-link:hover { color: var(--accent-dark); text-decoration: none; }

/* ---------- Feature-Grid (Immer inklusive) ---------- */
.feature-section { background: var(--bg-soft); }
.feature-grid {
    display: grid; gap: 40px 28px; margin-top: 40px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    text-align: center;
}
.feature-icon {
    display: inline-flex; width: 54px; height: 54px; color: var(--accent);
}
.feature-icon svg { width: 100%; height: 100%; }
.feature h3 { margin: 14px 0 8px; font-size: 18px; font-weight: 700; }
.feature p { margin: 0 auto; max-width: 300px; font-size: 14.5px; color: var(--ink-soft); }

/* ---------- SEO-Textbereich (aufgewertet) ---------- */
.seo-section { background: var(--bg-soft); }
.seo-box { max-width: 800px; margin: 0 auto; text-align: center; }
.seo-box h2 { margin: 0 0 14px; }
.seo-rule {
    display: block; width: 64px; height: 4px; margin: 0 auto 26px;
    background: var(--accent); border-radius: 999px;
}
.seo-box p { margin: 0 0 16px; color: var(--ink-soft); font-size: 15.5px; text-align: left; }
.seo-body > p:first-of-type {
    font-size: 17.5px; color: var(--ink); text-align: center; margin-bottom: 22px;
}
.seo-body strong { color: var(--ink); }
.seo-body ul { margin: 0 0 16px; padding: 0; list-style: none; text-align: left; }
.seo-body ul li {
    position: relative; padding: 3px 0 3px 26px; color: var(--ink-soft); font-size: 15px;
}
.seo-body ul li::before {
    content: ""; position: absolute; left: 0; top: 8px; width: 15px; height: 15px; background: var(--accent);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}

.footer-vat { padding-top: 22px !important; padding-bottom: 0 !important; font-size: 13px; color: #8a8d93; }
.site-footer .footer-vat + .wrap { padding-top: 12px; }

.card .details-link { display: block; text-align: center; margin-top: 10px; font-size: 13.5px; color: var(--ink-mute); }
.card .details-link:hover { color: var(--accent-dark); text-decoration: none; }

/* ---------- Detailseite: Ausbau ---------- */
.specs-lg { columns: 2; column-gap: 28px; }
.specs-lg li { break-inside: avoid; }
@media (max-width: 640px) { .specs-lg { columns: 1; } }

.trust-bar {
    display: flex; justify-content: center; gap: 22px; flex-wrap: wrap; margin-top: 26px;
    border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 18px;
}
.trust-bar span { display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 500; color: var(--ink-soft); }
.trust-bar svg { width: 17px; height: 17px; color: var(--accent); flex: none; }

.save-badge {
    display: inline-block; margin-right: 8px; vertical-align: 1px;
    background: #e5f6ec; color: #0c6b3d;
    font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 999px;
}

.siblings { margin-top: 44px; }
.siblings h2 { font-size: 20px; margin: 0 0 14px; }
.sibling-grid { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(200px, 280px)); }
.sibling-card {
    display: block; border: 1px solid var(--line); border-radius: 10px;
    padding: 14px 16px; color: var(--ink); font-size: 14px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.sibling-card:hover { text-decoration: none; border-color: var(--ink-mute); box-shadow: var(--shadow); }
.sibling-card.current { border: 2px solid var(--accent); cursor: default; }
.sibling-card.current:hover { box-shadow: none; border-color: var(--accent); }
.sibling-card strong { display: inline-block; }
.current-dot { font-size: 11px; color: var(--accent); margin-left: 6px; }
.sibling-meta { display: block; margin-top: 3px; font-size: 12.5px; color: var(--ink-mute); }

/* ---------- FAQ ---------- */
.faq-section { background: #fff; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
    cursor: pointer; list-style: none; position: relative;
    padding: 16px 36px 16px 0; font-size: 16.5px; font-weight: 600;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
    font-size: 22px; font-weight: 400; color: var(--accent);
}
.faq-item[open] summary::after { content: "−"; }
.faq-item summary:hover { color: var(--accent-dark); }
.faq-answer { padding: 0 0 18px; color: var(--ink-soft); font-size: 15px; max-width: 700px; }

/* ---------- Hinweisbox (z. B. Lizenzhinweise) ---------- */
.notice-box {
    margin-top: 28px; padding: 14px 18px 14px 46px; position: relative;
    background: var(--bg-soft); border: 1px solid var(--line);
    border-left: 4px solid var(--accent); border-radius: var(--radius);
    font-size: 14px; color: var(--ink-soft); max-width: 860px;
}
.notice-box::before {
    content: ""; position: absolute; left: 16px; top: 16px; width: 18px; height: 18px;
    background: var(--accent);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 8v5'/%3E%3Cpath d='M12 16.5h.01'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 8v5'/%3E%3Cpath d='M12 16.5h.01'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* =========================================================================
   SERVERPATCHER FACELIFT  (überschreibt Basis per Kaskade)
   ========================================================================= */

/* ---- Hero: dunkel & „techig" ---- */
.hero {
    background-color: #23262b;
    background-image:
        radial-gradient(circle at 80% 12%, rgba(58,151,181,0.30), transparent 46%),
        linear-gradient(0deg, #1c1f23, #262a2f);
    color: #fff;
    padding: 96px 0 92px;
}
.hero h1 { color: #fff; }
.hero p.sub { color: #b9c1c9; }
.hero .tld-teaser { color: #93a0aa; }
.hero .tld-teaser strong { color: #e3e8ec; }
.hero .domain-check input { border-color: transparent; box-shadow: 0 6px 20px rgba(0,0,0,0.18); }
.hero .check-hint { color: #b9c1c9; }

/* ---- Benefit-Leiste: schwebende Karte über dem Hero ---- */
.benefits {
    position: relative; z-index: 2;
    margin: -36px auto 8px; max-width: 940px;
    padding: 20px 28px; gap: 18px 40px;
    background: #fff; border: 1px solid var(--line);
    border-radius: 16px; box-shadow: var(--shadow);
    justify-content: space-around;
}
.benefits span { font-weight: 600; color: var(--ink); }

/* ---- Section-Titel: Akzentstrich (außer Feature-/SEO-Sektionen) ---- */
.section:not(.feature-section):not(.seo-section) h2 {
    position: relative; padding-bottom: 16px;
}
.section:not(.feature-section):not(.seo-section) h2::after {
    content: ""; position: absolute; left: 0; bottom: 0;
    width: 54px; height: 4px; border-radius: 999px; background: var(--accent);
}

/* ---- Produktkarten: Serverpatcher-Stil ---- */
.product-grid { gap: 26px; padding-top: 24px; }
.card {
    text-align: center; overflow: visible;
    border-radius: 16px; padding: 46px 26px 28px;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(23,24,26,0.10); }
.card-icon {
    position: absolute; top: -28px; left: 50%; transform: translateX(-50%);
    width: 58px; height: 58px; border-radius: 50%;
    background: var(--accent); color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 18px rgba(58,151,181,0.35);
}
.card-icon svg { width: 28px; height: 28px; }
.card.featured .card-icon { background: var(--accent-dark); }
.card .flag { top: 16px; left: auto; right: 16px; }
.card h3 { margin-top: 2px; }
.card .desc { min-height: 42px; }

/* Preis-Band (randlos bis zur Kartenkante) */
.price-band {
    margin: 10px -26px 20px; padding: 18px 26px;
    background: var(--bg-soft);
    border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.price-band .price { margin: 0 0 2px; color: var(--accent); font-size: 32px; }
.price-band .price-note { margin: 0; }
.card.featured .price-band { background: var(--accent); border-color: var(--accent); }
.card.featured .price-band .price,
.card.featured .price-band .price small,
.card.featured .price-band .price-note { color: #fff; }

/* Specs als getrennte Zeilen, links ausgerichtet in zentrierter Karte */
.card ul.specs { text-align: left; }
.card ul.specs li {
    padding-top: 9px; padding-bottom: 9px;
    border-bottom: 1px solid var(--line);
}
.card ul.specs li:last-child { border-bottom: 0; }

/* Karten-CTA: volle Breite */
.card .btn { display: block; width: 100%; }

@media (max-width: 860px) {
    .hero { padding: 64px 0 72px; }
    .benefits { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* =========================================================================
   MODERN PASS  (Typo Inter, weiche Tiefe, mehr Luft, Micro-Interaktionen)
   ========================================================================= */

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url("../fonts/inter-latin-variable.woff2") format("woff2");
}

:root {
    --shadow: 0 1px 2px rgba(23,24,26,0.04), 0 8px 24px rgba(23,24,26,0.06), 0 24px 48px rgba(23,24,26,0.05);
}

body { font-feature-settings: "cv02","cv03","cv04","cv11"; letter-spacing: -0.006em; }
h1, h2, h3, .hero h1, .section h2, .card h3 { letter-spacing: -0.022em; }

/* Buttons: weiche Tiefe + Lift */
.btn {
    border-radius: 11px;
    box-shadow: 0 6px 16px rgba(58,151,181,0.28);
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(58,151,181,0.36); }
.btn:active { transform: translateY(0); }
.btn-ghost { box-shadow: none; }
.btn-ghost:hover { transform: translateY(-2px); }

/* Nav: Teal-Pill statt Grau */
.main-nav a:hover, .main-nav a.active { color: var(--accent); background: var(--accent-tint); }

/* Hero: Mesh-Glow + feines Tech-Grid + mehr Höhe */
.hero {
    padding: 112px 0 104px; position: relative; overflow: hidden;
    background-color: #202327;
    background-image:
        radial-gradient(60% 55% at 82% 6%, rgba(58,151,181,0.34), transparent 60%),
        radial-gradient(52% 52% at 6% 96%, rgba(58,151,181,0.16), transparent 60%),
        linear-gradient(180deg, #232529, #1a1c20);
}
.hero::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
    background-size: 46px 46px;
    -webkit-mask-image: radial-gradient(72% 72% at 50% 28%, #000, transparent 76%);
    mask-image: radial-gradient(72% 72% at 50% 28%, #000, transparent 76%);
}
.hero .wrap { position: relative; z-index: 1; }
.hero h1 { font-size: clamp(38px, 5.5vw, 62px); }

/* Eyebrow-Badge */
.hero .eyebrow {
    display: inline-flex; align-items: center; gap: 9px;
    margin: 0 0 22px; padding: 7px 16px 7px 13px;
    background: rgba(58,151,181,0.14); color: #8fd4ea;
    border: 1px solid rgba(58,151,181,0.35); border-radius: 999px;
    font-size: 13.5px; font-weight: 600;
}
.hero .eyebrow .dot {
    width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
    box-shadow: 0 0 0 4px rgba(58,151,181,0.25);
}

/* Glas-Domainsuche */
.hero .domain-check {
    margin-top: 36px; padding: 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.hero .domain-check input, .hero .domain-check .btn { border-radius: 11px; }

/* Mehr Luft in Sektionen */
.section { padding: 72px 0; }
.section h2 { font-size: clamp(26px, 3.2vw, 36px); }

/* Karten: größere Radien, weiche Tiefe */
.card { border-radius: 20px; }
.card-icon { box-shadow: 0 8px 22px rgba(58,151,181,0.40); }

/* Beliebt-Tarif: angehoben + Teal-Glow */
.card.featured {
    transform: scale(1.045); z-index: 1;
    box-shadow: 0 22px 52px rgba(58,151,181,0.22), 0 0 0 1px rgba(58,151,181,0.14);
}
.card.featured:hover { transform: scale(1.045) translateY(-4px); }

/* Dezenter Auftritt des Hero-Inhalts */
@keyframes sp-rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.hero .wrap > * { animation: sp-rise 0.6s cubic-bezier(0.2,0.7,0.2,1) both; }
.hero .wrap > *:nth-child(2) { animation-delay: 0.06s; }
.hero .wrap > *:nth-child(3) { animation-delay: 0.12s; }
.hero .wrap > *:nth-child(4) { animation-delay: 0.18s; }

@media (max-width: 860px) {
    .hero { padding: 72px 0 80px; }
    .card.featured { transform: none; }
    .card.featured:hover { transform: translateY(-4px); }
}
@media (prefers-reduced-motion: reduce) {
    .hero .wrap > * { animation: none; }
}
