/* =============================================
   GeoBuilt — v4
   ============================================= */

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

:root {
  --bg:           #0f0f0f;
  --bg-2:         #161616;
  --bg-3:         #1f1f1f;
  --border:       #252525;
  --border-2:     #333333;
  --text:         #f0f0f0;
  --text-2:       #b8b8b8;
  --text-muted:   #737373;
  --text-dim:     #444444;
  --green:        #22c55e;
  --green-dark:   #1db954;
  --green-text:   #4ade80;
  --green-bg:     rgba(34,197,94,0.07);
  --green-ring:   rgba(34,197,94,0.20);
  --shadow-sm:    0 1px 2px rgba(0,0,0,0.5);
  --shadow:       0 1px 3px rgba(0,0,0,0.6), 0 1px 2px rgba(0,0,0,0.4);
  --shadow-md:    0 4px 12px -2px rgba(0,0,0,0.5), 0 2px 6px -1px rgba(0,0,0,0.3);
  --shadow-lg:    0 12px 32px -6px rgba(0,0,0,0.6), 0 4px 10px -2px rgba(0,0,0,0.35);
  --shadow-xl:    0 24px 56px -10px rgba(0,0,0,0.7), 0 8px 20px -4px rgba(0,0,0,0.4);
  --radius:       10px;
  --radius-lg:    16px;
  --radius-xl:    24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── NAV ─────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: rgba(15,15,15,0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.logo-icon {
  width: 24px;
  height: 24px;
  background: var(--green);
  border-radius: 6px;
  flex-shrink: 0;
}

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { font-size: 0.85rem; font-weight: 500; color: var(--text-muted); transition: color 0.15s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }

/* ── LAYOUT ──────────────────────────────── */
.container { max-width: 1080px; margin: 0 auto; padding: 0 5%; }
section { padding: 6rem 0; }
.divider { border: none; border-top: 1px solid var(--border); }

/* ── LABEL ───────────────────────────────── */
.label {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}
.label-green { color: var(--green-text); }

/* ── BUTTONS ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.72rem 1.4rem;
  border-radius: 9px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.18s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--green);
  color: #000;
  box-shadow: 0 2px 8px rgba(34,197,94,0.20);
}
.btn-primary:hover {
  background: #25d464;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(34,197,94,0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border-2);
}
.btn-ghost:hover { color: var(--text); border-color: var(--text-dim); background: rgba(255,255,255,0.04); }

/* ── STORE BADGES ────────────────────────── */
.store-badges { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 1.15rem;
  background: var(--bg-2);
  color: var(--text);
  border-radius: 10px;
  border: 1px solid var(--border-2);
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
  min-width: 142px;
}
.store-btn:hover { background: var(--bg-3); border-color: var(--border-2); transform: translateY(-1px); }
.store-btn-text { display: flex; flex-direction: column; }
.store-btn-sub  { font-size: 0.59rem; opacity: 0.5; line-height: 1.2; letter-spacing: 0.04em; }
.store-btn-name { font-size: 0.85rem; font-weight: 700; line-height: 1.3; letter-spacing: -0.01em; }

/* ── HOME HERO (split) ───────────────────── */
.home-hero {
  padding: 6rem 5% 5.5rem;
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
  position: relative;
}
.home-hero-glow {
  position: absolute;
  top: -220px; right: -120px;
  width: 780px; height: 680px;
  background:
    radial-gradient(ellipse 55% 50% at 75% 25%, rgba(34,197,94,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 35% at 60% 60%, rgba(34,197,94,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.home-hero-content { position: relative; }

.home-hero h1 {
  font-size: clamp(3rem, 5.5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.0;
  margin-bottom: 1.4rem;
}
.home-hero h1 .accent {
  color: var(--green);
}

.home-hero-sub {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 46ch;
  margin-bottom: 2.75rem;
  line-height: 1.78;
}
.hero-cta { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* keep .hero for other pages that still use it */
.hero {
  padding: 7rem 5% 6rem;
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 860px; height: 640px;
  background: radial-gradient(ellipse 65% 55% at 50% 30%, rgba(34,197,94,0.10) 0%, transparent 100%);
  pointer-events: none;
}
.hero-inner { position: relative; text-align: center; }
.hero h1 {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.0;
  margin-bottom: 1.25rem;
}
.hero h1 .accent { color: var(--green); }
.hero-sub { font-size: 1.1rem; color: var(--text-2); max-width: 44ch; margin: 0 auto 2.5rem; line-height: 1.78; }

/* ── SECTION HEADER ──────────────────────── */
.section-header { margin-bottom: 3rem; }
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 0.6rem;
}
.section-header p {
  font-size: 1rem;
  color: var(--text-2);
  max-width: 50ch;
  line-height: 1.72;
  margin-top: 0.5rem;
}

/* ── APP CARDS (home) ────────────────────── */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* ── APP CARD PREVIEW ────────────────────── */
.app-card-preview {
  height: 180px;
  margin: -1.75rem -1.75rem 1.75rem;
  overflow: hidden;
  background: var(--bg-3);
  position: relative;
}
.app-card-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}
.app-card:hover .app-card-preview img { transform: scale(1.05); }

.app-card-preview.grove-preview {
  background: linear-gradient(150deg, #0d1520 0%, #0a1208 100%);
  padding: 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.grove-preview-bar   { height: 6px; width: 48px; border-radius: 3px; background: rgba(34,197,94,0.5); margin-bottom: 0.2rem; }
.grove-preview-row   { background: rgba(255,255,255,0.055); border-radius: 6px; padding: 0.5rem 0.65rem; display: flex; flex-direction: column; gap: 0.28rem; }
.grove-preview-row .r1 { height: 4px; width: 34px; border-radius: 2px; background: rgba(34,197,94,0.35); }
.grove-preview-row .r2 { height: 5px; border-radius: 2px; background: rgba(255,255,255,0.18); }
.grove-preview-row .r3 { height: 5px; width: 70%; border-radius: 2px; background: rgba(255,255,255,0.10); }

.app-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
  background: var(--bg-2);
  overflow: hidden;
  position: relative;
}
.app-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  pointer-events: none;
}
.app-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--border-2);
  transform: translateY(-2px);
}
.app-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.app-card-icon {
  width: 48px; height: 48px;
  border-radius: 13px;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
}
.app-status { font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-dim); }
.app-status.live { color: var(--green-text); }
.app-card h3 { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.025em; margin-bottom: 0.5rem; }
.app-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.68; flex: 1; margin-bottom: 1.5rem; }
.app-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--green-text);
  transition: gap 0.15s, opacity 0.15s;
}
.app-card-link:hover { gap: 0.55rem; }

