/* ============================================================
   MOJIKEY — Landing Page
   Premium AI SaaS aesthetic: Apple / Linear / Notion inspired
   ============================================================ */

:root {
  --navy-900: #0b1630;
  --navy-700: #1c2d52;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-400: #60a5fa;
  --blue-100: #dbeafe;
  --gray-600: #5b6678;
  --gray-400: #9aa3b5;
  --line: #e6ebf4;
  --orange-a: #ff9a3d;
  --orange-b: #ff5e3a;
  --shadow-soft: 0 10px 30px rgba(16, 42, 92, 0.10);
  --shadow-card: 0 6px 24px rgba(21, 55, 122, 0.10), 0 1px 3px rgba(21, 55, 122, 0.06);
  --radius-lg: 14px;
  --radius-md: 12px;
  --max-w: 1200px;
  --header-h: 64px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  color: var(--navy-900);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

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

/* ---------------- Background glow ---------------- */

.bg-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(52% 40% at 78% 4%, rgba(147, 197, 253, 0.28), transparent 70%),
    radial-gradient(38% 34% at 8% 18%, rgba(191, 219, 254, 0.30), transparent 70%),
    radial-gradient(46% 40% at 50% 108%, rgba(219, 234, 254, 0.5), transparent 72%);
}

/* ---------------- Buttons ---------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  border-radius: 999px;
  height: 44px;
  padding: 0 24px;
  font-size: 14.5px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange-a), var(--orange-b));
  color: #fff;
  box-shadow: 0 8px 22px rgba(255, 110, 60, 0.32);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(255, 110, 60, 0.4);
}

.btn-secondary {
  background: #fff;
  color: var(--navy-700);
  border: 1px solid var(--line);
  box-shadow: 0 1px 2px rgba(16, 42, 92, 0.04);
}

.btn-secondary:hover {
  border-color: #cdd8ea;
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}

.btn-play {
  background: linear-gradient(135deg, var(--orange-a), var(--orange-b));
  color: #fff;
  box-shadow: 0 8px 22px rgba(255, 110, 60, 0.32);
}

.btn-play:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(255, 110, 60, 0.4);
}

.btn-play .play-ic { width: 18px; height: 20px; }

.btn-dark {
  background: #111827;
  color: #fff;
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.3);
}

.btn-dark:hover {
  background: #1f2937;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.36);
}

.btn-sm { height: 36px; padding: 0 18px; font-size: 13.5px; }
.btn-lg { height: 52px; padding: 0 28px; font-size: 15.5px; }

.btn .arrow { width: 17px; height: 17px; }

/* ---------------- Header ---------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: transparent;
  border-bottom: 1px solid rgba(230, 235, 244, 0.7);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 900;
  font-size: 17px;
  letter-spacing: 0.02em;
  color: var(--navy-900);
}

.logo-mark { width: 28px; height: auto; }

.logo-accent {
  font-style: normal;
  color: #1C68E7;
}

.logo-spark {
  color: #FF5B23;
  font-size: 10.5px;
  line-height: 1;
  transform: translateY(-5px);
  margin-left: -4px;
}

.main-nav {
  display: flex;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy-700);
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.15s ease, background 0.15s ease;
}

.nav-link:hover { background: #f1f5fb; }

.nav-link.active { color: var(--blue-600); font-weight: 600; }

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy-900);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  padding: 12px 24px 20px;
  position: absolute;
  left: 0;
  right: 0;
  top: var(--header-h);
}

.mobile-nav a { padding: 12px 8px; font-size: 15px; }

/* ---------------- Hero ---------------- */

.hero {
  padding: 84px 0 120px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 40fr 60fr;
  gap: 48px;
  align-items: center;
}

/* Left column */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #eaf2ff;
  color: var(--blue-600);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 15px;
  border-radius: 999px;
  letter-spacing: 0.01em;
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.12);
}

.badge svg { width: 14px; height: 14px; }

