/* ============================================================
   PeponiXL — Premium European Home & Garden
   ============================================================ */

/* ── Design Tokens ────────────────────────────────────────── */
:root {
    --pxl-gold: #D4A04A;
    --pxl-gold-dark: #B8862D;
    --pxl-gold-light: #F0E0C0;
    --pxl-gold-glow: rgba(212, 160, 74, 0.2);
    --pxl-cream: #F5F0E8;
    --pxl-cream-dark: #EDE6DA;
    --pxl-charcoal: #1A1A1A;
    --pxl-charcoal-soft: #2D2D2D;
    --pxl-warm-gray: #8C8478;
    --pxl-warm-gray-light: #B8B0A4;
    --pxl-white: #FFFFFF;
    --pxl-success: #4A8C5C;
    --pxl-error: #C4534A;

    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --shadow-subtle: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-card: 0 4px 24px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-elevated: 0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
    --shadow-hover: 0 20px 60px rgba(212, 160, 74, 0.12), 0 8px 24px rgba(0,0,0,0.06);
    --shadow-dramatic: 0 32px 80px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.06);

    --header-h: 80px;
    --header-h-scrolled: 64px;
    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-luxury: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body.pxl-body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--pxl-charcoal);
    background: var(--pxl-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

::selection { background: var(--pxl-gold-light); color: var(--pxl-charcoal); }

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }

a { color: var(--pxl-charcoal); text-decoration: none; transition: color 0.3s var(--ease-smooth); }
a:hover { color: var(--pxl-gold); }

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

.pxl-container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.pxl-container--narrow { max-width: 800px; }

.pxl-section-title {
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}
.pxl-section-subtitle {
    text-align: center;
    color: var(--pxl-warm-gray);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 3.5rem;
}

/* Gold accent line under section titles */
.pxl-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--pxl-gold), var(--pxl-gold-dark));
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* ── Buttons ──────────────────────────────────────────────── */
.pxl-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    border: 2px solid transparent;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s var(--ease-luxury);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.pxl-btn--primary {
    background: linear-gradient(135deg, var(--pxl-charcoal) 0%, #333 100%);
    color: var(--pxl-white);
    border-color: var(--pxl-charcoal);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.pxl-btn--primary:hover {
    background: linear-gradient(135deg, var(--pxl-gold) 0%, var(--pxl-gold-dark) 100%);
    border-color: var(--pxl-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(212,160,74,0.3);
    color: var(--pxl-white);
}
.pxl-btn--primary:active { transform: translateY(0) scale(0.98); }

.pxl-btn--gold {
    background: linear-gradient(135deg, var(--pxl-gold) 0%, var(--pxl-gold-dark) 100%);
    color: var(--pxl-white);
    border-color: var(--pxl-gold);
    box-shadow: 0 4px 20px rgba(212,160,74,0.35);
}
.pxl-btn--gold::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    animation: pxl-shimmer 4s ease-in-out infinite;
    z-index: -1;
}
.pxl-btn--gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212,160,74,0.45);
    color: var(--pxl-white);
}
.pxl-btn--gold:active { transform: translateY(0) scale(0.98); }

.pxl-btn--secondary {
    background: transparent;
    color: var(--pxl-charcoal);
    border-color: var(--pxl-charcoal);
}
.pxl-btn--secondary:hover {
    border-color: var(--pxl-gold);
    color: var(--pxl-gold);
    background: var(--pxl-gold-glow);
}

.pxl-btn--white {
    background: var(--pxl-white);
    color: var(--pxl-charcoal);
    border-color: var(--pxl-white);
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.pxl-btn--white:hover {
    background: var(--pxl-gold);
    border-color: var(--pxl-gold);
    color: var(--pxl-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(212,160,74,0.3);
}

.pxl-btn--large { padding: 1.25rem 3.5rem; font-size: 1rem; }

@keyframes pxl-shimmer {
    0% { transform: translateX(-100%); }
    40%, 100% { transform: translateX(100%); }
}

/* ── Header ───────────────────────────────────────────────── */
.pxl-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(26, 26, 26, 0.5);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    transition: all 0.4s var(--ease-luxury);
    border-bottom: 1px solid rgba(212, 160, 74, 0);
}
.pxl-header.is-scrolled {
    height: var(--header-h-scrolled);
    background: rgba(245, 240, 232, 0.95);
    box-shadow: 0 4px 30px rgba(0,0,0,0.04);
    border-bottom-color: rgba(212, 160, 74, 0.15);
}

.pxl-header__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pxl-header__logo img {
    height: 48px;
    width: auto;
    transition: all 0.4s var(--ease-luxury);
}
.pxl-header.is-scrolled .pxl-header__logo img { transform: scale(0.85); }

.pxl-header__nav { display: none; }
@media (min-width: 768px) { .pxl-header__nav { display: block; } }

.pxl-header__menu {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}
.pxl-header__menu a {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    position: relative;
    padding: 0.25rem 0;
    color: rgba(255,255,255,0.85);
    transition: color 0.3s;
}
.pxl-header.is-scrolled .pxl-header__menu a { color: var(--pxl-charcoal-soft); }
.pxl-header__menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--pxl-gold), var(--pxl-gold-dark));
    transition: width 0.3s var(--ease-luxury), left 0.3s var(--ease-luxury);
    border-radius: 1px;
}
.pxl-header__menu a:hover::after,
.pxl-header__menu a.is-active::after {
    width: 100%;
    left: 0;
}
.pxl-header__menu a:hover { color: var(--pxl-white); }
.pxl-header.is-scrolled .pxl-header__menu a:hover { color: var(--pxl-charcoal); }

.pxl-header__actions { display: flex; align-items: center; gap: 1rem; }

