@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600;1,700&family=Inter:wght@400;500;600;700&display=swap');

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

:root {
  --coral:        #FF6B6B;
  --coral-light:  #FFE8E8;
  --coral-dark:   #E05252;
  --coral-glow:   rgba(255, 107, 107, 0.22);
  --pink:         #FF8E9E;
  --amber:        #FFB347;
  --amber-light:  #FFF3E0;
  --warm-bg:      #FFF8F5;
  --warm-card:    #FFFCFA;
  --warm-mid:     #FFF0EC;
  --text:         #1C1217;
  --text-muted:   #7A6872;
  --border:       #EDE4E8;
  --border-soft:  rgba(237, 228, 232, 0.7);
  --white:        #FFFFFF;
  --radius:       18px;
  --radius-sm:    12px;
  --radius-xs:    8px;
  --max-width:    820px;
  --shadow-soft:  0 4px 28px rgba(255, 107, 107, 0.10);
  --shadow-card:  0 2px 14px rgba(28, 18, 23, 0.07);
  --shadow-lift:  0 8px 32px rgba(255, 107, 107, 0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--warm-bg);
  line-height: 1.7;
  font-size: 16px;
}

/* ── NAV ──────────────────────────────────────────── */
nav {
  background: rgba(255, 252, 250, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-soft);
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(255, 107, 107, 0.20);
}

.nav-logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  font-style: italic;
  color: var(--coral);
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--coral);
}

/* ── HERO ─────────────────────────────────────────── */
.hero {
  background: linear-gradient(145deg, #FFF5F5 0%, #FFF8F2 40%, #FFF5FA 75%, #FFF0EC 100%);
  padding: 80px 24px 72px;
  border-bottom: 1px solid var(--border-soft);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(255, 107, 107, 0.09) 0%, transparent 68%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 179, 71, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: center;
}

.hero-left {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--coral-light);
  color: var(--coral-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 107, 107, 0.22);
}

.hero-badge::before {
  content: '♥';
  font-size: 10px;
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.07;
}

.hero h1 span {
  color: var(--coral);
  font-style: italic;
}

.hero-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 420px;
  margin-bottom: 40px;
  line-height: 1.65;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  color: var(--white);
  text-decoration: none;
  padding: 15px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 6px 28px rgba(255, 107, 107, 0.35);
  transition: transform 0.15s, box-shadow 0.15s;
  letter-spacing: 0.1px;
}

.app-store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(255, 107, 107, 0.42);
}

.app-store-btn::before {
  content: '';
  display: inline-block;
  width: 19px;
  height: 19px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M18.71 19.5c-.83 1.24-1.71 2.45-3.05 2.47-1.34.03-1.77-.79-3.29-.79-1.53 0-2 .77-3.27.82-1.31.05-2.3-1.32-3.14-2.53C4.25 17 2.94 12.45 4.7 9.39c.87-1.52 2.43-2.48 4.12-2.51 1.28-.02 2.5.87 3.29.87.78 0 2.26-1.07 3.8-.91.65.03 2.47.26 3.64 1.98-.09.06-2.17 1.28-2.15 3.81.03 3.02 2.65 4.03 2.68 4.04-.03.07-.42 1.44-1.38 2.83M13 3.5c.73-.83 1.94-1.46 2.94-1.5.13 1.17-.34 2.35-1.04 3.19-.69.85-1.83 1.51-2.95 1.42-.15-1.15.41-2.35 1.05-3.11z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.hero-sub {
  font-size: 13px;
  color: var(--text-muted);
  opacity: 0.75;
  letter-spacing: 0.1px;
}

/* ── PHONE MOCKUP ─────────────────────────────────── */
.hero-right {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.phone-wrap {
  position: relative;
}

.phone-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse, rgba(255, 107, 107, 0.18) 0%, transparent 65%);
  border-radius: 60px;
  pointer-events: none;
}

