/* ═══════════════════════════════════════════════════════════
   Listen — Design System  (charte Moda — mai 2026)
   Monochrome noir/blanc · Inter + Instrument Serif + Space Mono
═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Instrument+Serif&family=Space+Mono:wght@700&display=swap');

:root {
  /* Charte Moda exacte */
  --bg:       #0a0a0a;
  --bg2:      #111113;
  --surface:  rgba(255,255,255,0.02);
  --surface2: rgba(255,255,255,0.04);
  --border:   rgba(255,255,255,0.06);
  --border2:  rgba(255,255,255,0.15);
  --text:     #ffffff;
  --text2:    rgba(255,255,255,0.45);
  --text3:    rgba(255,255,255,0.25);
  --text4:    rgba(255,255,255,0.12);
  /* Vert = signature app iOS (barres, badges, icônes app) */
  --green:    #30d158;
  --green-d:  #25a244;
  --red:      #ff453a;
  --blue:     #0a84ff;
  /* Typo Moda */
  --font:       'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-mono:  'Space Mono', monospace;
  --radius:   16px;
  --shadow:   0 8px 40px rgba(0,0,0,.7);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

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

/* ── Trame de fond (picto pause en filigrane, centré à l'écran) ── */
body::before {
  content: '';
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vmin;
  height: 80vmin;
  max-width: 900px;
  max-height: 900px;
  background: url('/assets/img/btn_pause.png') center/contain no-repeat;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color .2s; }
a:hover { color: #fff; text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ── Typography (Moda) ─────────────────────────────── */

h1 { font-family: var(--font); font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 700; letter-spacing: -.03em; line-height: 1.1; color: var(--text); }
h2 { font-family: var(--font); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; letter-spacing: -.02em; color: var(--text); }
h3 { font-family: var(--font); font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; letter-spacing: -.01em; color: var(--text); }
p  { font-size: 1rem; color: var(--text2); line-height: 1.7; }

/* Section label uppercase (style Moda) */
.section-label {
  font-family: var(--font);
  font-size: .72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,0.3);
  display: block; margin-bottom: 16px;
}

/* Step number (Space Mono) */
.step-number {
  font-family: var(--font-mono);
  font-size: .875rem; font-weight: 700;
  color: rgba(255,255,255,0.2);
}

/* Serif accent */
.serif { font-family: var(--font-serif); }

.text-green { color: var(--green); }
.text-muted { color: var(--text2); }

/* ── Layout ─────────────────────────────────────────── */

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 48px 0; }
.section-sm { padding: 32px 0; }

/* ── Navigation ─────────────────────────────────────── */

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; height: 60px;
  background: rgba(0,0,0,.8);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.1rem; font-weight: 700; color: var(--text);
  text-decoration: none; letter-spacing: -.02em;
}
.nav-logo:hover { text-decoration: none; }

.nav-logo-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-icon img { width: 100%; height: 100%; object-fit: cover; }

.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none;
}
.nav-links a {
  padding: 6px 14px; border-radius: 8px;
  font-size: .9rem; font-weight: 500; color: var(--text2);
  transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text); background: var(--surface); text-decoration: none;
}
.nav-links a.active { color: var(--green); }

.nav-right { display: flex; align-items: center; gap: 12px; }

.lang-switcher { display: flex; gap: 2px; }
.lang-switcher a {
  padding: 4px 8px; border-radius: 6px;
  font-size: .78rem; font-weight: 600; color: var(--text3);
  transition: all .2s;
}
.lang-switcher a:hover { color: var(--text); background: var(--surface); text-decoration: none; }
.lang-switcher a.active { color: var(--green); background: rgba(48,209,88,.1); }

.nav-cta {
  padding: 8px 20px; border-radius: 20px;
  background: #ffffff; color: #000000 !important;
  font-size: .85rem; font-weight: 600;
  transition: background .2s, transform .15s;
  text-decoration: none !important;
}
.nav-cta:hover { background: rgba(255,255,255,0.88); transform: scale(1.03); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 1px; transition: .3s; }

