/* ============================================
   CAPRI — GLOBAL STYLES
   Colors: Black #0a0a0a | Gold #c9a347 | White #ffffff
   ============================================ */

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

:root {
  --gold:        #c9a347;
  --gold-light:  #e0bb6a;
  --gold-dark:   #9e7d2e;
  --black:       #0a0a0a;
  --black-mid:   #111111;
  --black-card:  #161616;
  --black-border:#1f1f1f;
  --white:       #ffffff;
  --white-dim:   rgba(255,255,255,0.7);
  --white-faint: rgba(255,255,255,0.08);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;
  --radius:       12px;
  --radius-lg:    20px;
  --transition:   0.3s ease;
}

/* ── RESET ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY ─────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; }
h1 { font-size: clamp(3rem, 7vw, 6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); }
p  { font-size: 1.05rem; color: var(--white-dim); }

.gold { color: var(--gold); }
.italic { font-style: italic; }

/* ── UTILITY ────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 6rem 0; }
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  padding: 0.3rem 1rem;
  border: 1px solid rgba(201,163,71,0.3);
  border-radius: 100px;
}
.section-title { margin-bottom: 1.2rem; }
.section-sub { max-width: 540px; margin-bottom: 3rem; }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* Divider */
.gold-line {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.5rem 0;
}
.gold-line.center { margin: 1.5rem auto; }

/* ── BUTTONS ────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: var(--black);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,163,71,0.35); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* Store buttons */
.store-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.store-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.5rem;
  background: var(--white-faint);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
}
.store-btn:hover {
  background: rgba(201,163,71,0.12);
  border-color: rgba(201,163,71,0.4);
  transform: translateY(-2px);
}
.store-btn svg { width: 28px; height: 28px; fill: var(--white); flex-shrink: 0; }
.store-btn-text { display: flex; flex-direction: column; }
.store-btn-text small { font-size: 0.65rem; color: var(--white-dim); letter-spacing: 0.05em; }
.store-btn-text span { font-size: 0.95rem; font-weight: 500; }

/* ── NAVIGATION ─────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 0;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}
.nav.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--black-border);
  padding: 0.8rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 36px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--white-dim);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-cta { margin-left: 1rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white-dim);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-size: 2rem;
  cursor: pointer;
  color: var(--white-dim);
}

/* ── HERO ───────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,163,71,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(201,163,71,0.04) 0%, transparent 60%),
    var(--black);
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-tag::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--gold);
}
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  display: block;
}
.hero p { font-size: 1.1rem; max-width: 460px; margin-bottom: 2.5rem; }
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--black-border);
}
.hero-stat-val {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-lbl { font-size: 0.75rem; color: var(--white-dim); letter-spacing: 0.05em; }

/* Phone mockup */
.hero-visual { display: flex; justify-content: center; }
.phone-wrap {
  position: relative;
  width: 280px;
  animation: floatPhone 4s ease-in-out infinite;
}
@keyframes floatPhone {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
.phone-frame {
  width: 280px;
  height: 560px;
  background: var(--black-card);
  border-radius: 38px;
  border: 2px solid rgba(201,163,71,0.35);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,255,255,0.04),
    inset 0 1px 0 rgba(255,255,255,0.08);
}
.phone-notch {
  width: 80px; height: 22px;
  background: var(--black);
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
  position: relative; z-index: 2;
}
.phone-screen {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  gap: 1.2rem;
}
.phone-logo-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.phone-logo-wrap img { width: 60px; height: 60px; object-fit: contain; }
.phone-logo-wrap span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--white);
}
.phone-mock-card {
  width: 100%;
  background: var(--black-border);
  border-radius: 10px;
  overflow: hidden;
}
.phone-mock-img {
  width: 100%; height: 120px;
  background: linear-gradient(135deg, #1a1505, #2d2000, #1a1505);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
}
.phone-mock-info {
  padding: 0.6rem 0.8rem;
  display: flex; justify-content: space-between; align-items: center;
}
.phone-mock-name { font-size: 0.75rem; font-weight: 500; }
.phone-mock-loc { font-size: 0.65rem; color: var(--white-dim); }
.phone-mock-badge {
  font-size: 0.6rem; color: var(--gold);
  background: rgba(201,163,71,0.15);
  padding: 0.2rem 0.5rem; border-radius: 100px;
}
.phone-actions {
  display: flex; gap: 0.8rem;
}
.phone-btn {
  flex: 1;
  padding: 0.5rem;
  border-radius: 8px;
  font-size: 0.7rem;
  text-align: center;
  font-weight: 500;
}
.phone-btn.ph-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
}
.phone-btn.ph-outline {
  border: 1px solid var(--black-border);
  color: var(--white-dim);
}
.phone-glow {
  position: absolute;
  bottom: -60px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(201,163,71,0.25) 0%, transparent 70%);
  pointer-events: none;
}