.pxl-country-btn {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.875rem;
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    background: rgba(255,255,255,0.1);
    cursor: pointer;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--pxl-white);
    transition: all 0.3s var(--ease-smooth);
    backdrop-filter: blur(8px);
}
.pxl-header.is-scrolled .pxl-country-btn {
    border-color: rgba(140,132,120,0.3);
    background: rgba(255,255,255,0.6);
    color: var(--pxl-charcoal);
}
.pxl-country-btn:hover {
    border-color: var(--pxl-gold);
    background: rgba(255,255,255,0.2);
    box-shadow: 0 4px 16px var(--pxl-gold-glow);
}
.pxl-header.is-scrolled .pxl-country-btn:hover {
    background: var(--pxl-white);
}
.pxl-country-btn__flag { font-size: 1.125rem; }
.pxl-country-btn__code { font-weight: 600; }

.pxl-header__mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.pxl-header__mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--pxl-white);
    transition: all 0.3s;
    border-radius: 1px;
}
.pxl-header.is-scrolled .pxl-header__mobile-toggle span { background: var(--pxl-charcoal); }
@media (min-width: 768px) { .pxl-header__mobile-toggle { display: none; } }

/* ── Hero — Scroll Transformation (cold → warm) ─────────── */
.pxl-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: default;
}

/* Scene layers — stacked, full-bleed */
.pxl-hero__scene {
    position: absolute;
    inset: 0;
}

/* BEFORE: cold, bare, untouched room — visible on load */
.pxl-hero__scene--before {
    background:
        radial-gradient(ellipse 40% 50% at 30% 35%, rgba(100,115,140,0.18) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 70% 65%, rgba(40,50,70,0.25) 0%, transparent 50%),
        linear-gradient(170deg, rgba(18,22,32,0.72) 0%, rgba(26,30,42,0.62) 45%, rgba(20,24,36,0.88) 100%),
        url('https://images.unsplash.com/photo-1513694203232-719a280e022f?auto=format&fit=crop&w=1920&q=70') center center / cover no-repeat;
    background-color: #1A1E2C;
    z-index: 1;
}

/* AFTER: warm, lived-in paradise — fades in on scroll */
.pxl-hero__scene--after {
    background:
        radial-gradient(ellipse 60% 80% at 80% 20%, rgba(212,160,74,0.18) 0%, transparent 55%),
        radial-gradient(ellipse 50% 60% at 20% 70%, rgba(74,140,92,0.08) 0%, transparent 60%),
        linear-gradient(170deg, rgba(30,20,12,0.38) 0%, rgba(42,28,16,0.28) 45%, rgba(24,18,10,0.60) 100%),
        url('https://images.unsplash.com/photo-1615529182904-14819c35db37?auto=format&fit=crop&w=1920&q=70') center center / cover no-repeat;
    background-color: #181610;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.15s linear;
}

.pxl-hero__content {
    position: relative;
    z-index: 4;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

.pxl-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212,160,74,0.3);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--pxl-gold);
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: pxl-fade-up 1s 0.2s var(--ease-luxury) forwards;
}
.pxl-hero__eyebrow::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--pxl-gold);
    border-radius: 50%;
    animation: pxl-pulse-dot 2s ease-in-out infinite;
}
@keyframes pxl-pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.pxl-hero__headline {
    color: var(--pxl-white);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: pxl-fade-up 1s 0.4s var(--ease-luxury) forwards;
    line-height: 1.05;
    font-size: clamp(3rem, 7vw, 5.5rem);
}
.pxl-hero__headline em {
    font-style: normal;
    background: linear-gradient(135deg, var(--pxl-gold) 0%, #E8C56A 50%, var(--pxl-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pxl-hero__sub {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: rgba(255,255,255,0.6);
    margin-bottom: 3rem;
    opacity: 0;
    animation: pxl-fade-up 1s 0.6s var(--ease-luxury) forwards;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.pxl-hero__cta {
    opacity: 0;
    animation: pxl-fade-up 1s 0.8s var(--ease-luxury) forwards;
}

.pxl-hero__scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: pxl-fade-up 1s 1.2s var(--ease-luxury) forwards;
    color: rgba(255,255,255,0.4);
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.pxl-hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--pxl-gold), transparent);
    animation: pxl-scroll-line 2s ease-in-out infinite;
}
@keyframes pxl-scroll-line {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes pxl-fade-up {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── Grain Texture (shared) ──────────────────────────────── */
.pxl-hero__grain,
.pxl-stats__grain,
.pxl-why__grain,
.pxl-email-section__grain {
    position: absolute;
    inset: 0;
    opacity: 0.035;
    pointer-events: none;
    z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
}

/* ── Hero Particles ─────────────────────────────────────── */
.pxl-hero__particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
.pxl-hero__particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--pxl-gold);
    border-radius: 50%;
    opacity: 0;
    animation: pxl-particle-float 8s ease-in-out infinite;
}
.pxl-hero__particles span:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 7s; }
.pxl-hero__particles span:nth-child(2) { left: 25%; top: 60%; animation-delay: 1s; animation-duration: 9s; width: 3px; height: 3px; }
.pxl-hero__particles span:nth-child(3) { left: 45%; top: 80%; animation-delay: 2s; animation-duration: 6s; }
.pxl-hero__particles span:nth-child(4) { left: 65%; top: 30%; animation-delay: 3s; animation-duration: 10s; width: 5px; height: 5px; }
.pxl-hero__particles span:nth-child(5) { left: 80%; top: 70%; animation-delay: 1.5s; animation-duration: 8s; width: 3px; height: 3px; }
.pxl-hero__particles span:nth-child(6) { left: 90%; top: 15%; animation-delay: 4s; animation-duration: 7s; }
.pxl-hero__particles span:nth-child(7) { left: 35%; top: 40%; animation-delay: 2.5s; animation-duration: 11s; width: 6px; height: 6px; }
.pxl-hero__particles span:nth-child(8) { left: 55%; top: 55%; animation-delay: 0.5s; animation-duration: 9s; width: 3px; height: 3px; }

@keyframes pxl-particle-float {
    0%, 100% { opacity: 0; transform: translateY(0) scale(0.5); }
    20% { opacity: 0.6; }
    50% { opacity: 0.4; transform: translateY(-60px) scale(1); }
    80% { opacity: 0.2; }
}

/* ── Hero Actions ───────────────────────────────────────── */
.pxl-hero__actions {
    opacity: 0;
    animation: pxl-fade-up 1s 0.8s var(--ease-luxury) forwards;
}

