/* ============================================
   MatjarUK Design System
   Brand Brief: "Polished British Commerce Engine"
   Palette: Deep Teal + Copper Gold + Charcoal + Ivory
   Fonts: DM Serif Display (headings) + Inter (body)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Tokens ────────────────────────────── */
:root {
    /* Brand */
    --teal: #0A5E5C;
    --teal-dark: #074845;
    --teal-light: #0E7C79;
    --copper: #C57B3A;
    --copper-light: #D99A5B;
    --copper-dark: #A6632B;
    --charcoal: #1E1E2A;
    --charcoal-mid: #2B2B3A;
    --ivory: #FAF7F2;
    --ivory-warm: #F3EDE4;
    --slate: #5A5E6B;
    --mist: #E8E4DD;
    --success: #27AE60;
    --warning: #E2A93B;
    --danger: #D94F4F;

    /* Gradients */
    --grad-hero: linear-gradient(135deg, #0A5E5C 0%, #074845 55%, #1E1E2A 100%);
    --grad-copper: linear-gradient(135deg, #C57B3A 0%, #D99A5B 100%);
    --grad-glow: radial-gradient(circle at 30% 20%, rgba(197, 123, 58, .15) 0%, transparent 60%);

    /* Typography */
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Sizing */
    --max-w: 1200px;
    --max-w-sm: 800px;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(30, 30, 42, .08);
    --shadow-md: 0 4px 16px rgba(30, 30, 42, .10);
    --shadow-lg: 0 12px 40px rgba(30, 30, 42, .14);
    --shadow-glow: 0 0 40px rgba(10, 94, 92, .18);

    /* Transitions */
    --ease: cubic-bezier(.4, 0, .2, 1);
    --dur: .35s;
}

/* ── Reset ─────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--ivory);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--teal);
    text-decoration: none;
    transition: color var(--dur) var(--ease);
}

a:hover {
    color: var(--copper);
}

ul,
ol {
    list-style: none;
}

/* ── Utility ───────────────────────────── */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

.container-sm {
    max-width: var(--max-w-sm);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--ivory-warm);
}

.section-dark {
    background: var(--charcoal);
    color: #fff;
}

.section-teal {
    background: var(--teal);
    color: #fff;
}

.text-center {
    text-align: center;
}

.text-copper {
    color: var(--copper);
}

.text-teal {
    color: var(--teal);
}

/* ── Typography ────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.25;
}

h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 20px;
}

h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    margin-bottom: 12px;
}

h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 14px;
}

.section-dark .section-label,
.section-teal .section-label {
    color: var(--copper-light);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--slate);
    max-width: 640px;
    margin: 0 auto 48px;
    line-height: 1.8;
}

.section-dark .section-desc {
    color: rgba(255, 255, 255, .7);
}

.section-teal .section-desc {
    color: rgba(255, 255, 255, .75);
}

/* ── Buttons ───────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: .95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--dur) var(--ease);
}

.btn-primary {
    background: var(--grad-copper);
    color: #fff;
    box-shadow: 0 4px 16px rgba(197, 123, 58, .3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(197, 123, 58, .4);
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .4);
}

.btn-secondary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--teal);
    color: var(--teal);
}

.btn-outline:hover {
    background: var(--teal);
    color: #fff;
}

.btn-sm {
    padding: 10px 22px;
    font-size: .85rem;
}

/* ── Navbar ────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--dur) var(--ease);
}

.navbar.scrolled {
    background: rgba(250, 247, 242, .85);
    backdrop-filter: blur(18px) saturate(1.8);
    -webkit-backdrop-filter: blur(18px) saturate(1.8);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
}

.navbar.scrolled .nav-brand {
    color: var(--charcoal);
}

.nav-brand img {
    width: 36px;
    height: 36px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: .88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .85);
    transition: color var(--dur) var(--ease);
}

.nav-links a:hover {
    color: #fff;
}

.navbar.scrolled .nav-links a {
    color: var(--slate);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--teal);
}

.nav-cta {
    padding: 10px 24px;
    background: var(--grad-copper);
    border-radius: var(--radius-sm);
    color: #fff !important;
    font-weight: 600;
    font-size: .85rem;
    box-shadow: 0 2px 12px rgba(197, 123, 58, .25);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(197, 123, 58, .35);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--dur) var(--ease);
}

.navbar.scrolled .mobile-toggle span {
    background: var(--charcoal);
}

/* ── Hero ──────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--charcoal);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: .3;
    filter: brightness(.6);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--grad-hero);
    opacity: .92;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 123, 58, .12) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 140px 0 100px;
}

.hero-content .section-label {
    color: var(--copper-light);
}

.hero-content h1 {
    color: #fff;
    margin-bottom: 24px;
}

.hero-content p {
    color: rgba(255, 255, 255, .75);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ── Stats Bar ─────────────────────────── */
.stats-bar {
    background: var(--charcoal-mid);
    padding: 48px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item h3 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--copper-light);
    margin-bottom: 6px;
}

