/* ═══════════════════════════════════════════════
   nduja.store — Stylesheet
   ═══════════════════════════════════════════════ */

:root {
  --flame: #C73E1D;
  --flame-light: #E8562E;
  --flame-dark: #9A2F14;
  --flame-glow: rgba(199, 62, 29, 0.10);
  --cream: #FAF6F1;
  --cream-deep: #F0EAE1;
  --parchment: #F7F2EB;
  --ink: #1C1714;
  --ink-soft: #4A413A;
  --ink-muted: #8C7F73;
  --olive: #4E6342;
  --gold: #B8941C;
  --white: #FFFFFF;
  --border: rgba(28, 23, 20, 0.07);
  --border-warm: rgba(199, 62, 29, 0.12);
  --shadow-sm: 0 1px 2px rgba(28, 23, 20, 0.04);
  --shadow-md: 0 4px 12px rgba(28, 23, 20, 0.07);
  --shadow-lg: 0 8px 28px rgba(28, 23, 20, 0.10);
  --shadow-xl: 0 20px 50px rgba(28, 23, 20, 0.14);
  --r: 10px;
  --r-sm: 6px;
  --r-lg: 16px;
  --r-xl: 24px;
}

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

body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250, 246, 241, 0.92);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border-bottom: 1px solid var(--border);
  height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(16px, 4vw, 48px);
}
.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700;
  color: var(--ink); text-decoration: none;
  letter-spacing: -0.03em;
}
.nav-brand .dot { color: var(--flame); }
.nav-brand .tld { font-weight: 400; color: var(--ink-muted); font-size: 18px; }
.nav-cities { display: flex; gap: 4px; }
.nav-city {
  padding: 6px 14px; border-radius: 100px;
  font-size: 12.5px; font-weight: 500;
  color: var(--ink-muted); text-decoration: none;
  transition: all 0.2s; border: 1px solid transparent;
}
.nav-city:hover { color: var(--ink); background: var(--cream-deep); }
.nav-city.active { background: var(--ink); color: var(--cream); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-cta {
  padding: 8px 18px; border-radius: 100px;
  font-size: 12.5px; font-weight: 600;
  background: var(--flame); color: var(--white);
  text-decoration: none; transition: all 0.2s;
}
.nav-cta:hover { background: var(--flame-dark); }

/* ─── HERO ─── */
.hero {
  margin-top: 60px; position: relative;
  min-height: 560px; display: flex; overflow: hidden;
}
.hero-img-col {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(28,23,20,0.85) 0%, rgba(28,23,20,0.55) 40%, rgba(28,23,20,0.3) 70%),
    url('https://images.unsplash.com/photo-1565299624946-b28f40a0ae38?w=1400&q=80') center/cover no-repeat;
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}
.hero-content {
  position: relative; z-index: 2; max-width: 660px;
  padding: clamp(60px, 10vw, 100px) clamp(24px, 5vw, 64px) 80px;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 560px;
}
.hero-tag { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.hero-tag span { font-size: 11.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--flame-light); }
.hero-tag .line { width: 32px; height: 1px; background: var(--flame-light); opacity: 0.5; }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5.5vw, 60px); font-weight: 700;
  line-height: 1.08; color: var(--cream); letter-spacing: -0.03em; margin-bottom: 18px;
}
.hero h1 em { font-style: italic; font-weight: 600; color: var(--flame-light); }
.hero-sub { font-size: 16px; line-height: 1.65; color: rgba(250,246,241,0.55); max-width: 480px; margin-bottom: 28px; }
.hero-stats { display: flex; gap: 28px; }
.hero-stat-val { font-family: 'JetBrains Mono', monospace; font-size: 20px; font-weight: 500; color: var(--cream); }
.hero-stat-label { font-size: 11px; font-weight: 500; color: rgba(250,246,241,0.4); letter-spacing: 0.06em; text-transform: uppercase; }
.hero-product {
  position: absolute; right: clamp(24px, 8vw, 120px); bottom: -40px; z-index: 3;
  width: 340px; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
  animation: float 4s ease-in-out infinite;
}
.hero-product img { width: 100%; height: auto; border-radius: var(--r-lg); }
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