/* ── Section Headers (editorial) ────────────────────────── */
.pxl-section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.pxl-section-label {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--pxl-gold);
    margin-bottom: 0.75rem;
    position: relative;
    padding: 0 1.5rem;
}
.pxl-section-label::before,
.pxl-section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 24px;
    height: 1px;
    background: var(--pxl-gold);
    opacity: 0.4;
}
.pxl-section-label::before { right: 100%; }
.pxl-section-label::after { left: 100%; }

.pxl-section-label--gold {
    color: var(--pxl-gold);
}
.pxl-section-header--light .pxl-section-label {
    color: var(--pxl-gold);
}
.pxl-section-header--light .pxl-section-label::before,
.pxl-section-header--light .pxl-section-label::after {
    background: var(--pxl-gold);
    opacity: 0.3;
}
.pxl-section-header .pxl-section-title { margin-bottom: 0; }
.pxl-section-header .pxl-section-title::after { display: block; margin-top: 1.25rem; }
.pxl-section-header--light .pxl-section-title { color: var(--pxl-white); }
.pxl-section-header--light .pxl-section-title::after {
    background: linear-gradient(90deg, var(--pxl-gold), #E8C56A);
}

/* ── Trust Bar ────────────────────────────────────────────── */
.pxl-trust {
    background: var(--pxl-white);
    padding: 1.75rem 0;
    position: relative;
    z-index: 10;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.pxl-trust__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.pxl-trust__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--pxl-charcoal-soft);
}
.pxl-trust__icon {
    color: var(--pxl-gold);
    flex-shrink: 0;
}
.pxl-trust__sep {
    width: 1px;
    height: 24px;
    background: linear-gradient(to bottom, transparent, rgba(140,132,120,0.3), transparent);
}

/* ── Categories — Asymmetric Bento Grid ──────────────────── */
.pxl-categories {
    padding: 6rem 0;
}

.pxl-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1.25rem;
}

.pxl-bento__item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: var(--card-bg, linear-gradient(135deg, #2D4A3E 0%, #1A3A2E 100%));
    color: var(--pxl-white);
    overflow: hidden;
    transition: all 0.5s var(--ease-luxury);
    text-decoration: none;
    min-height: 200px;
    border: 1px solid rgba(255,255,255,0.06);
}
.pxl-bento__item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.4) 100%);
    transition: opacity 0.5s;
    z-index: 1;
}
.pxl-bento__item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    border-color: rgba(212,160,74,0.3);
}
.pxl-bento__item:hover::before { opacity: 0.7; }

/* Hero card — spans 2 columns on first row */
.pxl-bento__item--hero {
    grid-column: span 2;
    min-height: 280px;
}

/* Tall card — spans 2 rows on right side */
.pxl-bento__item--tall {
    grid-row: span 2;
    min-height: 280px;
}

.pxl-bento__icon {
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
    opacity: 0.7;
    transition: all 0.4s var(--ease-luxury);
}
.pxl-bento__icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--pxl-gold-light);
}
.pxl-bento__item:hover .pxl-bento__icon {
    opacity: 1;
    transform: scale(1.1);
}

.pxl-bento__title {
    position: relative;
    z-index: 2;
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--pxl-white);
    margin: 0;
}

.pxl-bento__arrow {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 2;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: var(--pxl-white);
    opacity: 0;
    transform: translate(-8px, 8px);
    transition: all 0.4s var(--ease-luxury);
}
.pxl-bento__arrow svg { width: 16px; height: 16px; }
.pxl-bento__item:hover .pxl-bento__arrow {
    opacity: 1;
    transform: translate(0, 0);
    background: rgba(212,160,74,0.3);
    border-color: rgba(212,160,74,0.5);
}

/* ── Stats Band — Dark ───────────────────────────────────── */
.pxl-stats {
    background: linear-gradient(135deg, #0F0F0F 0%, var(--pxl-charcoal) 50%, #222 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}
.pxl-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--pxl-gold), transparent);
}
.pxl-stats::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--pxl-gold), transparent);
}
.pxl-stats__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.pxl-stats__item {
    flex: 1;
    text-align: center;
    padding: 1rem 2rem;
}
.pxl-stats__number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--pxl-gold) 0%, #E8C56A 50%, var(--pxl-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}
.pxl-stats__label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}
.pxl-stats__divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(212,160,74,0.3), transparent);
}

/* ── Why PeponiXL — Dark Section ─────────────────────────── */
.pxl-why {
    padding: 7rem 0;
    background: linear-gradient(180deg, #1A1A1A 0%, #222 100%);
    position: relative;
}
.pxl-why .pxl-section-title {
    color: var(--pxl-white);
    margin-bottom: 3.5rem;
}
.pxl-why .pxl-section-title::after {
    background: linear-gradient(90deg, var(--pxl-gold), #E8C56A);
}
.pxl-why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.pxl-why__card {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255,255,255,0.04);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.5s var(--ease-luxury);
    position: relative;
}
.pxl-why__card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.07);
    border-color: rgba(212,160,74,0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.pxl-why__card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--pxl-gold), var(--pxl-gold-dark));
    border-radius: 2px 2px 0 0;
    transition: width 0.5s var(--ease-luxury);
}
.pxl-why__card:hover::after { width: 60px; }

.pxl-why__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(212,160,74,0.2), rgba(212,160,74,0.05));
    border: 1px solid rgba(212,160,74,0.2);
    border-radius: 50%;
    margin-bottom: 1.75rem;
    color: var(--pxl-gold);
    transition: transform 0.5s var(--ease-luxury);
}
.pxl-why__card:hover .pxl-why__icon { transform: scale(1.08); }

.pxl-why__number {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, rgba(212,160,74,0.15), rgba(212,160,74,0.04));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    pointer-events: none;
}

.pxl-why__card h3 { margin-bottom: 0.75rem; color: var(--pxl-white); }
.pxl-why__card p { color: rgba(255,255,255,0.5); font-size: 0.9375rem; line-height: 1.7; }