/* ── Buttons ─────────────────────────────────────────── */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 26px;
  font-family: var(--font); font-size: 1rem; font-weight: 600; cursor: pointer;
  border: none; transition: all .2s; text-decoration: none;
}
/* Bouton principal Moda : blanc sur noir */
.btn-primary {
  background: #ffffff; color: #000000;
  border-radius: 26px;
}
.btn-primary:hover {
  background: rgba(255,255,255,0.9); transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,255,255,.15); text-decoration: none; color: #000;
}
/* Outline : transparent + border subtil */
.btn-outline {
  background: rgba(255,255,255,0.02);
  color: var(--text); border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.04);
  color: #fff; text-decoration: none;
}
.btn-sm { padding: 10px 22px; font-size: .875rem; border-radius: 22px; }
/* Bouton vert conservé pour éléments app iOS */
.btn-green { background: var(--green); color: #000; }
.btn-green:hover { background: #3de069; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(48,209,88,.3); }

.appstore-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 26px; border-radius: 26px;
  background: #ffffff; border: none;
  color: #000000; font-weight: 600; text-decoration: none;
  transition: all .2s;
}
.appstore-btn:hover {
  background: rgba(255,255,255,0.9); text-decoration: none;
  transform: translateY(-2px); color: #000;
  box-shadow: 0 8px 32px rgba(255,255,255,.15);
}
.appstore-btn svg { flex-shrink: 0; fill: #000; }
.appstore-btn-text small { display: block; font-size: .7rem; color: rgba(0,0,0,0.6); font-weight: 400; }
.appstore-btn-text strong { font-size: 1rem; color: #000; }

/* ── Hero ─────────────────────────────────────────────── */

.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 100px 0 60px;
  position: relative; overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(48,209,88,.06) 0%, transparent 70%);
}

.hero-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 0;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  right: -100px; top: 50%; transform: translateY(-50%);
  background: radial-gradient(circle, rgba(48,209,88,.04) 0%, transparent 70%);
  border: 1px solid rgba(48,209,88,.06);
}
.hero-orb-2 {
  width: 300px; height: 300px;
  right: 80px; top: 50%; transform: translateY(-60%);
  background: radial-gradient(circle, rgba(48,209,88,.03) 0%, transparent 70%);
  border: 1px solid rgba(48,209,88,.05);
}

.hero-content { position: relative; z-index: 1; max-width: 560px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 20px;
  background: rgba(48,209,88,.1); border: 1px solid rgba(48,209,88,.2);
  font-size: .8rem; font-weight: 600; color: var(--green);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}

.hero h1 { margin-bottom: 20px; white-space: pre-line; }
.hero p   { font-size: 1.125rem; margin-bottom: 36px; max-width: 440px; }

.hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.hero-note { font-size: .8rem; color: var(--text3); }

.hero-visual {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 45%; max-width: 480px;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}

.hero-phone {
  width: 280px; height: 560px;
  background: var(--surface); border-radius: 48px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255,255,255,.04);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.hero-phone-inner {
  width: 100%; height: 100%;
  background: #000;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 20px; padding: 40px 24px;
}
.hero-phone .ph-bars {
  display: flex; gap: 3px; padding: 0 12px;
}
.hero-phone .ph-bar {
  flex: 1; height: 5px; border-radius: 2px; background: var(--green);
  opacity: 0;
  animation: barFill 2.4s ease-in-out infinite;
}
.hero-phone .ph-bar:nth-child(odd)  { animation-delay: calc(var(--i) * .1s); }
.hero-phone .ph-bar:nth-child(even) { animation-delay: calc(var(--i) * .1s + .5s); }
@keyframes barFill {
  0%,100% { opacity: .15; transform: scaleY(1); }
  50%      { opacity: 1;   transform: scaleY(1.4); }
}

.hero-btns-row {
  display: flex; gap: 28px; align-items: center; justify-content: center;
}
.ph-btn { width: 68px; height: 68px; }

/* ── Screenshot placeholder ──────────────────────────── */
.screenshot {
  border-radius: 20px; overflow: hidden;
  background: var(--surface); border: 1px solid var(--border);
  aspect-ratio: 9/19.5;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; color: var(--text3); font-size: .8rem; text-align: center; padding: 16px;
}
.screenshot img { width: 100%; height: 100%; object-fit: cover; }

/* ── Section headers (style Moda) ────────────────────── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-dot {
  display: inline-block;
  font-family: var(--font);
  font-size: .72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}
/* Compat avec l'ancien usage (petit rond vert dans l'app) */
.section-dot-green {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); margin-bottom: 16px;
}
.section-header p { max-width: 520px; margin: 12px auto 0; }

/* ── Feature grid ────────────────────────────────────── */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.feature-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius); padding: 28px;
  transition: border-color .2s, transform .2s, background .2s;
}
.feature-card:hover {
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
  transform: translateY(-4px);
}

