/* ─── Self-hosted Fonts ─────────────────────────────────────── */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('../fonts/dm-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('../fonts/dm-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dm-sans-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dm-sans-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/sora-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/sora-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ─── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:        #FFF8F2;
  --orange:       #F5891F;
  --orange-light: #FEB96A;
  --pink:         #E8527A;
  --plum:         #3B1230;
  --text:         #1A0A12;
  --muted:        #6B4A5A;
  --white:        #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 { font-family: 'Sora', sans-serif; }

img { display: block; max-width: 100%; }

a { text-decoration: none; color: inherit; }

/* ─── Navigation ────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
}

#nav.scrolled {
  background: rgba(59, 18, 48, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  object-fit: cover;
  flex-shrink: 0;
}

.nav-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  letter-spacing: -0.01em;
}

.btn-nav-download {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--orange);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 9px 20px;
  border-radius: 50px;
  transition: background 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

.btn-nav-download:hover {
  background: #e07b14;
  transform: translateY(-1px);
}

/* ─── Hero ──────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #2a0b22 0%, var(--plum) 45%, #1f0818 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 100px 40px 80px;
}

.glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.glow-blob--orange {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(245,137,31,0.28) 0%, transparent 70%);
  top: -80px;
  right: 80px;
}

.glow-blob--pink {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232,82,122,0.22) 0%, transparent 70%);
  bottom: -60px;
  left: 40px;
}

/* ─── Hero entrance animations ─────────────────────────────── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes heroSlideIn {
  from { opacity: 0; transform: translateX(40px) scale(0.96); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}

.hero-badge    { animation: heroFadeUp 0.6s ease both; animation-delay: 0.1s; }
.hero-headline { animation: heroFadeUp 0.6s ease both; animation-delay: 0.25s; }
.hero-subtitle { animation: heroFadeUp 0.6s ease both; animation-delay: 0.4s; }
.hero-ctas     { animation: heroFadeUp 0.6s ease both; animation-delay: 0.55s; }

.hero-phone-wrap { animation: heroSlideIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) both; animation-delay: 0.3s; }

.glow-blob--orange { animation: heroFadeIn 1.2s ease both; animation-delay: 0.2s; }
.glow-blob--pink   { animation: heroFadeIn 1.2s ease both; animation-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .hero-badge, .hero-headline, .hero-subtitle, .hero-ctas,
  .hero-phone-wrap, .glow-blob--orange, .glow-blob--pink {
    animation: none;
  }
  .iphone-frame { animation: none; }
}

.hero-inner {
  max-width: 1360px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 1;
  max-width: 520px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.80);
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}

.hero-badge svg { width: 14px; height: 14px; flex-shrink: 0; }

.hero-headline {
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}

.hero-headline .accent { color: var(--orange-light); }

.hero-subtitle {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.80);
  margin-bottom: 40px;
  max-width: 440px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 50px;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 24px rgba(245,137,31,0.35);
}

.btn-hero-primary:hover {
  background: #e07b14;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,137,31,0.45);
}

.btn-hero-primary svg { width: 20px; height: 20px; flex-shrink: 0; }

.appstore-badge {
  display: inline-block;
  transition: opacity 0.2s ease, transform 0.15s ease;
}

.appstore-badge:hover {
  opacity: 0.82;
  transform: translateY(-2px);
}

.appstore-badge img {
  display: block;
  height: 56px;
  width: auto;
}

.btn-hero-ghost {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.btn-hero-ghost:hover { color: var(--white); }

/* ─── iPhone Mockup ─────────────────────────────────────────── */
.hero-phone-wrap {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}

.iphone-frame {
  width: 270px;
  height: 585px;
  background: #1C1C1E;
  border-radius: 46px;
  padding: 10px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.10),
    0 0 0 2px rgba(0,0,0,0.5),
    0 8px 48px rgba(0,0,0,0.60),
    0 0 60px rgba(245,137,31,0.15),
    inset 0 0 0 1px rgba(255,255,255,0.06);
  animation: float 6s ease-in-out infinite;
  position: relative;
}

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

.iphone-screen {
  width: 100%;
  height: 100%;
  border-radius: 38px;
  overflow: hidden;
  background: #000;
  position: relative;
}

.iphone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* ─── Value Strip ───────────────────────────────────────────── */
#value-strip {
  background: var(--orange);
  padding: 0 40px;
}

.value-strip-inner {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px 0;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  padding: 4px 28px;
  letter-spacing: 0.01em;
  position: relative;
}

.value-item + .value-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 16px;
  width: 1px;
  background: rgba(255,255,255,0.3);
}

.value-check {
  width: 18px;
  height: 18px;
  background: rgba(255,255,255,0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-check svg { width: 10px; height: 10px; }

/* ─── Section helpers ───────────────────────────────────────── */
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--text);
}

.section-title .line { display: block; }

/* ─── Fade-in animation ─────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Sticky Showcase ───────────────────────────────────────── */
#showcase {
  background: var(--white);
  padding: 100px 40px 0;
}

.showcase-header {
  max-width: 1360px;
  margin: 0 auto 80px;
  text-align: center;
}

