/* ============================================================
   TAKE ME TO AZERBAIJAN — MASTER DESIGN SYSTEM
   "Land of Fire" — dark luxury travel aesthetic
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500&family=DM+Mono&display=swap');

/* ——— CSS Variables ——— */
:root {
  --bg:        #09090F;
  --bg2:       #0F1018;
  --bg3:       #141825;
  --bg4:       #1C2030;
  --text:      #F0EBE0;
  --text2:     #9B9589;
  --text3:     #5C5850;
  --fire:      #E85C2B;
  --fire2:     #C94B1E;
  --gold:      #C9973A;
  --gold2:     #A87A28;
  --gold-pale: #F0C96A;
  --teal:      #1A7A5E;
  --border:    rgba(255,255,255,0.07);
  --border2:   rgba(255,255,255,0.13);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'DM Mono', monospace;

  --r-sm:  6px;
  --r-md:  10px;
  --r-lg:  16px;
  --r-xl:  24px;

  --max-w: 1200px;
  --nav-h: 72px;

  --ease: cubic-bezier(.22,.68,0,1.2);
}

/* ——— Reset ——— */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: inherit; }
ul, ol { list-style: none; }

/* ——— Typography ——— */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; }
p  { color: var(--text2); line-height: 1.75; }

.display-italic { font-style: italic; }
.accent-fire  { color: var(--fire); }
.accent-gold  { color: var(--gold); }
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ——— Layout ——— */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section    { padding: 7rem 0; }
.section-sm { padding: 4rem 0; }
.grid-2  { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3  { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4  { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }

/* ——— NAV ——— */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .3s, backdrop-filter .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(9,9,15,0.92);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
  width: 100%;
  display: flex; align-items: center; gap: 2.5rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 700;
  color: var(--text);
  white-space: nowrap; flex-shrink: 0;
}
.nav-logo em { font-style: normal; color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 0.25rem; flex: 1; }
.nav-link {
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem; font-weight: 400;
  color: var(--text2);
  border-radius: var(--r-sm);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--text); background: var(--border); }
.nav-right { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.nav-lang {
  font-size: 0.8rem; color: var(--text3);
  padding: 0.3rem 0.6rem;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  cursor: pointer; transition: border-color .2s, color .2s;
}
.nav-lang:hover { border-color: var(--border2); color: var(--text2); }
.nav-cta {
  padding: 0.5rem 1.25rem;
  background: var(--fire);
  color: #fff;
  border-radius: var(--r-sm);
  font-size: 0.85rem; font-weight: 500;
  transition: background .2s, transform .15s;
  cursor: pointer;
}
.nav-cta:hover { background: var(--fire2); transform: translateY(-1px); }

/* ——— BUTTONS ——— */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 0.9rem; font-weight: 500;
  cursor: pointer; transition: all .2s;
  border: none; white-space: nowrap;
}
.btn-fire { background: var(--fire); color: #fff; }
.btn-fire:hover { background: var(--fire2); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--text2);
  border: 1px solid var(--border2);
}
.btn-outline:hover { border-color: var(--text3); color: var(--text); }
.btn-gold { background: var(--gold); color: #0a0a0f; font-weight: 500; }
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: var(--gold);
  border: 1px solid rgba(201,151,58,0.35);
  padding: 0.6rem 1.25rem; font-size: 0.82rem;
}
.btn-ghost:hover { background: rgba(201,151,58,0.08); border-color: var(--gold); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-sm { padding: 0.55rem 1.25rem; font-size: 0.8rem; }

/* Arrow icon inside buttons */
.btn .arrow { font-size: 1rem; transition: transform .2s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ——— HERO ——— */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center;
  position: relative;
  padding: calc(var(--nav-h) + 3rem) 2rem 4rem;
  background: var(--bg);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('/images/hero-baku-night.jpg');
  background-size: cover; background-position: center;
  opacity: 0.22;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(9,9,15,0.4) 0%, rgba(9,9,15,0.7) 60%, rgba(9,9,15,1) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 820px; }
.hero-eyebrow { margin-bottom: 1.5rem; }
.hero h1 { margin-bottom: 1.25rem; }
.hero-sub {
  font-size: 1.1rem; color: var(--text2);
  max-width: 540px; margin: 0 auto 2.5rem;
  line-height: 1.75;
}
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  font-size: 0.7rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text3); display: flex; flex-direction: column; align-items: center; gap: 6px;
  animation: bobble 2.5s ease-in-out infinite;
}
.hero-scroll::after { content: '↓'; font-size: 1rem; color: var(--gold); }
@keyframes bobble { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ——— STATS BAR ——— */
.stats-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}
.stats-bar-inner {
  display: flex; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.stat-item {
  text-align: center; padding: 0 3rem;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 700;
  color: var(--gold); line-height: 1;
  display: block; margin-bottom: 0.3rem;
}
.stat-label { font-size: 0.78rem; color: var(--text3); letter-spacing: .04em; }

/* ——— SECTION HEADERS ——— */
.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header .eyebrow { margin-bottom: 0.75rem; display: block; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { font-size: 1.05rem; max-width: 520px; }
.section-header.center p { margin: 0 auto; }
.gold-rule {
  width: 48px; height: 2px; background: var(--gold);
  display: block; margin: 1.2rem 0 0;
}
.section-header.center .gold-rule { margin: 1.2rem auto 0; }

/* ——— DESTINATION CARDS ——— */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 10px;
}
.dest-card {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg);
  cursor: pointer;
  background: var(--bg3);
  border: 1px solid var(--border);
}
.dest-card:first-child { grid-row: span 2; }
.dest-card-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .5s ease;
  opacity: 0.55;
}
.dest-card:hover .dest-card-img { transform: scale(1.06); opacity: 0.7; }
.dest-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(9,9,15,.85) 0%, rgba(9,9,15,.1) 60%);
}
.dest-card-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
}
.dest-card h3 {
  font-size: 1.4rem; color: var(--text);
  margin-bottom: 0.3rem;
}
.dest-card-sub { font-size: 0.8rem; color: var(--text2); }
.dest-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.78rem; color: var(--gold);
  margin-top: 0.6rem;
  opacity: 0; transform: translateY(6px);
  transition: opacity .25s, transform .25s;
}
.dest-card:hover .dest-card-link { opacity: 1; transform: translateY(0); }