/* ── EU Map — Interactive Connection Map ─────────────────── */
.pxl-map {
    padding: 7rem 0;
    background: linear-gradient(180deg, #111 0%, #161616 50%, #111 100%);
    position: relative;
    overflow: hidden;
}
.pxl-map__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 60% at 40% 50%, rgba(212,160,74,0.04) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 70% 40%, rgba(212,160,74,0.03) 0%, transparent 60%);
    pointer-events: none;
}
.pxl-map .pxl-section-title { margin-bottom: 1rem; }
.pxl-map__subtitle {
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 1rem;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
}
.pxl-map__wrapper { position: relative; }

/* Mobile grid — all 27 countries visible at once */
.pxl-eu-map__mobile {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
    padding: 1.5rem 0 0.5rem;
}
@media (min-width: 480px) {
    .pxl-eu-map__mobile { grid-template-columns: repeat(3, 1fr); }
}
.pxl-eu-map__desktop { display: none; }
@media (min-width: 768px) {
    .pxl-eu-map__mobile { display: none; }
    .pxl-eu-map__desktop { display: block; }
}

.pxl-eu-map__country-card {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 0.875rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--pxl-white);
    transition: all 0.3s var(--ease-smooth);
    min-height: 52px;
    overflow: hidden;
}
.pxl-eu-map__country-card:hover,
.pxl-eu-map__country-card:active {
    border-color: var(--pxl-gold);
    background: rgba(212,160,74,0.1);
    color: var(--pxl-gold);
}
.pxl-eu-map__country-card.is-coming-soon { opacity: 0.45; pointer-events: none; }
.pxl-eu-map__country-flag { font-size: 1.25rem; flex-shrink: 0; }
.pxl-eu-map__country-name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.pxl-eu-map__country-badge { display: none; }

/* Map canvas */
.pxl-eu-map__canvas {
    position: relative;
    width: 100%;
    max-width: 700px;
    aspect-ratio: 1.2 / 1;
    margin: 0 auto;
}

/* Subtle grid */
.pxl-eu-map__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212,160,74,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212,160,74,0.04) 1px, transparent 1px);
    background-size: 10% 10%;
    border-radius: var(--radius-lg);
    mask-image: radial-gradient(ellipse 70% 65% at 45% 45%, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 65% at 45% 45%, black 40%, transparent 80%);
}

/* Connection lines */
.pxl-eu-map__lines {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
.pxl-eu-map__lines line {
    stroke: rgba(212,160,74,0.15);
    stroke-width: 0.15;
    stroke-dasharray: 2 2;
    animation: pxl-line-dash 8s linear infinite;
}
@keyframes pxl-line-dash {
    to { stroke-dashoffset: -20; }
}

/* Country markers */
.pxl-map-marker {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 3;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px;
    transition: z-index 0s;
}
.pxl-map-marker:hover { z-index: 10; }

.pxl-map-marker__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(212,160,74,0.35);
    border: 2px solid rgba(212,160,74,0.25);
    transition: all 0.3s var(--ease-smooth);
    position: relative;
    z-index: 2;
}
.pxl-map-marker.is-active .pxl-map-marker__dot {
    background: var(--pxl-gold);
    border-color: rgba(212,160,74,0.5);
    box-shadow: 0 0 12px rgba(212,160,74,0.4);
}
.pxl-map-marker.is-hq .pxl-map-marker__dot {
    width: 14px;
    height: 14px;
    background: var(--pxl-white);
    border: 3px solid var(--pxl-gold);
    box-shadow: 0 0 20px rgba(212,160,74,0.6), 0 0 40px rgba(212,160,74,0.2);
}
.pxl-map-marker:hover .pxl-map-marker__dot {
    transform: scale(1.4);
    box-shadow: 0 0 20px rgba(212,160,74,0.5);
}

/* Pulse ring on active markers */
.pxl-map-marker__pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid transparent;
    z-index: 1;
}
.pxl-map-marker.is-active .pxl-map-marker__pulse {
    border-color: var(--pxl-gold);
    animation: pxl-marker-pulse 3s ease-out infinite;
}
.pxl-map-marker.is-hq .pxl-map-marker__pulse {
    animation: pxl-marker-pulse 2s ease-out infinite;
}
@keyframes pxl-marker-pulse {
    0% { width: 10px; height: 10px; opacity: 0.6; }
    100% { width: 40px; height: 40px; opacity: 0; }
}

.pxl-map-marker__code {
    font-family: var(--font-body);
    font-size: 0.5625rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    transition: color 0.3s;
}
.pxl-map-marker.is-active .pxl-map-marker__code { color: rgba(255,255,255,0.55); }
.pxl-map-marker.is-hq .pxl-map-marker__code {
    color: var(--pxl-gold);
    font-size: 0.625rem;
}
.pxl-map-marker:hover .pxl-map-marker__code { color: var(--pxl-white); }

/* Tooltip */
.pxl-eu-map__tooltip {
    position: absolute;
    z-index: 20;
    background: rgba(26,26,26,0.95);
    backdrop-filter: blur(12px);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--pxl-white);
    pointer-events: none;
    transform: translate(-50%, -140%);
    border: 1px solid rgba(212,160,74,0.2);
    display: flex;
    align-items: center;
    gap: 0.625rem;
    white-space: nowrap;
}
.pxl-eu-map__tooltip::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: rgba(26,26,26,0.95);
    border-right: 1px solid rgba(212,160,74,0.2);
    border-bottom: 1px solid rgba(212,160,74,0.2);
}
.pxl-eu-map__tooltip-flag { font-size: 1.375rem; }
.pxl-eu-map__tooltip-name { font-weight: 600; }
.pxl-eu-map__tooltip-status {
    font-size: 0.6875rem;
    padding: 0.125rem 0.5rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.pxl-eu-map__tooltip-status.is-active {
    background: rgba(74,140,92,0.2);
    color: #7BC88C;
}
.pxl-eu-map__tooltip-status.is-coming {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.4);
}