.phone-outer {
  width: 230px;
  height: 460px;
  background: #1A1018;
  border-radius: 44px;
  padding: 9px;
  box-shadow:
    0 48px 80px rgba(28, 16, 24, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
  animation: phoneFloat 4s ease-in-out infinite;
}

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

.phone-screen {
  background: linear-gradient(165deg, #FFF5F5 0%, #FFF8F2 100%);
  border-radius: 36px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.phone-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px 6px;
  font-size: 9px;
  font-weight: 600;
  color: var(--text);
  opacity: 0.75;
}

.phone-notch {
  width: 60px;
  height: 18px;
  background: #1A1018;
  border-radius: 0 0 14px 14px;
  margin: 0 auto -10px;
}

.phone-header {
  padding: 10px 16px 6px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 15px;
  font-weight: 700;
  font-style: italic;
  color: var(--text);
}

.phone-card {
  margin: 6px 12px;
  background: var(--white);
  border-radius: 14px;
  padding: 14px 14px 12px;
  box-shadow: 0 2px 12px rgba(255, 107, 107, 0.10);
  border: 1px solid rgba(255, 107, 107, 0.10);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.phone-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--coral-light);
  color: var(--coral-dark);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 10px;
  width: fit-content;
}

.phone-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.phone-card-body {
  font-size: 10px;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
}

.phone-card-btn {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  color: var(--white);
  font-size: 9.5px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 20px;
  text-align: center;
  margin-top: 2px;
}

.phone-memories-row {
  display: flex;
  gap: 6px;
  padding: 0 12px 4px;
}

.phone-memory-dot {
  height: 44px;
  border-radius: 10px;
  flex: 1;
  background: linear-gradient(135deg, #FFE8E8 0%, #FFF0E8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border: 1px solid rgba(255, 107, 107, 0.10);
}

.phone-tabs {
  display: flex;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 8px 0 10px;
}

.phone-tab {
  flex: 1;
  text-align: center;
  font-size: 16px;
  opacity: 0.35;
  line-height: 1;
}

.phone-tab.active {
  opacity: 1;
}

/* ── FLOATING BADGES ──────────────────────────────── */
.hero-badge-float {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px 12px;
  box-shadow: var(--shadow-card);
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  z-index: 2;
}

.hero-badge-float .badge-icon {
  font-size: 16px;
}

.hero-badge-float.memories {
  top: 24px;
  right: -52px;
  animation: badgeFloat1 4s ease-in-out infinite;
}

.hero-badge-float.streak {
  bottom: 52px;
  right: -48px;
  animation: badgeFloat2 4s ease-in-out infinite 0.8s;
}

@keyframes badgeFloat1 {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  50%       { transform: translateY(-6px) rotate(-2deg); }
}

@keyframes badgeFloat2 {
  0%, 100% { transform: translateY(0px) rotate(1deg); }
  50%       { transform: translateY(-5px) rotate(1deg); }
}

/* ── STATS BAND ───────────────────────────────────── */
.stats-band {
  background: var(--white);
  border-bottom: 1px solid var(--border-soft);
  padding: 32px 24px;
}

.stats-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 0 48px;
  border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--coral);
  line-height: 1.1;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
  font-weight: 500;
}

/* ── FEATURES ─────────────────────────────────────── */
.features {
  padding: 88px 24px;
}

.features-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  justify-content: center;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border));
}

.section-eyebrow::before {
  background: linear-gradient(to left, transparent, var(--border));
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--coral);
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  color: var(--text);
  text-align: center;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 52px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  background: var(--warm-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow-card);
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--coral) 0%, var(--pink) 100%);
  opacity: 0;
  transition: opacity 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(255, 107, 107, 0.2);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--coral-light) 0%, var(--warm-mid) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
}

.feature-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

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

/* ── HOW IT WORKS ─────────────────────────────────── */
.how-it-works {
  background: var(--white);
  padding: 88px 24px;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.how-it-works-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 52px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--coral-light), var(--coral), var(--coral-light));
  opacity: 0.5;
}