/* ── APP HERO ────────────────────────────── */
.app-hero {
  padding: 5.5rem 5% 4.5rem;
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
}
.app-hero::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 600px; height: 500px;
  background: radial-gradient(ellipse 50% 45% at 20% 40%, rgba(34,197,94,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.app-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-2);
  border-radius: 999px;
  padding: 0.35rem 0.85rem 0.35rem 0.65rem;
  margin-bottom: 1.4rem;
}
.app-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.03;
  margin-bottom: 1.1rem;
}
.app-hero h1 .accent { color: var(--green); }
.app-hero-sub {
  font-size: 1rem;
  color: var(--text-2);
  max-width: 46ch;
  line-height: 1.78;
  margin-bottom: 2.25rem;
}

/* ── PHONE / PROMO MOCKUP ────────────────── */
.phone-wrap { display: flex; justify-content: center; align-items: center; }

/* Raw promo shots (already contain a phone inside) */
.promo-shot {
  max-width: 300px;
  width: 100%;
  border-radius: 20px;
  transform: perspective(1400px) rotateY(-7deg) rotateX(3.5deg);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow:
    28px 48px 96px rgba(0,0,0,0.6),
    10px 20px 40px rgba(0,0,0,0.35),
    0 0 0 1px rgba(255,255,255,0.04),
    -4px -4px 32px rgba(34,197,94,0.05);
}
.promo-shot:hover {
  transform: perspective(1400px) rotateY(-3.5deg) rotateX(1.5deg);
}

/* CSS phone frame — only used for Grove (no real screenshots yet) */
.phone-frame {
  width: 248px;
  background: #1a1a1c;
  border-radius: 48px;
  padding: 13px;
  transform: perspective(1200px) rotateY(-8deg) rotateX(4deg);
  transition: transform 0.5s ease;
  box-shadow:
    0 0 0 1px #333335,
    0 0 0 2px rgba(0,0,0,0.5),
    20px 36px 72px rgba(0,0,0,0.55),
    8px 14px 28px rgba(0,0,0,0.35),
    -4px -4px 36px rgba(34,197,94,0.06);
  position: relative;
  flex-shrink: 0;
}
.phone-frame:hover { transform: perspective(1200px) rotateY(-4deg) rotateX(2deg); }
.phone-notch {
  position: absolute;
  top: 13px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 26px;
  background: #1a1a1c;
  border-radius: 0 0 16px 16px;
  z-index: 2;
}
.phone-screen {
  border-radius: 34px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 9 / 19.5;
}
.phone-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

