/* ==========================================================================
   Mandalorian Studio, Dashboard site
   ========================================================================== */

:root {
  --bg: #0a0d14;
  --bg-alt: #10141f;
  --surface: #151a27;
  --surface-2: #1b2233;
  --border: #262e42;

  --red: #ef2430;
  --red-dark: #a3121b;
  --cyan: #35e0e8;
  --cyan-dark: #1a9ba3;
  --yellow: #ffd400;
  --blue: #2947c9;

  --white: #f5f7fb;
  --muted: #9aa3b8;
  --muted-2: #6b7488;

  --radius: 20px;
  --radius-sm: 12px;

  --font-display: "Bangers", "Comic Sans MS", cursive;
  --font-body: "Poppins", "Segoe UI", sans-serif;

  --shadow-glow-red: 0 0 0 1px rgba(239, 36, 48, 0.35), 0 20px 40px -12px rgba(239, 36, 48, 0.35);
  --shadow-glow-cyan: 0 0 0 1px rgba(53, 224, 232, 0.35), 0 20px 40px -12px rgba(53, 224, 232, 0.3);
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
section { position: relative; }

/* Lang toggling ------------------------------------------------------- */
body:not(.lang-en) .en { display: none; }
body.lang-en .fr { display: none; }

/* Halftone / comic texture -------------------------------------------- */
.halftone {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image: radial-gradient(circle, var(--white) 1px, transparent 1.4px);
  background-size: 14px 14px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
}

.noise-bg {
  background:
    radial-gradient(circle at 15% 20%, rgba(239, 36, 48, 0.18), transparent 40%),
    radial-gradient(circle at 85% 10%, rgba(53, 224, 232, 0.15), transparent 40%),
    radial-gradient(circle at 50% 100%, rgba(255, 212, 0, 0.08), transparent 45%),
    var(--bg);
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; }
.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  box-shadow: var(--shadow-glow-red);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); }

.btn-discord {
  background: #5865f2;
  color: #fff;
  box-shadow: 0 0 0 1px rgba(88, 101, 242, 0.4), 0 16px 32px -10px rgba(88, 101, 242, 0.55);
}
.btn-discord:hover { transform: translateY(-3px) scale(1.02); background: #6773f5; }

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  border: 1.5px solid var(--border);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-3px); }

.btn-block { width: 100%; justify-content: center; }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 13, 20, 0.75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.navbar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-badge {
  position: relative;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--red);
  border-radius: 30%;
  overflow: hidden;
  box-shadow: var(--shadow-glow-red);
  transform: rotate(-4deg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.brand:hover .logo-badge { transform: rotate(0deg) scale(1.06); box-shadow: var(--shadow-glow-cyan); }
.logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.logo-badge .logo-fallback {
  display: none;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: #fff;
  letter-spacing: 1px;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.35);
}
.logo-badge.logo-lg { width: 84px; height: 84px; border-radius: 26%; }
.logo-badge.logo-lg .logo-fallback { font-size: 2rem; }

/* Flags ----------------------------------------------------------- */
.flag-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-flex;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}
.flag-icon svg { width: 100%; height: 100%; display: block; }

/* Section wave dividers --------------------------------------------- */
.wave-divider {
  display: block;
  width: 100%;
  line-height: 0;
  transform: translateY(1px);
}
.wave-divider svg { width: 100%; height: 90px; display: block; }
.wave-divider.flip { transform: translateY(-1px) rotate(180deg); }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 1px;
  line-height: 1;
}
.brand-name em {
  font-style: normal;
  color: var(--cyan);
}
.brand-tag {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--muted);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--red), var(--yellow));
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-switch {
  display: flex;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}
.lang-switch button {
  border: none;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 7px 13px;
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}
.lang-switch button.active {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  color: #06222a;
}

.burger {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  color: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  padding: 90px 0 110px;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 220px;
  background: linear-gradient(180deg, transparent, var(--bg) 88%);
  pointer-events: none;
  z-index: 1;
}
.hero-burst {
  position: absolute;
  top: -220px;
  right: -160px;
  width: 620px;
  height: 620px;
  background: conic-gradient(from 0deg, var(--red), var(--yellow), var(--cyan), var(--red));
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  opacity: 0.16;
  filter: blur(1px);
  animation: spin 40s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 22px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.2vw, 4.3rem);
  line-height: 1.02;
  letter-spacing: 1px;
  margin: 0 0 18px;
  background: linear-gradient(135deg, #fff 30%, var(--cyan) 65%, var(--yellow) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 6px 30px rgba(239, 36, 48, 0.25);
}
.hero-sub {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
}
.hero p.lead {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 540px;
  margin-bottom: 34px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }

.hero-stats { display: flex; flex-wrap: wrap; gap: 28px; }
.hero-stats .stat b {
  font-family: var(--font-display);
  font-size: 1.7rem;
  display: block;
  color: var(--yellow);
  letter-spacing: 1px;
}
.hero-stats .stat span { font-size: 0.78rem; color: var(--muted); font-weight: 600; }

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}
.hero-visual .frame {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card), 0 0 80px -20px rgba(53, 224, 232, 0.25);
  transform: rotate(-2deg);
}
.hero-visual .frame img { width: 100%; }
.floating-chip {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: var(--shadow-card);
  animation: float 5s ease-in-out infinite;
}
.floating-chip svg { width: 18px; height: 18px; }
.chip-1 { top: -18px; left: -18px; color: var(--cyan); animation-delay: 0s; }
.chip-2 { bottom: 30px; right: -24px; color: var(--yellow); animation-delay: 1.2s; }
.chip-3 { bottom: -22px; left: 40px; color: var(--red); animation-delay: 2.4s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ==========================================================================
   Section shells
   ========================================================================== */
.section { padding: 90px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.7rem);
  letter-spacing: 1px;
  margin: 0 0 14px;
}
.section-head h2 em {
  font-style: normal;
  color: var(--red);
  -webkit-text-stroke: 1px var(--yellow);
}
.section-head p { color: var(--muted); font-size: 1.02rem; }

/* Alt sections fade in from --bg to --bg-alt instead of cutting hard,
   so the seam between sections always reads as a smooth blend. */
.section-alt {
  background: linear-gradient(180deg, var(--bg) 0, var(--bg-alt) 160px, var(--bg-alt) calc(100% - 160px), var(--bg) 100%);
}

/* ==========================================================================
   Cards / features
   ========================================================================== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-6px); border-color: var(--cyan); box-shadow: var(--shadow-glow-cyan); }
.card .icon-badge { margin-bottom: 18px; }
.card h3 { font-size: 1.15rem; margin: 0 0 10px; font-weight: 800; }
.card p { color: var(--muted); font-size: 0.94rem; margin: 0; }

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(239, 36, 48, 0.18), rgba(255, 212, 0, 0.12));
  border: 1px solid var(--border);
  color: var(--yellow);
}
.icon-badge.cyan { color: var(--cyan); background: linear-gradient(135deg, rgba(53, 224, 232, 0.18), rgba(53, 224, 232, 0.05)); }
.icon-badge.red { color: var(--red); background: linear-gradient(135deg, rgba(239, 36, 48, 0.22), rgba(239, 36, 48, 0.06)); }
.icon-badge svg { width: 26px; height: 26px; }

/* Stat strip */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px;
  text-align: center;
}
.stat-card b {
  font-family: var(--font-display);
  font-size: 2rem;
  display: block;
  background: linear-gradient(135deg, var(--cyan), var(--yellow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-card span { font-size: 0.8rem; color: var(--muted); font-weight: 600; }

/* Steps / process */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  position: relative;
}
.step .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--red);
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}
.step h3 { font-size: 1rem; margin: 0 0 8px; }
.step p { color: var(--muted); font-size: 0.88rem; margin: 0; }

/* Callout */
.callout {
  background: linear-gradient(135deg, rgba(239, 36, 48, 0.14), rgba(53, 224, 232, 0.08));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px;
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
}
.callout-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(239, 36, 48, 0.28), rgba(239, 36, 48, 0.08));
  border: 1px solid var(--border);
  color: var(--red);
}
.callout-icon svg { width: 32px; height: 32px; }
.callout-body { flex: 1 1 380px; }
.callout h3 { font-family: var(--font-display); font-size: 1.7rem; letter-spacing: 0.5px; margin: 0 0 12px; }
.callout p { color: var(--muted); margin: 0 0 18px; font-size: 1.02rem; max-width: 640px; }
.callout-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.callout-tags .tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
}
.callout-tags .tag svg { width: 13px; height: 13px; color: var(--cyan); flex-shrink: 0; }
.callout .btn { flex-shrink: 0; }

