/* ==========================================================================
   خورشید — Landing page styles
   ========================================================================== */

:root {
  --gold: #F7A600;
  --gold-strong: #E08900;
  --gold-soft: #FFC94D;
  --gold-tint: #FFF3DC;
  --cream: #FFFBF3;
  --surface: #FFFFFF;
  --ink: #241A0E;
  --ink-soft: #6B5B44;
  --line: #F0E4CE;
  --radius: 18px;
  --shadow-sm: 0 4px 16px rgba(160, 110, 20, 0.10);
  --shadow-md: 0 14px 40px rgba(160, 110, 20, 0.16);
  --shadow-lg: 0 30px 70px rgba(120, 75, 10, 0.28);
  --font: "Vazirmatn", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.8;
  overflow-x: hidden;
}

img, svg { display: inline-block; vertical-align: middle; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.accent { color: var(--gold); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #fff;
  box-shadow: 0 8px 22px rgba(247, 166, 0, 0.38);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(247, 166, 0, 0.48); }
.btn-sm { padding: 10px 22px; font-size: 14.5px; }

/* ===== Header ===== */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  padding: 14px 0;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.site-header.scrolled {
  background: rgba(255, 251, 243, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(160, 110, 20, 0.10);
  padding: 10px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-logo {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: #fff;
  color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.brand-name { font-size: 22px; font-weight: 900; color: var(--ink); }

.main-nav { display: flex; gap: 28px; }
.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color .2s ease;
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  inset-inline-start: 0;
  width: 0;
  height: 2.5px;
  border-radius: 2px;
  background: var(--gold);
  transition: width .25s ease;
}
.main-nav a:hover { color: var(--ink); }
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 150px 0 110px;
  background:
    radial-gradient(1100px 600px at 85% -10%, #FFE2AC 0%, transparent 60%),
    radial-gradient(900px 550px at -10% 110%, #FFD98F 0%, transparent 55%),
    linear-gradient(160deg, #FFF8EA 0%, #FFEECB 45%, #FFDD9A 100%);
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .55;
  pointer-events: none;
}
.hero-glow-1 { width: 420px; height: 420px; background: #FFC24D; top: -140px; inset-inline-end: 12%; }
.hero-glow-2 { width: 360px; height: 360px; background: #FFDD9A; bottom: -120px; inset-inline-start: 5%; }

.dots {
  position: absolute;
  width: 140px;
  height: 90px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.85) 3px, transparent 3.5px);
  background-size: 24px 24px;
  pointer-events: none;
}
.dots-top { top: 40px; inset-inline-end: 30px; }
.dots-bottom { bottom: 120px; inset-inline-start: 25px; opacity: .8; }

.hero-heart {
  position: absolute;
  width: 56px;
  height: 56px;
  color: rgba(255, 255, 255, 0.9);
  top: 46%;
  inset-inline-start: 42%;
  transform: rotate(-14deg);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 40px;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(247, 166, 0, 0.35);
  color: var(--gold-strong);
  font-size: 13.5px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}

.hero-title {
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 900;
  line-height: 1.55;
  color: var(--ink);
}
.hero-title .accent {
  color: var(--gold);
  text-shadow: 0 3px 24px rgba(247, 166, 0, 0.35);
}

.hero-subtitle {
  margin-top: 18px;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 600;
  color: var(--ink-soft);
}
.hero-desc {
  margin-top: 10px;
  max-width: 480px;
  font-size: 15.5px;
  color: var(--ink-soft);
}

/* Store badges */
.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.store-badges.center { justify-content: center; }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #17120B;
  color: #fff;
  border-radius: 14px;
  padding: 10px 20px;
  min-width: 172px;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 10px 26px rgba(30, 20, 5, 0.28);
  direction: ltr;
}
.store-badge:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(30, 20, 5, 0.36); }
.store-badge-text { display: flex; flex-direction: column; line-height: 1.35; text-align: left; }
.store-badge-text small { font-size: 10.5px; opacity: .75; letter-spacing: .3px; }
.store-badge-text strong { font-size: 17px; font-weight: 700; }

/* Hero feature trio */
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 42px;
}
.hero-features li { display: flex; align-items: center; gap: 12px; }
.hf-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #fff;
  box-shadow: 0 8px 20px rgba(247, 166, 0, 0.4);
  flex-shrink: 0;
}
.hf-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.6;
}

