/* ============================================================
   GenussWerk – Premium Rezepte Stylesheet
   ============================================================ */
:root {
    --primary: #E85D04;
    --primary-dark: #C44D03;
    --secondary: #FFBA08;
    --bg: #FFF8F0;
    --bg-white: #FFFFFF;
    --text: #2B2D42;
    --text-muted: #6C757D;
    --accent-light: #F4F1DE;
    --success: #588157;
    --border: #EDE8DF;
    --shadow: 0 4px 24px rgba(43, 45, 66, 0.07);
    --shadow-hover: 0 12px 40px rgba(232, 93, 4, 0.12);
    --radius: 14px;
    --radius-lg: 22px;
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    --ease: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--ease); }
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
}

/* Loader */
#loader {
    position: fixed; inset: 0; z-index: 99999;
    background: var(--bg); display: grid; place-items: center;
    transition: opacity 0.5s, visibility 0.5s;
}
#loader.hide { opacity: 0; visibility: hidden; }
.loader-wrap { text-align: center; }
.loader-icon {
    width: 56px; height: 56px; margin: 0 auto 10px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%; display: grid; place-items: center;
    animation: spin-soft 1.5s ease infinite;
}
.loader-icon i { color: #fff; font-size: 1.5rem; }
.loader-text { font-family: var(--font-display); font-weight: 700; color: var(--primary); }
@keyframes spin-soft { 0%,100%{transform:scale(1)} 50%{transform:scale(1.06) rotate(5deg)} }

/* Cookie */
.cookie-bar {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998;
    background: var(--bg-white); border-top: 1px solid var(--border);
    box-shadow: 0 -8px 30px rgba(0,0,0,0.06);
    padding: 1rem 0; transform: translateY(110%);
    transition: transform 0.45s ease;
}
.cookie-bar.show { transform: translateY(0); }
.cookie-bar .container {
    display: flex; flex-wrap: wrap; align-items: center;
    justify-content: space-between; gap: 1rem;
}
.cookie-bar p { margin: 0; font-size: 0.875rem; color: var(--text-muted); max-width: 680px; }
.cookie-bar a { color: var(--primary); font-weight: 600; }
.cookie-btns { display: flex; gap: 0.5rem; }
.btn-cookie-yes {
    background: var(--primary); color: #fff; border: none;
    padding: 0.5rem 1.25rem; border-radius: 999px; font-weight: 600; cursor: pointer;
}
.btn-cookie-yes:hover { background: var(--primary-dark); }
.btn-cookie-no {
    background: transparent; border: 1px solid var(--border);
    padding: 0.5rem 1.25rem; border-radius: 999px; cursor: pointer; color: var(--text-muted);
}
.btn-cookie-no:hover { border-color: var(--primary); color: var(--primary); }

/* Header */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 0.85rem 0; transition: var(--ease);
}
.site-header.stuck {
    background: rgba(255, 248, 240, 0.95);
    backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 var(--border);
    padding: 0.6rem 0;
}
.page-home .site-header:not(.stuck) { background: transparent; }
.header-row { display: flex; align-items: center; gap: 1.5rem; }
.logo { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.logo-mark {
    width: 40px; height: 40px; border-radius: 11px;
    background: linear-gradient(145deg, var(--primary), #ff7b2e);
    display: grid; place-items: center; color: #fff; font-size: 1.2rem;
}
.logo-name {
    font-family: var(--font-display); font-weight: 800;
    font-size: 1.25rem; color: var(--text); line-height: 1.1;
}
.logo-name small { display: block; font-family: var(--font-body); font-size: 0.62rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0.04em; }
.page-home .site-header:not(.stuck) .logo-name { color: #fff; }
.page-home .site-header:not(.stuck) .logo-name small { color: rgba(255,255,255,0.75); }
.main-nav { display: flex; gap: 0.25rem; margin-left: auto; }
.nav-link {
    padding: 0.45rem 0.9rem; font-weight: 500; font-size: 0.925rem;
    border-radius: 999px; color: var(--text);
}
.page-home .site-header:not(.stuck) .nav-link { color: rgba(255,255,255,0.92); }
.nav-link:hover, .nav-link.active { color: var(--primary) !important; background: rgba(232,93,4,0.08); }
.header-actions { display: flex; align-items: center; gap: 0.75rem; margin-left: auto; }
.main-nav + .header-actions { margin-left: 0; }
.search-form {
    display: flex; align-items: center;
    background: var(--bg-white); border: 1px solid var(--border);
    border-radius: 999px; overflow: hidden; padding: 0 0.25rem 0 1rem;
}
.search-form input {
    border: none; background: transparent; outline: none;
    font-size: 0.875rem; width: 160px; padding: 0.45rem 0;
}
.search-form button {
    border: none; background: var(--accent-light); color: var(--primary);
    width: 34px; height: 34px; border-radius: 50%; cursor: pointer;
    display: grid; place-items: center;
}
.btn-cta {
    background: var(--primary); color: #fff !important;
    padding: 0.55rem 1.25rem; border-radius: 999px;
    font-weight: 600; font-size: 0.875rem; border: none;
    display: inline-flex; align-items: center; justify-content: center;
    transition: var(--ease);
}
.btn-cta:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-hover); color: #fff; }
.btn-outline {
    background: transparent; color: var(--text);
    border: 2px solid var(--border); padding: 0.55rem 1.25rem;
    border-radius: 999px; font-weight: 600; font-size: 0.875rem;
    display: inline-flex; align-items: center;
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-gold {
    background: var(--secondary); color: var(--text);
    border: none; padding: 0.65rem 1.5rem; border-radius: 999px;
    font-weight: 700; transition: var(--ease);
}
.btn-gold:hover { filter: brightness(1.05); transform: translateY(-2px); }
.menu-toggle {
    width: 36px; height: 28px; border: none; background: none;
    display: flex; flex-direction: column; justify-content: space-between; cursor: pointer; padding: 0;
}
.menu-toggle span {
    display: block; height: 2px; background: var(--primary); border-radius: 2px; transition: var(--ease);
}
.page-home .site-header:not(.stuck) .menu-toggle span { background: #fff; }
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
.mobile-nav {
    position: fixed; top: 70px; left: 0; right: 0; bottom: 0;
    background: var(--bg); padding: 1.5rem; z-index: 999;
    transform: translateX(100%); transition: transform 0.4s ease;
    display: flex; flex-direction: column; gap: 0.25rem;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { padding: 0.85rem 0; font-size: 1.1rem; font-weight: 600; border-bottom: 1px solid var(--border); }
.mobile-search { margin-bottom: 1rem; width: 100%; }

/* Sections */
.section { padding: 5rem 0; }
.eyebrow {
    display: inline-block; font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em; color: var(--primary);
    margin-bottom: 0.65rem;
}
.section-title { font-size: clamp(1.85rem, 4vw, 2.65rem); margin-bottom: 0.75rem; }
.section-lead { color: var(--text-muted); max-width: 540px; font-size: 1.05rem; }

/* Hero – diagonal split layout */
.hero {
    min-height: 92vh; display: grid; grid-template-columns: 1fr 1fr;
    position: relative; overflow: hidden;
}
@media (max-width: 991px) { .hero { grid-template-columns: 1fr; min-height: auto; } }
.hero-media { position: relative; min-height: 400px; }
@media (max-width: 991px) { .hero-media { min-height: 280px; order: -1; } }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(232,93,4,0.15), transparent 60%);
}
.hero-content {
    display: flex; flex-direction: column; justify-content: center;
    padding: 8rem 4rem 4rem 3rem; background: var(--text);
    color: #fff; position: relative;
}
@media (max-width: 991px) { .hero-content { padding: 3rem 1.5rem 4rem; } }
.hero-content::before {
    content: ''; position: absolute; top: 0; left: -80px; bottom: 0; width: 160px;
    background: var(--text); transform: skewX(-8deg);
}
@media (max-width: 991px) { .hero-content::before { display: none; } }
.hero-content > * { position: relative; z-index: 1; }
.hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem); color: #fff; margin-bottom: 1.25rem;
}
.hero-content h1 em { font-style: normal; color: var(--secondary); }
.hero-content p { opacity: 0.88; font-size: 1.1rem; max-width: 440px; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 2.5rem; }
.hero-stats { display: flex; gap: 2rem; flex-wrap: wrap; }
.hero-stat strong { display: block; font-family: var(--font-display); font-size: 1.75rem; color: var(--secondary); }
.hero-stat span { font-size: 0.8rem; opacity: 0.7; }

/* Recipe cards */
.recipe-card {
    background: var(--bg-white); border-radius: var(--radius-lg);
    overflow: hidden; border: 1px solid var(--border);
    transition: var(--ease); height: 100%; display: flex; flex-direction: column;
}
.recipe-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: transparent; }
.recipe-card-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.recipe-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.recipe-card:hover .recipe-card-img img { transform: scale(1.06); }
.recipe-tag {
    position: absolute; top: 12px; left: 12px;
    background: var(--bg-white); color: var(--primary);
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
    padding: 0.3rem 0.65rem; border-radius: 999px;
}
.recipe-card-body { padding: 1.35rem; flex: 1; display: flex; flex-direction: column; }
.recipe-card-body h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.recipe-card-body h3 a:hover { color: var(--primary); }
.recipe-card-body p { font-size: 0.875rem; color: var(--text-muted); flex: 1; margin-bottom: 1rem; }
.recipe-meta {
    display: flex; flex-wrap: wrap; gap: 0.75rem; font-size: 0.8rem; color: var(--text-muted);
    margin-bottom: 1rem; padding-top: 0.75rem; border-top: 1px dashed var(--border);
}
.recipe-meta span { display: flex; align-items: center; gap: 0.3rem; }
.recipe-meta i { color: var(--primary); }
.diff-badge {
    display: inline-block; font-size: 0.7rem; font-weight: 600;
    padding: 0.2rem 0.55rem; border-radius: 6px;
}
.diff-leicht { background: rgba(88,129,87,0.15); color: var(--success); }
.diff-mittel { background: rgba(255,186,8,0.25); color: #9a7200; }
.diff-schwer { background: rgba(232,93,4,0.12); color: var(--primary); }

/* Category ribbon – horizontal scroll cards */
.cat-ribbon { display: flex; gap: 1rem; overflow-x: auto; padding-bottom: 0.5rem; scroll-snap-type: x mandatory; }
.cat-ribbon::-webkit-scrollbar { height: 4px; }
.cat-ribbon::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.cat-chip {
    flex: 0 0 140px; scroll-snap-align: start;
    text-align: center; cursor: pointer; transition: var(--ease);
}
.cat-chip:hover { transform: translateY(-4px); }
.cat-chip-img {
    width: 100px; height: 100px; border-radius: 50%; overflow: hidden;
    margin: 0 auto 0.65rem; border: 3px solid var(--bg-white);
    box-shadow: var(--shadow); transition: var(--ease);
}
.cat-chip:hover .cat-chip-img { border-color: var(--secondary); }
.cat-chip-img img { width: 100%; height: 100%; object-fit: cover; }
.cat-chip span { font-weight: 600; font-size: 0.875rem; display: block; }
.cat-chip small { font-size: 0.75rem; color: var(--text-muted); }

/* Why us – staggered cards */
.why-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
@media (max-width: 991px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .why-grid { grid-template-columns: 1fr; } }
.why-item {
    background: var(--bg-white); border-radius: var(--radius);
    padding: 1.75rem 1.5rem; border: 1px solid var(--border);
    transition: var(--ease);
}
.why-item:nth-child(2) { margin-top: 1.5rem; }
.why-item:nth-child(4) { margin-top: 1.5rem; }
@media (max-width: 991px) { .why-item:nth-child(2), .why-item:nth-child(4) { margin-top: 0; } }
.why-item:hover { box-shadow: var(--shadow); border-color: var(--secondary); }
.why-num {
    font-family: var(--font-display); font-size: 2rem; font-weight: 800;
    color: var(--accent-light); -webkit-text-stroke: 1px var(--primary);
    line-height: 1; margin-bottom: 0.75rem;
}
.why-item h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.why-item p { font-size: 0.875rem; color: var(--text-muted); margin: 0; }

/* Testimonials */
.testimonial-wrap { overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.5s ease; }
.testimonial-item { flex: 0 0 100%; padding: 0 0.5rem; }
@media (min-width: 768px) { .testimonial-item { flex: 0 0 50%; } }
@media (min-width: 992px) { .testimonial-item { flex: 0 0 33.333%; } }
.testimonial-box {
    background: var(--bg-white); border-radius: var(--radius-lg);
    padding: 1.75rem; border: 1px solid var(--border); height: 100%;
}
.testimonial-box .stars { color: var(--secondary); margin-bottom: 0.85rem; font-size: 0.85rem; }
.testimonial-box blockquote {
    font-size: 0.925rem; color: var(--text-muted); font-style: italic;
    border: none; padding: 0; margin: 0 0 1.25rem; flex: 1;
}
.testimonial-user { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-user img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testimonial-user strong { display: block; font-size: 0.875rem; }
.testimonial-user span { font-size: 0.75rem; color: var(--text-muted); }
.slider-nav { display: flex; justify-content: center; gap: 0.65rem; margin-top: 1.75rem; }
.slider-nav button {
    width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border);
    background: var(--bg-white); color: var(--primary); cursor: pointer; transition: var(--ease);
}
.slider-nav button:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Newsletter band */
.nl-band {
    background: linear-gradient(120deg, var(--primary) 0%, #ff7b2e 50%, var(--secondary) 100%);
    border-radius: var(--radius-lg); padding: 3rem 2.5rem; color: #fff;
    display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center;
}
@media (max-width: 767px) { .nl-band { grid-template-columns: 1fr; text-align: center; } }
.nl-band h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.5rem; }
.nl-band p { opacity: 0.9; margin: 0; }
.nl-form-row { display: flex; gap: 0.5rem; }
@media (max-width: 767px) { .nl-form-row { flex-direction: column; } }
.nl-form-row input {
    border: none; border-radius: 999px; padding: 0.75rem 1.25rem; min-width: 240px;
}
.nl-form-row button {
    background: var(--text); color: #fff; border: none;
    padding: 0.75rem 1.5rem; border-radius: 999px; font-weight: 600; cursor: pointer;
    white-space: nowrap;
}
.nl-form-row button:hover { background: #1a1c2e; }

/* Inner page hero */
.page-banner {
    background: var(--accent-light); padding: 7rem 0 3rem;
    border-bottom: 1px solid var(--border);
}
.page-banner h1 { font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 0.5rem; }
.breadcrumbs {
    display: flex; align-items: center; gap: 0.4rem; flex-wrap: wrap;
    font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.75rem;
}
.breadcrumbs a { color: var(--primary); font-weight: 500; }
.breadcrumbs a:hover { text-decoration: underline; }

/* Recipe single */
.recipe-hero { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2.5rem; align-items: start; }
@media (max-width: 991px) { .recipe-hero { grid-template-columns: 1fr; } }
.recipe-hero-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.recipe-hero-img img { width: 100%; aspect-ratio: 16/11; object-fit: cover; }
.recipe-info-panel {
    background: var(--bg-white); border-radius: var(--radius-lg);
    padding: 2rem; border: 1px solid var(--border);
}
.recipe-info-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin: 1.5rem 0;
}
.recipe-info-cell {
    background: var(--bg); border-radius: var(--radius); padding: 1rem; text-align: center;
}
.recipe-info-cell i { color: var(--primary); font-size: 1.25rem; display: block; margin-bottom: 0.35rem; }
.recipe-info-cell strong { display: block; font-size: 0.95rem; }
.recipe-info-cell span { font-size: 0.75rem; color: var(--text-muted); }
.recipe-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
@media (max-width: 767px) { .recipe-content-grid { grid-template-columns: 1fr; } }
.ingredient-list { list-style: none; }
.ingredient-list li {
    padding: 0.65rem 0; border-bottom: 1px dashed var(--border);
    display: flex; align-items: center; gap: 0.65rem; font-size: 0.925rem;
}
.ingredient-list li::before {
    content: ''; width: 8px; height: 8px; border-radius: 50%;
    background: var(--success); flex-shrink: 0;
}
.step-list { counter-reset: step; list-style: none; }
.step-list li {
    counter-increment: step; padding: 1rem 0 1rem 3rem;
    border-bottom: 1px solid var(--border); position: relative; font-size: 0.925rem;
}
.step-list li::before {
    content: counter(step); position: absolute; left: 0; top: 1rem;
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--primary); color: #fff; font-weight: 700; font-size: 0.85rem;
    display: grid; place-items: center;
}
.nutrition-table {
    background: var(--accent-light); border-radius: var(--radius);
    padding: 1.25rem; margin-top: 1.5rem;
}
.nutrition-table h4 { font-size: 0.95rem; margin-bottom: 0.75rem; }
.nutrition-row { display: flex; justify-content: space-between; padding: 0.35rem 0; font-size: 0.875rem; border-bottom: 1px dashed rgba(43,45,66,0.1); }
.share-row { display: flex; gap: 0.5rem; margin-top: 1.5rem; }
.share-row a {
    width: 40px; height: 40px; border-radius: 10px;
    background: var(--bg); display: grid; place-items: center;
    color: var(--text-muted); font-size: 1rem;
}
.share-row a:hover { background: var(--primary); color: #fff; }

/* Filter bar */
.filter-strip {
    display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem;
    padding: 1rem; background: var(--bg-white); border-radius: var(--radius);
    border: 1px solid var(--border);
}
.filter-btn {
    border: 1px solid var(--border); background: transparent;
    padding: 0.4rem 1rem; border-radius: 999px; font-size: 0.85rem;
    font-weight: 500; cursor: pointer; transition: var(--ease); color: var(--text-muted);
}
.filter-btn.active, .filter-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 2rem; }
@media (max-width: 991px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
    background: var(--bg-white); border-radius: var(--radius-lg);
    padding: 2rem; border: 1px solid var(--border);
}
.contact-row { display: flex; gap: 1rem; margin-bottom: 1.25rem; }
.contact-row:last-child { margin-bottom: 0; }
.contact-icon {
    width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
    background: var(--accent-light); color: var(--primary);
    display: grid; place-items: center; font-size: 1.1rem;
}
.contact-row strong { display: block; font-size: 0.875rem; }
.contact-row span, .contact-row a { font-size: 0.875rem; color: var(--text-muted); }
.contact-row a:hover { color: var(--primary); }
.form-control, .form-select {
    border-radius: 10px; border-color: var(--border); padding: 0.7rem 1rem;
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary); box-shadow: 0 0 0 3px rgba(232,93,4,0.12);
}
.map-frame {
    border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border);
    aspect-ratio: 21/9; margin-top: 2rem;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* Policy */
