/* ============================================================
   Seller Studio — Marketing Website Stylesheet
   Design system: dark (#0A0B10), surface (#0D1020/#12141C),
   accent indigo (#5B6EF5), muted text (#7A7F9A)
   Matches app visual language: sharp, minimal, professional
   ============================================================ */

/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: #0A0B10;
  color: #E2E4F0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul, ol { list-style: none; }

/* ── Design Tokens ── */
:root {
  --bg:        #0A0B10;
  --surface:   #0D1020;
  --card:      #14172A;
  --card2:     #161926;
  --border:    #1E2130;
  --border2:   #252840;
  --accent:    #5B6EF5;
  --accent-lt: #7080FA;
  --accent-glow: rgba(91,110,245,0.15);
  --gold:      #C9A84C;
  --green:     #3DD68C;
  --text:      #E2E4F0;
  --muted:     #9AA0BC;
  --muted2:    #5A5F7A;
  --white:     #FFFFFF;
  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 18px;
  --shadow:    0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.55);
  --transition: 0.2s ease;
  --max-w:     1100px;
  --page-px:   clamp(20px, 5vw, 60px);
}

/* ── Typography Scale ── */
h1, h2, h3, h4, h5 { line-height: 1.15; letter-spacing: -0.02em; color: var(--white); }
h1 { font-size: clamp(34px, 5vw, 60px); font-weight: 900; }
h2 { font-size: clamp(26px, 3.5vw, 42px); font-weight: 800; }
h3 { font-size: clamp(18px, 2vw, 22px); font-weight: 700; }
h4 { font-size: 16px; font-weight: 700; }
p  { color: var(--muted); }

/* ── Layout Utilities ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--page-px); }
.section    { padding: 72px 0; }
.section-sm { padding: 60px 0; }
.center     { text-align: center; }
.flex       { display: flex; }
.grid       { display: grid; }
.gap-sm     { gap: 12px; }
.gap-md     { gap: 20px; }
.gap-lg     { gap: 32px; }
.mt-xs      { margin-top: 8px; }
.mt-sm      { margin-top: 16px; }
.mt-md      { margin-top: 28px; }
.mt-lg      { margin-top: 48px; }
.mb-md      { margin-bottom: 28px; }

/* ── Section Label ── */
.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) !important; }

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(91,110,245,0.3);
}
.btn-primary:hover {
  background: var(--accent-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(91,110,245,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border2);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent-lt);
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(91,110,245,0.08);
  color: var(--accent-lt);
  border-color: rgba(91,110,245,0.2);
}
.btn-ghost:hover {
  background: rgba(91,110,245,0.14);
  transform: translateY(-1px);
}

.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-sm { padding: 9px 18px; font-size: 13px; }