/* Legend */
.pxl-eu-map__legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}
.pxl-eu-map__legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.04em;
}
.pxl-eu-map__legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.pxl-eu-map__legend-item--active .pxl-eu-map__legend-dot {
    background: var(--pxl-gold);
    box-shadow: 0 0 6px rgba(212,160,74,0.4);
}
.pxl-eu-map__legend-item--coming .pxl-eu-map__legend-dot {
    background: rgba(212,160,74,0.35);
    border: 1px solid rgba(212,160,74,0.25);
}
.pxl-eu-map__legend-item--hq .pxl-eu-map__legend-dot {
    background: var(--pxl-white);
    border: 2px solid var(--pxl-gold);
    width: 10px;
    height: 10px;
}

/* ── Blog Cards ───────────────────────────────────────────── */
.pxl-blog {
    padding: 7rem 0;
    background: var(--pxl-white);
    position: relative;
}
.pxl-blog::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,160,74,0.3), transparent);
}
.pxl-blog .pxl-section-title { margin-bottom: 3rem; }
.pxl-blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.pxl-blog-card {
    background: var(--pxl-cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.5s var(--ease-luxury);
    border: 1px solid rgba(0,0,0,0.03);
}
.pxl-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}
.pxl-blog-card__image { overflow: hidden; aspect-ratio: 16/10; }
.pxl-blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-luxury);
}
.pxl-blog-card:hover .pxl-blog-card__image img { transform: scale(1.08); }
.pxl-blog-card__content { padding: 1.75rem; }
.pxl-blog-card__content h3 { margin-bottom: 0.5rem; font-size: 1.25rem; }
.pxl-blog-card__content h3 a { color: var(--pxl-charcoal); }
.pxl-blog-card__content h3 a:hover { color: var(--pxl-gold); }
.pxl-blog-card__content p { color: var(--pxl-warm-gray); font-size: 0.9375rem; margin-bottom: 1.25rem; }
.pxl-blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--pxl-gold-dark);
    letter-spacing: 0.02em;
}
.pxl-blog-card__link svg { transition: transform 0.3s var(--ease-luxury); }
.pxl-blog-card:hover .pxl-blog-card__link svg { transform: translateX(6px); }

/* ── Email Capture — Dark Section ────────────────────────── */
.pxl-email-section {
    padding: 7rem 0;
    background: linear-gradient(135deg, var(--pxl-charcoal) 0%, #222 100%);
    position: relative;
    overflow: hidden;
}
.pxl-email-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212,160,74,0.1), transparent 70%);
    pointer-events: none;
}
.pxl-email-section__inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}
.pxl-email-section__inner h2 {
    color: var(--pxl-white);
    margin-bottom: 0.75rem;
}
.pxl-email-section__inner h2::after {
    background: linear-gradient(90deg, var(--pxl-gold), #E8C56A);
}
.pxl-email-section__inner > p {
    color: rgba(255,255,255,0.5);
    margin-bottom: 2.5rem;
}
.pxl-email-section__form {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}
.pxl-email-section__form input[type="email"] {
    flex: 1;
    min-width: 260px;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    transition: all 0.3s var(--ease-smooth);
    background: rgba(255,255,255,0.05);
    color: var(--pxl-white);
}
.pxl-email-section__form input::placeholder { color: rgba(255,255,255,0.35); }
.pxl-email-section__form input:focus {
    outline: none;
    border-color: var(--pxl-gold);
    box-shadow: 0 0 0 4px rgba(212,160,74,0.15);
    background: rgba(255,255,255,0.08);
}
.pxl-email-section__privacy {
    margin-top: 1.25rem;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.3);
}

/* ── Footer ───────────────────────────────────────────────── */
.pxl-footer {
    background: #111;
    color: var(--pxl-cream);
    padding: 5rem 0 2rem;
    position: relative;
}
.pxl-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--pxl-gold), transparent);
}
.pxl-footer__inner { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.pxl-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.pxl-footer__logo { margin-bottom: 1.25rem; height: 40px; width: auto; filter: brightness(1.1); }
.pxl-footer__about p { font-size: 0.875rem; color: rgba(255,255,255,0.4); line-height: 1.8; }

.pxl-footer__col h4 {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    margin-bottom: 1.25rem;
    color: var(--pxl-white);
    letter-spacing: -0.01em;
}
.pxl-footer__col ul { list-style: none; }
.pxl-footer__col li { margin-bottom: 0.625rem; }
.pxl-footer__col a {
    color: rgba(255,255,255,0.4);
    font-size: 0.875rem;
    transition: all 0.3s var(--ease-smooth);
    display: inline-block;
}
.pxl-footer__col a:hover {
    color: var(--pxl-gold);
    transform: translateX(3px);
}

.pxl-footer__newsletter input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    background: rgba(255,255,255,0.05);
    color: var(--pxl-cream);
    font-family: var(--font-body);
    margin-bottom: 0.75rem;
    transition: all 0.3s;
}
.pxl-footer__newsletter input:focus {
    outline: none;
    border-color: var(--pxl-gold);
    background: rgba(255,255,255,0.08);
}
.pxl-footer__newsletter input::placeholder { color: rgba(255,255,255,0.3); }
.pxl-footer__newsletter button {
    width: 100%;
    padding: 0.875rem;
    background: linear-gradient(135deg, var(--pxl-gold), var(--pxl-gold-dark));
    color: var(--pxl-white);
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
}
.pxl-footer__newsletter button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212,160,74,0.3);
}

.pxl-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    flex-wrap: wrap;
    gap: 1rem;
}
.pxl-footer__bottom p { font-size: 0.8125rem; color: rgba(255,255,255,0.3); }

.pxl-payment-methods { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.pxl-payment-methods__item {
    font-size: 0.6875rem;
    padding: 0.25rem 0.625rem;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 4px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.02em;
}

/* ── Country Selector Modal ───────────────────────────────── */
.pxl-country-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: var(--header-h);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
}
.pxl-country-modal.is-open { opacity: 1; visibility: visible; }

.pxl-country-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(26,26,26,0.5);
    backdrop-filter: blur(8px);
}

.pxl-country-modal__content {
    position: relative;
    width: 90%;
    max-width: 720px;
    max-height: 70vh;
    overflow-y: auto;
    background: var(--pxl-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-dramatic);
    padding: 2.5rem;
    transform: translateY(-30px) scale(0.95);
    transition: all 0.4s var(--ease-spring);
    border: 1px solid rgba(212,160,74,0.1);
}
.pxl-country-modal.is-open .pxl-country-modal__content {
    transform: translateY(0) scale(1);
}