.feature-icon {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  background: rgba(48,209,88,.08); border: 1px solid rgba(48,209,88,.15);
}
.feature-icon img { width: 32px; height: 32px; }
.feature-icon-emoji { font-size: 22px; }

.feature-card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.feature-card p  { font-size: .9rem; }

/* ── How it works ────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step { text-align: center; }
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--surface2); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700; color: var(--green);
  margin: 0 auto 20px;
}
.step-screenshot { margin-bottom: 20px; }
.step h3 { margin-bottom: 8px; }

/* ── CTA band ─────────────────────────────────────────── */
.cta-band {
  text-align: center; padding: 80px 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(48,209,88,.04) 50%, transparent 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.cta-band h2 { margin-bottom: 16px; }
.cta-band p  { max-width: 420px; margin: 0 auto 32px; }

/* ── Pricing ─────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.pricing-card {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: 20px; padding: 32px; position: relative;
  transition: transform .2s;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.popular {
  border-color: var(--green);
  background: linear-gradient(180deg, rgba(48,209,88,.06) 0%, var(--surface) 60%);
}
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: #000; padding: 3px 14px; border-radius: 20px;
  font-size: .75rem; font-weight: 700;
}
.pricing-name   { font-size: 1rem; font-weight: 600; color: var(--text2); margin-bottom: 8px; }
.pricing-price  { font-size: 2.4rem; font-weight: 800; letter-spacing: -.04em; margin-bottom: 4px; }
.pricing-desc   { font-size: .85rem; color: var(--text2); margin-bottom: 24px; }
.pricing-sep    { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
.pricing-feats  { list-style: none; margin-bottom: 28px; }
.pricing-feats li {
  padding: 6px 0; font-size: .9rem; color: var(--text2);
  display: flex; align-items: center; gap: 8px;
}
.pricing-feats li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.pricing-feats li.no::before { content: '·'; color: var(--text3); }
.pricing-feats li.no { color: var(--text3); }
.pricing-note { text-align: center; font-size: .8rem; color: var(--text3); margin-top: 32px; }

/* ── Guide ───────────────────────────────────────────── */
.guide-steps { display: flex; flex-direction: column; gap: 0; }
.guide-step {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  padding: 56px 0; border-bottom: 1px solid var(--border);
}
.guide-step:last-child { border-bottom: none; }
.guide-step:nth-child(even) .guide-step-content { order: 2; }
.guide-step:nth-child(even) .guide-step-visual  { order: 1; }
.guide-step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(48,209,88,.1); border: 1px solid rgba(48,209,88,.2);
  font-size: .9rem; font-weight: 700; color: var(--green);
  margin-bottom: 16px;
}
.guide-step h3 { margin-bottom: 12px; }

/* ── Blog ────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .2s, border-color .2s;
}
.blog-card:hover { transform: translateY(-4px); border-color: rgba(48,209,88,.2); }
.blog-card a { text-decoration: none; color: inherit; display: block; height: 100%; }

.blog-card-img {
  height: 180px; background: var(--bg2);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; border-bottom: 1px solid var(--border);
}
.blog-card-body { padding: 20px; }
.blog-cat {
  display: inline-block; padding: 2px 10px; border-radius: 20px;
  font-size: .72rem; font-weight: 700;
  background: rgba(48,209,88,.1); color: var(--green);
  margin-bottom: 10px;
}
.blog-card-body h3 { font-size: 1rem; margin-bottom: 8px; color: var(--text); }
.blog-card-body p  { font-size: .85rem; line-height: 1.5; color: var(--text2); margin-bottom: 16px; }
.blog-meta { display: flex; align-items: center; gap: 10px; font-size: .78rem; color: var(--text3); }

/* Article */
.article-header { padding: 120px 0 48px; }
.article-header .blog-cat { margin-bottom: 16px; }
.article-header h1 { margin-bottom: 20px; }
.article-meta { display: flex; gap: 16px; font-size: .85rem; color: var(--text2); margin-top: 16px; }
.article-body {
  max-width: 720px; margin: 0 auto;
  font-size: 1.0625rem; line-height: 1.8; color: var(--text2);
}
.article-body h2 { color: var(--text); font-size: 1.5rem; margin: 40px 0 16px; }
.article-body h3 { color: var(--text); font-size: 1.15rem; margin: 28px 0 12px; }
.article-body p  { color: var(--text2); margin-bottom: 20px; }
.article-body ul { padding-left: 24px; margin-bottom: 20px; }
.article-body li { margin-bottom: 8px; color: var(--text2); }
.article-body strong { color: var(--text); }
.article-body blockquote {
  border-left: 3px solid var(--green); padding: 16px 20px;
  margin: 28px 0; background: rgba(48,209,88,.04); border-radius: 0 8px 8px 0;
}
.article-body blockquote p { color: var(--text); font-style: italic; margin: 0; }
.article-tip {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px 24px; margin: 28px 0;
  display: flex; gap: 12px; align-items: flex-start;
}
.article-tip .tip-icon { font-size: 1.2rem; flex-shrink: 0; }
.article-tip p { margin: 0; color: var(--text2); }