.hero-title {
  margin-top: 26px;
  font-size: 48px;
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy-900);
}

.hero-desc {
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--gray-600);
  max-width: 480px;
}

.hero-cta {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

/* Google Play 主按钮与右侧黑底 Download 按钮挤在同一按钮区域里：
   Play 约占 2/3，Download 让出约 1/3，总宽维持原单一主按钮的范围 */
.hero-cta .btn-play {
  flex: none;
  width: 242px;
}

.hero-cta .btn-dark {
  flex: none;
  width: 128px;
  padding: 0 14px;
}

.hero-badges {
  margin-top: 44px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.glass-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-md);
  padding: 11px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy-700);
}

.glass-badge svg { width: 19px; height: 19px; flex: none; }

/* Right column */

.hero-visual {
  position: relative;
  min-height: 460px;
  margin-right: -32px;
}

.phone-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 2;
  animation: phoneFloat 7s ease-in-out infinite;
}

.phone-img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes phoneFloat {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-9px); }
}

.glow-orb {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 460px;
  height: 460px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(96, 165, 250, 0.22), rgba(147, 197, 253, 0.08) 45%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  filter: blur(6px);
}

/* Sparkles */

.sparkle {
  position: absolute;
  width: 16px;
  height: 16px;
  z-index: 3;
  animation: sparkle 3.2s ease-in-out infinite;
}

.sparkle.s1 { left: 16%; top: 14%; }
.sparkle.s2 { right: 15%; top: 10%; width: 12px; height: 12px; animation-delay: 0.8s; }
.sparkle.s3 { left: 9%; bottom: 24%; width: 12px; height: 12px; animation-delay: 1.6s; }
.sparkle.s4 { right: 8%; bottom: 12%; animation-delay: 2.4s; }

@keyframes sparkle {
  0%, 100% { opacity: 0.25; transform: scale(0.8) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.15) rotate(12deg); }
}

/* ---------------- Feature section ---------------- */

.feature-section {
  padding: 88px 0 96px;
  border-top: 1px solid var(--line);
}

.feature-grid {
  display: grid;
  grid-template-columns: 40fr 60fr;
  gap: 56px;
  align-items: center;
}

.feature-title {
  margin-top: 24px;
  font-size: 48px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy-900);
}

.feature-desc {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--gray-600);
  max-width: 460px;
}

.feature-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 420px;
}

.feature-glow {
  position: absolute;
  left: 2%;
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.20), rgba(147, 197, 253, 0.07) 45%, transparent 70%);
  border-radius: 50%;
  filter: blur(6px);
  z-index: 0;
}

.feature-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.8;
  pointer-events: none;
}

.line {
  stroke-dasharray: 8 10;
}

.feature-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 220px;
  flex: none;
  position: relative;
  z-index: 3;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px) saturate(1.5);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(23, 58, 125, 0.12), 0 2px 6px rgba(23, 58, 125, 0.05);
  padding: 14px 16px;
  animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.feature-card:nth-child(2) { animation-delay: 0.8s; }
.feature-card:nth-child(3) { animation-delay: 1.6s; }
.feature-card:nth-child(4) { animation-delay: 2.4s; }

.feature-card strong {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.3;
}

.feature-card div > span {
  display: block;
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--gray-600);
  margin-top: 3px;
}

.fc-icon {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  flex: none;
}

.fc-icon svg { width: 19px; height: 19px; }

