/* ================================================================
   EasyR Catch — Global Styles
   Nomad-themed. Warm, editorial, energetic.
================================================================ */

:root {
  /* Palette */
  --cream: #FBF5EA;
  --cream-2: #F3E9D3;
  --ink: #0E1420;
  --ink-2: #1A2233;
  --coral: #FF6B4A;
  --sunset: #FFA24C;
  --amber: #FFD166;
  --teal: #12B5A5;
  --deep-teal: #0B6E67;
  --lilac: #B8A4E3;
  --white: #FFFFFF;
  --shadow: 0 20px 60px -20px rgba(14, 20, 32, 0.25);
  --shadow-lg: 0 40px 80px -30px rgba(14, 20, 32, 0.35);
  --radius: 22px;
  --radius-sm: 12px;
  --radius-lg: 36px;

  --gradient-sunset: linear-gradient(120deg, #FF6B4A 0%, #FFA24C 45%, #FFD166 100%);
  --gradient-nomad: radial-gradient(ellipse at top left, #FFB37B 0%, transparent 55%),
                    radial-gradient(ellipse at bottom right, #12B5A5 0%, transparent 55%),
                    linear-gradient(180deg, #FBF5EA 0%, #F3E9D3 100%);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --container: 1200px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ============ Typography ============ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
}

h1 { font-size: clamp(2.6rem, 6vw, 5.5rem); font-variation-settings: "SOFT" 50, "WONK" 0; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.3vw, 1.9rem); }
h4 { font-size: 1.15rem; letter-spacing: -0.01em; }

p { font-size: 1.05rem; line-height: 1.6; color: rgba(14, 20, 32, 0.78); }
.lead { font-size: clamp(1.1rem, 1.4vw, 1.3rem); line-height: 1.5; color: rgba(14, 20, 32, 0.78); }

em { font-style: italic; font-family: var(--font-display); color: var(--coral); font-weight: 400; }

/* ============ Layout ============ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

section { padding: clamp(72px, 10vw, 140px) 0; position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--deep-teal);
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(18, 181, 165, 0.1);
  border: 1px solid rgba(18, 181, 165, 0.2);
  margin-bottom: 24px;
}
.eyebrow.on-dark { color: var(--amber); background: rgba(255, 209, 102, 0.12); border-color: rgba(255, 209, 102, 0.24); }

/* ============ Navigation ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 0;
  background: rgba(251, 245, 234, 0.82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(14, 20, 32, 0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--gradient-sunset);
  display: grid; place-items: center;
  color: white; font-weight: 700; font-family: var(--font-body);
  box-shadow: 0 6px 18px -6px rgba(255, 107, 74, 0.65);
  position: relative;
}
.brand-mark::after {
  content: ""; position: absolute; inset: 3px;
  border-radius: 8px;
  border: 1.5px dashed rgba(255,255,255,0.55);
}
.nav-links {
  display: flex; align-items: center; gap: 6px;
  list-style: none;
}
.nav-links a {
  display: inline-block;
  padding: 10px 14px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-links a:hover { background: rgba(14, 20, 32, 0.06); }
.nav-links a.active { background: var(--ink); color: var(--cream); }
.nav-cta {
  padding: 11px 20px !important;
  background: var(--ink);
  color: var(--cream) !important;
  border-radius: 999px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--coral) !important; }

.nav-toggle {
  display: none;
  background: var(--ink);
  border: none;
  width: 44px;
  height: 44px;
  padding: 12px 11px;
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
  color: var(--cream);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  font-family: var(--font-body);
  line-height: 1;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 12px 30px -12px rgba(14, 20, 32, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--coral); box-shadow: 0 18px 40px -14px rgba(255, 107, 74, 0.6); }
.btn-sunset {
  background: var(--gradient-sunset);
  color: var(--ink);
  box-shadow: 0 14px 30px -10px rgba(255, 107, 74, 0.55);
}
.btn-sunset:hover { transform: translateY(-2px); box-shadow: 0 22px 50px -14px rgba(255, 107, 74, 0.65); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(14, 20, 32, 0.16);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn-lg { padding: 20px 32px; font-size: 1.05rem; }

/* App store buttons */
.app-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.app-badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 20px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 16px;
  transition: transform 0.2s ease, background 0.2s ease;
  min-width: 175px;
}
.app-badge:hover { transform: translateY(-2px); background: var(--coral); }
.app-badge .badge-icon { width: 26px; height: 26px; flex-shrink: 0; }
.app-badge .badge-text { display: flex; flex-direction: column; line-height: 1.15; }
.app-badge .badge-text small { font-size: 10px; opacity: 0.8; letter-spacing: 0.08em; text-transform: uppercase; }
.app-badge .badge-text strong { font-size: 1.05rem; font-weight: 600; }

/* ============ Hero ============ */
.hero {
  position: relative;
  padding: clamp(60px, 8vw, 110px) 0 clamp(70px, 9vw, 130px);
  background: var(--gradient-nomad);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 60px;
}
.hero-headline { margin-bottom: 22px; }
.hero-headline em { display: inline-block; }
.hero-copy .lead { margin-bottom: 32px; max-width: 540px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 32px; }
.hero-meta {
  display: flex; gap: 24px; flex-wrap: wrap;
  padding-top: 24px; border-top: 1px solid rgba(14, 20, 32, 0.08);
  color: rgba(14, 20, 32, 0.62);
  font-size: 0.9rem;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta strong { color: var(--ink); font-size: 1.15rem; font-family: var(--font-display); }

/* Hero visual — phone mockup */
.hero-visual { position: relative; display: grid; place-items: center; }
.phone {
  width: 300px;
  height: 610px;
  border-radius: 46px;
  background: var(--ink);
  padding: 14px;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: rotate(-4deg);
  transition: transform 0.4s ease;
}
.phone:hover { transform: rotate(-2deg) translateY(-6px); }
.phone::before {
  content: ""; position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 22px; background: var(--ink-2); border-radius: 999px; z-index: 2;
}
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 34px;
  background: linear-gradient(180deg, #FFF3E4 0%, #FCE1CC 100%);
  overflow: hidden;
  position: relative;
  padding: 44px 18px 18px;
}
.phone-app-header {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px;
}
.phone-city { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; }
.phone-avatar { width: 32px; height: 32px; border-radius: 999px; background: var(--gradient-sunset); }
.phone-search {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 0.85rem;
  color: rgba(14, 20, 32, 0.55);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.phone-chips { display: flex; gap: 6px; margin-bottom: 16px; flex-wrap: wrap; }
.phone-chip {
  font-size: 0.7rem; padding: 6px 10px; border-radius: 999px;
  background: rgba(255,255,255,0.6); font-weight: 500;
}
.phone-chip.active { background: var(--ink); color: var(--cream); }
.phone-card {
  background: white; border-radius: 16px; padding: 14px;
  margin-bottom: 10px; display: flex; gap: 12px; align-items: center;
  box-shadow: 0 8px 24px -12px rgba(14, 20, 32, 0.18);
}
.phone-card-img {
  width: 52px; height: 52px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--coral), var(--amber));
}
.phone-card-img.teal { background: linear-gradient(135deg, var(--teal), var(--deep-teal)); }
.phone-card-img.lilac { background: linear-gradient(135deg, var(--lilac), var(--coral)); }
.phone-card-body { flex: 1; min-width: 0; }
.phone-card-title { font-size: 0.85rem; font-weight: 600; }
.phone-card-meta { font-size: 0.7rem; color: rgba(14, 20, 32, 0.55); margin-top: 2px; }
.phone-card-discount {
  font-family: var(--font-display); font-weight: 500;
  font-size: 1.15rem; color: var(--coral);
}

/* Floating stickers around phone */
.sticker {
  position: absolute;
  background: white;
  padding: 10px 14px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  animation: float 6s ease-in-out infinite;
}
.sticker .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--teal); }
.sticker-1 { top: 12%; left: -12%; animation-delay: 0s; }
.sticker-2 { top: 30%; right: -18%; animation-delay: 1.5s; background: var(--ink); color: var(--cream); }
.sticker-3 { bottom: 18%; left: -8%; animation-delay: 3s; background: var(--amber); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Hero decorative shapes */
.hero-blob {
  position: absolute; border-radius: 50%; filter: blur(50px);
  opacity: 0.35; pointer-events: none;
}
.hero-blob.b1 { width: 380px; height: 380px; background: var(--coral); top: -100px; right: -80px; }
.hero-blob.b2 { width: 320px; height: 320px; background: var(--teal); bottom: -120px; left: -80px; }

/* ============ Marquee ============ */
.marquee {
  padding: 22px 0;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex; gap: 60px;
  white-space: nowrap;
  animation: scroll 30s linear infinite;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  align-items: center;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 60px; }
.marquee-track .dot { display: inline-block; width: 8px; height: 8px; border-radius: 999px; background: var(--coral); }
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ Sections ============ */
.section-head {
  max-width: 720px; margin-bottom: 60px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin-bottom: 18px; }
.section-head p { font-size: 1.15rem; }

/* ============ How it works — timeline ============ */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.step {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  background: var(--gradient-sunset);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
  font-weight: 500;
}
.step h3 { margin-bottom: 10px; }
.step p { font-size: 0.98rem; }

/* ============ City grid ============ */
.city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.city-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  padding: 24px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  transition: transform 0.3s ease;
  isolation: isolate;
}
.city-card::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
}
.city-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(14, 20, 32, 0) 0%, rgba(14, 20, 32, 0.75) 100%);
}
.city-card:hover { transform: translateY(-6px); }
.city-card h3 { color: white; margin-bottom: 4px; }
.city-card p { color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.city-tag {
  position: absolute; top: 20px; left: 20px;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 12px; background: rgba(255,255,255,0.2); backdrop-filter: blur(8px);
  border-radius: 999px; font-weight: 600;
}

.city-card.delhi::before { background: linear-gradient(160deg, #FF6B4A 0%, #B8377A 100%); }
.city-card.tbilisi::before { background: linear-gradient(160deg, #FFA24C 0%, #B8377A 60%, #4C1D95 100%); }
.city-card.budapest::before { background: linear-gradient(160deg, #12B5A5 0%, #0B6E67 100%); }
.city-card.bali::before { background: linear-gradient(160deg, #FFD166 0%, #FF6B4A 100%); }
.city-card.lisbon::before { background: linear-gradient(160deg, #B8A4E3 0%, #4C1D95 100%); }
.city-card.mexicocity::before { background: linear-gradient(160deg, #FF6B4A 0%, #FFA24C 100%); }
.city-card.chiangmai::before { background: linear-gradient(160deg, #12B5A5 0%, #FFA24C 100%); }
.city-card.medellin::before { background: linear-gradient(160deg, #B8377A 0%, #0B6E67 100%); }

/* ============ Feature split ============ */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.feature.reverse { direction: rtl; }
.feature.reverse > * { direction: ltr; }
.feature-visual {
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 5;
  background: var(--gradient-sunset);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.feature-visual.teal { background: linear-gradient(135deg, var(--teal), var(--deep-teal)); }
.feature-visual.ink { background: linear-gradient(135deg, var(--ink), var(--ink-2)); }
.feature-visual::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.15), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1), transparent 40%);
}
.feature-copy h2 { margin-bottom: 20px; }
.feature-list {
  list-style: none; margin-top: 28px;
}
.feature-list li {
  padding: 14px 0; border-top: 1px solid rgba(14, 20, 32, 0.09);
  display: flex; gap: 14px; align-items: flex-start;
}
.feature-list li:last-child { border-bottom: 1px solid rgba(14, 20, 32, 0.09); }
.feature-list .check {
  width: 24px; height: 24px; border-radius: 999px;
  background: var(--gradient-sunset);
  display: grid; place-items: center; flex-shrink: 0;
  margin-top: 2px;
}
.feature-list .check svg { width: 12px; height: 12px; }
.feature-list strong { font-family: var(--font-display); font-weight: 500; font-size: 1.05rem; display: block; margin-bottom: 2px; }
.feature-list p { font-size: 0.95rem; margin: 0; }

/* Passport visual */
.passport {
  position: absolute; inset: 24px;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px 28px;
  color: var(--ink);
  display: flex; flex-direction: column;
  transform: rotate(-2deg);
  box-shadow: 0 30px 60px -20px rgba(14, 20, 32, 0.35);
}
.passport-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-bottom: 20px; border-bottom: 2px dashed rgba(14, 20, 32, 0.15);
  margin-bottom: 22px;
}
.passport-header h4 {
  font-family: var(--font-display); font-size: 1.1rem;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.passport-stamps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; flex: 1; align-content: center; }
.stamp {
  aspect-ratio: 1;
  border: 2px dashed rgba(14, 20, 32, 0.25);
  border-radius: 999px;
  display: grid; place-items: center;
  text-align: center;
  padding: 8px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: rgba(14, 20, 32, 0.65);
  transform: rotate(-6deg);
  transition: transform 0.3s ease;
}
.stamp:nth-child(2n) { transform: rotate(4deg); }
.stamp:nth-child(3n) { transform: rotate(-2deg); }
.stamp.filled { background: var(--coral); color: white; border-style: solid; border-color: var(--coral); }
.stamp.filled.teal { background: var(--teal); border-color: var(--teal); }
.stamp.filled.amber { background: var(--amber); border-color: var(--amber); color: var(--ink); }

/* ============ Stats band ============ */
.stats {
  background: var(--ink);
  color: var(--cream);
}
.stats h2 { color: var(--cream); }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
  margin-top: 60px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1;
  background: var(--gradient-sunset);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.95rem;
  color: rgba(251, 245, 234, 0.75);
  max-width: 200px;
}

/* ============ Testimonials ============ */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.quote {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
  display: flex; flex-direction: column;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 4rem; line-height: 0.8;
  color: var(--coral);
  margin-bottom: 12px;
}
.quote p { flex: 1; margin-bottom: 20px; font-size: 1rem; color: var(--ink); }
.quote-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 20px; border-top: 1px solid rgba(14, 20, 32, 0.08);
}
.quote-avatar { width: 42px; height: 42px; border-radius: 999px; background: var(--gradient-sunset); flex-shrink: 0; }
.quote-avatar.teal { background: linear-gradient(135deg, var(--teal), var(--deep-teal)); }
.quote-avatar.lilac { background: linear-gradient(135deg, var(--lilac), var(--coral)); }
.quote-name { font-weight: 600; font-size: 0.95rem; }
.quote-role { font-size: 0.85rem; color: rgba(14, 20, 32, 0.6); }

/* ============ FAQ ============ */
.faq-grid { display: grid; gap: 12px; max-width: 820px; margin: 0 auto; }
.faq-item {
  background: white;
  border-radius: 18px;
  padding: 22px 28px;
  box-shadow: 0 8px 24px -14px rgba(14, 20, 32, 0.2);
  cursor: pointer;
  transition: box-shadow 0.2s ease;
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-item summary {
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.6rem; font-weight: 300; color: var(--coral);
  transition: transform 0.25s ease;
  line-height: 1;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin-top: 14px; font-size: 1rem; }

/* ============ CTA band ============ */
.cta-band {
  background: var(--gradient-sunset);
  border-radius: var(--radius-lg);
  padding: clamp(50px, 8vw, 90px);
  text-align: center;
  color: var(--ink);
  position: relative;
  overflow: hidden;
  margin: 0 28px;
}
.cta-band h2 { max-width: 800px; margin: 0 auto 20px; }
.cta-band p { max-width: 620px; margin: 0 auto 30px; color: rgba(14, 20, 32, 0.8); }
.cta-band .btn-primary { background: var(--ink); }
.cta-band .btn-primary:hover { background: var(--cream); color: var(--ink); }

/* ============ Vendor page: pricing card ============ */
.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 960px; margin: 0 auto;
}
.pricing-card {
  background: white;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.pricing-card.featured {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  transform: scale(1.02);
}
.pricing-card.featured h3, .pricing-card.featured h2 { color: var(--cream); }
.pricing-card .price {
  font-family: var(--font-display);
  font-size: 4.5rem; line-height: 1;
  font-weight: 500;
  margin: 20px 0 4px;
}
.pricing-card.featured .price {
  background: var(--gradient-sunset);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.pricing-card .price-note { font-size: 0.9rem; color: rgba(14, 20, 32, 0.6); margin-bottom: 24px; }
.pricing-card.featured .price-note { color: rgba(251, 245, 234, 0.6); }
.pricing-list { list-style: none; margin: 20px 0; flex: 1; }
.pricing-list li {
  padding: 10px 0;
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.98rem;
}
.pricing-list li::before { content: "✓"; color: var(--coral); font-weight: 700; }
.pricing-card.featured .pricing-list li::before { color: var(--amber); }

/* Ribbon */
.ribbon {
  position: absolute; top: 24px; right: 24px;
  padding: 6px 12px; background: var(--gradient-sunset);
  border-radius: 999px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink);
}

/* ============ Partners page: ecosystem diagram ============ */
.ecosystem {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.eco-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
}
.eco-icon {
  width: 68px; height: 68px; border-radius: 22px;
  margin: 0 auto 18px;
  background: var(--gradient-sunset);
  display: grid; place-items: center;
  color: white;
  box-shadow: 0 14px 30px -12px rgba(255, 107, 74, 0.5);
}
.eco-icon.teal { background: linear-gradient(135deg, var(--teal), var(--deep-teal)); box-shadow: 0 14px 30px -12px rgba(18, 181, 165, 0.55); }
.eco-icon.ink { background: var(--ink); box-shadow: 0 14px 30px -12px rgba(14, 20, 32, 0.55); }
.eco-icon svg { width: 32px; height: 32px; }
.eco-card h3 { margin-bottom: 10px; }
.eco-card p { font-size: 0.95rem; }

/* Contact form */
.contact-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 68px);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px; margin: 0 auto;
}
.contact-info h2 { margin-bottom: 20px; }
.contact-info .contact-list { list-style: none; margin-top: 32px; }
.contact-info .contact-list li { padding: 10px 0; display: flex; gap: 12px; align-items: center; font-size: 0.95rem; }
.contact-info .contact-list .ico {
  width: 34px; height: 34px; border-radius: 10px;
  background: rgba(255, 107, 74, 0.12); color: var(--coral);
  display: grid; place-items: center;
}
.contact-form { display: grid; gap: 16px; }
.field { display: grid; gap: 6px; }
.field label {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 600; color: rgba(14, 20, 32, 0.65);
}
.field input, .field textarea, .field select {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1.5px solid rgba(14, 20, 32, 0.12);
  font-size: 1rem;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--coral); background: white;
}
.field textarea { resize: vertical; min-height: 110px; }

/* ============ Footer ============ */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(251, 245, 234, 0.12);
}
.footer-brand p { color: rgba(251, 245, 234, 0.65); margin: 18px 0 24px; max-width: 320px; }
.footer h5 {
  font-family: var(--font-body);
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 700; color: var(--amber);
  margin-bottom: 20px;
}
.footer ul { list-style: none; }
.footer ul li { padding: 6px 0; }
.footer ul a { color: rgba(251, 245, 234, 0.75); transition: color 0.2s ease; font-size: 0.95rem; }
.footer ul a:hover { color: var(--coral); }
.footer-legal {
  display: flex; gap: 24px; flex-wrap: wrap; align-self: center;
  justify-content: flex-end;
}
.footer-legal a {
  color: rgba(251, 245, 234, 0.75);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.footer-legal a:hover { color: var(--coral); }
.footer-bottom {
  padding-top: 30px;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-size: 0.9rem; color: rgba(251, 245, 234, 0.55); flex-wrap: wrap;
}

/* ============ Utility ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ Responsive ============ */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; text-align: left; }
  .hero-visual { order: 2; }
  .timeline { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .feature { grid-template-columns: 1fr; gap: 40px; }
  .feature.reverse { direction: ltr; }
  .feature-visual { aspect-ratio: 4 / 3; max-width: 520px; margin: 0 auto; width: 100%; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .netflix-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .ecosystem { grid-template-columns: 1fr; }
  .contact-card { grid-template-columns: 1fr; gap: 40px; padding: 36px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-toggle { display: flex !important; }
  .nav-links {
    position: fixed; top: 72px; left: 16px; right: 16px;
    background: var(--cream); border-radius: 20px;
    flex-direction: column; align-items: stretch;
    padding: 12px; gap: 4px;
    box-shadow: var(--shadow-lg);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 16px; text-align: left; border-radius: 12px; }
  .nav-links a.active { background: var(--ink); color: var(--cream); }
  .nav-cta { text-align: center; }

  .hero { padding: 40px 0 60px; }
  .phone { width: 260px; height: 530px; }
  .sticker { font-size: 0.72rem; padding: 8px 12px; }
  .sticker-1 { left: -4%; }
  .sticker-2 { right: -6%; }
  .sticker-3 { left: -2%; }

  section { padding: 60px 0; }
  .section-head { margin-bottom: 40px; }
  .city-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .city-card { padding: 18px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; padding-bottom: 40px; }
  .footer { padding: 60px 0 30px; }
  .cta-band { margin: 0 16px; }
  .btn { padding: 14px 22px; font-size: 0.95rem; }
  .btn-lg { padding: 16px 26px; }
  .contact-card { padding: 28px 22px; }
}

@media (max-width: 420px) {
  .container { padding: 0 18px; }
  .city-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-top { grid-template-columns: 1fr; }
  .app-badge { min-width: 155px; padding: 10px 16px; }
  h1 { font-size: 2.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ================================================================
   App-download modal
================================================================ */
.app-modal[hidden] { display: none; }
.app-modal {
  position: fixed; inset: 0;
  display: grid; place-items: center;
  z-index: 1000;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.app-modal.is-open { opacity: 1; }
.app-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(14, 20, 32, 0.55);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.app-modal-card {
  position: relative;
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.25s cubic-bezier(0.2, 0.9, 0.3, 1);
}
.app-modal.is-open .app-modal-card { transform: translateY(0) scale(1); }
.app-modal-close {
  position: absolute; top: 12px; right: 14px;
  background: transparent; border: 0; cursor: pointer;
  font-size: 1.8rem; line-height: 1;
  color: rgba(14, 20, 32, 0.5);
  padding: 6px 10px; border-radius: 999px;
  transition: color 0.15s ease, background 0.15s ease;
}
.app-modal-close:hover { color: var(--ink); background: rgba(14, 20, 32, 0.06); }
.app-modal-emoji {
  font-size: 3rem;
  margin-bottom: 6px;
}
.app-modal-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1.2;
  margin: 4px 0 12px;
}
.app-modal-card p {
  color: rgba(14, 20, 32, 0.7);
  font-size: 0.98rem;
  margin: 0 0 22px;
}
.app-modal-card p a { color: var(--coral); }
.app-modal-card .btn { justify-content: center; width: 100%; }

