/* ══════════════════════════════════════════
   1stLumi Website – style.css
   ══════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #f97316;
  --orange-dark: #ea580c;
  --pink: #ec4899;
  --purple: #8b5cf6;
  --blue: #3b82f6;
  --indigo: #6366f1;
  --green: #22c55e;
  --red: #ef4444;
  --teal: #14b8a6;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --text: #111827;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.12);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

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

img { max-width: 100%; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 50px; font-weight: 600;
  font-size: 15px; cursor: pointer; transition: all var(--transition);
  border: 2px solid transparent; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange), #f43f5e);
  color: #fff;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(249,115,22,.4); }
.btn-outline { border-color: var(--orange); color: var(--orange); }
.btn-outline:hover { background: var(--orange); color: #fff; }
.btn-white { background: #fff; color: var(--orange); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,255,255,.3); }
.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-xl { padding: 18px 44px; font-size: 17px; }

/* ── Navbar ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.92); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
#navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.08); }

.nav-inner {
  display: flex; align-items: center; gap: 32px;
  height: 68px;
}

.nav-logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 20px; font-weight: 800; color: var(--text);
  flex-shrink: 0;
}
.logo-icon { font-size: 24px; }
.logo-text strong { color: var(--orange); }

.nav-links {
  display: flex; list-style: none; gap: 8px; margin-left: auto;
}
.nav-links a {
  padding: 6px 14px; border-radius: 8px; font-weight: 500;
  font-size: 14px; color: var(--text-muted);
  transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); background: rgba(249,115,22,.07); }

.nav-cta { margin-left: 8px; padding: 10px 20px; font-size: 14px; }

.hamburger {
  display: none; background: none; border: none; font-size: 20px;
  cursor: pointer; color: var(--text); margin-left: auto;
  width: 42px; height: 42px; border-radius: 12px;
  align-items: center; justify-content: center; line-height: 1;
  transition: background var(--transition), transform var(--transition);
  -webkit-tap-highlight-color: transparent;
}
.hamburger:active { transform: scale(.92); }
.hamburger:hover { background: rgba(249,115,22,.08); }

/* ── Section Header ── */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: clamp(28px,4vw,42px); font-weight: 800; line-height: 1.2; margin: 12px 0 16px; }
.section-header p { font-size: 17px; color: var(--text-muted); max-width: 560px; margin: 0 auto; }
.section-header.light h2, .section-header.light p { color: #fff; }
.section-header.light p { opacity: .85; }

.section-badge {
  display: inline-block; padding: 6px 16px; border-radius: 50px;
  background: rgba(249,115,22,.1); color: var(--orange);
  font-size: 13px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
}
.section-badge.dark {
  background: rgba(255,255,255,.15); color: #fff;
}

/* ── Hero ── */
.hero {
  position: relative; min-height: 100vh; padding: 120px 0 0;
  background: linear-gradient(135deg, #fff9f5 0%, #fff0f9 50%, #f0f7ff 100%);
  overflow: hidden; display: flex; flex-direction: column;
}

.hero-bg-blobs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .35; animation: blobFloat 8s ease-in-out infinite; }
.blob-1 { width: 600px; height: 600px; background: radial-gradient(circle, #fdba74, #f9a8d4); top: -200px; right: -100px; animation-delay: 0s; }
.blob-2 { width: 400px; height: 400px; background: radial-gradient(circle, #c4b5fd, #93c5fd); bottom: 100px; left: -100px; animation-delay: 3s; }
.blob-3 { width: 300px; height: 300px; background: radial-gradient(circle, #6ee7b7, #a5f3fc); top: 30%; right: 30%; animation-delay: 5s; }

@keyframes blobFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(20px,-20px) scale(1.05); }
}

.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; flex: 1; padding-bottom: 80px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: 50px;
  background: rgba(249,115,22,.12); color: var(--orange);
  font-size: 13px; font-weight: 700; margin-bottom: 24px;
  border: 1px solid rgba(249,115,22,.2);
}

.hero-text h1 {
  font-size: clamp(36px,5vw,58px); font-weight: 900; line-height: 1.1;
  margin-bottom: 20px; color: var(--text);
}
.gradient-text {
  background: linear-gradient(135deg, var(--orange), var(--pink));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub { font-size: 18px; color: var(--text-muted); margin-bottom: 36px; line-height: 1.7; }

.hero-cta-group { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat { text-align: center; }
.stat-num { display: block; font-size: 28px; font-weight: 900; color: var(--orange); }
.stat-label { font-size: 12px; color: var(--text-muted); font-weight: 600; }
.stat-sep { width: 1px; height: 40px; background: var(--border); }

/* ── Phone Mockup (iPhone Dynamic Island) ── */
.hero-visual { position: relative; display: flex; justify-content: center; }

.phone-mockup {
  width: 258px; height: 540px;
  background: linear-gradient(160deg, #2a2a2e 0%, #1a1a1e 40%, #111114 100%);
  border-radius: 52px;
  padding: 10px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.12),
    0 0 0 2px rgba(0,0,0,.8),
    0 40px 100px rgba(0,0,0,.5),
    inset 0 1px 0 rgba(255,255,255,.08);
  position: relative; flex-shrink: 0;
  animation: phoneBob 4s ease-in-out infinite;
}
@keyframes phoneBob {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-14px) rotate(-2deg); }
}

/* Side buttons */
.phone-btn-vol-up, .phone-btn-vol-down, .phone-btn-action, .phone-btn-power {
  position: absolute;
  background: linear-gradient(180deg, #3a3a3e 0%, #2a2a2e 100%);
  border-radius: 3px;
}
.phone-btn-action {
  left: -3px; top: 112px; width: 4px; height: 28px;
  background: linear-gradient(180deg, #ff6b35 0%, #f97316 100%);
  border-radius: 2px 0 0 2px;
  box-shadow: -1px 0 4px rgba(249,115,22,.5);
}
.phone-btn-vol-up   { left: -3px; top: 156px; width: 4px; height: 36px; border-radius: 2px 0 0 2px; }
.phone-btn-vol-down { left: -3px; top: 202px; width: 4px; height: 36px; border-radius: 2px 0 0 2px; }
.phone-btn-power    { right: -3px; top: 172px; width: 4px; height: 64px; border-radius: 0 2px 2px 0; }

.phone-screen {
  width: 100%; height: 100%; background: #f8fafc;
  border-radius: 44px; overflow: hidden; position: relative;
}

/* Dynamic Island */
.dynamic-island {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 30px;
  background: #0a0a0a;
  border-radius: 20px;
  z-index: 20;
  display: flex; align-items: center; justify-content: flex-end;
  padding-right: 10px;
  box-shadow: 0 0 0 1.5px rgba(255,255,255,.06), 0 2px 8px rgba(0,0,0,.5);
}
.di-camera {
  width: 10px; height: 10px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #2a2a4a, #0a0a1a);
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.08), 0 0 4px rgba(99,102,241,.3);
}

/* Status bar */
.phone-status-bar {
  position: absolute; top: 0; left: 0; right: 0; height: 52px;
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 14px 22px 0;
  z-index: 10;
  background: #f8fafc;
}
.status-time { font-size: 13px; font-weight: 700; color: #111; letter-spacing: -.3px; }
.status-icons { display: flex; align-items: center; gap: 5px; }
.status-icons svg { display: block; }

/* Home indicator */
.phone-home-indicator {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 4px; background: #1a1a2e;
  border-radius: 2px; opacity: .25; z-index: 10;
}

.app-ui { padding: 58px 12px 10px; height: 100%; display: flex; flex-direction: column; gap: 8px; }
.app-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.app-title { font-size: 16px; font-weight: 800; color: #111827; }
.app-plus { font-size: 22px; color: var(--orange); font-weight: 300; }
.app-section-label { font-size: 10px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; margin-top: 4px; }

.baby-card, .pet-card {
  display: flex; gap: 10px; padding: 10px 12px;
  background: #fff; border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.card-avatar { font-size: 28px; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 50%; flex-shrink: 0; }
.baby-avatar { background: linear-gradient(135deg,rgba(236,72,153,.2),rgba(168,85,247,.2)); }
.pet-avatar { background: linear-gradient(135deg,rgba(249,115,22,.2),rgba(251,191,36,.2)); }
.card-name { font-size: 12px; font-weight: 700; color: #111827; }
.card-age { font-size: 10px; color: #ec4899; font-weight: 500; margin-top: 2px; }
.card-countdown { font-size: 9px; color: var(--text-muted); margin-top: 2px; }

.tab-bar {
  display: flex; margin-top: auto; background: #fff;
  border-radius: 16px; padding: 8px 4px;
  box-shadow: 0 -2px 8px rgba(0,0,0,.04);
}
.tab {
  flex: 1; text-align: center; font-size: 8px; color: var(--text-muted);
  padding: 4px 0; border-radius: 10px; cursor: pointer; line-height: 1.4;
}
.tab.active { color: var(--orange); background: rgba(249,115,22,.08); }
.tab small { display: block; font-size: 7px; }

.floating-card {
  position: absolute; background: #fff; border-radius: 12px; padding: 8px 14px;
  font-size: 12px; font-weight: 600; color: #374151;
  box-shadow: 0 8px 24px rgba(0,0,0,.12); display: flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.fc-1 { top: 60px; right: -20px; animation: fcFloat 3s ease-in-out infinite; }
.fc-2 { bottom: 160px; right: -30px; animation: fcFloat 3s ease-in-out infinite .8s; }
.fc-3 { bottom: 80px; left: -10px; animation: fcFloat 3s ease-in-out infinite 1.6s; }
@keyframes fcFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero-wave { margin-top: auto; }
.hero-wave svg { display: block; width: 100%; height: 80px; }

/* ── Tabs Overview ── */
.section-tabs-overview { padding: 80px 0; background: #f8fafc; }
.tabs-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

.tab-card {
  background: #fff; border-radius: var(--radius); padding: 32px 24px;
  text-align: center; box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.tab-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tab-icon {
  width: 64px; height: 64px; border-radius: 18px; display: flex;
  align-items: center; justify-content: center; font-size: 28px;
  margin: 0 auto 16px;
}
.tab-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.tab-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ── Features ── */
.section-features { padding: 100px 0; }

.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; margin-bottom: 100px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse .feature-visual { order: 2; }
.feature-row.reverse .feature-text { order: 1; }

.feature-visual {
  border-radius: 28px; padding: 32px; position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 380px;
}
.gradient-pink { background: linear-gradient(135deg, #fdf2f8, #fce7f3); }
.gradient-indigo { background: linear-gradient(135deg, #eef2ff, #e0e7ff); }
.gradient-blue { background: linear-gradient(135deg, #eff6ff, #dbeafe); }
.gradient-red { background: linear-gradient(135deg, #fff5f5, #fee2e2); }
.gradient-purple { background: linear-gradient(135deg, #f5f3ff, #ede9fe); }

.feature-mockup {
  background: #fff; border-radius: 20px; padding: 20px;
  box-shadow: var(--shadow-lg); width: 100%; max-width: 320px;
}
.fm-header { font-size: 14px; font-weight: 700; color: #374151; margin-bottom: 12px; }

.fm-stats { display: flex; gap: 8px; margin-bottom: 16px; }
.fm-stat {
  flex: 1; text-align: center; padding: 8px 4px; border-radius: 10px;
  font-size: 11px; font-weight: 600;
}
.fm-stat.blue { background: #eff6ff; color: var(--blue); }
.fm-stat.green { background: #f0fdf4; color: var(--green); }
.fm-stat.purple { background: #f5f3ff; color: var(--purple); }

.fm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.fm-card {
  padding: 10px; border-radius: 10px; font-size: 11px; font-weight: 600;
  text-align: center; line-height: 1.5;
}
.fm-card small { font-weight: 400; opacity: .8; }
.fm-card.purple { background: #f5f3ff; color: var(--purple); }
.fm-card.blue { background: #eff6ff; color: var(--blue); }
.fm-card.pink { background: #fdf2f8; color: var(--pink); }
.fm-card.green { background: #f0fdf4; color: var(--green); }
.fm-card.red { background: #fff5f5; color: var(--red); }
.fm-card.teal { background: #f0fdfa; color: var(--teal); }

.feature-tag {
  display: inline-block; padding: 5px 14px; border-radius: 50px;
  background: rgba(249,115,22,.1); color: var(--orange);
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .5px; margin-bottom: 16px;
}
.feature-text h3 { font-size: 28px; font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.feature-text p { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.feature-list li { font-size: 15px; color: #374151; display: flex; align-items: flex-start; gap: 8px; }

/* Quick Actions mockup */
.quick-actions { display: flex; gap: 10px; margin-bottom: 4px; }
.qa-btn {
  flex: 1; border-radius: 14px; padding: 14px 10px; text-align: center;
  display: flex; flex-direction: column; gap: 3px;
}
.qa-btn.pink { background: linear-gradient(135deg,#ec4899,#f43f5e); }
.qa-btn.indigo { background: linear-gradient(135deg,#6366f1,#8b5cf6); }
.qa-icon { font-size: 20px; }
.qa-label { font-size: 11px; font-weight: 700; color: #fff; }
.qa-sub { font-size: 9px; color: rgba(255,255,255,.8); }

.milestone-list { display: flex; flex-direction: column; gap: 8px; }
.milestone-item {
  display: flex; align-items: center; gap: 10px; padding: 10px;
  background: #f9fafb; border-radius: 10px;
}
.milestone-item > span:first-child { font-size: 18px; }
.milestone-item div { flex: 1; font-size: 11px; line-height: 1.4; }
.milestone-item div b { font-size: 12px; }
.ms-check { font-size: 14px; }
.ms-badge {
  padding: 2px 8px; background: rgba(245,158,11,.15); color: #f59e0b;
  border-radius: 50px; font-size: 9px; font-weight: 700;
}

/* Chat mockup */
.chat-demo { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.chat-bubble {
  padding: 10px 12px; border-radius: 12px; font-size: 11px; line-height: 1.5;
}
.chat-bubble.ai { background: #f3f4f6; color: #374151; }
.chat-bubble.user { background: linear-gradient(135deg,#3b82f6,#6366f1); color: #fff; align-self: flex-end; max-width: 80%; }
.chat-bubble b { display: block; margin-bottom: 2px; font-size: 10px; opacity: .8; }

.quota-bar { display: flex; align-items: center; gap: 6px; }
.quota-track { flex: 1; height: 5px; background: #e5e7eb; border-radius: 50px; overflow: hidden; }
.quota-fill { height: 100%; background: var(--blue); border-radius: 50px; }

/* Health mockup */
.health-list { display: flex; flex-direction: column; gap: 8px; }
.health-item {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px;
  border-radius: 10px; font-size: 11px;
}
.health-item > span:first-child { font-size: 18px; }
.health-item div { flex: 1; line-height: 1.4; }
.health-item div b { font-size: 12px; }
.health-item small { color: var(--text-muted); }
.health-item.overdue { background: #fff5f5; }
.health-item.urgent { background: #fffbeb; }
.health-item.normal { background: #f0fdf4; }
.badge-red { padding: 2px 8px; background: var(--red); color: #fff; border-radius: 50px; font-size: 9px; font-weight: 700; }
.badge-orange { padding: 2px 8px; background: #f97316; color: #fff; border-radius: 50px; font-size: 9px; font-weight: 700; }
.badge-green { padding: 2px 8px; background: var(--green); color: #fff; border-radius: 50px; font-size: 9px; font-weight: 700; }

/* Chart area */
.chart-area { background: #f9fafb; border-radius: 12px; padding: 10px; margin-bottom: 0; }
.chart-area svg { width: 100%; display: block; }

/* Diary list */
.diary-list { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.diary-item { display: flex; align-items: center; gap: 10px; padding: 8px; background: #f9fafb; border-radius: 10px; }
.diary-emoji { font-size: 20px; }
.diary-item div { font-size: 11px; line-height: 1.4; }
.diary-item div b { font-size: 12px; }

/* ── Milestones Section ── */
.section-milestones {
  padding: 100px 0;
  background: linear-gradient(135deg, #7c3aed, #4f46e5, #2563eb);
}
.milestone-grid { display: grid; grid-template-columns: repeat(8,1fr); gap: 12px; }
.ms-card {
  background: rgba(255,255,255,.12); backdrop-filter: blur(10px);
  border-radius: var(--radius-sm); padding: 16px 12px; text-align: center;
  color: #fff; border: 1px solid rgba(255,255,255,.2);
  transition: transform var(--transition), background var(--transition);
}
.ms-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.2); }
.ms-card > span { font-size: 24px; display: block; margin-bottom: 6px; }
.ms-card b { display: block; font-size: 11px; margin-bottom: 3px; }
.ms-card small { font-size: 10px; opacity: .75; }
.ms-card.plus { border-style: dashed; }

/* ── Widget Section ── */
.section-widget { padding: 100px 0; background: #f8fafc; }
.widget-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.widget-visual { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

.widget-card {
  background: linear-gradient(135deg, #1e1b4b, #312e81);
  border-radius: 20px; color: #fff; padding: 20px;
  box-shadow: 0 20px 40px rgba(49,46,129,.4);
}
.w-small { width: 120px; text-align: center; }
.w-medium { width: 220px; }
.w-icon { font-size: 28px; margin-bottom: 6px; }
.w-label { font-size: 12px; opacity: .7; }
.w-val { font-size: 20px; font-weight: 800; color: var(--orange); }
.w-header { font-size: 14px; font-weight: 700; margin-bottom: 10px; opacity: .9; }
.w-name { font-size: 12px; opacity: .7; margin-bottom: 8px; }
.w-stat { font-size: 12px; opacity: .85; margin-bottom: 4px; }

/* ── Pricing ── */
.section-pricing { padding: 100px 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: stretch; }

.pricing-card {
  background: #fff; border-radius: 24px; padding: 36px 28px;
  box-shadow: var(--shadow); border: 2px solid transparent; position: relative;
  display: flex; flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-card.featured { border-color: var(--orange); }

.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg,var(--orange),#f43f5e); color: #fff;
  padding: 5px 20px; border-radius: 50px; font-size: 12px; font-weight: 700;
  white-space: nowrap;
}
.pricing-plan { font-size: 14px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; }
.pricing-price { font-size: 48px; font-weight: 900; color: var(--text); line-height: 1; }
.pricing-period { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }

.pricing-features { list-style: none; flex: 1; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { font-size: 14px; color: #374151; }
.pricing-features li.locked { color: #9ca3af; }

/* ── Language ── */
.section-language { padding: 80px 0; background: #fff; }
.lang-inner { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.lang-flags { display: flex; flex-wrap: wrap; gap: 12px; }
.lang-flag {
  padding: 10px 20px; background: #f8fafc; border-radius: 50px;
  font-size: 15px; font-weight: 600; border: 1px solid var(--border);
  transition: all var(--transition);
}
.lang-flag:hover { background: rgba(249,115,22,.08); border-color: var(--orange); color: var(--orange); }

/* ── Download ── */
.section-download {
  padding: 120px 0; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #f97316, #ec4899, #8b5cf6);
  text-align: center;
}
.download-bg-blobs { position: absolute; inset: 0; pointer-events: none; }
.blob-d1 { position: absolute; width: 500px; height: 500px; background: rgba(255,255,255,.1); border-radius: 50%; top: -200px; left: -100px; filter: blur(60px); }
.blob-d2 { position: absolute; width: 400px; height: 400px; background: rgba(255,255,255,.1); border-radius: 50%; bottom: -200px; right: -50px; filter: blur(60px); }

.download-inner { position: relative; z-index: 1; }
.download-icon { font-size: 64px; display: block; margin-bottom: 20px; }
.download-inner h2 { font-size: clamp(28px,4vw,44px); font-weight: 900; color: #fff; margin-bottom: 16px; }
.download-inner p { font-size: 18px; color: rgba(255,255,255,.85); margin-bottom: 36px; }

/* ── Footer ── */
.footer { background: #111827; color: #d1d5db; padding: 64px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding-bottom: 48px; }

.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand .nav-logo { color: #fff; }
.footer-brand p { font-size: 14px; color: #9ca3af; max-width: 280px; line-height: 1.6; }

.footer-links { display: flex; gap: 48px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: #9ca3af; margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: #d1d5db; transition: color var(--transition); }
.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid #1f2937; padding: 20px 24px;
  text-align: center;
}
.footer-bottom p { font-size: 13px; color: #6b7280; }

/* ── Page Layout (Contact, Privacy, Terms) ── */
.page-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg,#fff9f5,#fdf2f8);
  text-align: center;
}
.page-hero h1 { font-size: clamp(32px,5vw,52px); font-weight: 900; margin-bottom: 16px; }
.page-hero p { font-size: 17px; color: var(--text-muted); max-width: 500px; margin: 0 auto; }

.page-content { padding: 60px 0 100px; }
.page-content .container { max-width: 760px; }
.page-content h2 { font-size: 22px; font-weight: 800; margin: 36px 0 12px; color: var(--text); }
.page-content h3 { font-size: 17px; font-weight: 700; margin: 24px 0 8px; color: var(--text); }
.page-content p { font-size: 15px; color: #374151; line-height: 1.8; margin-bottom: 14px; }
.page-content ul { padding-left: 24px; margin-bottom: 14px; }
.page-content ul li { font-size: 15px; color: #374151; line-height: 1.8; margin-bottom: 4px; }
.page-content a { color: var(--orange); }
.page-content a:hover { text-decoration: underline; }
.effective-date { display: inline-block; padding: 6px 16px; background: rgba(249,115,22,.1); color: var(--orange); border-radius: 50px; font-size: 13px; font-weight: 600; margin-bottom: 32px; }

/* Contact Form */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 700; color: #374151; }
.form-group input, .form-group textarea, .form-group select {
  padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 15px; font-family: inherit; background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none; color: var(--text);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--orange); box-shadow: 0 0 0 3px rgba(249,115,22,.1);
}
.form-group textarea { resize: vertical; min-height: 140px; }

.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-item {
  display: flex; gap: 16px; align-items: flex-start; padding: 20px;
  background: #f8fafc; border-radius: var(--radius-sm);
}
.cii-icon { font-size: 24px; flex-shrink: 0; }
.cii-content h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.cii-content p { font-size: 14px; color: var(--text-muted); margin: 0; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .tabs-grid { grid-template-columns: repeat(2,1fr); }
  .milestone-grid { grid-template-columns: repeat(4,1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav-inner { height: 60px; gap: 16px; }
  .hamburger { display: flex; }

  .nav-links {
    position: fixed; top: 68px; left: 14px; right: 14px;
    flex-direction: column; align-items: stretch;
    background: rgba(255,255,255,.98); backdrop-filter: blur(24px);
    border: 1px solid var(--border); border-radius: 20px;
    padding: 10px; gap: 2px; z-index: 999; margin-left: 0;
    box-shadow: 0 18px 50px rgba(17,24,39,.16);
    /* refined entrance animation */
    opacity: 0; visibility: hidden;
    transform: translateY(-10px) scale(.97);
    transform-origin: top right;
    transition: opacity .26s cubic-bezier(.16,1,.3,1),
                transform .26s cubic-bezier(.16,1,.3,1),
                visibility .26s;
  }
  .nav-links.open {
    opacity: 1; visibility: visible;
    transform: translateY(0) scale(1);
  }
  .nav-links li:not(:last-child) {
    border-bottom: 1px solid rgba(229,231,235,.7);
  }
  .nav-links a {
    display: flex; align-items: center;
    padding: 14px 16px; border-radius: 12px;
    font-size: 15px; font-weight: 600; color: var(--text);
  }
  .nav-links a:hover, .nav-links a.active {
    color: var(--orange); background: rgba(249,115,22,.08);
  }
  .nav-cta { display: none; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; padding-bottom: 40px; }
  .hero-cta-group { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .phone-mockup { animation: none; transform: none; }

  .feature-row, .feature-row.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .feature-row.reverse .feature-visual { order: unset; }
  .feature-row.reverse .feature-text { order: unset; }

  .milestone-grid { grid-template-columns: repeat(3,1fr); }
  .widget-inner { grid-template-columns: 1fr; text-align: center; }
  .widget-visual { justify-content: center; }
  .lang-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .tabs-grid { grid-template-columns: 1fr 1fr; }
  .fc-1, .fc-2, .fc-3 { display: none; }
}

@media (max-width: 480px) {
  .milestone-grid { grid-template-columns: repeat(2,1fr); }
  .tabs-grid { grid-template-columns: 1fr; }
  .hero-stats .stat-sep { display: none; }
}

/* ── Scroll animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.pricing-card.fade-up { transition-delay: .1s; }
.pricing-card.featured.fade-up { transition-delay: .2s; }
.ms-card.fade-up { transition-delay: calc(var(--i, 0) * 0.04s); }

/* ── Pricing extras ── */
.pricing-grid { grid-template-columns: repeat(4,1fr); }

.pricing-badge-secondary {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #6366f1, #8b5cf6); color: #fff;
  padding: 5px 20px; border-radius: 50px; font-size: 12px; font-weight: 700;
  white-space: nowrap;
}

.pricing-trial {
  font-size: 13px; font-weight: 600; color: var(--green);
  text-align: center; margin-bottom: 14px;
  background: rgba(34,197,94,.08); padding: 6px 12px; border-radius: 50px;
}

.pricing-note {
  text-align: center; margin-top: 36px;
}
.pricing-note p {
  font-size: 13px; color: var(--text-muted);
  background: #f8fafc; display: inline-block;
  padding: 10px 24px; border-radius: 50px; border: 1px solid var(--border);
}

@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2,1fr); max-width: 800px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
}