.pxl-country-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}
.pxl-country-modal__header h3 { font-family: var(--font-display); }
.pxl-country-modal__close {
    background: var(--pxl-cream);
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--pxl-warm-gray);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.pxl-country-modal__close:hover { background: var(--pxl-gold-light); color: var(--pxl-charcoal); }

.pxl-country-modal__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.5rem;
}

.pxl-country-modal__item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1rem;
    border: 1.5px solid transparent;
    border-radius: 50px;
    background: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s var(--ease-smooth);
    text-align: left;
    width: 100%;
}
.pxl-country-modal__item:hover { background: var(--pxl-cream); border-color: rgba(212,160,74,0.2); }
.pxl-country-modal__item.is-active {
    border-color: var(--pxl-gold);
    background: var(--pxl-gold-light);
    font-weight: 600;
}
.pxl-country-modal__item.is-coming-soon { opacity: 0.35; cursor: default; }
.pxl-country-modal__flag { font-size: 1.25rem; }
.pxl-country-modal__badge {
    margin-left: auto;
    font-size: 0.6875rem;
    color: var(--pxl-warm-gray-light);
    font-style: italic;
}

/* ── Email Popup ──────────────────────────────────────────── */
.pxl-email-popup {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
}
.pxl-email-popup.is-open { opacity: 1; visibility: visible; }

.pxl-email-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(26,26,26,0.5);
    backdrop-filter: blur(8px);
}

.pxl-email-popup__content {
    position: relative;
    width: 90%;
    max-width: 480px;
    background: var(--pxl-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-dramatic);
    padding: 3.5rem 3rem;
    text-align: center;
    transform: scale(0.85) translateY(20px);
    transition: all 0.5s var(--ease-spring);
    border: 1px solid rgba(212,160,74,0.1);
}
.pxl-email-popup.is-open .pxl-email-popup__content { transform: scale(1) translateY(0); }

.pxl-email-popup__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--pxl-cream);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--pxl-warm-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.pxl-email-popup__close:hover { background: var(--pxl-gold-light); }

.pxl-email-popup__content h2 {
    background: linear-gradient(135deg, var(--pxl-gold), var(--pxl-gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.pxl-email-popup__form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}
.pxl-email-popup__form input {
    padding: 1rem 1.25rem;
    border: 2px solid rgba(140,132,120,0.2);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--pxl-cream);
}
.pxl-email-popup__form input:focus {
    outline: none;
    border-color: var(--pxl-gold);
    box-shadow: 0 0 0 4px var(--pxl-gold-glow);
    background: var(--pxl-white);
}
.pxl-email-popup__privacy { margin-top: 0.75rem; font-size: 0.8125rem; color: var(--pxl-warm-gray-light); }

/* ── Shared Page Styles ──────────────────────────────────── */
.pxl-page-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    color: var(--pxl-charcoal);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}
.pxl-page-subtitle {
    font-size: 1.125rem;
    color: var(--pxl-warm-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.pxl-content h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin: 2.5rem 0 0.75rem;
    color: var(--pxl-charcoal);
}
.pxl-content h3 { font-size: 1.125rem; font-weight: 600; margin: 2rem 0 0.5rem; }
.pxl-content p { margin-bottom: 1rem; line-height: 1.8; }
.pxl-content ul { margin: 0 0 1rem 1.5rem; }
.pxl-content li { margin-bottom: 0.5rem; line-height: 1.7; }
.pxl-content a { color: var(--pxl-gold-dark); text-decoration: underline; text-underline-offset: 3px; }
.pxl-content a:hover { color: var(--pxl-charcoal); }

/* ── About Page ──────────────────────────────────────────── */
.pxl-about-hero { text-align: center; padding: 5rem 0 3rem; }
.pxl-about-story { padding: 4rem 0; }
.pxl-about-story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.pxl-about-story__text h2 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 1.25rem; }
.pxl-about-story__text p { line-height: 1.8; margin-bottom: 1rem; color: var(--pxl-charcoal-soft); }
.pxl-about-story__image { text-align: center; }
.pxl-about-story__image img { max-width: 300px; border-radius: var(--radius-xl); }

.pxl-about-values {
    padding: 5rem 0;
    background: var(--pxl-white);
    position: relative;
}
.pxl-about-values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,160,74,0.3), transparent);
}
.pxl-about-values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}
.pxl-about-values__card {
    background: var(--pxl-cream);
    border-radius: var(--radius-lg);
    padding: 2.5rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.5s var(--ease-luxury);
}
.pxl-about-values__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    background: var(--pxl-white);
}
.pxl-about-values__icon { color: var(--pxl-gold); margin-bottom: 1.25rem; }
.pxl-about-values__card h3 { font-family: var(--font-display); font-size: 1.0625rem; margin-bottom: 0.5rem; }
.pxl-about-values__card p { font-size: 0.875rem; color: var(--pxl-warm-gray); line-height: 1.6; }

.pxl-about-stats { padding: 4rem 0; }
.pxl-about-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.pxl-about-stats__number {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--pxl-gold), var(--pxl-gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.pxl-about-stats__label { display: block; font-size: 0.875rem; color: var(--pxl-warm-gray); margin-top: 0.25rem; }

.pxl-about-cta { padding: 4rem 0 5rem; }
.pxl-about-cta__inner {
    text-align: center;
    background: linear-gradient(135deg, var(--pxl-charcoal) 0%, #222 100%);
    color: var(--pxl-white);
    border-radius: var(--radius-xl);
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
}
.pxl-about-cta__inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212,160,74,0.15), transparent 70%);
    pointer-events: none;
}
.pxl-about-cta__inner h2 { color: var(--pxl-white); font-family: var(--font-display); font-size: 2rem; margin-bottom: 0.75rem; position: relative; }
.pxl-about-cta__inner h2::after { display: none; }
.pxl-about-cta__inner p { color: rgba(255,255,255,0.5); margin-bottom: 2rem; position: relative; }