/* grove CSS screen */
.grove-screen-preview {
  width: 100%; height: 100%;
  background: #0d1520;
  padding: 1.25rem 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  overflow: hidden;
}
.grove-topbar {
  display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.4rem;
}
.grove-topbar-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; }
.grove-topbar-line { height: 6px; width: 52px; border-radius: 3px; background: rgba(255,255,255,0.16); }
.grove-article {
  background: rgba(255,255,255,0.055);
  border-radius: 7px;
  padding: 0.6rem 0.7rem;
  display: flex; flex-direction: column; gap: 0.3rem;
}
.ga-src  { height: 4px; width: 38px; border-radius: 2px; background: rgba(34,197,94,0.5); }
.ga-t1   { height: 6px; border-radius: 3px; background: rgba(255,255,255,0.25); }
.ga-t2   { height: 6px; border-radius: 3px; background: rgba(255,255,255,0.15); }
.ga-meta { height: 4px; width: 48px; border-radius: 2px; background: rgba(255,255,255,0.08); margin-top: 0.15rem; }

/* ── FEATURE HIGHLIGHTS (3-col cards) ────── */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.highlight-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  background: var(--bg-2);
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
  position: relative;
}
.highlight-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  pointer-events: none;
}
.highlight-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-2);
  transform: translateY(-2px);
}
.hl-icon { width: 28px; height: 28px; color: var(--green-text); margin-bottom: 1.4rem; }
.highlight-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.highlight-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.68; }

/* ── FEATURE LIST (bento grid) ───────────── */
.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-2);
}
.feature-list-item {
  display: flex;
  gap: 1.1rem;
  padding: 1.6rem;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  background: transparent;
  transition: background 0.18s;
}
.feature-list-item:hover { background: rgba(255,255,255,0.025); }
.feature-list-item:nth-child(even) { border-right: none; }
.feature-list-item:nth-last-child(-n+2) { border-bottom: none; }
.fl-icon { width: 18px; height: 18px; color: var(--green-text); flex-shrink: 0; margin-top: 2px; }
.fl-text h4 { font-size: 0.875rem; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 0.25rem; }
.fl-text p  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.62; }

/* ── FEATURES GRID (Grove) ───────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.feature-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  background: var(--bg-2);
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}
.feature-item:hover { box-shadow: var(--shadow-md); border-color: var(--border-2); transform: translateY(-2px); }
.fi-icon { width: 20px; height: 20px; color: var(--green-text); margin-bottom: 1.1rem; }
.feature-item h4 { font-size: 0.9rem; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 0.4rem; }
.feature-item p  { font-size: 0.84rem; color: var(--text-muted); line-height: 1.63; }

/* ── VALUES (home philosophy) ────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.value-item {
  padding: 1.6rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.value-item:hover { background: var(--bg-2); border-color: var(--border-2); transform: translateY(-2px); }
.vi-icon { width: 20px; height: 20px; color: var(--green-text); margin-bottom: 1.1rem; }
.value-item h4 { font-size: 0.9rem; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 0.4rem; }
.value-item p  { font-size: 0.84rem; color: var(--text-muted); line-height: 1.62; }

/* ── SCREENSHOTS ─────────────────────────── */
.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(152px, 1fr));
  gap: 1rem;
}
.screenshot-grid img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}
.screenshot-grid img:hover { transform: scale(1.04) translateY(-2px); box-shadow: var(--shadow-lg); }