/* Ticket CTA banner */
.cta-banner {
  position: relative;
  border-radius: var(--radius);
  padding: 70px 40px;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(circle at 50% 0%, rgba(239, 36, 48, 0.35), transparent 60%), var(--surface);
  border: 1px solid var(--border);
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  letter-spacing: 1px;
  margin: 0 0 14px;
}
.cta-banner p { color: var(--muted); max-width: 520px; margin: 0 auto 30px; }
.cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   Pricing
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 38px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border-color: var(--red);
  box-shadow: var(--shadow-glow-red);
  background: linear-gradient(180deg, rgba(239, 36, 48, 0.08), var(--surface) 30%);
}
.ribbon {
  position: absolute;
  top: -14px;
  left: 34px;
  background: linear-gradient(135deg, var(--yellow), #ffb400);
  color: #241a00;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 7px 16px;
  border-radius: 999px;
  box-shadow: 0 8px 18px -6px rgba(255, 212, 0, 0.6);
}
.price-card h3 { font-size: 1.25rem; margin: 0 0 6px; }
.price-card .price-desc { color: var(--muted); font-size: 0.9rem; margin-bottom: 24px; }
.price-tag { display: flex; align-items: baseline; gap: 8px; margin-bottom: 26px; }
.price-tag .amount {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 1px;
  background: linear-gradient(135deg, var(--white), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price-tag .period { color: var(--muted); font-size: 0.85rem; font-weight: 600; }
.price-list { display: flex; flex-direction: column; gap: 13px; margin-bottom: 30px; flex: 1; }
.price-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.92rem; color: var(--white); }
.price-list svg { width: 19px; height: 19px; color: var(--cyan); flex-shrink: 0; margin-top: 2px; }

/* ==========================================================================
   Rules
   ========================================================================== */
.rules-list { display: flex; flex-direction: column; gap: 18px; }
.rule-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 30px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
}
.rule-num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--yellow);
  flex-shrink: 0;
  width: 54px;
}
.rule-card h3 { margin: 0 0 10px; font-size: 1.08rem; display: flex; align-items: center; gap: 10px; }
.rule-card h3 svg { width: 20px; height: 20px; color: var(--cyan); }
.rule-card ul { display: flex; flex-direction: column; gap: 8px; }
.rule-card li { color: var(--muted); font-size: 0.93rem; padding-left: 18px; position: relative; }
.rule-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
}
.accept-box {
  margin-top: 34px;
  border: 1px dashed var(--cyan);
  border-radius: var(--radius);
  padding: 26px 30px;
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(53, 224, 232, 0.06);
}
.accept-box svg { width: 32px; height: 32px; color: var(--cyan); flex-shrink: 0; }
.accept-box p { margin: 0; font-weight: 600; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
  background: var(--bg-alt);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-grid p { color: var(--muted); font-size: 0.9rem; max-width: 320px; }
.footer-col h4 { font-size: 0.85rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted-2); margin: 0 0 16px; }
.footer-col a {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--cyan); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--muted-2);
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  font-weight: 600;
}
.footer-legal a {
  color: var(--muted);
  transition: color 0.2s ease;
}
.footer-legal a:hover { color: var(--cyan); }
.footer-legal .dot { color: var(--border); }

/* ==========================================================================
   Reveal animation
   ========================================================================== */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-reveal].in { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 70px 0 90px; }
  .section { padding: 64px 0; }
}

/* Tablets (portrait) and large phones: nav collapses into the burger drawer
   before the navbar items get cramped against each other. */
@media (max-width: 1240px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .navbar-inner { padding: 12px 16px; gap: 10px; }
  .navbar .nav-actions .btn-discord { display: none; }
  .nav-actions { gap: 10px; }
}

@media (max-width: 720px) {
  .grid-2, .grid-3, .grid-4, .steps { grid-template-columns: 1fr; }
  .callout { flex-direction: column; text-align: center; padding: 30px 24px; }
  .rule-card, .accept-box { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 50px 24px; }
  .price-card { padding: 28px; }
  .floating-chip { font-size: 0.72rem; padding: 8px 10px; }
  .chip-1 { left: -6px; }
  .chip-2 { right: -6px; }
  .chip-3 { left: 12px; }
}

/* Phones: the Bangers wordmark is too wide to sit next to the lang switch
   and burger button, so drop it and keep just the logo badge. */