.showcase-layout {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

.showcase-phone-col {
  flex: 0 0 auto;
  width: 270px;
  position: sticky;
  top: calc(50vh - 292px);
}

.showcase-iphone {
  width: 270px;
  height: 585px;
  background: #1C1C1E;
  border-radius: 46px;
  padding: 10px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.10),
    0 0 0 2px rgba(0,0,0,0.35),
    0 16px 56px rgba(0,0,0,0.25),
    0 0 40px rgba(245,137,31,0.08);
  position: relative;
}

.showcase-screen {
  width: 100%;
  height: 100%;
  border-radius: 38px;
  overflow: hidden;
  background: #000;
  position: relative;
}

.showcase-screen img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: opacity 0.5s ease;
}

.showcase-screen img.active { opacity: 1; }
.showcase-screen img:not(.active) { opacity: 0; }

.showcase-dots {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 16px;
}

.dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  border: none;
  padding: 0;
  position: relative;
  flex-shrink: 0;
}

.dot::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D9C8D1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: background 0.25s ease, transform 0.25s ease;
}

.dot.active::after {
  background: var(--orange);
  transform: translate(-50%, -50%) scale(1.3);
}

.showcase-steps-col {
  flex: 1;
  padding-bottom: 100px;
}

.showcase-step {
  min-height: 85vh;
  display: flex;
  align-items: center;
  opacity: 0.25;
  transition: opacity 0.4s ease;
}

.showcase-step.active { opacity: 1; }

.step-content { max-width: 460px; }

.step-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--plum);
  margin-bottom: 14px;
}

.step-title {
  font-family: 'Sora', sans-serif;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}

.step-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 24px;
}

.step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--plum);
  background: rgba(59,18,48,0.07);
  border: 1px solid rgba(59,18,48,0.15);
  padding: 5px 12px;
  border-radius: 50px;
  letter-spacing: 0.01em;
}

/* ─── Features Grid ─────────────────────────────────────────── */
#features {
  background: var(--cream);
  padding: 120px 40px;
  border-top: 1px solid #EDE0D8;
}

.features-header {
  max-width: 1360px;
  margin: 0 auto 64px;
  text-align: center;
}

.features-grid {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 2px 16px rgba(59,18,48,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  opacity: 0;
  transform: translateY(28px);
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(59,18,48,0.10);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(245,137,31,0.10);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--orange);
}

.feature-title {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

.feature-card--featured {
  background: var(--plum);
  box-shadow: 0 8px 32px rgba(59,18,48,0.18);
}

.feature-card--featured .feature-title { color: var(--white); }
.feature-card--featured .feature-desc  { color: rgba(255,255,255,0.65); }
.feature-card--featured .feature-icon  { background: rgba(255,255,255,0.10); color: var(--white); }
.feature-card--featured:hover          { box-shadow: 0 12px 40px rgba(59,18,48,0.28); }

/* ─── Final CTA ─────────────────────────────────────────────── */
#cta {
  background: linear-gradient(135deg, #2a0b22 0%, var(--plum) 50%, #1f0818 100%);
  padding: 120px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta .glow-blob { opacity: 0.6; }

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.cta-phones {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 48px;
}

.cta-phone-thumb {
  width: 88px;
  height: 190px;
  object-fit: cover;
  object-position: top;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.45);
  opacity: 0.80;
  transform: rotate(-5deg);
}

.cta-phone-thumb--center {
  width: 100px;
  height: 217px;
  opacity: 1;
  transform: rotate(0deg) translateY(-14px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.55);
}

.cta-phone-thumb--right { transform: rotate(5deg); }

.cta-logo {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  margin: 0 auto 28px;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.cta-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.60);
  line-height: 1.6;
  margin-bottom: 40px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 15px 32px;
  border-radius: 50px;
  box-shadow: 0 4px 28px rgba(245,137,31,0.40);
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.btn-cta:hover {
  background: #e07b14;
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(245,137,31,0.50);
}

.btn-cta svg { width: 20px; height: 20px; }

/* ─── Footer ────────────────────────────────────────────────── */
#footer {
  background: #1A0A12;
  padding: 32px 40px;
}

.footer-inner {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 9px;
}

.footer-logo {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  object-fit: cover;
}

.footer-name {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.60);
}

.footer-links { display: flex; gap: 20px; }

.footer-link {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s ease;
}