.stat-item p {
    font-size: .85rem;
    color: rgba(255, 255, 255, .6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ── Feature Cards ─────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.feature-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    border: 1px solid var(--mist);
    transition: all var(--dur) var(--ease);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad-copper);
    opacity: 0;
    transition: opacity var(--dur) var(--ease);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    background: rgba(10, 94, 92, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: var(--charcoal);
}

.feature-card p {
    color: var(--slate);
    font-size: .95rem;
}

/* ── Steps / How it Works ──────────────── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    counter-reset: steps;
}

.step-item {
    text-align: center;
    position: relative;
    counter-increment: steps;
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--grad-copper);
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 20px rgba(197, 123, 58, .3);
}

.step-item h3 {
    color: var(--charcoal);
}

.step-item p {
    color: var(--slate);
    font-size: .93rem;
}

/* ── About ─────────────────────────────── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(10, 94, 92, .9);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 12px 22px;
    border-radius: var(--radius-sm);
    font-size: .85rem;
    font-weight: 600;
}

.about-text h2 {
    margin-bottom: 16px;
}

.about-text p {
    color: var(--slate);
    margin-bottom: 16px;
    font-size: 1.02rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.team-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px 22px;
    text-align: center;
    border: 1px solid var(--mist);
    transition: all var(--dur) var(--ease);
}

.team-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.team-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--teal);
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.team-card h4 {
    color: var(--charcoal);
    font-family: var(--font-display);
}

.team-role {
    color: var(--copper);
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.team-card p {
    font-size: .88rem;
    color: var(--slate);
}

/* ── Communication Transparency ────────── */
.comm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.comm-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    backdrop-filter: blur(8px);
}

.comm-card h3 {
    color: var(--copper-light);
    margin-bottom: 14px;
}

.comm-card p,
.comm-card li {
    color: rgba(255, 255, 255, .78);
    font-size: .93rem;
}

.comm-card ul {
    padding-left: 0;
}

.comm-card li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.comm-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--copper-light);
    font-weight: 700;
}

/* ── Infrastructure ────────────────────── */
.infra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.infra-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    border: 1px solid var(--mist);
    transition: all var(--dur) var(--ease);
}

.infra-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.infra-card .icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.infra-card h4 {
    color: var(--charcoal);
    font-size: 1rem;
}

.infra-card p {
    color: var(--slate);
    font-size: .84rem;
    margin-top: 6px;
}

/* ── Email Practices ───────────────────── */
.practices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.practice-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.practice-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(10, 94, 92, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.practice-item h4 {
    color: var(--charcoal);
    font-size: .95rem;
    margin-bottom: 4px;
}

.practice-item p {
    color: var(--slate);
    font-size: .88rem;
}

/* ── CTA Section ───────────────────────── */
.cta-section {
    padding: 100px 0;
    background: var(--grad-hero);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(197, 123, 58, .1) 0%, transparent 70%);
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
}

.cta-section h2 {
    color: #fff;
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255, 255, 255, .75);
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Footer ────────────────────────────── */
.footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, .65);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand .nav-brand {
    color: #fff;
    margin-bottom: 14px;
}

.footer-brand p {
    font-size: .9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, .55);
}

.footer h4 {
    font-family: var(--font-body);
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--copper-light);
    margin-bottom: 18px;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul a {
    color: rgba(255, 255, 255, .6);
    font-size: .9rem;
    transition: color var(--dur) var(--ease);
}

.footer ul a:hover {
    color: #fff;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: .88rem;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .82rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, .5);
}

.footer-bottom a:hover {
    color: #fff;
}

/* ── Cookie Banner ─────────────────────── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 30, 42, .96);
    backdrop-filter: blur(12px);
    padding: 18px 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transform: translateY(0);
    transition: transform .5s var(--ease);
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-banner p {
    color: rgba(255, 255, 255, .8);
    font-size: .88rem;
}

.cookie-banner a {
    color: var(--copper-light);
    text-decoration: underline;
}

.cookie-accept {
    padding: 10px 24px;
    background: var(--copper);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    font-size: .85rem;
    transition: background var(--dur) var(--ease);
}

.cookie-accept:hover {
    background: var(--copper-dark);
}

/* ── Legal Pages ───────────────────────── */
.legal-hero {
    background: var(--grad-hero);
    padding: 140px 0 60px;
    text-align: center;
    position: relative;
}