/* ——— HOW IT WORKS ——— */
.steps-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.step-item {
  position: relative;
  padding: 2rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: border-color .25s;
}
.step-item:hover { border-color: var(--border2); }
.step-num {
  font-family: var(--font-mono);
  font-size: 3rem; font-weight: 400;
  color: var(--fire); opacity: 0.3;
  line-height: 1; margin-bottom: 1.25rem;
  display: block;
}
.step-item h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.step-connector {
  position: absolute; top: 50%; right: -1rem;
  width: 2rem; height: 1px;
  background: var(--border2);
  z-index: 1;
}
.step-connector::after {
  content: '→'; position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%);
  font-size: 0.75rem; color: var(--text3);
}

/* ——— TOUR CARDS ——— */
.tour-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color .25s, transform .25s;
}
.tour-card:hover { border-color: var(--border2); transform: translateY(-4px); }
.tour-card-img {
  height: 200px;
  background-size: cover; background-position: center;
  background-color: var(--bg3);
  position: relative;
}
.tour-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--bg); border: 1px solid var(--border2);
  padding: 0.3rem 0.7rem;
  border-radius: var(--r-sm);
  font-size: 0.72rem; color: var(--gold);
  font-weight: 500; letter-spacing: .04em;
}
.tour-card-body { padding: 1.5rem; }
.tour-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.tour-meta {
  display: flex; gap: 1rem; margin-bottom: 1rem; flex-wrap: wrap;
}
.tour-meta-item {
  font-size: 0.78rem; color: var(--text3);
  display: flex; align-items: center; gap: 4px;
}
.tour-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
}
.tour-price { font-family: var(--font-mono); font-size: 1.05rem; color: var(--text); }
.tour-price span { font-size: 0.75rem; color: var(--text3); font-family: var(--font-body); }

/* ——— TRUST FEATURES ——— */
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.feature-item {
  padding: 1.75rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: border-color .25s;
}
.feature-item:hover { border-color: var(--border2); }
.feature-icon {
  width: 42px; height: 42px;
  background: rgba(232,92,43,0.1);
  border: 1px solid rgba(232,92,43,0.2);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 1.25rem;
  color: var(--fire);
}
.feature-item h4 { font-size: 1.05rem; margin-bottom: 0.4rem; color: var(--text); }

/* ——— TESTIMONIALS ——— */
.testimonial-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
}
.testimonial-stars {
  color: var(--gold); font-size: 0.85rem;
  margin-bottom: 1rem; letter-spacing: 2px;
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.1rem; font-style: italic;
  color: var(--text); line-height: 1.65;
  margin-bottom: 1.5rem;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg4);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; color: var(--gold);
  border: 1px solid var(--border2); flex-shrink: 0;
}
.testimonial-name { font-size: 0.85rem; color: var(--text); font-weight: 500; }
.testimonial-origin { font-size: 0.75rem; color: var(--text3); }

/* ——— LANGUAGES SECTION ——— */
.lang-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-top: 2rem; }
.lang-pill {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.82rem; color: var(--text2);
  transition: border-color .2s, color .2s;
}
.lang-pill:hover { border-color: var(--border2); color: var(--text); }
.lang-pill .flag { font-size: 1rem; }