/* ─── QUICK PICKS ─── */
.quick-picks { max-width: 940px; margin: -36px auto 0; padding: 0 clamp(16px, 4vw, 48px); position: relative; z-index: 4; }
.qp-card { background: var(--white); border-radius: var(--r-xl); box-shadow: var(--shadow-xl); overflow: hidden; border: 1px solid var(--border); }
.qp-bar { background: linear-gradient(90deg, var(--flame), var(--flame-dark)); padding: 16px 28px; display: flex; align-items: center; justify-content: space-between; }
.qp-bar h2 { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; color: var(--white); }
.qp-bar small { font-size: 12px; color: rgba(255,255,255,0.6); }
.qp-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.qp-item { padding: 24px 28px; border-right: 1px solid var(--border); }
.qp-item:last-child { border-right: none; }
.qp-medal { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.qp-medal.g { color: var(--gold); }
.qp-medal.s { color: var(--ink-muted); }
.qp-medal.b { color: var(--flame); }
.qp-name { font-weight: 700; font-size: 16px; margin-bottom: 4px; }
.qp-desc { font-size: 13px; color: var(--ink-muted); line-height: 1.5; margin-bottom: 14px; }
.qp-price { font-family: 'JetBrains Mono', monospace; font-size: 22px; font-weight: 500; }
.qp-price small { font-size: 12px; color: var(--ink-muted); font-weight: 400; }
.qp-link { display: inline-flex; align-items: center; gap: 4px; margin-top: 10px; font-size: 13px; font-weight: 600; color: var(--flame); text-decoration: none; transition: gap 0.2s; }
.qp-link:hover { gap: 8px; }

/* ─── CONTAINER & SECTIONS ─── */
.container { max-width: 940px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 48px); }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; padding-top: 72px; margin-bottom: 28px; border-top: 1px solid var(--border); }
.sec-num { font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 500; color: var(--flame); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; }
.sec-head h2 { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 700; letter-spacing: -0.02em; }
.sec-head h2 span { color: var(--ink-muted); font-weight: 400; }
.sec-badge { font-size: 11px; color: var(--ink-muted); font-weight: 500; white-space: nowrap; padding: 4px 12px; background: var(--cream-deep); border-radius: 100px; }