/* Google Play badge */
.play-badge {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  background: #000;
  border: 1px solid #2a2a2a;
  border-radius: var(--radius-sm);
  padding: 11px 20px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.play-badge:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(91,110,245,0.2);
}
.play-badge .play-icon { flex-shrink: 0; }
.play-badge .play-text small {
  display: block;
  font-size: 10px;
  color: #888;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.play-badge .play-text strong {
  display: block;
  font-size: 16px;
  color: var(--white);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 1px;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--page-px);
  background: rgba(10,11,16,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.nav-logo {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-logo .accent { color: var(--white); }
.nav-logo .logo-icon {
  width: 30px;
  height: 30px;
  background: var(--accent);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 7px 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.nav-links a.active { color: var(--white); font-weight: 700; }
.nav-cta { margin-left: 16px; padding: 13px 26px; font-size: 15px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 86px;
  left: 0;
  right: 0;
  z-index: 190;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 16px var(--page-px) 24px;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 11px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a.active { color: var(--accent); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .mobile-cta {
  margin-top: 12px;
  display: flex;
}

/* ── Page wrapper ── */
main { padding-top: 86px; }

/* ── Hero ── */
.hero {
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse at 50% 0%, rgba(91,110,245,0.14) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(91,110,245,0.1);
  border: 1px solid rgba(91,110,245,0.25);
  border-radius: 100px;
  padding: 5px 14px 5px 9px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-lt);
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}
.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.8); }
}
.hero h1 { margin-bottom: 20px; }
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 44px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.stat-val {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--white);
}
.stat-lbl {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

/* Phone frame */
.phone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 500px;
}
.phone {
  width: 248px;
  background: var(--card);
  border: 1.5px solid var(--border2);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
  z-index: 2;
}
.phone-bar {
  height: 30px;
  background: var(--card2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-notch {
  width: 70px;
  height: 12px;
  background: var(--bg);
  border-radius: 0 0 10px 10px;
}
.phone-body { padding: 16px 14px 20px; }

/* Phone UI preview blocks */
.phone-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.phone-logo-text {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--white);
}
.phone-logo-text .a { color: var(--accent); }
.phone-plan-chip {
  font-size: 10px;
  font-weight: 700;
  color: var(--green);
  background: rgba(61,214,140,0.1);
  border: 1px solid rgba(61,214,140,0.2);
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}
.phone-hero-img {
  width: 100%;
  height: 130px;
  border-radius: 10px;
  background: linear-gradient(135deg, #141828, #1C2040);
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}
.phone-hero-img::after {
  content: 'BG REMOVED';
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 2px 7px;
  border-radius: 3px;
}
.phone-product-icon {
  width: 54px;
  height: 70px;
  background: rgba(91,110,245,0.12);
  border: 1px dashed rgba(91,110,245,0.3);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}
.phone-slot {
  height: 56px;
  border-radius: 8px;
  background: linear-gradient(135deg, #141828, #1A1E38);
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.phone-slot.active { border-color: rgba(91,110,245,0.4); color: var(--accent); }
.phone-slot.dim    { color: var(--muted2); }
.phone-btn-row { display: flex; gap: 8px; }
.phone-btn-main {
  flex: 1;
  background: var(--accent);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
}
.phone-btn-icon {
  width: 38px;
  height: 38px;
  background: var(--card2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border2);
}

/* Floating cards behind phone */
.float-card {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 1;
}
.float-card .fc-label { font-size: 10px; color: var(--muted); margin-bottom: 2px; }
.float-card .fc-val   { font-size: 15px; font-weight: 800; color: var(--white); }
.float-card .fc-green { color: var(--green); }
.float-card-left  { left: -20px; top: 140px; }
.float-card-right { right: -20px; bottom: 120px; }

/* ── Trust bar ── */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.trust-divider {
  width: 1px;
  height: 20px;
  background: var(--border2);
}
.trust-logos {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-logos span {
  font-size: 13px;
  font-weight: 700;
  color: var(--border2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Steps grid ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 52px;
}
.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}
.step-card:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.step-card:last-child  { border-radius: 0 var(--radius) var(--radius) 0; }
.step-card:hover { border-color: var(--accent); transform: translateY(-3px); z-index: 1; }
.step-num {
  width: 36px;
  height: 36px;
  background: rgba(91,110,245,0.1);
  border: 1px solid rgba(91,110,245,0.2);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 18px;
}
.step-title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.step-desc  { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── Feature cards ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 52px;
}
.feature-card {
  background: var(--card);
  padding: 28px 26px;
  display: flex;
  gap: 18px;
  transition: background var(--transition);
}
.feature-card:hover { background: var(--card2); }
.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
}
.feature-body h4 { margin-bottom: 6px; }
.feature-body p  { font-size: 13px; line-height: 1.6; }

/* ── CTA strip ── */
.cta-strip {
  background: linear-gradient(135deg, var(--surface) 0%, #0F1128 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(91,110,245,0.12) 0%, transparent 70%);
}
.cta-strip h2 { margin-bottom: 14px; position: relative; }
.cta-strip p  { margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; position: relative; }
.cta-strip .btn-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── Examples / Gallery ── */
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 52px;
  margin-bottom: 72px;
}
.ba-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.ba-header {
  padding: 12px 18px;
  background: var(--card2);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.ba-dot { width: 8px; height: 8px; border-radius: 50%; }
.ba-body {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}
.ba-body img { width: 100%; height: 100%; object-fit: cover; border-radius: 6px; }

.gallery-section-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--muted);
  text-align: center;
  margin-bottom: 28px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.gallery-card:hover {
  transform: translateY(-4px);
  border-color: var(--border2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.gallery-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.gallery-card-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #0E1020, #141830);
  color: var(--muted);
  font-size: 13px;
}
.gallery-card-placeholder .ph-icon { font-size: 28px; opacity: 0.4; }
.gallery-card-placeholder strong { color: var(--muted); font-size: 13px; }
.gallery-card-placeholder small { font-size: 11px; color: var(--muted2); }
.gallery-label {
  padding: 14px 16px;
  border-top: 1px solid var(--border);
}
.gallery-label strong { display: block; font-size: 14px; color: var(--white); margin-bottom: 3px; }
.gallery-label span   { font-size: 12px; color: var(--muted); }

/* Real-photo placeholder */
.real-photo-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  background: rgba(91,110,245,0.08);
  border: 1px solid rgba(91,110,245,0.2);
  border-radius: 4px;
  padding: 2px 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ── Pricing cards ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.plan {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px 26px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.plan:hover { transform: translateY(-4px); }
.plan.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(91,110,245,0.2), 0 16px 48px rgba(91,110,245,0.1);
}
.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.plan-tier {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.plan-price {
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.plan-price .cents { font-size: 22px; font-weight: 700; color: var(--muted); letter-spacing: 0; }
.plan-period { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.plan-summary {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.plan-features { display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; flex: 1; }
.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}
.plan-feature .chk { color: var(--green); font-size: 14px; flex-shrink: 0; margin-top: 2px; }
.plan-feature strong { color: var(--white); }
.plan-cta { display: block; }

/* Comparison table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 60px;
  font-size: 14px;
}
.comparison-table th {
  padding: 14px 20px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.comparison-table th:not(:first-child) { text-align: center; }
.comparison-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}
.comparison-table td:not(:first-child) { text-align: center; color: var(--text); }
.comparison-table td:first-child { color: var(--text); font-weight: 500; }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: rgba(255,255,255,0.02); }
.tbl-yes  { color: var(--green) !important; font-weight: 700; font-size: 16px; }
.tbl-no   { color: var(--muted2) !important; font-size: 16px; }
.tbl-col-highlight { background: rgba(91,110,245,0.03); }

/* Pricing footer note */
.pricing-note {
  text-align: center;
  margin-top: 36px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.pricing-note a { color: var(--accent-lt); text-decoration: underline; text-underline-offset: 3px; }

/* ── FAQ Accordion (CSS-only) ── */
.faq-list { max-width: 740px; margin: 52px auto 0; display: flex; flex-direction: column; gap: 4px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-toggle { display: none; }
.faq-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  transition: background var(--transition);
  user-select: none;
}
.faq-label:hover { background: rgba(255,255,255,0.02); }
.faq-label::after {
  content: '+';
  font-size: 22px;
  color: var(--accent);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.3s ease;
  font-weight: 400;
}
.faq-toggle:checked + .faq-label::after { transform: rotate(45deg); }
.faq-body {
  display: none;
  padding: 0 22px 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}
.faq-toggle:checked ~ .faq-body { display: block; }
.faq-body a { color: var(--accent-lt); text-decoration: underline; text-underline-offset: 3px; }

/* ── Contact page ── */
.contact-wrap { max-width: 720px; margin: 0 auto; }
.contact-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.contact-method {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  display: flex;
  gap: 16px;
  align-items: center;
  transition: border-color var(--transition);
}
.contact-method:hover { border-color: var(--accent); transform: translateY(-2px); }
.cm-icon {
  width: 44px;
  height: 44px;
  background: rgba(91,110,245,0.1);
  border: 1px solid rgba(91,110,245,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
}
.cm-label { font-size: 11px; font-weight: 700; color: var(--muted2); letter-spacing: 0.08em; text-transform: uppercase; }
.cm-value { font-size: 14px; color: var(--text); font-weight: 500; margin-top: 3px; }
.cm-value a { color: var(--text); transition: color var(--transition); }
.cm-value a:hover { color: var(--accent-lt); }

.contact-form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.contact-form-card h3 { margin-bottom: 24px; }
.form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 12px; font-weight: 600; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; }
.field input,
.field textarea,
.field select {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 14px;
  color: var(--text);
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition);
  resize: vertical;
}
.field input:focus,
.field textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(91,110,245,0.08); }
.field textarea { min-height: 120px; }
.form-submit {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 13px 28px;
  font-size: 15px;
  font-weight: 700;
  transition: background var(--transition), transform var(--transition);
  align-self: flex-start;
}
.form-submit:hover { background: var(--accent-lt); transform: translateY(-1px); }

/* ── Contact email card (replaces form) ── */
.contact-email-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  margin-bottom: 32px;
}
.contact-email-card h3 { margin-bottom: 10px; }
.contact-email-card > p { color: var(--muted); font-size: 15px; max-width: 520px; margin-bottom: 28px; line-height: 1.7; }
.contact-email-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.contact-email-addr {
  font-family: 'SF Mono', 'Fira Code', 'Roboto Mono', monospace;
  font-size: 15px;
  color: var(--white);
  background: var(--bg);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border2);
  letter-spacing: 0.02em;
}

/* ── Page header (interior pages) ── */
.page-header {
  padding: 60px 0 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 72px;
}
.page-header .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}
.page-header .breadcrumb a { color: var(--muted); transition: color var(--transition); }
.page-header .breadcrumb a:hover { color: var(--text); }
.page-header .breadcrumb span { color: var(--muted2); }

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px var(--page-px) 36px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand { }
.footer-logo {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo-text { display: inline; }
.footer-logo .logo-icon {
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 7px;
  font-size: 13px;
  font-weight: 900;
  color: #fff;
}
.footer-tagline { font-size: 13px; color: var(--muted); line-height: 1.6; max-width: 240px; margin-bottom: 20px; }
.footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.footer-copy { font-size: 13px; color: var(--muted2); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; color: var(--muted2); transition: color var(--transition); }
.footer-legal a:hover { color: var(--muted); }

/* ── Visually hidden (screen-reader only) ── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Utilities ── */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }
.text-accent { color: var(--accent); }
.text-white  { color: var(--white); }
.text-muted  { color: var(--muted); }
.text-green  { color: var(--green); }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }

/* ── Nav logo image ── */
.nav-logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  margin-right: 9px;
  flex-shrink: 0;
  display: block;
}
.footer-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  display: block;
}
.footer-wordmark {
  height: 56px;
  width: auto;
  display: block;
  opacity: 0.93;
}

/* ── Hero screenshot (replaces phone mockup) ── */
.hero-screenshot-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-screenshot {
  width: 100%;
  max-width: 300px;
  border-radius: 22px;
  box-shadow: 0 32px 64px rgba(0,0,0,0.65), 0 0 0 1px rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  display: block;
}

/* ── What You Get strip (homepage) ── */
.wyg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.wyg-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.wyg-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.5);
}
.wyg-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.wyg-label {
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  border-top: 1px solid var(--border);
  background: var(--card);
}
.wyg-more {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: var(--muted);
}
.wyg-more a { color: var(--accent-lt); text-decoration: underline; text-underline-offset: 3px; }

