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

:root {
  --ink: #0a0a0f;
  --paper: #f6f4f0;
  --cream: #eae6df;
  --accent: #e85d26;
  --accent-dark: #c94a1a;
  --teal: #1a6b5a;
  --teal-light: #e8f3f0;
  --muted: #6b6560;
  --border: #d4d0ca;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(10,10,15,0.06);
  --shadow-md: 0 8px 30px rgba(10,10,15,0.08);
  --shadow-lg: 0 20px 60px rgba(10,10,15,0.12);
  --radius: 12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── Utility ─── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ─── Grain overlay ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─── Animations ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideLeft {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.anim-fade-up { animation: fadeUp 0.8s ease both; }
.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.2s; }
.anim-delay-3 { animation-delay: 0.3s; }
.anim-delay-4 { animation-delay: 0.4s; }
.anim-delay-5 { animation-delay: 0.5s; }
.anim-delay-6 { animation-delay: 0.6s; }

/* ─── Nav ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s ease;
  background: rgba(246,244,240,0.97); backdrop-filter: blur(12px);
}
nav.scrolled {
  background: rgba(246,244,240,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Instrument Serif', serif;
  font-size: 28px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-logo em { color: var(--accent); font-style: italic; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.3px;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  background: var(--ink);
  color: var(--paper) !important;
  border-radius: 100px;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.4px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.3s;
}

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,93,38,0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26,107,90,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--teal-light);
  color: var(--teal);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(42px, 5.5vw, 68px);
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--ink);
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease 0.1s both;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
  position: relative;
}
.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  opacity: 0.3;
  border-radius: 2px;
}
.hero-text {
  font-size: 18px;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
  animation: fadeUp 0.8s ease 0.2s both;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.3s both;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  letter-spacing: 0.3px;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232,93,38,0.25);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232,93,38,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  animation: scaleIn 1s ease 0.4s both;
}
.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  border: 1px solid var(--border);
}
.hero-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--cream);
}
.hero-card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.hero-card-dot:nth-child(1) { background: #ff6058; }
.hero-card-dot:nth-child(2) { background: #ffbd2e; }
.hero-card-dot:nth-child(3) { background: #27ca40; }
.hero-card-title {
  font-size: 12px;
  color: var(--muted);
  margin-left: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero-card-player {
  background: var(--ink);
  border-radius: var(--radius);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
.hero-card-player::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,93,38,0.15) 0%, rgba(26,107,90,0.1) 100%);
}
.play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  animation: float 3s ease-in-out infinite;
}
.play-btn::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 16px solid white;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 4px;
}
.hero-card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.hero-stat {
  text-align: center;
  padding: 12px 8px;
  background: var(--paper);
  border-radius: 10px;
}
.hero-stat-num {
  font-family: 'Instrument Serif', serif;
  font-size: 22px;
  color: var(--teal);
  display: block;
}
.hero-stat-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 2px;
}

/* Floating badge on hero card */
.floating-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: var(--teal);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(26,107,90,0.3);
  animation: float 4s ease-in-out infinite;
}

/* ─── Logos / Trust ─── */
.trust {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.trust-inner {
  text-align: center;
}
.trust-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 28px;
}
.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-logo {
  font-family: 'Instrument Serif', serif;
  font-size: 22px;
  color: var(--border);
  letter-spacing: -0.5px;
  white-space: nowrap;
}

/* ─── Features ─── */
.features {
  padding: 120px 0;
}
.section-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(34px, 4vw, 50px);
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}
.features-header {
  text-align: center;
  margin-bottom: 72px;
}
.features-header .section-sub { margin: 0 auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 24px;
}
.feature-icon.orange { background: rgba(232,93,38,0.1); color: var(--accent); }
.feature-icon.teal { background: var(--teal-light); color: var(--teal); }
.feature-icon.ink { background: rgba(10,10,15,0.06); color: var(--ink); }
.feature-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.feature-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── How it works ─── */
.how {
  padding: 120px 0;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.how::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(232,93,38,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.how .section-eyebrow { color: var(--accent); }
.how .section-sub { color: rgba(246,244,240,0.55); }
.how-header { margin-bottom: 72px; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(246,244,240,0.15), transparent);
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(246,244,240,0.05);
  border: 1px solid rgba(246,244,240,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Instrument Serif', serif;
  font-size: 28px;
  color: var(--accent);
  transition: all 0.3s ease;
}
.step:hover .step-num {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  transform: scale(1.08);
}
.step h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step p {
  font-size: 14px;
  color: rgba(246,244,240,0.5);
  line-height: 1.6;
  max-width: 200px;
  margin: 0 auto;
}

/* ─── Pricing ─── */
.pricing {
  padding: 120px 0;
}
.pricing-header {
  text-align: center;
  margin-bottom: 72px;
}
.pricing-header .section-sub { margin: 0 auto; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all 0.4s ease;
  position: relative;
}
.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-lg);
  transform: scale(1.03);
}
.price-card.featured .price-popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  padding: 5px 18px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.price-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.price-name {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 8px;
}
.price-amount {
  font-family: 'Instrument Serif', serif;
  font-size: 52px;
  letter-spacing: -2px;
  margin-bottom: 4px;
}
.price-amount span {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--muted);
  letter-spacing: 0;
}
.price-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--cream);
}
.price-features {
  list-style: none;
  margin-bottom: 32px;
}
.price-features li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--ink);
  display: flex;
  align-items: start;
  gap: 10px;
  line-height: 1.5;
}
.price-features li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.price-btn {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  letter-spacing: 0.3px;
}
.price-btn.outline {
  border: 1.5px solid var(--border);
  color: var(--ink);
}
.price-btn.outline:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.price-btn.filled {
  background: var(--accent);
  color: var(--white);
  border: 1.5px solid var(--accent);
}
.price-btn.filled:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