/* ——— BLOG CARDS ——— */
.blog-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color .25s, transform .25s;
}
.blog-card:hover { border-color: var(--border2); transform: translateY(-3px); }
.blog-card-img {
  height: 200px;
  background-size: cover; background-position: center;
  background-color: var(--bg3);
}
.blog-card-body { padding: 1.5rem; }
.blog-tag {
  font-size: 0.68rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.6rem; display: block;
}
.blog-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.blog-card-meta { font-size: 0.75rem; color: var(--text3); margin-top: 1rem; }
.blog-read-more {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.8rem; color: var(--gold); margin-top: 1rem;
  transition: gap .2s;
}
.blog-card:hover .blog-read-more { gap: 8px; }

/* ——— CTA BAND ——— */
.cta-band {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 0;
  text-align: center;
}
.cta-band h2 { margin-bottom: 1rem; }
.cta-band p { max-width: 500px; margin: 0 auto 2.5rem; }
.whatsapp-btn {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 1rem 2.25rem;
  background: #25D366;
  color: #fff; border-radius: var(--r-sm);
  font-size: 1rem; font-weight: 500;
  transition: background .2s, transform .2s;
}
.whatsapp-btn:hover { background: #1fb558; transform: translateY(-2px); }
.whatsapp-icon { width: 22px; height: 22px; }

/* ——— FOOTER ——— */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand { max-width: 280px; }
.footer-logo {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  margin-bottom: 1rem; color: var(--text);
}
.footer-logo em { font-style: normal; color: var(--gold); }
.footer-tagline { font-size: 0.85rem; color: var(--text3); line-height: 1.65; }
.footer-socials { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
.footer-social {
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--text3);
  transition: border-color .2s, color .2s;
}
.footer-social:hover { border-color: var(--border2); color: var(--text2); }
.footer-col h4 {
  font-family: var(--font-body); font-size: 0.72rem;
  font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text3); margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-link { font-size: 0.85rem; color: var(--text2); transition: color .2s; }
.footer-link:hover { color: var(--gold); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem; color: var(--text3);
  flex-wrap: wrap; gap: 1rem;
}
.footer-langs { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.footer-lang-link { font-size: 0.72rem; color: var(--text3); transition: color .2s; }
.footer-lang-link:hover { color: var(--gold); }

/* ——— BREADCRUMBS ——— */
.breadcrumb {
  padding: 1rem 0;
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; color: var(--text3);
}
.breadcrumb a { color: var(--text3); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { opacity: 0.4; }
.breadcrumb .current { color: var(--text2); }

/* ——— FLOATING WHATSAPP ——— */
.float-wa {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 50;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform .2s;
}
.float-wa:hover { transform: scale(1.1); }
.float-wa svg { width: 28px; height: 28px; fill: #fff; }

/* ——— PAGE HERO (inner pages) ——— */
.page-hero {
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.15;
}
.page-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, var(--bg) 0%, rgba(9,9,15,0.5) 50%, var(--bg) 100%);
}
.page-hero-content { position: relative; z-index: 1; max-width: 700px; }

/* ——— PROSE (blog posts) ——— */
.prose {
  max-width: 740px; margin: 0 auto;
  font-size: 1.05rem; line-height: 1.85;
  color: var(--text2);
}
.prose h2 {
  font-size: 1.8rem; color: var(--text);
  margin: 3rem 0 1rem;
}
.prose h3 { font-size: 1.35rem; color: var(--text); margin: 2rem 0 0.75rem; }
.prose p { margin-bottom: 1.5rem; }
.prose a { color: var(--gold); border-bottom: 1px solid rgba(201,151,58,0.3); transition: border-color .2s; }
.prose a:hover { border-bottom-color: var(--gold); }
.prose ul { margin: 1.25rem 0 1.5rem 1.5rem; list-style: disc; }
.prose li { margin-bottom: 0.5rem; }
.prose blockquote {
  border-left: 3px solid var(--gold);
  padding: 0.75rem 1.5rem;
  margin: 2rem 0;
  background: var(--bg2);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-family: var(--font-display); font-style: italic; font-size: 1.15rem;
  color: var(--text);
}
.prose img { border-radius: var(--r-lg); margin: 2rem 0; }
.prose .callout {
  background: rgba(232,92,43,0.07);
  border: 1px solid rgba(232,92,43,0.2);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  color: var(--text2);
}

/* ——— UTILITY ——— */
.text-center { text-align: center; }
.text-gold    { color: var(--gold); }
.text-fire    { color: var(--fire); }
.text-muted   { color: var(--text2); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.d-flex { display: flex; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.align-center { align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.divider { height: 1px; background: var(--border); margin: 2rem 0; }

/* ——— RESPONSIVE ——— */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .dest-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
  .dest-card:first-child { grid-row: span 1; }
}

@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }
  .section { padding: 4rem 0; }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }
  .grid-2, .grid-3, .steps-row, .feature-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr; }
  .stats-bar-inner { gap: 0; }
  .stat-item { padding: 0.75rem 1.5rem; border-right: none; border-bottom: 1px solid var(--border); width: 50%; }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { max-width: 100%; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-lg { width: 100%; justify-content: center; }
  h1 { font-size: 2rem; }
}