/* ── TRUST BAR ──────────────────────────── */
.trust-bar {
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
  padding: 2rem 0;
  background: var(--black-mid);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.trust-item:hover { opacity: 1; }
.trust-icon { color: var(--gold); font-size: 1.4rem; }
.trust-text { font-size: 0.85rem; letter-spacing: 0.05em; }

/* ── FEATURES ───────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.feature-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,163,71,0.5), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.feature-card:hover { border-color: rgba(201,163,71,0.25); transform: translateY(-4px); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 52px; height: 52px;
  background: rgba(201,163,71,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(201,163,71,0.2);
}
.feature-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.feature-card p { font-size: 0.88rem; }

/* ── HOW IT WORKS ───────────────────────── */
.how-bg {
  background: var(--black-mid);
}
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 28px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--black-border), var(--black-border), transparent);
}
.step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 1rem; position: relative;
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--black);
  border: 1px solid rgba(201,163,71,0.4);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 600;
  position: relative; z-index: 1;
}
.step h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.step p { font-size: 0.82rem; }

/* ── PLANS ──────────────────────────────── */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  align-items: start;
}
.plan-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  transition: border-color var(--transition);
}
.plan-card.featured {
  border-color: rgba(201,163,71,0.5);
  background: linear-gradient(180deg, rgba(201,163,71,0.05) 0%, var(--black-card) 40%);
}
.plan-badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}
.plan-name {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.plan-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.plan-price sup { font-size: 1.2rem; vertical-align: super; }
.plan-period { font-size: 0.8rem; color: var(--white-dim); margin-bottom: 1.5rem; }
.plan-features { list-style: none; margin-bottom: 2rem; }
.plan-features li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.88rem; padding: 0.5rem 0;
  border-bottom: 1px solid var(--black-border);
  color: var(--white-dim);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li .chk { color: var(--gold); flex-shrink: 0; }
.plan-features li .x   { color: #555; flex-shrink: 0; }
.plan-btn { width: 100%; text-align: center; justify-content: center; }

/* ── DOWNLOAD CTA ───────────────────────── */
.download-section {
  background: linear-gradient(135deg, rgba(201,163,71,0.08) 0%, transparent 60%),
              var(--black-mid);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
}
.dl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.dl-text h2 { margin-bottom: 1rem; }
.dl-text p  { margin-bottom: 2rem; }
.dl-visual {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
.dl-phone {
  width: 130px;
  height: 260px;
  background: var(--black-card);
  border-radius: 22px;
  border: 1px solid rgba(201,163,71,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.dl-phone:nth-child(2) { transform: translateY(20px); }
.dl-phone::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(201,163,71,0.04) 0%, transparent 50%);
}

/* ── CONTACT FORM ───────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p  { margin-bottom: 2rem; }
.contact-detail {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--black-border);
}
.contact-detail .icon {
  width: 38px; height: 38px;
  background: rgba(201,163,71,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem;
  flex-shrink: 0;
}
.contact-detail .label { font-size: 0.72rem; color: var(--white-dim); letter-spacing: 0.05em; }
.contact-detail .value { font-size: 0.9rem; }
.contact-form {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.2rem; }
.form-group label {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--white-dim);
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--black-mid);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(201,163,71,0.5); }
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-success {
  display: none;
  background: rgba(201,163,71,0.1);
  border: 1px solid rgba(201,163,71,0.3);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* ── FOOTER ─────────────────────────────── */
footer {
  background: var(--black-mid);
  border-top: 1px solid var(--black-border);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img { height: 32px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; max-width: 260px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--white-dim);
  margin-bottom: 0.6rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--black-border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.8rem; color: var(--white-dim); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.8rem; color: var(--white-dim); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }

/* ── INNER PAGES (Privacy, Terms) ───────── */
.inner-hero {
  padding: 140px 0 60px;
  border-bottom: 1px solid var(--black-border);
  background: linear-gradient(180deg, rgba(201,163,71,0.05) 0%, transparent 100%);
}
.inner-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
.inner-hero .meta {
  font-size: 0.8rem;
  color: var(--white-dim);
  margin-top: 0.5rem;
}
.doc-body {
  padding: 4rem 0 6rem;
}
.doc-content {
  max-width: 800px;
  margin: 0 auto;
}
.doc-content h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--black-border);
}
.doc-content h3 {
  font-size: 1.05rem;
  margin: 1.5rem 0 0.5rem;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 600;
}
.doc-content p {
  margin-bottom: 1rem;
  font-size: 0.93rem;
  color: rgba(255,255,255,0.75);
}
.doc-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.doc-content ul li {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.4rem;
}
.doc-content a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.doc-content .highlight-box {
  background: rgba(201,163,71,0.06);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
}
.doc-content .highlight-box p { margin: 0; }
.doc-toc {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
}
.doc-toc h4 {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.doc-toc ol { list-style: decimal; padding-left: 1.2rem; }
.doc-toc ol li { font-size: 0.85rem; margin-bottom: 0.4rem; }
.doc-toc ol li a { color: var(--white-dim); }
.doc-toc ol li a:hover { color: var(--gold); text-decoration: none; }

/* ── ANIMATIONS ─────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: none; }
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }
.fade-in:nth-child(5) { transition-delay: 0.4s; }
.fade-in:nth-child(6) { transition-delay: 0.5s; }

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 992px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-row { grid-template-columns: repeat(2, 1fr); }
  .steps-row::before { display: none; }
  .plans-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .dl-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { order: -1; }
  .phone-wrap { width: 220px; }
  .phone-frame { width: 220px; height: 440px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-inner { gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .dl-visual { display: none; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .section { padding: 4rem 0; }
  .store-btns { flex-direction: column; }
  .hero-stats { flex-wrap: wrap; gap: 1.2rem; }
}