/* ===== Phone mockup ===== */
.hero-phone {
  position: relative;
  display: flex;
  justify-content: center;
  perspective: 1200px;
}
.phone {
  position: relative;
  width: 300px;
  background: linear-gradient(160deg, #4A4038, #241E18 60%, #3A322A);
  border-radius: 46px;
  padding: 12px;
  box-shadow: var(--shadow-lg), inset 0 0 0 2px rgba(255, 255, 255, 0.08);
  transform: rotate(-6deg);
  animation: phone-float 6s ease-in-out infinite;
  z-index: 2;
}
@keyframes phone-float {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50% { transform: rotate(-6deg) translateY(-14px); }
}
.phone-notch {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 26px;
  background: #17120B;
  border-radius: 999px;
  z-index: 3;
}
.phone-screen {
  background: linear-gradient(180deg, #FFFDF8 0%, #FFF6E4 100%);
  border-radius: 36px;
  padding: 58px 14px 12px;
  overflow: hidden;
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.app-title { font-size: 17px; font-weight: 900; color: var(--gold); }
.app-menu { display: inline-flex; flex-direction: column; gap: 3.5px; }
.app-menu i { width: 16px; height: 2px; border-radius: 2px; background: var(--ink); }
.app-menu i:nth-child(2) { width: 11px; }
.app-bell { position: relative; color: var(--ink); display: inline-flex; }
.bell-dot {
  position: absolute;
  top: -2px;
  inset-inline-end: -2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  border: 1.5px solid #fff;
}

.app-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 11px;
  color: #A79273;
  box-shadow: 0 2px 8px rgba(160, 110, 20, 0.06);
}

.app-section-title {
  font-size: 12.5px;
  font-weight: 800;
  margin: 14px 2px 8px;
  color: var(--ink);
}

.app-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.app-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 4px 12px rgba(120, 75, 10, 0.16);
}
.avatar {
  position: absolute;
  inset: 0;
  display: block;
}
.avatar svg { width: 100%; height: 100%; }
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.av-1 { background: linear-gradient(160deg, #FFC94D, #E5652E); }
.av-2 { background: linear-gradient(160deg, #6B5B44, #241A0E); }
.av-3 { background: linear-gradient(160deg, #F7A600, #B4541B); }
.av-4 { background: linear-gradient(160deg, #8A6B3A, #3A2A14); }

.app-card-info {
  position: relative;
  width: 100%;
  padding: 14px 8px 6px;
  background: linear-gradient(180deg, transparent, rgba(20, 12, 2, 0.78));
  color: #fff;
  display: flex;
  flex-direction: column;
  line-height: 1.5;
}
.app-card-info b { font-size: 11px; }
.app-card-info small { font-size: 9px; opacity: .85; }
.online-dot {
  position: absolute;
  bottom: 7px;
  inset-inline-start: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #FFC947;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.6);
}

.app-featured {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 118px;
  box-shadow: 0 6px 16px rgba(120, 75, 10, 0.2);
}
.featured-avatar { background: linear-gradient(200deg, #C97A2B 0%, #5A3A16 70%, #2A1C0A 100%); }
.featured-tag {
  position: absolute;
  top: 8px;
  inset-inline-start: 8px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  color: var(--gold-strong);
  font-size: 9px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}
.featured-info {
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  padding: 20px 12px 8px;
  background: linear-gradient(180deg, transparent, rgba(20, 12, 2, 0.8));
  color: #fff;
  display: flex;
  flex-direction: column;
  line-height: 1.5;
  z-index: 2;
}
.featured-info b { font-size: 13px; }
.featured-info small { font-size: 10px; opacity: .85; }

.app-tabbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  background: #fff;
  border-radius: 18px;
  padding: 8px 10px;
  box-shadow: 0 -2px 14px rgba(160, 110, 20, 0.08);
}
.tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: #B3A184;
  flex: 1;
}
.tab small { font-size: 7.5px; font-weight: 600; white-space: nowrap; }
.tab.active { color: var(--gold); }
.tab.active svg { filter: drop-shadow(0 2px 5px rgba(247, 166, 0, 0.5)); }

.phone-shadow {
  position: absolute;
  bottom: -34px;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 36px;
  background: radial-gradient(ellipse, rgba(90, 55, 5, 0.32), transparent 70%);
  z-index: 1;
}

/* Floating chips */
.float-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  padding: 8px 15px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  box-shadow: var(--shadow-md);
  z-index: 3;
}
.chip-match { top: 12%; inset-inline-start: -6px; animation: chip-float 5s ease-in-out infinite; }
.chip-msg { bottom: 16%; inset-inline-end: -10px; animation: chip-float 5s ease-in-out 2.2s infinite; }
@keyframes chip-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  inset-inline: 0;
  width: 100%;
  height: 90px;
  z-index: 1;
}

/* ===== Stats ===== */
.stats { background: var(--surface); padding: 10px 0 55px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat b {
  display: block;
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1.3;
}
.stat span { font-size: 14px; color: var(--ink-soft); font-weight: 500; }

/* ===== Sections (shared) ===== */
.section { padding: 90px 0; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 55px; }
.section-tag {
  display: inline-block;
  background: var(--gold-tint);
  color: var(--gold-strong);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section-head h2 {
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 900;
  line-height: 1.6;
}
.section-head p { margin-top: 14px; color: var(--ink-soft); font-size: 15.5px; }

/* ===== Features ===== */
.features { background: var(--surface); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(247, 166, 0, 0.45);
}
.feature-icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #fff;
  box-shadow: 0 8px 20px rgba(247, 166, 0, 0.35);
  margin-bottom: 20px;
}
.feature-card h3 { font-size: 18.5px; font-weight: 800; margin-bottom: 10px; }
.feature-card p { font-size: 14.5px; color: var(--ink-soft); }

/* ===== How it works ===== */
.how {
  background:
    radial-gradient(800px 400px at 50% 0%, #FFF3DC 0%, transparent 70%),
    var(--cream);
}
.steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 18px;
}
.step {
  flex: 1;
  max-width: 320px;
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 26px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-num {
  position: absolute;
  top: -20px;
  inset-inline-start: 50%;
  transform: translateX(50%);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(247, 166, 0, 0.4);
}
.step-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin: 6px auto 18px;
  border-radius: 20px;
  background: var(--gold-tint);
  color: var(--gold-strong);
}
.step h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--ink-soft); }
.step-arrow {
  display: flex;
  align-items: center;
  color: var(--gold);
  opacity: .7;
  flex-shrink: 0;
}

/* ===== Testimonials ===== */
.testimonials { background: var(--surface); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.testimonial:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stars { color: var(--gold); font-size: 17px; letter-spacing: 3px; }
.testimonial blockquote {
  font-size: 14.5px;
  color: var(--ink-soft);
  flex: 1;
}
.testimonial figcaption { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  inset: auto;
}
.testimonial figcaption b { display: block; font-size: 14.5px; }
.testimonial figcaption small { color: var(--ink-soft); font-size: 12.5px; }

/* ===== FAQ ===== */
.faq {
  background:
    radial-gradient(700px 380px at 50% 100%, #FFF3DC 0%, transparent 70%),
    var(--cream);
}
.faq-container { max-width: 780px; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.faq-item[open] { border-color: rgba(247, 166, 0, 0.5); box-shadow: var(--shadow-sm); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 15.5px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gold-tint);
  position: relative;
  transition: transform .3s ease, background .3s ease;
}
.faq-chevron::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--gold-strong);
  border-bottom: 2px solid var(--gold-strong);
  transform: translate(-50%, -65%) rotate(45deg);
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); background: var(--gold); }
.faq-item[open] .faq-chevron::before { border-color: #fff; }
.faq-item p {
  padding: 0 24px 22px;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.faq-item p a {
  color: var(--gold-strong);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.faq-item p a:hover { color: var(--gold); }

/* ===== CTA ===== */
.cta { padding: 40px 0 100px; background: var(--cream); }
.cta-inner {
  position: relative;
  text-align: center;
  background:
    radial-gradient(500px 260px at 80% 0%, rgba(255, 255, 255, 0.25) 0%, transparent 60%),
    linear-gradient(135deg, #FFB627 0%, #F7A600 55%, #E08900 100%);
  border-radius: 30px;
  padding: 70px 30px;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(224, 137, 0, 0.4);
}
.dots-cta {
  top: 26px;
  inset-inline-start: 30px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.4) 3px, transparent 3.5px);
}
.cta-sun { margin-bottom: 16px; animation: sun-spin 24s linear infinite; }
@keyframes sun-spin { to { transform: rotate(360deg); } }
.cta-inner h2 { font-size: clamp(26px, 3.4vw, 40px); font-weight: 900; }
.cta-inner p {
  max-width: 480px;
  margin: 14px auto 32px;
  font-size: 15.5px;
  opacity: .95;
}
.cta .store-badge { box-shadow: 0 12px 30px rgba(90, 50, 0, 0.35); }

/* ===== Footer ===== */
.site-footer { background: #1E150A; color: #D8C6A8; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 60px 0 40px;
}
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-logo { background: var(--gold); color: #1E150A; }
.footer-brand p { margin-top: 16px; font-size: 14px; opacity: .8; max-width: 300px; }
.footer-col h4 { color: #fff; font-size: 16px; font-weight: 800; margin-bottom: 18px; }
.footer-col a {
  display: block;
  font-size: 14px;
  margin-bottom: 12px;
  opacity: .75;
  transition: opacity .2s ease, color .2s ease;
}
.footer-col a:hover { opacity: 1; color: var(--gold-soft); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  opacity: .75;
}
.footer-love b { color: var(--gold-soft); }

/* ===== Reveal on scroll ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .phone, .float-chip, .cta-sun { animation: none; }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 70px; }
  .hero-copy { text-align: center; }
  .hero-desc { margin-inline: auto; }
  .store-badges { justify-content: center; }
  .hero-features { justify-content: center; }
  .hero-heart { display: none; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { flex-direction: column; align-items: center; gap: 40px; }
  .step-arrow { transform: rotate(90deg); }
  .testimonial-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .main-nav {
    position: fixed;
    top: 64px;
    inset-inline: 16px;
    flex-direction: column;
    gap: 4px;
    background: rgba(255, 251, 243, 0.98);
    backdrop-filter: blur(14px);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 14px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
  }
  .main-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .main-nav a { padding: 12px 14px; border-radius: 12px; }
  .main-nav a:hover { background: var(--gold-tint); }
  .main-nav a::after { display: none; }
  .nav-toggle { display: flex; }

  .hero { padding: 120px 0 90px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .feature-grid { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .phone { width: 264px; }
  .chip-match { inset-inline-start: -2px; }
  .chip-msg { inset-inline-end: -2px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { justify-content: center; text-align: center; }
}