/* ── Product Archive ─────────────────────────────────────── */
.pxl-archive { padding: 3rem 0 5rem; }
.pxl-archive__header { text-align: center; margin-bottom: 2.5rem; }
.pxl-archive__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}
.pxl-filter-tag {
    padding: 0.5rem 1.25rem;
    border: 1.5px solid rgba(140,132,120,0.25);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--pxl-charcoal-soft);
    text-decoration: none;
    transition: all 0.3s var(--ease-smooth);
    letter-spacing: 0.02em;
}
.pxl-filter-tag:hover, .pxl-filter-tag--active {
    background: linear-gradient(135deg, var(--pxl-gold), var(--pxl-gold-dark));
    border-color: var(--pxl-gold);
    color: var(--pxl-white);
}

.pxl-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.pxl-pagination { text-align: center; margin-top: 3rem; }
.pxl-pagination .nav-links { display: flex; justify-content: center; gap: 0.5rem; }
.pxl-pagination a, .pxl-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(140,132,120,0.2);
    font-size: 0.875rem;
    text-decoration: none;
    color: var(--pxl-charcoal);
    transition: all 0.3s var(--ease-smooth);
}
.pxl-pagination a:hover { background: var(--pxl-gold-light); border-color: var(--pxl-gold); }
.pxl-pagination .current {
    background: linear-gradient(135deg, var(--pxl-gold), var(--pxl-gold-dark));
    color: var(--pxl-white);
    border-color: var(--pxl-gold);
}

.pxl-archive__empty { text-align: center; padding: 5rem 0; }
.pxl-archive__empty p { color: var(--pxl-warm-gray); margin-bottom: 1.5rem; }

/* ── Comparison Page ─────────────────────────────────────── */
.pxl-comparison { padding: 3rem 0 5rem; }
.pxl-comparison__header { text-align: center; margin-bottom: 3rem; }
.pxl-comparison__vs {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}
.pxl-comparison__product {
    text-align: center;
    background: var(--pxl-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.5s var(--ease-luxury);
}
.pxl-comparison__product:hover { box-shadow: var(--shadow-elevated); }
.pxl-comparison__product--winner {
    border-left: 4px solid var(--pxl-gold);
    box-shadow: var(--shadow-hover);
}
.pxl-comparison__image { margin-bottom: 1.25rem; }
.pxl-comparison__image img { border-radius: var(--radius-md); max-width: 100%; height: auto; }
.pxl-comparison__product h2 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 0.75rem; }
.pxl-comparison__price {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--pxl-gold), var(--pxl-gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pxl-comparison__badge {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pxl-white);
    background: linear-gradient(135deg, var(--pxl-charcoal) 0%, #333 100%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-elevated);
}

.pxl-comparison__table { margin: 3rem 0; overflow-x: auto; border-radius: var(--radius-md); overflow: hidden; }
.pxl-comparison__table table { width: 100%; border-collapse: collapse; }
.pxl-comparison__table th {
    background: linear-gradient(135deg, var(--pxl-charcoal), #333);
    color: var(--pxl-white);
    padding: 1rem 1.25rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.875rem;
}
.pxl-comparison__table td { padding: 0.875rem 1.25rem; border-bottom: 1px solid rgba(0,0,0,0.04); }
.pxl-comparison__table tr:hover td { background: var(--pxl-gold-light); }

.pxl-comparison__ctas { display: flex; gap: 1rem; justify-content: center; margin-top: 2.5rem; }

/* ── Seasonal Page ───────────────────────────────────────── */
.pxl-seasonal { padding: 3rem 0 5rem; }
.pxl-seasonal__header { text-align: center; margin-bottom: 2.5rem; }
.pxl-seasonal__badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--pxl-gold), var(--pxl-gold-dark));
    color: var(--pxl-white);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.pxl-seasonal__hero-image { margin-bottom: 3rem; }
.pxl-seasonal__hero-image img { width: 100%; border-radius: var(--radius-xl); }
.pxl-seasonal__products { margin-top: 4rem; }
.pxl-seasonal__cta { text-align: center; margin-top: 3rem; }

/* ── Search Page ─────────────────────────────────────────── */
.pxl-search { padding: 3rem 0 5rem; }
.pxl-search__header { text-align: center; margin-bottom: 2.5rem; }
.pxl-search__form {
    display: flex;
    max-width: 540px;
    margin: 2rem auto 0;
    gap: 0.5rem;
}
.pxl-search__form input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(140,132,120,0.2);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--pxl-white);
    transition: all 0.3s var(--ease-smooth);
}
.pxl-search__form input:focus {
    outline: none;
    border-color: var(--pxl-gold);
    box-shadow: 0 0 0 4px var(--pxl-gold-glow);
}
.pxl-search__form button { padding: 1rem 1.25rem; border-radius: 50px; }

.pxl-search__results { display: flex; flex-direction: column; gap: 1.25rem; }
.pxl-search-result {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 1.5rem;
    background: var(--pxl-white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.4s var(--ease-luxury);
}
.pxl-search-result:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.pxl-search-result__image img { width: 100%; border-radius: var(--radius-md); }
.pxl-search-result__type {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--pxl-gold-dark);
    font-weight: 600;
}
.pxl-search-result__content h2 { font-size: 1.125rem; margin: 0.375rem 0 0.5rem; }
.pxl-search-result__content h2 a { color: var(--pxl-charcoal); }
.pxl-search-result__content h2 a:hover { color: var(--pxl-gold); }
.pxl-search-result__content p { font-size: 0.9375rem; color: var(--pxl-warm-gray); }

.pxl-search__empty { text-align: center; padding: 5rem 0; }
.pxl-search__empty svg { margin-bottom: 1.5rem; }
.pxl-search__empty h2 { margin-bottom: 0.75rem; }
.pxl-search__empty p { color: var(--pxl-warm-gray); margin-bottom: 2rem; }

/* ── Country Landing Page ────────────────────────────────── */
.pxl-country-hero { text-align: center; padding: 5rem 0 3rem; }
.pxl-country-hero__flag { font-size: 5rem; margin-bottom: 1.5rem; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1)); }