/* ── 8-image pack showcase (examples page) ── */
.pack-grid-5 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 48px;
}
.pack-item:nth-child(1) { grid-column: 1 / 3; }
.pack-item:nth-child(2) { grid-column: 3 / 5; }
.pack-item:nth-child(3) { grid-column: 5 / 7; }
.pack-item:nth-child(4) { grid-column: 2 / 4; }
.pack-item:nth-child(5) { grid-column: 4 / 6; }
.pack-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pack-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.pack-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.pack-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}
.pack-num {
  width: 22px;
  height: 22px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

/* ── Lifestyle note box (examples page) ── */
.lifestyle-note {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-top: 48px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.lifestyle-note-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}
.lifestyle-note h4 { margin-bottom: 6px; font-size: 16px; }
.lifestyle-note p  { font-size: 14px; color: var(--muted); margin: 0; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid .step-card { border-radius: var(--radius) !important; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .pack-grid-5 { grid-template-columns: repeat(2, 1fr); }
  .pack-item:nth-child(1),
  .pack-item:nth-child(2),
  .pack-item:nth-child(3),
  .pack-item:nth-child(4),
  .pack-item:nth-child(5) { grid-column: auto; }
}

@media (max-width: 768px) {
  :root { --page-px: 20px; }
  .hero-inner           { grid-template-columns: 1fr; gap: 40px; }
  .hero-screenshot-wrap { order: -1; }
  .hero-screenshot      { max-width: 240px; }
  .hero-stats           { gap: 20px; }
  .steps-grid           { grid-template-columns: 1fr; }
  .features-grid        { grid-template-columns: 1fr; }
  .pricing-grid         { grid-template-columns: 1fr; }
  .gallery-grid         { grid-template-columns: repeat(2, 1fr); }
  .wyg-grid             { grid-template-columns: 1fr; }
  .pack-grid-5          { grid-template-columns: 1fr; }
  .pack-item:nth-child(1),
  .pack-item:nth-child(2),
  .pack-item:nth-child(3),
  .pack-item:nth-child(4),
  .pack-item:nth-child(5) { grid-column: auto; }
  .before-after    { grid-template-columns: 1fr; }
  .contact-methods { grid-template-columns: 1fr; }
  .form-row        { grid-template-columns: 1fr; }
  .footer-inner    { grid-template-columns: 1fr 1fr; }
  .cta-strip       { padding: 40px 28px; }
  .comparison-table { font-size: 13px; }
  .comparison-table th,
  .comparison-table td { padding: 12px 12px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .float-card { display: none; }
  .hero-sub { font-size: 15px; }
}

@media (max-width: 480px) {
  .gallery-grid    { grid-template-columns: 1fr; }
  .footer-inner    { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom   { flex-direction: column; align-items: flex-start; }
  .hero-ctas       { flex-direction: column; align-items: flex-start; }
}