/* ─── Ad Networks highlight ─── */
.adnetworks {
  padding: 100px 0;
  background: var(--teal-light);
  border-top: 1px solid rgba(26,107,90,0.12);
  border-bottom: 1px solid rgba(26,107,90,0.12);
}
.adnetworks-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.adnetworks-content .section-title em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--teal);
}
.adnetworks-content .section-sub { margin-bottom: 32px; }
.ad-list {
  list-style: none;
  display: grid;
  gap: 14px;
}
.ad-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
}
.ad-check {
  width: 28px;
  height: 28px;
  background: var(--teal);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.adnetworks-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ad-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.ad-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.ad-card:nth-child(2) { transform: translateY(20px); }
.ad-card:nth-child(2):hover { transform: translateY(17px); }
.ad-card:nth-child(3) { transform: translateY(-10px); }
.ad-card:nth-child(3):hover { transform: translateY(-13px); }
.ad-card-icon { font-size: 32px; margin-bottom: 10px; }
.ad-card-name { font-size: 13px; font-weight: 700; letter-spacing: 0.3px; }
.ad-card-desc { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* ─── FAQ ─── */
.faq {
  padding: 120px 0;
}
.faq-header {
  text-align: center;
  margin-bottom: 60px;
}
.faq-header .section-sub { margin: 0 auto; }
.faq-list {
  max-width: 740px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.2s;
  gap: 16px;
  user-select: none;
}
.faq-q:hover { color: var(--accent); }
.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--muted);
  flex-shrink: 0;
  transition: all 0.3s;
}
.faq-item.open .faq-toggle {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p {
  padding-bottom: 24px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── CTA ─── */
.cta {
  padding: 100px 0;
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,93,38,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.cta .section-title { color: var(--paper); }
.cta .section-sub {
  color: rgba(246,244,240,0.5);
  margin: 0 auto 40px;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.btn-white {
  background: var(--paper);
  color: var(--ink);
}
.btn-white:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  color: var(--paper);
  border: 1.5px solid rgba(246,244,240,0.2);
}
.btn-ghost:hover {
  border-color: var(--paper);
  background: rgba(246,244,240,0.08);
}

/* ─── Contact ─── */
.contact {
  padding: 120px 0;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}
.contact-info h2 {
  font-family: 'Instrument Serif', serif;
  font-size: 40px;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.contact-info p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
}
.contact-details {
  list-style: none;
  display: grid;
  gap: 16px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}
.contact-details-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  margin-top: 8px;
}
.form-submit .btn { width: 100%; justify-content: center; }

/* ─── Footer ─── */
footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-family: 'Instrument Serif', serif;
  font-size: 22px;
  color: var(--ink);
  text-decoration: none;
}
.footer-logo em { color: var(--accent); font-style: italic; }
.footer-text {
  font-size: 13px;
  color: var(--muted);
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--ink); }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 520px; margin: 0 auto; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .steps::before { display: none; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr) !important; max-width: 860px; margin: 0 auto; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-4px); }
  .adnetworks-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  nav.menu-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-md);
  }
  .hero { padding: 100px 0 60px; min-height: auto; }
  .features-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .adnetworks-visual { grid-template-columns: 1fr 1fr; }
  .ad-card:nth-child(2),
  .ad-card:nth-child(3) { transform: none; }
  .ad-card:nth-child(2):hover,
  .ad-card:nth-child(3):hover { transform: translateY(-3px); }
  .form-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr !important; max-width: 420px; }
  .footer-inner { flex-direction: column; text-align: center; }
}
/* ─── Language Switcher ─── */
.lang-switcher {
  position: relative;
}
.lang-current {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.2s;
  user-select: none;
}
.lang-current:hover { background: var(--cream); }
.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  min-width: 520px;
  overflow: hidden;
  z-index: 1001;
}
.lang-switcher:hover .lang-dropdown { display: grid; grid-template-columns: repeat(4, 1fr); }
.lang-dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink) !important;
  text-decoration: none;
  transition: background 0.15s;
}
.lang-dropdown a:hover { background: var(--cream); }
.lang-dropdown a.active { color: var(--accent) !important; font-weight: 700; }


/* Footer language grid */
.footer-langs {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px 16px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.footer-langs a {
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.footer-langs a:hover { color: var(--ink); }
@media (max-width: 768px) {
  .footer-langs { grid-template-columns: repeat(3, 1fr); }
  .lang-dropdown { min-width: 280px !important; grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
  .footer-langs { grid-template-columns: repeat(2, 1fr); }
}