/* =====================================================
   MobileTouch Official Site
   Static landing page · bilingual · light & dark
   ===================================================== */

:root {
  --bg: #ffffff;
  --bg-alt: #f7f8fb;
  --bg-elev: #ffffff;
  --text: #0f172a;
  --text-muted: #64748b;
  --border: #e6e8ef;
  --primary: #6366f1;
  --primary-2: #a855f7;
  --gradient: linear-gradient(120deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06);
  --shadow: 0 8px 30px rgba(99, 102, 241, .12);
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1180px;
  --header-h: 64px;
  --transition: .25s cubic-bezier(.4, 0, .2, 1);
}

[data-theme="dark"] {
  --bg: #0b1020;
  --bg-alt: #0f1530;
  --bg-elev: #131a35;
  --text: #e6e9f5;
  --text-muted: #94a3b8;
  --border: #20284a;
  --shadow: 0 8px 30px rgba(0, 0, 0, .35);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  transition: background var(--transition), color var(--transition);
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary); }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.muted { color: var(--text-muted); }

.gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===================== Header ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .8);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}
[data-theme="dark"] .site-header { background: rgba(11, 16, 32, .75); }
.site-header.scrolled { border-color: var(--border); }

.nav {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
}
.brand-logo {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--gradient);
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.brand-logo svg { transform: scale(.95); }