.ic-orange { background: #fdf0e2; color: #ee8a2e; }
.ic-green { background: #e4f7ec; color: #2eaf6d; }
.ic-pink { background: #fde7f1; color: #e85d9c; }
.ic-blue { background: #e0effe; color: #2f80ed; }
.ic-amber { background: #fdf1dd; color: #e8912d; }
.ic-violet { background: #eceafd; color: #7c5cf0; }

.feature-phone {
  width: 300px;
  flex: none;
  position: relative;
  z-index: 2;
  animation: phoneFloatPlain 7s ease-in-out infinite;
}

@keyframes phoneFloatPlain {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.feature-img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-visual .sparkle {
  z-index: 3;
}

.feature-visual .sparkle.s1 { left: 38%; top: 4%; }
.feature-visual .sparkle.s2 { right: 0%; top: 12%; animation-delay: 0.8s; }
.feature-visual .sparkle.s3 { left: 44%; bottom: 6%; animation-delay: 1.6s; }
.feature-visual .sparkle.s4 { right: 12%; bottom: 2%; animation-delay: 2.4s; }

/* ---------------- AI & Personas ---------------- */

.persona-section {
  padding: 88px 0 96px;
  border-top: 1px solid var(--line);
}

.persona-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto;
}

.persona-title {
  margin-top: 24px;
  font-size: 44px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy-900);
}

.persona-desc {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--gray-600);
}

.persona-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.persona-col {
  --cat-color: #2f80ed;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.persona-col:nth-child(1) { --cat-color: #e85d9c; }
.persona-col:nth-child(2) { --cat-color: #2f80ed; }
.persona-col:nth-child(3) { --cat-color: #e8912d; }
.persona-col:nth-child(4) { --cat-color: #2eaf6d; }

.persona-cat {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy-900);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.persona-cat::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cat-color);
  flex: none;
}

.persona-card {
  background: linear-gradient(180deg, #ffffff 0%, #f3f9ff 100%);
  border: 1px solid rgba(219, 234, 254, 0.85);
  border-radius: 18px;
  padding: 18px 16px 16px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 0 32px rgba(147, 197, 253, 0.10),
    0 10px 30px rgba(37, 99, 235, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.persona-card:hover {
  transform: translateY(-4px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 0 32px rgba(147, 197, 253, 0.14),
    0 18px 38px rgba(37, 99, 235, 0.12);
}

.persona-col .persona-icon {
  width: 44px;
  height: 44px;
}

.persona-col .persona-icon svg {
  width: 19px;
  height: 19px;
}

.persona-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.persona-icon svg {
  width: 24px;
  height: 24px;
}

.persona-card h4 {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy-900);
}

.persona-card p {
  margin-top: 6px;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--gray-600);
}

/* ---------------- Why MOJIKEY ---------------- */

.why-section {
  padding: 88px 0 96px;
  border-top: 1px solid var(--line);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.why-card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  padding: 24px;
  background: linear-gradient(180deg, #ffffff, #f6fafd);
  border: 1px solid rgba(230, 235, 244, 0.9);
  box-shadow: 0 12px 28px rgba(16, 42, 92, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(16, 42, 92, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.why-card h3 {
  margin-top: 18px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy-900);
}

.why-card p {
  margin-top: 8px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--gray-600);
}

/* ---------------- CTA banner ---------------- */

.cta-section {
  padding: 0;
}

.cta-banner {
  position: relative;
  margin-left: -32px;
  margin-right: -32px;
}

.cta-art {
  display: block;
  width: 100%;
  height: auto;
}

.cta-copy {
  position: absolute;
  left: 6%;
  top: 11%;
  max-width: 400px;
}

.cta-title {
  margin-top: 20px;
  font-size: 46px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy-900);
}

.cta-desc {
  margin-top: 16px;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--gray-600);
}

.btn-cta {
  margin-top: 22px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #fff;
  box-shadow: 0 10px 26px rgba(37, 99, 235, 0.35);
  height: 48px;
  padding: 0 30px;
  font-size: 15px;
}

.btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.45);
}

/* ---------------- Placeholder sections ---------------- */

.placeholder-section {
  padding: 96px 0;
  border-top: 1px solid var(--line);
  text-align: center;
}

.placeholder-section h2 {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy-900);
}

.placeholder-section p {
  margin-top: 10px;
  color: var(--gray-400);
  font-size: 15px;
}

/* ---------------- Legal / Privacy page ---------------- */

.legal-page {
  padding: 72px 0 24px;
}

.legal-card {
  max-width: 780px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  padding: 48px 56px 40px;
}

.legal-card h1 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy-900);
}

.legal-dates {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray-400);
}

.legal-intro {
  margin-top: 24px;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--gray-600);
}

.legal-section {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.legal-section:first-of-type {
  margin-top: 24px;
  padding-top: 0;
  border-top: none;
}

.legal-section h2 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy-900);
}