/* ─── SHOP CARDS ─── */
.shops { display: flex; flex-direction: column; gap: 14px; }
.shop {
  background: var(--white); border-radius: var(--r-lg); border: 1px solid var(--border);
  display: grid; grid-template-columns: 200px 1fr auto; overflow: hidden; transition: all 0.25s;
}
.shop:hover { box-shadow: var(--shadow-lg); border-color: var(--border-warm); transform: translateY(-1px); }
.shop-img { position: relative; overflow: hidden; }
.shop-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.shop:hover .shop-img img { transform: scale(1.05); }
.shop-img-overlay { position: absolute; bottom: 0; left: 0; right: 0; height: 60%; background: linear-gradient(to top, rgba(28,23,20,0.5), transparent); }
.shop-body { padding: 22px 24px; display: flex; flex-direction: column; justify-content: center; }
.shop-area { font-size: 11px; font-weight: 600; color: var(--olive); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 5px; display: flex; align-items: center; gap: 5px; }
.shop-area svg { flex-shrink: 0; }
.shop-name { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 6px; }
.shop-desc { font-size: 13.5px; color: var(--ink-muted); line-height: 1.55; margin-bottom: 12px; }
.tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tag { display: inline-flex; align-items: center; gap: 3px; padding: 3px 9px; border-radius: 100px; font-size: 11px; font-weight: 600; }
.t-star { background: #FFF8E1; color: var(--gold); }
.t-in { background: #E8F5E9; color: #2E7D32; }
.t-check { background: #FFF3E0; color: #E65100; }
.t-out { background: #FFEBEE; color: #C62828; }
.t-type { background: var(--cream-deep); color: var(--ink-muted); }
.shop-side { padding: 22px 24px; display: flex; flex-direction: column; align-items: flex-end; justify-content: center; gap: 8px; border-left: 1px solid var(--border); min-width: 170px; }
.shop-price { font-family: 'JetBrains Mono', monospace; font-size: 13px; font-weight: 500; color: var(--ink-muted); }

/* ─── BUTTONS ─── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 5px; padding: 10px 20px; border-radius: var(--r-sm); font-size: 13px; font-weight: 600; text-decoration: none; cursor: pointer; border: none; transition: all 0.2s; font-family: inherit; }
.btn-p { background: var(--flame); color: var(--white); }
.btn-p:hover { background: var(--flame-dark); box-shadow: 0 4px 12px rgba(199,62,29,0.25); }
.btn-o { background: transparent; border: 1px solid var(--border); color: var(--ink-soft); }
.btn-o:hover { border-color: var(--ink-muted); }
.btn-sm { padding: 7px 14px; font-size: 12px; }

/* ─── MAP ─── */
.map-wrap { margin: 28px 0; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); height: 280px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(0.8) contrast(1.05); }

/* ─── COMPARISON TABLE ─── */
.comp-table { background: var(--white); border-radius: var(--r-lg); border: 1px solid var(--border); overflow: hidden; }
.cr { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr 100px; align-items: center; padding: 16px 24px; border-bottom: 1px solid var(--border); gap: 10px; transition: background 0.15s; }
.cr:last-child { border-bottom: none; }
.cr:not(.cr-h):hover { background: var(--cream); }
.cr-h { background: var(--cream-deep); padding: 12px 24px; font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-muted); }
.cr-feat { background: var(--flame-glow); border-left: 3px solid var(--flame); }
.cr-store-wrap { display: flex; align-items: center; gap: 14px; }
.cr-store-img { width: 44px; height: 44px; border-radius: 10px; overflow: hidden; flex-shrink: 0; border: 1px solid var(--border); }
.cr-store-img img { width: 100%; height: 100%; object-fit: cover; }
.cr-store-name { font-weight: 600; font-size: 14px; }
.cr-store-type { font-size: 11.5px; color: var(--ink-muted); }
.cr-feat-badge { font-size: 9.5px; font-weight: 700; color: var(--flame); letter-spacing: 0.06em; text-transform: uppercase; }
.cc { font-size: 13.5px; color: var(--ink-soft); }
.cc strong { font-family: 'JetBrains Mono', monospace; font-weight: 500; color: var(--ink); }
.cc .free { color: var(--olive); font-weight: 600; }
.cc .total { font-family: 'JetBrains Mono', monospace; font-size: 15px; font-weight: 600; color: var(--ink); }

/* ─── AMAZON ─── */
.amz-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.amz-card { background: var(--white); border-radius: var(--r-lg); border: 1px solid var(--border); padding: 20px; display: flex; gap: 16px; transition: all 0.2s; text-decoration: none; color: inherit; }
.amz-card:hover { border-color: #FF9900; box-shadow: 0 2px 10px rgba(255,153,0,0.12); }
.amz-img { width: 90px; height: 90px; border-radius: var(--r); overflow: hidden; flex-shrink: 0; border: 1px solid var(--border); }
.amz-img img { width: 100%; height: 100%; object-fit: cover; }
.amz-info { flex: 1; min-width: 0; }
.amz-name { font-weight: 600; font-size: 14px; margin-bottom: 3px; line-height: 1.3; }
.amz-meta { font-size: 11.5px; color: var(--ink-muted); margin-bottom: 5px; }
.amz-stars { color: #FF9900; font-size: 12px; letter-spacing: 0.5px; }
.amz-price-row { margin-top: 8px; display: flex; align-items: center; gap: 6px; }
.amz-price { font-family: 'JetBrains Mono', monospace; font-size: 17px; font-weight: 600; }
.amz-prime { font-size: 9.5px; font-weight: 700; color: #00648A; background: #E3F2FD; padding: 2px 6px; border-radius: 3px; }

/* ─── FAQ & EDITORIAL ACCORDIONS ─── */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq { background: var(--white); border-radius: var(--r); border: 1px solid var(--border); overflow: hidden; }
.faq-q { padding: 18px 24px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; font-weight: 600; font-size: 14.5px; transition: background 0.15s; user-select: none; }
.faq-q:hover { background: var(--cream); }
.faq-q .ico { width: 24px; height: 24px; border-radius: 50%; background: var(--cream-deep); display: flex; align-items: center; justify-content: center; font-family: 'JetBrains Mono', monospace; font-size: 14px; color: var(--flame); flex-shrink: 0; transition: transform 0.2s; }
.faq.open .faq-q .ico { transform: rotate(45deg); }
.faq-a { padding: 0 24px 18px; font-size: 13.5px; line-height: 1.7; color: var(--ink-muted); display: none; }
.faq.open .faq-a { display: block; }

/* ─── CTA ─── */
.cta { background: var(--ink); border-radius: var(--r-xl); padding: 48px 40px; display: flex; align-items: center; justify-content: space-between; gap: 32px; margin: 48px 0; position: relative; overflow: hidden; }
.cta::before { content: ''; position: absolute; right: -80px; top: -80px; width: 300px; height: 300px; background: radial-gradient(circle, var(--flame) 0%, transparent 70%); opacity: 0.15; }
.cta-text { position: relative; }
.cta-text h3 { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--cream); margin-bottom: 6px; }
.cta-text p { font-size: 14px; color: rgba(250,246,241,0.5); }
.cta-form { display: flex; gap: 8px; position: relative; }
.cta-input { padding: 12px 18px; border-radius: var(--r-sm); border: 1px solid rgba(250,246,241,0.15); background: rgba(250,246,241,0.08); color: var(--cream); font-size: 14px; font-family: inherit; width: 240px; outline: none; transition: border-color 0.2s; }
.cta-input::placeholder { color: rgba(250,246,241,0.3); }
.cta-input:focus { border-color: var(--flame); }
.cta-btn { padding: 12px 24px; border-radius: var(--r-sm); background: var(--flame); color: var(--white); font-size: 14px; font-weight: 600; border: none; cursor: pointer; font-family: inherit; transition: background 0.2s; }
.cta-btn:hover { background: var(--flame-light); }

/* ─── CITY PILLS ─── */
.cities-bar { text-align: center; padding: 16px 0 40px; }
.cities-label { font-size: 11px; font-weight: 600; color: var(--ink-muted); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; }
.cities-list { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.city-pill { padding: 6px 16px; border-radius: 100px; font-size: 12.5px; font-weight: 500; background: var(--white); color: var(--ink-muted); text-decoration: none; border: 1px solid var(--border); transition: all 0.2s; }
.city-pill:hover { border-color: var(--flame); color: var(--flame); }
.city-pill.on { background: var(--flame); color: var(--white); border-color: var(--flame); }

/* ─── CITY GRID (homepage) ─── */
.city-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.city-card { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; background: var(--white); border-radius: var(--r); border: 1px solid var(--border); text-decoration: none; color: var(--ink); transition: all 0.2s; }
.city-card:hover { border-color: var(--border-warm); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.city-card-name { font-weight: 600; font-size: 15px; }
.city-card-meta { font-size: 11.5px; color: var(--ink-muted); }
.city-card-arrow { font-size: 16px; color: var(--flame); opacity: 0; transition: opacity 0.2s; }
.city-card:hover .city-card-arrow { opacity: 1; }

/* ─── COMING SOON ─── */
.coming-soon-card { background: var(--white); border-radius: var(--r-lg); border: 1px solid var(--border); padding: 48px; text-align: center; }
.coming-soon-card h3 { font-family: 'Playfair Display', serif; font-size: 24px; margin-bottom: 8px; }
.coming-soon-card p { font-size: 14px; color: var(--ink-muted); margin-bottom: 20px; }

/* ─── BREADCRUMB ─── */
.bc { font-size: 12px; color: var(--ink-muted); padding: 20px 0 0; display: flex; gap: 5px; align-items: center; }
.bc a { color: var(--ink-muted); text-decoration: none; }
.bc a:hover { color: var(--flame); }
.bc .sep { opacity: 0.3; }

/* ─── DISCLOSURE ─── */
.disc { font-size: 11px; color: var(--ink-muted); text-align: center; padding: 14px; background: var(--parchment); border-radius: var(--r-sm); margin-top: 12px; border: 1px solid var(--border); }

/* ─── FOOTER ─── */
footer { background: var(--ink); padding: 52px 24px 36px; }
.footer-inner { max-width: 940px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--cream); margin-bottom: 8px; }
.footer-brand .dot { color: var(--flame-light); }
.footer-tagline { font-size: 13px; color: rgba(250,246,241,0.35); max-width: 300px; line-height: 1.6; }
.footer-links { display: flex; gap: 28px; }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col-title { font-size: 11px; font-weight: 600; color: rgba(250,246,241,0.5); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 4px; }
.footer-col a { font-size: 13px; color: rgba(250,246,241,0.35); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom { max-width: 940px; margin: 28px auto 0; padding-top: 20px; border-top: 1px solid rgba(250,246,241,0.08); font-size: 11.5px; color: rgba(250,246,241,0.2); display: flex; justify-content: space-between; }

/* ─── SORTABLE TABLE HEADERS ─── */
.sortable { cursor: pointer; user-select: none; transition: color 0.15s; display: flex; align-items: center; gap: 4px; }
.sortable:hover { color: var(--flame); }
.sort-arrow { font-size: 11px; opacity: 0.4; transition: opacity 0.15s; }
.sortable:hover .sort-arrow { opacity: 0.8; }
.active-sort { color: var(--flame) !important; font-weight: 700; }
.active-sort .sort-arrow { opacity: 1; color: var(--flame); }

/* ─── LEAFLET MAP OVERRIDES ─── */
.leaflet-popup-content-wrapper { border-radius: 10px !important; box-shadow: var(--shadow-lg) !important; border: 1px solid var(--border) !important; }
.leaflet-popup-content { margin: 12px 14px !important; line-height: 1.5 !important; }
.leaflet-popup-tip { box-shadow: none !important; }
.shop-marker { background: none !important; border: none !important; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.an { animation: fadeUp 0.5s ease forwards; opacity: 0; }
.d1 { animation-delay: 0.08s; }
.d2 { animation-delay: 0.16s; }
.d3 { animation-delay: 0.24s; }
.d4 { animation-delay: 0.32s; }

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  .hero-product { display: none; }
  .shop { grid-template-columns: 1fr; }
  .shop-img { height: 180px; }
  .shop-side { border-left: none; border-top: 1px solid var(--border); flex-direction: row; align-items: center; justify-content: space-between; }
  .qp-grid { grid-template-columns: 1fr; }
  .qp-item { border-right: none; border-bottom: 1px solid var(--border); }
  .qp-item:last-child { border-bottom: none; }
  .cr { grid-template-columns: 1.8fr 1fr 1fr 100px; font-size: 12.5px; }
  .cr .hm { display: none; }
  .cr-store-img { display: none; }
  .amz-grid { grid-template-columns: 1fr; }
  .nav-cities { display: none; }
  .sec-head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .cta { flex-direction: column; text-align: center; padding: 36px 24px; }
  .cta-form { flex-direction: column; }
  .cta-input { width: 100%; }
  .footer-inner { flex-direction: column; gap: 28px; }
  .footer-links { gap: 20px; }
  .footer-bottom { flex-direction: column; gap: 4px; }
}

/* ─── NAV COUNTRY ─── */
.nav-country { font-weight: 600; border-right: 1px solid var(--border); margin-right: 4px; padding-right: 14px; }
.active-country { color: var(--flame) !important; }

/* ─── HERO GLOBAL ─── */
.hero-global .hero-content { max-width: 720px; }
.hero-search { margin-top: 8px; }
.hero-search-inner {
  display: flex; align-items: center; gap: 10px;
  background: rgba(250,246,241,0.08); border: 1px solid rgba(250,246,241,0.12);
  border-radius: 12px; padding: 14px 18px; margin-bottom: 14px;
}
.hero-search-text { font-size: 14px; color: rgba(250,246,241,0.4); }
.hero-search-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 10px;
  font-size: 13.5px; font-weight: 500; text-decoration: none;
  transition: all 0.2s;
}
.hero-pill-active {
  background: var(--flame); color: var(--white);
  box-shadow: 0 4px 16px rgba(199,62,29,0.3);
}
.hero-pill-active:hover { background: var(--flame-light); transform: translateY(-1px); }
.hero-pill-flag { font-size: 18px; }
.hero-pill-count { font-size: 11px; opacity: 0.7; margin-left: 2px; }
.hero-pill-soon {
  background: rgba(250,246,241,0.06); color: rgba(250,246,241,0.35);
  border: 1px solid rgba(250,246,241,0.08); cursor: default;
}
.hero-pill-soon-tag {
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; background: rgba(250,246,241,0.1);
  padding: 2px 6px; border-radius: 4px; margin-left: 2px;
}

/* ─── TRUST BAR ─── */
.trust-bar { max-width: 940px; margin: -28px auto 0; padding: 0 clamp(16px, 4vw, 48px); position: relative; z-index: 4; }
.trust-bar-inner {
  background: var(--white); border-radius: var(--r-lg); box-shadow: var(--shadow-xl);
  border: 1px solid var(--border); display: flex; align-items: center;
  justify-content: center; padding: 24px 40px; gap: 40px;
}
.trust-stat { text-align: center; }
.trust-val { font-family: 'JetBrains Mono', monospace; font-size: 22px; font-weight: 500; color: var(--ink); }
.trust-label { font-size: 11px; font-weight: 500; color: var(--ink-muted); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 2px; }
.trust-divider { width: 1px; height: 36px; background: var(--border); }

/* ─── HOMEPAGE SECTIONS ─── */
.hp-section { padding: 32px 0; }

/* Steps */
.hp-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.hp-step {
  background: var(--white); border-radius: var(--r-lg); border: 1px solid var(--border);
  padding: 32px 28px; position: relative; transition: all 0.2s;
}
.hp-step:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.hp-step-num {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--flame); font-weight: 500; opacity: 0.5; margin-bottom: 12px;
}
.hp-step-icon { font-size: 13px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--flame); margin-bottom: 16px; font-family: 'DM Sans', sans-serif; }
.hp-step h3 { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.hp-step p { font-size: 13.5px; color: var(--ink-muted); line-height: 1.6; }

/* City grid (homepage version) */
.hp-city-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px; }
.hp-city-card {
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 18px 20px; min-height: 100px;
  background: var(--white); border-radius: var(--r); border: 1px solid var(--border);
  text-decoration: none; color: var(--ink); transition: all 0.2s;
}
.hp-city-card:hover { border-color: var(--border-warm); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.hp-city-soon { opacity: 0.55; }
.hp-city-soon:hover { opacity: 0.75; }
.hp-city-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.hp-city-name { font-weight: 600; font-size: 15px; }
.hp-city-live { font-size: 9px; font-weight: 700; color: #2E7D32; background: #E8F5E9; padding: 2px 8px; border-radius: 100px; letter-spacing: 0.06em; text-transform: uppercase; }
.hp-city-coming { font-size: 9px; font-weight: 700; color: var(--ink-muted); background: var(--cream-deep); padding: 2px 8px; border-radius: 100px; letter-spacing: 0.06em; text-transform: uppercase; }
.hp-city-meta { font-size: 12px; color: var(--ink-muted); }
.hp-city-arrow { font-size: 14px; color: var(--flame); opacity: 0; transition: opacity 0.2s; align-self: flex-end; }
.hp-city-card:hover .hp-city-arrow { opacity: 1; }

/* About card */
.hp-about-card {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 0;
  background: var(--white); border-radius: var(--r-xl); border: 1px solid var(--border); overflow: hidden;
}
.hp-about-img { position: relative; }
.hp-about-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hp-about-body { padding: 40px 36px; }
.hp-about-body p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 14px; }
.hp-about-body p:last-child { margin-bottom: 0; }

/* Country cards */
.hp-countries { display: flex; flex-direction: column; gap: 12px; }
.hp-country {
  display: flex; align-items: center; gap: 20px;
  background: var(--white); border-radius: var(--r); border: 1px solid var(--border);
  padding: 20px 24px; transition: all 0.2s;
}
.hp-country:hover { box-shadow: var(--shadow-sm); }
.hp-country-flag { font-size: 36px; flex-shrink: 0; }
.hp-country-info { flex: 1; }
.hp-country-name { font-weight: 700; font-size: 16px; margin-bottom: 2px; }
.hp-country-desc { font-size: 13px; color: var(--ink-muted); line-height: 1.5; }
.hp-country-status {
  font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-muted); background: var(--cream-deep);
  padding: 4px 12px; border-radius: 100px; white-space: nowrap; flex-shrink: 0;
}

/* Business cards */
.hp-biz-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.hp-biz-card {
  background: var(--white); border-radius: var(--r-lg); border: 1px solid var(--border);
  padding: 32px 28px; text-align: center; transition: all 0.2s;
}
.hp-biz-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.hp-biz-icon { font-size: 36px; margin-bottom: 16px; }
.hp-biz-card h3 { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.hp-biz-card p { font-size: 13px; color: var(--ink-muted); line-height: 1.6; margin-bottom: 20px; }

/* Region groups (UK hub) */
.region-group { margin-bottom: 32px; }
.region-title {
  font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600;
  color: var(--ink-muted); margin-bottom: 12px; padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

/* ─── MOBILE HOMEPAGE ─── */
@media (max-width: 768px) {
  .hero-search-pills { flex-direction: column; }
  .hero-pill { justify-content: center; }
  .trust-bar-inner { flex-wrap: wrap; gap: 20px; padding: 20px; }
  .trust-divider { display: none; }
  .trust-stat { flex: 1; min-width: 80px; }
  .hp-steps { grid-template-columns: 1fr; }
  .hp-about-card { grid-template-columns: 1fr; }
  .hp-about-img { height: 220px; }
  .hp-biz-grid { grid-template-columns: 1fr; }
  .hp-city-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-country { flex-direction: column; text-align: center; gap: 12px; }
}

/* ═══ STATIC PAGES ═══ */
.hp-intro-text { max-width: 800px; margin: 0 auto; padding-top: 40px; text-align: center; }
.hp-intro-text p { font-size: 16px; color: var(--ink-muted); line-height: 1.8; }
.hp-section-intro { font-size: 15px; color: var(--ink-muted); line-height: 1.7; max-width: 720px; margin-bottom: 24px; }
.static-hero { padding: 160px 0 48px; background: var(--warm-bg); border-bottom: 1px solid var(--border); }
.static-hero .bc { font-size: 13px; color: var(--ink-muted); margin-bottom: 12px; }
.static-hero .bc a { color: var(--flame); text-decoration: none; }
.static-hero .sep { margin: 0 6px; }
.static-hero h1 { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.static-hero h1 span { color: var(--flame); }
.static-sub { font-size: 17px; color: var(--ink-muted); max-width: 540px; line-height: 1.6; }

.static-grid { display: grid; grid-template-columns: 1fr 300px; gap: 32px; padding: 40px 0 60px; }
.static-main { min-width: 0; }
.static-side { display: flex; flex-direction: column; gap: 20px; }
.static-narrow { max-width: 720px; margin: 0 auto; padding: 40px 0 60px; }

.static-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 32px; margin-bottom: 24px; }
.static-card h2 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--ink); margin-bottom: 16px; }
.static-card p { color: var(--ink-muted); font-size: 15px; line-height: 1.7; margin-bottom: 12px; }
.static-card p:last-child { margin-bottom: 0; }
.static-card.legal h2 { margin-top: 28px; }
.static-card.legal h2:first-child { margin-top: 0; }

.side-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 24px; }
.side-card h3 { font-family: 'Playfair Display', serif; font-size: 16px; margin-bottom: 16px; color: var(--ink); }
.side-stat { display: flex; align-items: baseline; gap: 10px; margin-bottom: 12px; }
.side-stat:last-child { margin-bottom: 0; }
.side-stat-val { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--flame); }
.side-stat-label { font-size: 13px; color: var(--ink-muted); }

/* Plans */
.plan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
.plan { border: 1px solid var(--border); border-radius: 12px; padding: 24px; position: relative; }
.plan-feat { border-color: var(--flame); background: #FFF8F6; }
.plan-badge { position: absolute; top: -10px; right: 16px; background: var(--flame); color: #fff; font-size: 11px; font-weight: 700; text-transform: uppercase; padding: 3px 10px; border-radius: 20px; letter-spacing: 0.5px; }
.plan-name { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.plan-price { font-size: 32px; font-weight: 700; color: var(--flame); margin-bottom: 16px; }
.plan-price span { font-size: 14px; font-weight: 400; color: var(--ink-muted); }
.plan-list { list-style: none; padding: 0; margin: 0; }
.plan-list li { font-size: 14px; color: var(--ink-muted); padding: 6px 0; line-height: 1.5; }

/* Featured grid */
.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 20px; }
.feat-item { padding: 20px; background: var(--warm-bg); border-radius: 10px; }
.feat-icon { font-size: 13px; font-weight: 700; color: var(--flame); width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--flame); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; font-family: 'DM Sans', sans-serif; }
.feat-item h3 { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.feat-item p { font-size: 13px; color: var(--ink-muted); line-height: 1.5; margin: 0; }

.price-big { font-family: 'Playfair Display', serif; font-size: 56px; font-weight: 700; color: var(--flame); margin-bottom: 8px; }
.price-big span { font-size: 20px; font-weight: 400; color: var(--ink-muted); }

/* Forms */
.static-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.static-form .form-group { display: flex; flex-direction: column; margin-bottom: 16px; }
.static-form .form-row .form-group { margin-bottom: 0; }
.static-form label { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.static-form input, .static-form textarea { border: 1px solid var(--border); border-radius: 8px; padding: 10px 14px; font-size: 14px; font-family: 'DM Sans', sans-serif; transition: border-color 0.2s; }
.static-form input:focus, .static-form textarea:focus { outline: none; border-color: var(--flame); box-shadow: 0 0 0 3px rgba(199,62,29,0.1); }
.static-form textarea { resize: vertical; }

/* FAQ */
.faq-item { padding: 16px 0; border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.faq-item p { font-size: 14px; color: var(--ink-muted); line-height: 1.6; margin: 0; }

/* Responsive */
@media (max-width: 768px) {
  .static-hero h1 { font-size: 30px; }
  .static-grid { grid-template-columns: 1fr; }
  .plan-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
  .static-form .form-row { grid-template-columns: 1fr; }
  .price-big { font-size: 40px; }
}