/* ── Privacy / Support ───────────────────────────────── */
.legal-content { max-width: 720px; margin: 0 auto; }
.legal-content h2 { font-size: 1.3rem; margin: 32px 0 12px; color: var(--text); }
.legal-content p, .legal-content li { color: var(--text2); margin-bottom: 12px; font-size: .95rem; }
.legal-content ul { padding-left: 20px; margin-bottom: 16px; }
.legal-content a { color: var(--green); }

.faq { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border); padding: 0;
  overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left; padding: 20px 0;
  background: none; border: none; color: var(--text);
  font-size: 1rem; font-weight: 600; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-icon { color: var(--green); font-size: 1.2rem; flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { padding: 0 0 20px; color: var(--text2); font-size: .95rem; }

.contact-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px; text-align: center;
  margin-top: 48px;
}
.contact-card h3 { margin-bottom: 8px; }
.contact-card p  { margin-bottom: 16px; }
.contact-email {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 1.1rem; font-weight: 600; color: var(--green);
}

/* ── Page header ─────────────────────────────────────── */
.page-header {
  padding: 120px 0 56px; text-align: center;
  background: linear-gradient(180deg, rgba(48,209,88,.03) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
}
.page-header h1 { margin-bottom: 12px; }
.page-header p  { font-size: 1.1rem; max-width: 540px; margin: 0 auto; }
.page-header .updated { font-size: .8rem; color: var(--text3); margin-top: 8px; }

/* ── Footer ──────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px;
  margin-bottom: 40px;
}
.footer-brand p { font-size: .875rem; color: var(--text2); margin-top: 8px; max-width: 240px; }
.footer-brand .nav-logo { margin-bottom: 12px; }
.footer-col h4 { font-size: .8rem; font-weight: 700; color: var(--text2); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a  { font-size: .875rem; color: var(--text3); }
.footer-col a:hover { color: var(--text); text-decoration: none; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--border);
  font-size: .8rem; color: var(--text3);
}

/* ── Mobile nav ──────────────────────────────────────── */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,.96); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  padding: 80px 24px 40px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  width: 100%; text-align: center; padding: 14px;
  font-size: 1.3rem; font-weight: 600; color: var(--text2);
  border-radius: var(--radius); transition: .2s;
}
.mobile-nav a:hover { color: var(--text); background: var(--surface); text-decoration: none; }
.mobile-nav .nav-cta { width: auto; margin-top: 16px; }
.mobile-lang { display: flex; gap: 12px; margin-top: 24px; }

/* ── Utilities ───────────────────────────────────────── */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.mt-4  { margin-top: 1rem; }
.mt-8  { margin-top: 2rem; }
.mb-4  { margin-bottom: 1rem; }
.flex  { display: flex; }
.gap-2 { gap: .5rem; }
.gap-3 { gap: .75rem; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }

/* ── Responsive ──────────────────────────────────────── */

@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps         { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid  { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .blog-grid     { grid-template-columns: repeat(2, 1fr); }
  .footer-inner  { grid-template-columns: 1fr 1fr; gap: 24px; }
  .guide-step    { grid-template-columns: 1fr; }
  .guide-step:nth-child(even) .guide-step-content,
  .guide-step:nth-child(even) .guide-step-visual  { order: unset; }
}

@media (max-width: 680px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .lang-switcher { display: none; }
  .hero { padding-top: 80px; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero p { margin: 0 auto 32px; }
  .hero-actions { align-items: center; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .blog-grid     { grid-template-columns: 1fr; }
  .footer-inner  { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  h1 { font-size: 2.2rem; }
}