.legal-hero h1 {
    color: #fff;
    margin-bottom: 12px;
    font-size: clamp(2rem, 4vw, 3rem);
}

.legal-hero .date {
    color: rgba(255, 255, 255, .55);
    font-size: .9rem;
}

.legal-content {
    padding: 64px 0 100px;
}

.legal-content h2 {
    color: var(--teal);
    margin-top: 48px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--mist);
}

.legal-content h3 {
    color: var(--charcoal);
    margin-top: 32px;
    margin-bottom: 10px;
}

.legal-content p {
    color: var(--slate);
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.85;
}

.legal-content ul,
.legal-content ol {
    padding-left: 24px;
    margin-bottom: 16px;
    list-style: disc;
}

.legal-content ol {
    list-style: decimal;
}

.legal-content li {
    color: var(--slate);
    margin-bottom: 8px;
    font-size: .97rem;
    line-height: 1.7;
}

.legal-content a {
    color: var(--teal);
    text-decoration: underline;
}

.legal-content strong {
    color: var(--charcoal);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .9rem;
    font-weight: 500;
    color: var(--teal);
    margin-bottom: 32px;
}

.back-link:hover {
    color: var(--copper);
}

/* ── Trust Cards ───────────────────────── */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.trust-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    border: 1px solid var(--mist);
    transition: all var(--dur) var(--ease);
}

.trust-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.trust-icon {
    font-size: 2rem;
    margin-bottom: 14px;
}

.trust-card h3 {
    color: var(--charcoal);
}

.trust-card p {
    color: var(--slate);
    font-size: .93rem;
}

/* ── Contact Page ──────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.contact-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--mist);
}

.contact-card h3 {
    color: var(--teal);
    margin-bottom: 12px;
}

.contact-card p {
    color: var(--slate);
    font-size: .93rem;
    margin-bottom: 8px;
}

.contact-card a {
    color: var(--teal);
    font-weight: 500;
}

/* ── Notification Preferences ──────────── */
.pref-section {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--mist);
    margin-bottom: 24px;
}

.pref-section h3 {
    color: var(--charcoal);
    margin-bottom: 14px;
}

.pref-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--mist);
}

.pref-item:last-child {
    border-bottom: none;
}

.pref-label h4 {
    font-size: .95rem;
    color: var(--charcoal);
    margin-bottom: 2px;
}

.pref-label p {
    font-size: .84rem;
    color: var(--slate);
}

.pref-toggle {
    width: 48px;
    height: 26px;
    border-radius: 13px;
    border: none;
    cursor: pointer;
    position: relative;
    transition: background var(--dur) var(--ease);
}

.pref-toggle.on {
    background: var(--teal);
}

.pref-toggle.off {
    background: var(--mist);
}

.pref-toggle::after {
    content: '';
    position: absolute;
    top: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: left var(--dur) var(--ease);
}

.pref-toggle.on::after {
    left: 25px;
}

.pref-toggle.off::after {
    left: 3px;
}

.pref-locked {
    font-size: .75rem;
    font-weight: 600;
    color: var(--slate);
    background: var(--mist);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
}

/* ── 404 ───────────────────────────────── */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grad-hero);
    text-align: center;
}

.error-code {
    font-family: var(--font-display);
    font-size: clamp(6rem, 15vw, 12rem);
    color: rgba(255, 255, 255, .08);
    position: absolute;
    pointer-events: none;
}

.error-content {
    position: relative;
    z-index: 2;
}

.error-content h1 {
    color: #fff;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 16px;
}

.error-content p {
    color: rgba(255, 255, 255, .65);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

/* ── Scroll Animations ─────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ────────────────────────── */
@media (max-width:992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width:768px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(30, 30, 42, .97);
        backdrop-filter: blur(16px);
        padding: 24px;
        gap: 16px;
    }

    .nav-links.open a {
        color: rgba(255, 255, 255, .85);
    }

    .hero-content {
        padding: 120px 0 80px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .comm-grid {
        grid-template-columns: 1fr;
    }

    .practices-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }

    .section {
        padding: 72px 0;
    }
}

@media (max-width:480px) {
    .hero-buttons {
        flex-direction: column;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}