/* ── PRICING CARDS ───────────────────────── */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 740px;
  margin: 0 auto;
}
.price-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem;
  background: var(--bg-2);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.price-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  pointer-events: none;
}
.price-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.price-card.featured {
  border-color: rgba(34,197,94,0.5);
  background: rgba(34,197,94,0.05);
  box-shadow: 0 0 0 1px rgba(34,197,94,0.1), 0 8px 24px rgba(34,197,94,0.08);
}
.price-card.featured:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(34,197,94,0.15), 0 12px 32px rgba(34,197,94,0.12);
}
.price-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #000;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  white-space: nowrap;
}
.price-card-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.price-card.featured .price-card-label { color: var(--green-text); }
.price-card-amount {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}
.pc-num {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
}
.pc-per {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.pc-note {
  font-size: 0.79rem;
  color: var(--text-dim);
  line-height: 1.55;
  margin-top: 0.3rem;
}
.price-card.featured .pc-note { color: var(--text-muted); }

.pricing-note { text-align: center; margin-top: 1.75rem; font-size: 0.83rem; color: var(--text-muted); }
.pricing-note strong { color: var(--green-text); font-weight: 600; }

/* ── THEMES ──────────────────────────────── */
.theme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(128px, 1fr));
  gap: 0.75rem;
}
.theme-chip {
  border-radius: 10px;
  padding: 0.875rem 1rem;
  font-size: 0.83rem;
  font-weight: 700;
  border: 1px solid rgba(0,0,0,0.12);
}
.theme-chip .chip-sub { display: block; font-size: 0.69rem; font-weight: 400; opacity: 0.55; margin-top: 0.15rem; }

/* ── SUPPORT / CONTACT ───────────────────── */
.page-hero {
  padding: 5.5rem 5% 3rem;
  max-width: 1080px;
  margin: 0 auto;
}
.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.03;
  margin-bottom: 0.9rem;
}
.page-hero p { font-size: 1rem; color: var(--text-2); max-width: 46ch; line-height: 1.78; }

.contact-card {
  margin-top: 2.5rem;
  max-width: 460px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  background: var(--bg-2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.contact-card h3 { font-size: 1rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.4rem; }
.contact-card > p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1.25rem; }

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1.1rem;
  background: var(--bg);
  border: 1px solid var(--border-2);
  border-radius: 9px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-text);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.contact-email:hover { border-color: var(--green-dark); box-shadow: 0 0 0 3px var(--green-ring); }

/* ── FAQ ─────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  max-width: 680px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-2);
}
.faq-item {
  padding: 1.6rem;
  border-bottom: 1px solid var(--border);
  background: transparent;
  transition: background 0.18s;
}
.faq-item:last-child { border-bottom: none; }
.faq-item:hover { background: rgba(255,255,255,0.025); }
.faq-item h4 { font-size: 0.9rem; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 0.45rem; }
.faq-item p  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.68; }
.faq-item a  { color: var(--green-text); text-decoration: underline; text-underline-offset: 3px; }

/* ── PROSE ───────────────────────────────── */
.prose { max-width: 660px; color: var(--text-muted); line-height: 1.82; }
.prose h2  { font-size: 1.1rem; font-weight: 700; color: var(--text); margin: 2.5rem 0 0.5rem; letter-spacing: -0.02em; }
.prose h3  { font-size: 0.95rem; font-weight: 700; color: var(--text); margin: 1.5rem 0 0.4rem; }
.prose p   { margin-bottom: 0.9rem; font-size: 0.9rem; }
.prose ul  { padding-left: 1.4rem; margin-bottom: 0.9rem; }
.prose li  { margin-bottom: 0.3rem; font-size: 0.9rem; }
.prose a   { color: var(--green-text); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--text); font-weight: 600; }

/* ── FOOTER ──────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  background: var(--bg-2);
  padding: 2rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.footer-logo { display: flex; align-items: center; gap: 0.45rem; font-size: 0.875rem; font-weight: 700; color: var(--text); }
.footer-logo .logo-icon { width: 20px; height: 20px; border-radius: 5px; }
.footer-links { display: flex; gap: 1.5rem; list-style: none; }
.footer-links a { font-size: 0.8rem; color: var(--text-muted); transition: color 0.15s; }
.footer-links a:hover { color: var(--text-2); }
.footer-copy { font-size: 0.75rem; color: var(--text-dim); }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 768px) {
  .home-hero { grid-template-columns: 1fr; gap: 2.5rem; }
  .home-hero .phone-wrap { display: none; }
  .app-hero { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .app-hero::before { display: none; }
  .phone-wrap { order: -1; }
  .phone-frame { transform: none; box-shadow: var(--shadow-xl); }
  .store-badges { justify-content: center; }
  .app-hero-sub { max-width: 100%; }
  .app-hero-label { justify-content: center; }
  .highlights-grid { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .feature-list-item { border-right: none !important; }
  .feature-list-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border) !important; }
  .feature-list-item:last-child { border-bottom: none !important; }
  footer { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .nav-links { gap: 1.25rem; }
}
@media (max-width: 520px) {
  .nav-links li:nth-child(-n+2) { display: none; }
  .screenshot-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 360px; }
}