.legal-section p {
  margin-top: 10px;
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--gray-600);
}

.legal-action {
  margin-top: 16px;
}

@media (max-width: 768px) {
  .legal-page { padding: 48px 0 16px; }
  .legal-card { padding: 32px 24px; border-radius: 18px; }
  .legal-card h1 { font-size: 28px; }
  .legal-section h2 { font-size: 16.5px; }
}

/* ---------------- FAQ page ---------------- */

.faq-group {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.faq-group:first-of-type {
  margin-top: 24px;
  padding-top: 0;
  border-top: none;
}

.faq-group > h2 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  padding: 18px 4px 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-900);
}

.faq-item p {
  margin: 0 4px 20px;
  max-width: 640px;
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--gray-600);
}

.faq-item a { color: var(--blue-600); }
.faq-item a:hover { text-decoration: underline; }

/* ---------------- Footer ---------------- */

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 64px 0 0;
  margin-top: 96px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 2.5fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand .logo { font-size: 19px; }
.footer-brand .logo-mark { display: none; }

.footer-brand p {
  margin-top: 18px;
  max-width: 260px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray-400);
}

.footer-copy {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray-400);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--navy-900);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 13.5px;
  color: var(--gray-600);
  transition: color 0.15s ease;
}

.footer-col a:hover { color: var(--blue-600); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 20px 0 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--gray-400);
}

/* ---------------- Responsive ---------------- */

@media (max-width: 1024px) {
  .hero { padding: 56px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 72px; }
  .hero-copy { text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-visual { min-height: 430px; max-width: 620px; width: 100%; justify-self: center; margin-right: 0; }
  .persona-section { padding: 64px 0 72px; }
  .persona-title { font-size: 38px; }
  .persona-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .feature-section { padding: 64px 0 72px; }
  .feature-grid { grid-template-columns: 1fr; gap: 64px; }
  .feature-copy { text-align: center; }
  .feature-desc { margin-left: auto; margin-right: auto; }
  .feature-visual { max-width: 700px; margin: 0 auto; justify-self: center; width: 100%; }
  .cta-section { padding: 0; }
  .why-section { padding: 64px 0 72px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav.open { display: flex; }
  .hero-title { font-size: 40px; }
  .hero-desc { font-size: 16.5px; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { width: auto; }
  .hero-cta .btn-play { flex: 2; width: auto; height: 56px; font-size: 15.5px; }
  .hero-cta .btn-dark { flex: 1; width: auto; height: 56px; padding: 0 10px; font-size: 15px; }
  .hero-visual { min-height: 240px; }
  .site-footer { padding-top: 48px; margin-top: 72px; }
  .site-footer .container { flex-direction: column; gap: 8px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .cta-title { font-size: 36px; }
  .cta-desc { font-size: 15.5px; }
  .cta-copy {
    position: static;
    transform: none;
    max-width: none;
    padding: 32px 28px;
  }
  .cta-banner {
    margin-left: -20px;
    margin-right: -20px;
  }
  .persona-title { font-size: 32px; }
  .persona-desc { font-size: 15.5px; }
  .persona-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 40px; }
  .footer-cols { grid-template-columns: 1fr; gap: 28px; }
  .feature-title { font-size: 34px; }
  .feature-desc { font-size: 16px; }
  .feature-lines { display: none; }
  .feature-visual { flex-direction: column; gap: 36px; }
  .feature-cards { width: 100%; flex-direction: row; flex-wrap: wrap; gap: 12px; }
  .feature-card { width: calc(50% - 6px); min-height: 0; padding: 12px 14px; }
  .feature-phone { width: 240px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