.nav-links {
  display: flex;
  gap: 22px;
  margin-left: auto;
  align-items: center;
}
.nav-links a {
  color: var(--text-muted);
  font-size: 14.5px;
  font-weight: 500;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.cta {
  color: #fff;
  background: var(--gradient);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
}
.nav-links a.cta:hover { color: #fff; transform: translateY(-1px); }

.nav-tools { display: flex; gap: 6px; align-items: center; }

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  background: var(--bg-elev);
  border-radius: 10px;
  cursor: pointer;
  color: var(--text);
  transition: all var(--transition);
  font-size: 13px;
  font-weight: 600;
}
.icon-btn:hover { color: var(--primary); border-color: var(--primary); transform: translateY(-1px); }
.menu-btn { display: none; }

/* ===================== Buttons ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 14px 36px rgba(99, 102, 241, .35); }
.btn-ghost {
  background: var(--bg-elev);
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { color: var(--primary); border-color: var(--primary); transform: translateY(-2px); }
.btn-lg { padding: 14px 26px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }

/* ===================== Hero ===================== */
.hero {
  position: relative;
  padding: 84px 0 72px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -20% -20% auto auto;
  width: 60vw;
  height: 60vw;
  max-width: 720px;
  max-height: 720px;
  background: radial-gradient(closest-side, rgba(168, 85, 247, .25), transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto auto -30% -10%;
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  max-height: 600px;
  background: radial-gradient(closest-side, rgba(99, 102, 241, .22), transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.15;
  margin: 16px 0 18px;
  letter-spacing: -.02em;
}
.hero-text .lead {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 0 28px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(99, 102, 241, .1);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
}
[data-theme="dark"] .badge { background: rgba(168, 85, 247, .15); color: #c4b5fd; }

.hero-stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 36px 0 0;
  max-width: 560px;
}
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong { font-size: 22px; color: var(--text); }
.hero-stats span { font-size: 12.5px; color: var(--text-muted); }

/* Phone mockup */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-blob {
  position: absolute;
  inset: auto;
  width: 320px;
  height: 320px;
  background: var(--gradient);
  filter: blur(80px);
  opacity: .35;
  border-radius: 50%;
  z-index: -1;
}

/* Hero shot (real-device mockup image) */
.hero-shot {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: 22px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 24px 48px rgba(15, 23, 42, .22));
  transition: transform var(--transition);
}
.hero-shot:hover { transform: translateY(-4px); }
[data-theme="dark"] .hero-shot { filter: drop-shadow(0 24px 48px rgba(0, 0, 0, .55)); }
.phone {
  width: 290px;
  height: 590px;
  background: #0f172a;
  border-radius: 44px;
  padding: 14px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, .35), 0 0 0 1px rgba(255, 255, 255, .05) inset;
  position: relative;
}
[data-theme="dark"] .phone { box-shadow: 0 30px 60px rgba(0, 0, 0, .55), 0 0 0 1px rgba(255, 255, 255, .07) inset; }
.phone-notch {
  position: absolute;
  top: 14px; left: 50%;
  width: 110px; height: 24px;
  background: #0f172a;
  border-radius: 0 0 14px 14px;
  transform: translateX(-50%);
  z-index: 2;
}
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 32px;
  background: linear-gradient(180deg, #faf7ff 0%, #ffffff 50%);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.ph-statusbar {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
  color: #0f172a;
  padding: 14px 18px 4px;
}
.ph-icons { letter-spacing: -1px; opacity: .6; }
.ph-hero {
  margin: 8px 14px 12px;
  height: 130px;
  border-radius: 18px;
  background: var(--gradient);
  color: #fff;
  padding: 18px;
  position: relative;
  overflow: hidden;
}
.ph-hero h3 { margin: 0; font-size: 18px; }
.ph-hero p { margin: 4px 0 0; opacity: .85; font-size: 13px; }
.ph-pill {
  position: absolute;
  bottom: 12px; right: 12px;
  width: 70px; height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.ph-card {
  display: flex; gap: 10px;
  margin: 8px 14px;
  padding: 8px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(15, 23, 42, .06);
}
.ph-thumb {
  width: 60px; height: 50px;
  border-radius: 10px;
  background: linear-gradient(135deg, #fde68a, #fb923c);
}
.ph-thumb.alt { background: linear-gradient(135deg, #93c5fd, #6366f1); }
.ph-thumb.alt2 { background: linear-gradient(135deg, #6ee7b7, #10b981); }
.ph-lines { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 6px; }
.ph-lines b { display: block; height: 8px; border-radius: 4px; background: #1e293b; opacity: .85; width: 80%; }
.ph-lines i { display: block; height: 6px; border-radius: 3px; background: #cbd5e1; width: 55%; }
.ph-tabbar {
  margin-top: auto;
  display: flex; justify-content: space-around;
  padding: 14px 0 22px;
  border-top: 1px solid #f1f5f9;
}
.ph-tabbar span {
  width: 22px; height: 22px;
  border-radius: 8px;
  background: #e2e8f0;
}
.ph-tabbar span.active { background: var(--gradient); }

/* ===================== Sections ===================== */
.section { padding: 88px 0; position: relative; }
.section-alt { background: var(--bg-alt); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin: 0 0 14px;
  letter-spacing: -.02em;
}
.section-head p { color: var(--text-muted); margin: 0; font-size: 16.5px; }

/* ===================== Cards Grid ===================== */
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }

.card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(99, 102, 241, .35); }
.card-icon { font-size: 30px; margin-bottom: 12px; }
.card h3 { margin: 6px 0 10px; font-size: 19px; }
.card p { margin: 0; color: var(--text-muted); font-size: 15px; }

/* ===================== Templates ===================== */
.tpl {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.tpl:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.tpl-preview {
  position: relative;
  aspect-ratio: 16 / 10;
  padding: 18px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, #eef2ff 0%, #fae8ff 100%);
}
[data-theme="dark"] .tpl-preview { background: linear-gradient(135deg, #1a214a 0%, #2a1a4a 100%); }
.tpl-touch { background: linear-gradient(135deg, #fef3c7 0%, #fce7f3 100%); }
[data-theme="dark"] .tpl-touch { background: linear-gradient(135deg, #3b2a14 0%, #3d1a30 100%); }

.tpl-window {
  display: flex; gap: 6px; margin-bottom: 14px;
}
.tpl-window span {
  width: 11px; height: 11px; border-radius: 50%;
  background: rgba(15, 23, 42, .15);
}
.tpl-window span:nth-child(1) { background: #ef4444; }
.tpl-window span:nth-child(2) { background: #f59e0b; }
.tpl-window span:nth-child(3) { background: #10b981; }

.tpl-mock {
  background: #fff;
  border-radius: 10px;
  padding: 12px;
  height: calc(100% - 32px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, .08);
}
[data-theme="dark"] .tpl-mock { background: #0f172a; }

.tpl-bar { height: 26px; border-radius: 6px; background: linear-gradient(90deg, #6366f1, #a855f7); }
.tpl-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; flex: 1; }
.tpl-list > div {
  border-radius: 8px;
  background: linear-gradient(135deg, #e2e8f0, #f1f5f9);
}
[data-theme="dark"] .tpl-list > div { background: linear-gradient(135deg, #1e293b, #0f172a); }

.tpl-hero {
  height: 60px;
  border-radius: 8px;
  background: linear-gradient(120deg, #f59e0b, #ec4899);
  position: relative;
}
.tpl-pill {
  height: 18px;
  width: 60%;
  border-radius: 999px;
  background: rgba(99, 102, 241, .85);
  margin: -10px auto 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(99, 102, 241, .35);
}
.tpl-cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; flex: 1; }
.tpl-cards > div { border-radius: 8px; background: linear-gradient(135deg, #fde68a, #fbcfe8); }
[data-theme="dark"] .tpl-cards > div { background: linear-gradient(135deg, #422a14, #3a1f33); }

.tpl-body { padding: 22px 24px; }
.tpl-body h3 { margin: 0 0 6px; font-size: 19px; }
.tpl-body p { margin: 0 0 12px; color: var(--text-muted); font-size: 15px; }
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(16, 185, 129, .14);
  color: #059669;
  font-size: 12.5px;
  font-weight: 600;
}
[data-theme="dark"] .tag { background: rgba(16, 185, 129, .18); color: #6ee7b7; }

/* Templates real-device shot */
.tpl-shot {
  margin: 40px 0 0;
  padding: 0;
  text-align: center;
}
.tpl-shot img {
  /* display: block; */
  /* width: 100%; */
  /* max-width: 960px; */
  height: auto;
  margin: 0 auto;
  /* border-radius: 20px; */
  /* box-shadow: 0 24px 60px rgba(15, 23, 42, .18); */
  transition: transform var(--transition), box-shadow var(--transition);
}
.tpl-shot img:hover {
  transform: translateY(-4px);
  /* box-shadow: 0 30px 70px rgba(15, 23, 42, .22); */
}

/* [data-theme="dark"] .tpl-shot img { box-shadow: 0 24px 60px rgba(0, 0, 0, .55); } */

.tpl-shot figcaption {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 14.5px;
}

.tpl-future { text-align: center; margin-top: 28px; color: var(--text-muted); }

/* ===================== Download ===================== */
.download-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 44px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.download-card::before {
  content: "";
  position: absolute;
  inset: -50% -10% auto auto;
  width: 60%;
  height: 200%;
  background: radial-gradient(closest-side, rgba(168, 85, 247, .15), transparent 70%);
  z-index: 0;
}
.download-card > * { position: relative; z-index: 1; }

.download-card h2 { margin: 0 0 12px; font-size: clamp(24px, 3vw, 32px); }
.download-card p { margin: 0 0 20px; color: var(--text-muted); }

.dl-meta {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}
.dl-meta li {
  display: flex; flex-direction: column;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
}
.dl-meta span { font-size: 12px; color: var(--text-muted); }
.dl-meta b { font-size: 15px; }

.download-actions { display: flex; flex-direction: column; gap: 12px; align-items: stretch; }
.download-actions .btn { width: 100%; justify-content: center; }

/* ===================== Pricing ===================== */
.pricing-grid { max-width: 920px; margin: 0 auto; }

.plan {
  position: relative;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.plan-pro {
  border: 1.5px solid transparent;
  background:
    linear-gradient(var(--bg-elev), var(--bg-elev)) padding-box,
    var(--gradient) border-box;
}
.plan-flag {
  position: absolute;
  top: -12px; right: 24px;
  background: var(--gradient);
  color: #fff;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  box-shadow: var(--shadow);
}
.plan-head h3 { margin: 0; font-size: 22px; }
.plan-price { margin: 14px 0 6px; display: flex; align-items: baseline; gap: 6px; }
.plan-price .amount { font-size: 40px; font-weight: 800; letter-spacing: -.02em; }
.plan-price .period { color: var(--text-muted); font-size: 14px; }
.plan-head p { margin: 0; color: var(--text-muted); font-size: 14.5px; }

.plan-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.plan-list li { font-size: 15px; }

.plan-actions { display: flex; flex-direction: column; gap: 10px; }

/* PayPal subscription states */
/* Ensure [hidden] always wins over component display rules */
.pp-success[hidden],
.pp-error[hidden] { display: none !important; }

.pp-success {
  background: rgba(16, 185, 129, .12);
  border: 1px solid rgba(16, 185, 129, .35);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14.5px;
}
[data-theme="dark"] .pp-success {
  background: rgba(16, 185, 129, .15);
  border-color: rgba(16, 185, 129, .45);
}
.pp-success strong { font-size: 15.5px; color: #047857; }
[data-theme="dark"] .pp-success strong { color: #6ee7b7; }
.pp-success p { margin: 0; color: var(--text); }
.pp-success p.muted { color: var(--text-muted); font-size: 13.5px; }
.pp-success code {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  word-break: break-all;
}
.pp-error {
  background: rgba(239, 68, 68, .1);
  color: #b91c1c;
  border: 1px solid rgba(239, 68, 68, .3);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13.5px;
  margin: 0;
}
[data-theme="dark"] .pp-error { color: #fca5a5; background: rgba(239, 68, 68, .12); }

.pricing-note { text-align: center; margin: 30px auto 0; color: var(--text-muted); max-width: 720px; }

/* ===================== FAQ ===================== */
.faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq details {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 22px;
  transition: border-color var(--transition);
}
.faq details[open] { border-color: rgba(99, 102, 241, .4); }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-weight: 400;
  font-size: 22px;
  color: var(--text-muted);
  transition: transform var(--transition);
}
.faq details[open] summary::after { content: "−"; color: var(--primary); }
.faq p { margin: 12px 0 0; color: var(--text-muted); font-size: 15px; }

/* ===================== CTA Band ===================== */
.cta-band {
  padding: 70px 0;
  background: var(--gradient);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(at 20% 20%, rgba(255, 255, 255, .15), transparent 40%),
    radial-gradient(at 80% 80%, rgba(255, 255, 255, .1), transparent 40%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
}
.cta-inner h2 { font-size: clamp(22px, 3vw, 32px); margin: 0; max-width: 640px; }
.cta-band .btn-primary { background: #fff; color: var(--primary); }
.cta-band .btn-primary:hover { color: var(--primary-2); }
.cta-band .btn-ghost { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .35); color: #fff; }
.cta-band .btn-ghost:hover { background: rgba(255, 255, 255, .2); color: #fff; border-color: #fff; }

/* ===================== Footer ===================== */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 56px 0 28px;
  color: var(--text-muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
}
.footer-grid h4 { color: var(--text); margin: 0 0 14px; font-size: 15px; }
.footer-grid a { display: block; margin-bottom: 10px; font-size: 14.5px; }
.footer-bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13.5px;
}

/* ===================== Responsive ===================== */
@media (max-width: 960px) {
  .hero { padding: 56px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .download-card { grid-template-columns: 1fr; padding: 30px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .nav-links { display: none; position: absolute; top: var(--header-h); left: 0; right: 0;
    background: var(--bg-elev); flex-direction: column; padding: 20px 24px; border-bottom: 1px solid var(--border); gap: 14px; }
  .nav-links.open { display: flex; }
  .nav-links a.cta { width: fit-content; }
  .menu-btn { display: inline-flex; }

  .section { padding: 64px 0; }
  .grid-3, .grid-2, .pricing-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .phone { width: 240px; height: 490px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