.step {
  text-align: center;
  position: relative;
}

.step-num {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.30);
  position: relative;
  z-index: 1;
}

.step h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 200px;
  margin: 0 auto;
}

/* ── QUOTE BAND ───────────────────────────────────── */
.quote-band {
  background: linear-gradient(135deg, var(--coral) 0%, #E8506A 60%, #C84060 100%);
  padding: 64px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-band::before {
  content: '"';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 280px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
  pointer-events: none;
}

.quote-band blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 27px;
  font-style: italic;
  font-weight: 600;
  color: var(--white);
  max-width: 580px;
  margin: 0 auto 14px;
  line-height: 1.42;
  position: relative;
  z-index: 1;
}

.quote-band cite {
  font-size: 13px;
  color: rgba(255,255,255,0.60);
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

/* ── CTA SECTION ──────────────────────────────────── */
.cta-section {
  padding: 88px 24px;
  text-align: center;
  background: linear-gradient(160deg, #FFF5F5 0%, var(--warm-bg) 100%);
}

.cta-inner {
  max-width: 560px;
  margin: 0 auto;
}

.cta-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  margin: 0 auto 28px;
  object-fit: cover;
  box-shadow: 0 12px 36px rgba(255, 107, 107, 0.22);
}

.cta-section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.15;
}

.cta-section p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.6;
}

.cta-sub {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
  opacity: 0.7;
}

/* ── LEGAL / SUPPORT PAGES ────────────────────────── */
.page-header {
  background: linear-gradient(160deg, #FFF5F5 0%, var(--warm-bg) 100%);
  border-bottom: 1px solid var(--border-soft);
  padding: 56px 24px 46px;
}

.page-header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.page-header h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  color: var(--text);
}

.page-header .updated {
  font-size: 14px;
  color: var(--text-muted);
}

.content {
  max-width: var(--max-width);
  margin: 48px auto;
  padding: 0 24px 80px;
}

.content h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  margin: 40px 0 12px;
  color: var(--text);
}

.content h2:first-child { margin-top: 0; }

.content p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.content ul, .content ol {
  color: var(--text-muted);
  padding-left: 20px;
  margin-bottom: 16px;
}

.content li { margin-bottom: 8px; }

.content a {
  color: var(--coral);
  text-decoration: none;
}

.content a:hover { text-decoration: underline; }

.highlight-box {
  background: var(--coral-light);
  border-left: 3px solid var(--coral);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 15px;
  color: var(--text);
}

/* ── SUPPORT PAGE ─────────────────────────────────── */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 32px 0 48px;
}

.support-card {
  background: var(--warm-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.support-card .icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.support-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.support-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.support-card a {
  display: inline-block;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  color: var(--white);
  text-decoration: none;
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  transition: opacity 0.2s, transform 0.15s;
}

.support-card a:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

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

.faq-item:last-child { border-bottom: none; }

.faq-item h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.faq-item p {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
}

/* ── FOOTER ───────────────────────────────────────── */
footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 44px 24px 32px;
  text-align: center;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.footer-logo img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(255, 107, 107, 0.18);
}

.footer-logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 700;
  color: var(--coral);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  list-style: none;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--coral); }

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.65;
}

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 720px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-cta { align-items: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-right { display: flex; justify-content: center; }
  .hero-badge-float { display: none; }

  .hero h1       { font-size: 40px; }
  .section-title { font-size: 28px; }
  .page-header h1 { font-size: 30px; }

  .feature-grid  { grid-template-columns: 1fr 1fr; }
  .steps-grid    { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }

  .stat-item { padding: 12px 24px; border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .stats-inner { flex-direction: column; align-items: center; }

  .quote-band blockquote { font-size: 20px; }
  .cta-section h2 { font-size: 26px; }
  .nav-links { gap: 18px; }
}

@media (max-width: 480px) {
  .feature-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 34px; }
  .phone-outer { width: 200px; height: 400px; }
}