@media (max-width: 600px) {
  .navbar-inner .brand > span:not(.logo-badge) { display: none; }
  .lang-switch button { padding: 6px 10px; font-size: 0.72rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 50px 0 64px; }
  .section { padding: 48px 0; }
  .hero h1 { font-size: clamp(2.1rem, 9vw, 2.8rem); }
  .hero-ctas .btn,
  .cta-row .btn { flex: 1 1 100%; justify-content: center; }
  .hero-stats { gap: 16px; }
  .stat-strip { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-card { padding: 16px; }
  .stat-card b { font-size: 1.5rem; }
  .price-tag .amount { font-size: 2.4rem; }
  .price-card { padding: 22px; }
  .callout, .cta-banner { padding: 28px 18px; }
  .rule-card, .card { padding: 22px; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(8, 10, 16, 0.97);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  transform: translateY(-100%);
  transition: transform 0.35s ease;
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a { font-family: var(--font-display); font-size: 1.8rem; letter-spacing: 1px; }
.mobile-nav .close-btn {
  position: absolute;
  top: 22px; right: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  color: var(--white);
  cursor: pointer;
}

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq-list { display: flex; flex-direction: column; gap: 16px; max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.faq-item.open { border-color: var(--cyan); box-shadow: var(--shadow-glow-cyan); }
.faq-q {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 26px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--white);
  transition: background 0.2s ease;
}
.faq-q:hover { background: rgba(255, 255, 255, 0.03); }
.faq-q .faq-icon {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(53, 224, 232, 0.18), rgba(53, 224, 232, 0.05));
  color: var(--cyan);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.faq-item.open .faq-q .faq-icon { transform: rotate(135deg); background: linear-gradient(135deg, rgba(239, 36, 48, 0.24), rgba(239, 36, 48, 0.08)); color: var(--red); }
.faq-q .faq-icon svg { width: 16px; height: 16px; }
.faq-q .faq-q-text { flex: 1; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 4px 26px 26px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ==========================================================================
   Blog
   ========================================================================== */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.blog-card:hover { transform: translateY(-6px); border-color: var(--cyan); box-shadow: var(--shadow-glow-cyan); }
.blog-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
.blog-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 13px;
  border-radius: 999px;
  background: rgba(239, 36, 48, 0.14);
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.blog-date { color: var(--muted-2); font-size: 0.8rem; font-weight: 600; }
.blog-card h3 { font-size: 1.25rem; margin: 0 0 12px; line-height: 1.3; }
.blog-card p { color: var(--muted); font-size: 0.94rem; margin: 0 0 22px; flex: 1; }
.blog-readmore { display: inline-flex; align-items: center; gap: 8px; color: var(--cyan); font-weight: 700; font-size: 0.9rem; }
.blog-readmore svg { width: 16px; height: 16px; transition: transform 0.2s ease; }
.blog-card:hover .blog-readmore svg { transform: translateX(4px); }

/* Article prose */
.article-body {
  max-width: 760px;
  margin: 0 auto;
}
.article-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  letter-spacing: 0.5px;
  margin: 46px 0 18px;
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { font-size: 1.15rem; font-weight: 800; margin: 30px 0 12px; color: var(--cyan); }
.article-body p { color: var(--muted); font-size: 1.02rem; margin: 0 0 18px; }
.article-body strong { color: var(--white); }
.article-body ul { display: flex; flex-direction: column; gap: 10px; margin: 0 0 22px; }
.article-body li { color: var(--muted); font-size: 0.98rem; padding-left: 22px; position: relative; }
.article-body li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
}
.article-table-wrap { overflow-x: auto; margin: 0 0 26px; border: 1px solid var(--border); border-radius: var(--radius-sm); }
.article-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.article-table th, .article-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border); }
.article-table th { background: var(--surface-2); color: var(--white); font-weight: 700; white-space: nowrap; }
.article-table td { color: var(--muted); }
.article-table tr:last-child td { border-bottom: none; }
.article-hero-meta { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.article-back { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-weight: 600; font-size: 0.9rem; margin-bottom: 22px; }
.article-back:hover { color: var(--cyan); }
.article-back svg { width: 16px; height: 16px; }

/* ==========================================================================
   Contact form
   ========================================================================== */
.contact-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: start; }
.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
}
.contact-info-card h3 { font-size: 1.2rem; margin: 0 0 16px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-item .icon-badge { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; }
.contact-info-item .icon-badge svg { width: 20px; height: 20px; }
.contact-info-item h4 { margin: 0 0 4px; font-size: 0.95rem; }
.contact-info-item p { margin: 0; color: var(--muted); font-size: 0.88rem; }

.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 38px;
}
.form-row { margin-bottom: 20px; }
.form-row label { display: block; font-size: 0.88rem; font-weight: 700; margin-bottom: 8px; color: var(--white); }
.form-row label .req { color: var(--red); }
.form-control {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-control::placeholder { color: var(--muted-2); }
.form-control:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(53, 224, 232, 0.15); }
textarea.form-control { resize: vertical; min-height: 140px; }
.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin-top: 18px; padding: 14px 18px; border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 600; display: none; }
.form-status.show { display: block; }
.form-status.success { background: rgba(53, 224, 232, 0.12); border: 1px solid var(--cyan); color: var(--cyan); }
.form-status.error { background: rgba(239, 36, 48, 0.12); border: 1px solid var(--red); color: #ff9aa1; }
.form-submit-btn[disabled] { opacity: 0.6; cursor: not-allowed; }

@media (max-width: 980px) {
  .blog-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .contact-form-card, .contact-info-card { padding: 26px; }
}