.pxl-country-stats { padding: 2rem 0 3rem; }
.pxl-country-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}
.pxl-country-stats__item {
    background: var(--pxl-white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.4s var(--ease-luxury);
}
.pxl-country-stats__item:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.pxl-country-stats__number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--pxl-gold), var(--pxl-gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.pxl-country-stats__icon { display: block; color: var(--pxl-gold); margin: 0 auto 0.5rem; }
.pxl-country-stats__label { display: block; font-size: 0.875rem; color: var(--pxl-warm-gray); margin-top: 0.25rem; }

.pxl-country-payments { padding: 2rem 0; text-align: center; }
.pxl-country-payments__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.5rem;
}
.pxl-payment-badge {
    padding: 0.5rem 1.25rem;
    background: var(--pxl-white);
    border: 1.5px solid rgba(140,132,120,0.15);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s;
}
.pxl-payment-badge:hover { border-color: var(--pxl-gold); background: var(--pxl-gold-light); }

.pxl-country-cta { padding: 4rem 0 5rem; }
.pxl-country-cta__inner {
    text-align: center;
    background: linear-gradient(135deg, var(--pxl-charcoal) 0%, #222 100%);
    color: var(--pxl-white);
    border-radius: var(--radius-xl);
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
}
.pxl-country-cta__inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(212,160,74,0.1), transparent 60%);
    pointer-events: none;
}
.pxl-country-cta__flag { font-size: 4rem; margin-bottom: 1.5rem; position: relative; }
.pxl-country-cta__inner h2 { color: var(--pxl-white); font-family: var(--font-display); margin-bottom: 1.5rem; position: relative; }
.pxl-country-cta__inner h2::after { display: none; }

/* ── Legal Pages ─────────────────────────────────────────── */
.pxl-legal { padding: 3rem 0 5rem; }
.pxl-legal__updated { text-align: center; font-size: 0.875rem; color: var(--pxl-warm-gray-light); margin-bottom: 2.5rem; }
.pxl-legal__content { max-width: 800px; margin: 0 auto; }
.pxl-legal__content h2:first-of-type { margin-top: 0; }

/* ── Breadcrumbs ─────────────────────────────────────────── */
.pxl-breadcrumbs {
    padding: 1.5rem 0 0;
    margin-top: var(--header-h);
}
.pxl-breadcrumbs__list {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    font-size: 0.8125rem;
}
.pxl-breadcrumbs__list a { color: var(--pxl-warm-gray); }
.pxl-breadcrumbs__list a:hover { color: var(--pxl-gold); }
.pxl-breadcrumbs__sep { color: var(--pxl-warm-gray-light); }
.pxl-breadcrumbs__list li:last-child { color: var(--pxl-charcoal); font-weight: 500; }

/* ── Scroll Reveal ───────────────────────────────────────── */
[data-pxl-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-luxury), transform 0.8s var(--ease-luxury);
}
[data-pxl-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fallback: show everything if JS doesn't load */
.no-js [data-pxl-reveal] {
    opacity: 1;
    transform: none;
}

/* ── Reduced Motion ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    [data-pxl-reveal] { opacity: 1; transform: none; }
    .pxl-hero__headline, .pxl-hero__sub, .pxl-hero__cta, .pxl-hero__eyebrow, .pxl-hero__scroll { opacity: 1; animation: none; }
    .pxl-hero__scene--after { opacity: 1; transition: none; }
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .pxl-bento { grid-template-columns: repeat(2, 1fr); }
    .pxl-bento__item--hero { grid-column: span 2; }
    .pxl-bento__item--tall { grid-row: span 1; }
    .pxl-blog__grid { grid-template-columns: repeat(2, 1fr); }
    .pxl-about-values__grid { grid-template-columns: repeat(2, 1fr); }
    .pxl-footer__grid { grid-template-columns: repeat(2, 1fr); }
    .pxl-stats__inner { flex-wrap: wrap; }
    .pxl-stats__divider { display: none; }
    .pxl-stats__item { flex: 0 0 50%; padding: 1.5rem 1rem; }
}

@media (max-width: 767px) {
    .pxl-container { padding: 0 1.25rem; }
    .pxl-trust__inner { gap: 1.5rem; }
    .pxl-trust__item { font-size: 0.8125rem; gap: 0.5rem; }
    .pxl-hero__scroll { display: none; }
    .pxl-hero__headline { font-size: clamp(2.25rem, 8vw, 3.5rem); }
    .pxl-eu-map__canvas { aspect-ratio: 1 / 1; }
    .pxl-eu-map__legend { gap: 1rem; }
    .pxl-map-marker__code { display: none; }
    .pxl-categories { padding: 4rem 0; }
    .pxl-bento { grid-template-columns: 1fr; }
    .pxl-bento__item--hero { grid-column: span 1; }
    .pxl-bento__item { min-height: 160px; }
    .pxl-trust__sep { display: none; }
    .pxl-stats__item { flex: 0 0 50%; }
    .pxl-why { padding: 5rem 0; }
    .pxl-why__grid { grid-template-columns: 1fr; }
    .pxl-blog__grid { grid-template-columns: 1fr; }
    .pxl-email-section { padding: 5rem 0; }
    .pxl-footer__grid { grid-template-columns: 1fr; }
    .pxl-about-story__grid { grid-template-columns: 1fr; }
    .pxl-about-values__grid { grid-template-columns: 1fr; }
    .pxl-about-stats__grid { grid-template-columns: repeat(2, 1fr); }
    .pxl-form-row { grid-template-columns: 1fr; }
    .pxl-comparison__vs { grid-template-columns: 1fr; }
    .pxl-comparison__badge { margin: 0 auto; }
    .pxl-comparison__ctas { flex-direction: column; align-items: center; }
    .pxl-country-stats__grid { grid-template-columns: repeat(2, 1fr); }
    .pxl-search-result { grid-template-columns: 80px 1fr; gap: 1rem; }
    .pxl-email-section__inner { padding: 0; }
    .pxl-email-popup__content { padding: 2.5rem 1.5rem; }
}