.policy-box {
    background: var(--bg-white); border-radius: var(--radius-lg);
    padding: 2.5rem; border: 1px solid var(--border); margin-bottom: 3rem;
}
.policy-box h2 { font-size: 1.2rem; color: var(--primary); margin: 1.75rem 0 0.65rem; }
.policy-box h2:first-child { margin-top: 0; }
.policy-box p, .policy-box li { font-size: 0.925rem; color: var(--text-muted); }
.policy-date { font-size: 0.85rem; padding-bottom: 1rem; margin-bottom: 1rem; border-bottom: 1px solid var(--border); color: var(--text-muted); }

/* Footer */
.site-footer { background: var(--text); color: rgba(255,255,255,0.8); margin-top: 4rem; }
.footer-top { padding: 4rem 0 2.5rem; }
.footer-logo {
    display: flex; align-items: center; gap: 0.6rem;
    font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: #fff; margin-bottom: 1rem;
}
.footer-about { font-size: 0.9rem; opacity: 0.75; max-width: 300px; margin-bottom: 1.25rem; }
.social-row { display: flex; gap: 0.5rem; }
.social-row a {
    width: 38px; height: 38px; border-radius: 10px;
    background: rgba(255,255,255,0.08); display: grid; place-items: center;
    color: #fff; transition: var(--ease);
}
.social-row a:hover { background: var(--primary); }
.site-footer h6 { color: #fff; font-family: var(--font-body); font-weight: 700; margin-bottom: 1rem; }
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 0.45rem; }
.site-footer ul a { font-size: 0.875rem; opacity: 0.7; }
.site-footer ul a:hover { opacity: 1; color: var(--secondary); }
.nl-desc { font-size: 0.875rem; opacity: 0.75; margin-bottom: 0.75rem; }
.footer-nl { display: flex; border-radius: 999px; overflow: hidden; }
.footer-nl input {
    flex: 1; border: none; padding: 0.65rem 1rem; font-size: 0.875rem;
}
.footer-nl button {
    border: none; background: var(--primary); color: #fff;
    padding: 0 1.1rem; cursor: pointer;
}
.footer-contact p { font-size: 0.825rem; opacity: 0.7; margin-bottom: 0.35rem; }
.footer-contact i { color: var(--secondary); margin-right: 0.4rem; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1); padding: 1.15rem 0;
    font-size: 0.8rem; opacity: 0.6;
}
.footer-note { margin: 0; }

/* Scroll top */
.scroll-top {
    position: fixed; bottom: 24px; right: 24px; z-index: 900;
    width: 46px; height: 46px; border-radius: 50%; border: none;
    background: var(--primary); color: #fff; cursor: pointer;
    opacity: 0; visibility: hidden; transform: translateY(10px); transition: var(--ease);
    box-shadow: var(--shadow);
}
.scroll-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--primary-dark); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* FAQ */
.faq-block { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 0.65rem; overflow: hidden; background: var(--bg-white); }
.faq-q {
    width: 100%; text-align: left; background: none; border: none;
    padding: 1rem 1.25rem; font-weight: 600; font-size: 0.925rem;
    display: flex; justify-content: space-between; align-items: center; cursor: pointer;
}
.faq-q i { color: var(--primary); transition: transform 0.3s; }
.faq-block.open .faq-q i { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a-inner { padding: 0 1.25rem 1rem; font-size: 0.875rem; color: var(--text-muted); }

@media (max-width: 767px) {
    .section { padding: 3.5rem 0; }
    .page-banner { padding: 6rem 0 2.5rem; }
}