.footer-link:hover { color: rgba(255,255,255,0.80); }

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 768px) {
  #nav { padding: 0 20px; }
  .nav-name { font-size: 15px; }
  .btn-nav-download { font-size: 13px; padding: 8px 16px; }

  #hero { padding: 90px 24px 60px; }
  .hero-inner { flex-direction: column-reverse; align-items: center; gap: 40px; text-align: center; }
  .hero-text { max-width: 100%; }
  .hero-badge { margin-left: auto; margin-right: auto; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .glow-blob--orange { width: 280px; height: 280px; right: -40px; top: -40px; }
  .glow-blob--pink   { width: 240px; height: 240px; left: -40px; }

  #value-strip { padding: 0 24px; }
  .value-item { padding: 4px 16px; font-size: 13px; }

  #showcase { padding: 80px 24px 0; }
  .showcase-header { margin-bottom: 48px; }
  .showcase-layout { flex-direction: column; align-items: center; gap: 40px; }
  .showcase-phone-col { position: relative; top: unset; width: 220px; }
  .showcase-iphone { width: 220px; height: 477px; }
  .showcase-steps-col { padding-bottom: 60px; width: 100%; }
  .showcase-step { min-height: 0; padding: 48px 0; opacity: 1; }

  #features { padding: 80px 24px; }
  .features-grid { grid-template-columns: 1fr; gap: 16px; }

  #cta { padding: 80px 24px; }
  .cta-phones { gap: 8px; }
  .cta-phone-thumb { width: 72px; height: 156px; }
  .cta-phone-thumb--center { width: 84px; height: 182px; }

  #footer { padding: 28px 24px; }
  .footer-inner { flex-direction: column; text-align: center; gap: 12px; }
  .footer-brand { justify-content: center; }

  #privacy-hero  { padding: 110px 24px 60px; }
  #privacy-content { padding: 60px 24px 80px; }
  .privacy-lead  { padding: 22px 20px; }
  .privacy-section { padding: 22px 20px; gap: 14px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 36px; }
  .value-item + .value-item::before { display: none; }
  .value-strip-inner { flex-direction: column; gap: 4px; }

  .nav-name { display: none; }

  .lang-switch {
    border: 1px solid rgba(255,255,255,0.20);
    border-radius: 8px;
    padding: 2px 4px;
    margin-right: 10px;
  }

  .lang-link { color: rgba(255,255,255,0.65); }
  .lang-link.active {
    color: var(--white);
    background: rgba(255,255,255,0.14);
  }
}

/* ─── Privacy pages ─────────────────────────────────────────── */
#privacy-hero {
  background: linear-gradient(135deg, #2a0b22 0%, var(--plum) 45%, #1f0818 100%);
  padding: 140px 40px 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

#privacy-hero .glow-blob { opacity: 0.5; }

.privacy-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.privacy-hero-inner .section-label { margin-bottom: 16px; }

.privacy-hero-inner h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.privacy-updated {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}

#privacy-content {
  background: var(--cream);
  padding: 80px 40px 100px;
}

.privacy-inner {
  max-width: 760px;
  margin: 0 auto;
}

.privacy-lead {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 32px;
  margin-bottom: 48px;
  box-shadow: 0 2px 16px rgba(59,18,48,0.06);
}

.privacy-lead p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 12px;
}

.privacy-lead p:last-child { margin-bottom: 0; }

.privacy-lead ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.privacy-warning {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(245,137,31,0.08);
  border: 1px solid rgba(245,137,31,0.25);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #8a4b00;
}

.privacy-sections {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.privacy-section {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: 0 2px 16px rgba(59,18,48,0.06);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.privacy-section--contact {
  background: linear-gradient(135deg, #fff8f2, #fff3eb);
  border: 1px solid rgba(245,137,31,0.18);
}

.privacy-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(245,137,31,0.12);
  color: var(--orange);
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.privacy-section-body h2 {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.privacy-section-body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

.privacy-section-body a {
  color: var(--orange);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

/* ─── Language switcher ─────────────────────────────────────── */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-right: 16px;
}

.lang-link {
  color: rgba(255,255,255,0.40);
  padding: 4px 6px;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
}

.lang-link:hover { color: rgba(255,255,255,0.85); }

.lang-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.10);
}

.lang-sep {
  color: rgba(255,255,255,0.18);
  user-select: none;
}

/* ─── Tablet (769px – 1100px) ──────────────────────────────── */
@media (min-width: 769px) and (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-layout { gap: 48px; }
  .hero-inner { gap: 40px; }
  .hero-text { max-width: 420px; }
}

/* ─── Large screens (1440px+) ───────────────────────────────── */
@media (min-width: 1440px) {
  /* Bigger hero phone */
  .iphone-frame {
    width: 310px;
    height: 672px;
  }

  .iphone-screen {
    border-radius: 44px;
  }

  /* More breathing room in hero */
  .hero-inner { gap: 100px; }
  .hero-text   { max-width: 600px; }
  .hero-subtitle { max-width: 520px; }

  /* Bigger showcase phone */
  .showcase-phone-col {
    width: 310px;
    top: calc(50vh - 336px);
  }

  .showcase-iphone {
    width: 310px;
    height: 672px;
  }

  .showcase-iphone .showcase-screen {
    border-radius: 44px;
  }

  .showcase-layout { gap: 120px; }
  .step-content    { max-width: 560px; }
  .step-title      { font-size: 36px; }
  .step-desc       { font-size: 17px; }
}

/* ─── Extra large screens (1920px+) ────────────────────────── */
@media (min-width: 1920px) {
  .iphone-frame {
    width: 340px;
    height: 737px;
  }

  .showcase-phone-col {
    width: 340px;
    top: calc(50vh - 368px);
  }

  .showcase-iphone {
    width: 340px;
    height: 737px;
  }

  .showcase-layout { gap: 160px; }
  .step-content    { max-width: 640px; }
}
