/* =========================================================
   Nodino — landing page styles
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700;800&display=swap');

:root {
  --radius: 18px;
  --radius-lg: 24px;
  --maxw: 1140px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --font: 'Quicksand', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  
  /* Brand colors */
  --brand-yellow: #ffd60a;
  --brand-yellow-hover: #ffe04d;
  --grad: linear-gradient(135deg, #ffd60a 0%, #ffc300 50%, #ffaa00 100%);
  --grad-soft: linear-gradient(135deg, rgba(255, 214, 10, 0.15), rgba(255, 170, 0, 0.15));
}

/* ---------- THEME: dark (default) ---------- */
[data-theme="dark"] {
  --bg: #121214;
  --bg-2: #18181c;
  --surface: #1e1e22;
  --surface-2: #242429;
  --border: rgba(255, 255, 255, .08);
  --border-strong: rgba(255, 255, 255, .15);
  --text: #f3f2f5;
  --muted: #a1a0a5;
  --faint: #6c6b70;
  --nav-bg: rgba(18, 18, 20, .75);
  --shadow: 0 24px 60px -22px rgba(0, 0, 0, .7);
  --shadow-sm: 0 8px 24px -12px rgba(0, 0, 0, .6);
  --glow-op: .45;
  --accent: #ffd60a;
  --accent-text: #2a2000;
  --iphone-bezel: #28282c;
  --iphone-screen-bg: #161618;
}

/* ---------- THEME: light ---------- */
[data-theme="light"] {
  --bg: #faf9fe;
  --bg-2: #f4f3f8;
  --surface: #ffffff;
  --surface-2: #f0edf6;
  --border: rgba(138, 114, 0, .12);
  --border-strong: rgba(138, 114, 0, .22);
  --text: #322d20;
  --muted: #645f50;
  --faint: #969180;
  --nav-bg: rgba(250, 249, 254, .75);
  --shadow: 0 24px 60px -26px rgba(112, 93, 0, .18);
  --shadow-sm: 0 10px 30px -16px rgba(112, 93, 0, .15);
  --glow-op: .25;
  --accent: #8a7200;
  --accent-text: #ffffff;
  --iphone-bezel: #e5e0d0;
  --iphone-screen-bg: #faf9fe;
  
  /* Swap gradient to look nicer on light background */
  --grad: linear-gradient(135deg, #8a7200 0%, #b59500 50%, #d6b300 100%);
  --grad-soft: linear-gradient(135deg, rgba(138, 114, 0, 0.1), rgba(214, 179, 0, 0.1));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background .4s var(--ease), color .3s var(--ease);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4, h5 { margin: 0; line-height: 1.15; letter-spacing: -.02em; font-weight: 700; }
p { margin: 0; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 780px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 15px; line-height: 1; cursor: pointer;
  padding: 13px 22px; border-radius: 12px; border: 1px solid transparent;
  transition: transform .18s var(--ease), box-shadow .25s var(--ease), background .25s, opacity .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary {
  background: var(--grad); color: var(--accent-text);
  box-shadow: 0 12px 30px -10px rgba(255, 195, 0, .5);
}
.btn-primary:hover { box-shadow: 0 16px 38px -10px rgba(255, 195, 0, .7); transform: translateY(-2px); }
.btn-ghost {
  background: var(--surface); color: var(--text); border-color: var(--border-strong);
}
.btn-ghost:hover { border-color: var(--accent); transform: translateY(-2px); }
.btn-lg { padding: 15px 26px; font-size: 16px; border-radius: 14px; }
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-block { width: 100%; }

/* ---------- nav ---------- */
.nav { position: sticky; top: 0; z-index: 60; background: transparent; transition: background .3s, border-color .3s; }
.nav.scrolled { background: var(--nav-bg); backdrop-filter: saturate(180%) blur(18px); -webkit-backdrop-filter: saturate(180%) blur(18px); border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; align-items: center; gap: 20px; height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -.03em; }
.brand-mark { color: var(--accent); filter: drop-shadow(0 0 8px rgba(255, 214, 10, .35)); transition: transform 0.3s; }
.brand:hover .brand-mark { transform: rotate(15deg); }
.brand-name { font-size: 20px; font-weight: 800; }
.nav-links { display: flex; gap: 6px; margin-left: 14px; flex: 1; }
.nav-links a { padding: 8px 12px; border-radius: 9px; font-size: 14.5px; color: var(--muted); font-weight: 600; transition: color .2s, background .2s; }
.nav-links a:hover { color: var(--text); background: var(--surface); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.seg { display: inline-flex; background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 2px; }
.seg-btn { border: 0; background: transparent; color: var(--muted); font-weight: 700; font-size: 12px; padding: 6px 9px; border-radius: 8px; cursor: pointer; transition: all .2s; }
.seg-btn.active { background: var(--grad); color: var(--accent-text); }
.icon-btn { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 10px; background: var(--surface); border: 1px solid var(--border); color: var(--text); cursor: pointer; transition: all .2s; }
.icon-btn:hover { border-color: var(--accent); }
.theme-toggle .ic-moon { display: none; }
[data-theme="light"] .theme-toggle .ic-sun { display: none; }
[data-theme="light"] .theme-toggle .ic-moon { display: block; }
.menu-toggle { display: none; }
.mobile-menu { display: none; }

/* ---------- hero ---------- */
.hero { position: relative; padding: 64px 0 30px; overflow: hidden; }
.hero-glow {
  position: absolute; inset: -20% 0 auto 0; height: 760px; pointer-events: none; z-index: 0;
  background:
    radial-gradient(560px 360px at 18% 16%, rgba(255, 214, 10, calc(var(--glow-op)*.7)), transparent 70%),
    radial-gradient(620px 420px at 86% 8%, rgba(255, 170, 0, var(--glow-op)), transparent 70%),
    radial-gradient(500px 320px at 60% 40%, rgba(255, 230, 80, calc(var(--glow-op)*.4)), transparent 75%);
  filter: blur(12px);
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1.02fr; gap: 48px; align-items: center; padding-top: 24px; }
.pill {
  display: inline-flex; align-items: center; gap: 9px; padding: 7px 14px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border-strong); font-size: 13px; font-weight: 700; color: var(--muted);
  transition: border-color .2s, transform .2s;
}
.pill:hover { border-color: var(--accent); transform: translateY(-1px); }
.pill-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--grad); box-shadow: 0 0 10px var(--accent); }
.hero-title { font-size: clamp(38px, 5.4vw, 64px); font-weight: 800; letter-spacing: -.035em; margin: 20px 0 0; }
.hero-title span { display: block; }
.grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: clamp(16px, 1.6vw, 19px); color: var(--muted); margin-top: 20px; max-width: 540px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 30px; }
.hero-cta-badge { height: 48px; display: inline-block; transition: transform 0.2s; }
.hero-cta-badge:hover { transform: scale(1.03); }
.hero-points { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-wrap: wrap; gap: 10px 22px; }
.hero-points li { display: flex; align-items: center; gap: 8px; font-size: 14.5px; color: var(--muted); font-weight: 600; }
.hero-points svg { color: var(--accent); flex: none; }

/* ---------- interactive CSS iPhone mockup ---------- */
.hero-mock { position: relative; display: flex; justify-content: center; align-items: center; }
.iphone-mockup {
  position: relative;
  width: 290px;
  height: 590px;
  background: var(--iphone-bezel);
  border-radius: 46px;
  padding: 10px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-strong);
  transition: transform .5s var(--ease);
}
.hero-mock:hover .iphone-mockup { transform: translateY(-8px) rotate(-1deg); }
.iphone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--iphone-screen-bg);
  border-radius: 36px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.4);
}
.iphone-island {
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 24px;
  background: #000000;
  border-radius: 20px;
  z-index: 10;
}
.iphone-status-bar {
  display: flex;
  justify-content: space-between;
  padding: 12px 24px 6px;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--text);
  opacity: 0.8;
  z-index: 5;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}
.iphone-status-icons {
  display: flex;
  gap: 4px;
}

/* App interior styles */
.app-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px 8px;
}
.app-header h4 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
}
.app-header .brand-mark {
  width: 22px;
  height: 22px;
}

/* Smart Input Area */
.app-creator {
  padding: 4px 16px 12px;
  border-bottom: 1px solid var(--border);
}
.creator-input-box {
  background: var(--surface);
  border: 1.5px solid var(--border-strong);
  border-radius: 12px;
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.creator-text {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
}
.cursor {
  display: inline-block;
  width: 2px;
  height: 14px;
  background: var(--accent);
  margin-left: 2px;
  animation: blink 0.8s infinite;
}
@keyframes blink { 0%, 100% { opacity: 0; } 50% { opacity: 1; } }

.creator-suggestions {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 2px;
}
.suggest-item {
  font-size: 10.5px;
  font-weight: 700;
  padding: 5px 8px;
  border-radius: 6px;
  background: var(--surface-2);
  color: var(--muted);
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  gap: 6px;
}
.suggest-item .dot-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* Reminder list inside mockup */
.app-list {
  flex: 1;
  padding: 12px 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mock-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 11px;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.03);
}
.mock-check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  flex-shrink: 0;
}
.mock-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.mock-task {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
}
.mock-time {
  font-size: 9.5px;
  font-weight: 600;
  color: var(--faint);
  margin-top: 1px;
}
.tag-indicator {
  font-size: 8px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
}
.tag-health { background: rgba(52, 211, 153, 0.15); color: #059669; }
.tag-fitness { background: rgba(251, 146, 60, 0.15); color: #ea580c; }
.tag-shopping { background: rgba(167, 139, 250, 0.15); color: #7c3aed; }

/* Completed section inside mockup */
.completed-head {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--faint);
  font-weight: 800;
  margin: 10px 0 2px 4px;
}
.mock-item.completed {
  opacity: 0.55;
  border-style: dashed;
}
.mock-item.completed .mock-check {
  background: var(--accent);
  border-color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.mock-item.completed .mock-check::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 7px;
  border: solid var(--accent-text);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
  top: 2px;
}
.mock-item.completed .mock-task {
  text-decoration: line-through;
}

/* Floating Action Button inside mockup */
.app-fab {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255, 195, 0, 0.4);
  color: var(--accent-text);
  font-size: 24px;
  font-weight: 500;
  border: none;
}

/* ---------- trust strip ---------- */
.trust { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 18px; margin-top: 52px; padding: 18px 22px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-sm); }
.trust>span { font-size: 13px; color: var(--faint); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.trust-badges { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.tbadge { font-weight: 800; font-size: 13.5px; padding: 6px 13px; border-radius: 9px; background: var(--grad); color: var(--accent-text); letter-spacing: .02em; }
.tbadge.ghost { background: var(--surface-2); color: var(--muted); border: 1px solid var(--border); }
.tdiv { width: 1px; height: 20px; background: var(--border-strong); }

/* ---------- sections ---------- */
.section { padding: 96px 0; position: relative; }
.section-alt { background: var(--bg-2); }
.sec-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.eyebrow { display: inline-block; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: var(--accent); margin-bottom: 14px; }
.sec-head h2 { font-size: clamp(28px, 3.4vw, 42px); font-weight: 800; letter-spacing: -.03em; }
.sec-head p { color: var(--muted); font-size: 17px; margin-top: 16px; }

/* ---------- highlights ---------- */
.hl { display: grid; grid-template-columns: 1fr 1.12fr; gap: 54px; align-items: center; padding: 40px 0; }
.hl.reverse { direction: rtl; }
.hl.reverse>* { direction: ltr; }
.hl-kicker { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); background: var(--surface); border: 1px solid var(--border); padding: 4px 11px; border-radius: 8px; margin-bottom: 16px; }
.hl-text h3 { font-size: clamp(24px, 2.6vw, 34px); font-weight: 800; letter-spacing: -.025em; }
.hl-text>p { color: var(--muted); font-size: 16.5px; margin-top: 14px; }
.ticks { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 11px; }
.ticks li { position: relative; padding-left: 30px; font-size: 15px; color: var(--text); font-weight: 600; }
.ticks li::before { content: ""; position: absolute; left: 0; top: 3px; width: 18px; height: 18px; border-radius: 6px; background: var(--grad-soft); box-shadow: inset 0 0 0 1px var(--border); }
.ticks li::after { content: ""; position: absolute; left: 6px; top: 7px; width: 6px; height: 9px; border: solid var(--accent); border-width: 0 2px 2px 0; transform: rotate(45deg); }
.hl-media { border-radius: 36px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); background: var(--surface); transition: transform .4s var(--ease); padding: 16px; max-width: 320px; margin: 0 auto; }
.hl-media:hover { transform: translateY(-6px) rotate(1deg); }
.hl-media img { width: 100%; height: auto; border-radius: 22px; }

/* ---------- grid cards ---------- */
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; transition: transform .25s var(--ease), border-color .25s, box-shadow .25s; }
.card:hover { transform: translateY(-5px); border-color: var(--border-strong); box-shadow: var(--shadow-sm); }
.card-ic { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: var(--grad-soft); color: var(--accent); margin-bottom: 16px; }
.card-ic svg { width: 23px; height: 23px; }
.card h4 { font-size: 17px; font-weight: 800; display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.card p { color: var(--muted); font-size: 14px; margin-top: 9px; font-weight: 500; }
.tag-pro { font-size: 9.5px; font-weight: 800; letter-spacing: .05em; padding: 2px 6px; border-radius: 5px; background: var(--grad); color: var(--accent-text); }

/* ---------- compare table ---------- */
.table-wrap { max-width: 880px; margin: 0 auto; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); background: var(--surface); }
.compare { width: 100%; border-collapse: collapse; font-size: 15px; }
.compare th, .compare td { padding: 16px 22px; text-align: left; border-bottom: 1px solid var(--border); }
.compare thead th { font-size: 13px; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); background: var(--surface-2); font-weight: 800; }
.compare th:not(:first-child), .compare td:not(:first-child) { text-align: center; width: 120px; }
.compare .col-pro { position: relative; color: var(--accent); font-weight: 800; }
.compare tbody tr:last-child td { border-bottom: none; }
.compare td:first-child { font-weight: 600; }
.compare .yes { color: var(--accent); font-weight: 800; font-size: 18px; }
.compare .no { color: var(--faint); font-weight: 600; }
.compare tbody tr:hover { background: var(--surface-2); }

/* ---------- gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery figure { margin: 0; border-radius: 28px; overflow: hidden; border: 1px solid var(--border); background: var(--surface); cursor: zoom-in; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease); padding: 12px; }
.gallery figure:hover { transform: translateY(-5px) scale(1.02); }
.gallery img { width: 100%; height: auto; aspect-ratio: 9/19.5; object-fit: cover; border-radius: 18px; }

/* ---------- pricing ---------- */
.plans { display: grid; grid-template-columns: repeat(2, minmax(0, 400px)); gap: 24px; justify-content: center; }
.plan { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 34px; display: flex; flex-direction: column; }
.plan.featured { border-color: transparent; background: linear-gradient(var(--surface), var(--surface)) padding-box, var(--grad) border-box; border: 1.5px solid transparent; box-shadow: var(--shadow); }
.plan-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad); color: var(--accent-text); font-size: 12px; font-weight: 800; padding: 5px 14px; border-radius: 999px; white-space: nowrap; }
.plan h3 { font-size: 22px; font-weight: 800; }
.plan-price { display: flex; align-items: baseline; gap: 9px; margin: 16px 0 4px; }
.plan-price .amount { font-size: 38px; font-weight: 800; letter-spacing: -.03em; }
.plan-price .per { color: var(--faint); font-size: 14px; font-weight: 700; }
.plan-desc { color: var(--muted); font-size: 14.5px; margin-bottom: 22px; font-weight: 500; }
.plan-feats { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 12px; flex: 1; }
.plan-feats li { position: relative; padding-left: 28px; font-size: 14.5px; font-weight: 600; }
.plan-feats li::before { content: ""; position: absolute; left: 0; top: 6px; width: 16px; height: 16px; border-radius: 5px; background: var(--grad); }
.plan-feats li::after { content: ""; position: absolute; left: 5px; top: 9px; width: 5px; height: 8px; border: solid var(--accent-text); border-width: 0 2px 2px 0; transform: rotate(45deg); }
.price-note { text-align: center; color: var(--faint); font-size: 13.5px; margin-top: 26px; font-weight: 600; }

/* Price options rows */
.price-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 8px 0 22px;
}
.price-option-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  transition: border-color 0.2s, background 0.2s;
  text-align: left;
}
.price-option-row.highlight-option {
  border-color: var(--accent);
  background: var(--grad-soft);
}
.option-name {
  color: var(--text);
  font-weight: 700;
}
.option-price {
  color: var(--muted);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}
.highlight-option .option-price {
  color: var(--text);
}
.badge-save, .badge-best {
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.badge-save {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}
[data-theme="light"] .badge-save {
  color: #047857;
}
.badge-best {
  background: var(--grad);
  color: var(--accent-text);
}

/* ---------- faq ---------- */
.faq { display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: 14px; background: var(--surface); overflow: hidden; transition: border-color .2s; }
.faq-item[open] { border-color: var(--border-strong); }
.faq-item summary { list-style: none; cursor: pointer; padding: 18px 22px; font-weight: 700; font-size: 16px; display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 22px; font-weight: 500; color: var(--accent); transition: transform .25s; flex: none; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 22px 20px; color: var(--muted); font-size: 15px; font-weight: 500; }

/* ---------- form ---------- */
.form { max-width: 680px; margin: 0 auto; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 13.5px; font-weight: 700; color: var(--muted); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 15px; color: var(--text); background: var(--bg-2);
  border: 1px solid var(--border); border-radius: 11px; padding: 12px 14px; transition: border-color .2s, box-shadow .2s; width: 100%; resize: vertical; font-weight: 600; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255, 214, 10, .25); }
.stars { display: flex; gap: 4px; }
.star { background: none; border: none; font-size: 28px; line-height: 1; color: var(--border-strong); cursor: pointer; transition: color .15s, transform .15s; padding: 0; }
.star:hover { transform: scale(1.12); }
.star.on { color: #fbbf24; }
.form-foot { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 4px; }
.form-status { font-size: 14px; font-weight: 700; margin: 0; }
.form-status.ok { color: var(--accent); }
.form-status.err { color: #ef4444; }
.form-status.loading { color: var(--muted); }
.form-fineprint { font-size: 12.5px; color: var(--faint); margin-top: 16px; font-weight: 600; }
.btn[disabled] { opacity: .6; cursor: default; transform: none; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--border); background: var(--bg-2); padding: 56px 0 28px; margin-top: 0; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 2fr; gap: 40px; }
.footer-brand p { color: var(--muted); font-size: 14.5px; margin-top: 14px; max-width: 300px; font-weight: 500; }
.foot-made { font-size: 13px !important; color: var(--faint) !important; margin-top: 8px !important; font-weight: 600; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-col h5 { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--faint); margin-bottom: 14px; font-weight: 800; }
.footer-col a { display: block; color: var(--muted); font-size: 14.5px; padding: 5px 0; transition: color .2s; font-weight: 600; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; margin-top: 42px; padding-top: 22px; border-top: 1px solid var(--border); color: var(--faint); font-size: 13px; font-weight: 600; }

/* ---------- lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(0, 0, 0, .88); backdrop-filter: blur(8px); display: none; align-items: center; justify-content: center; opacity: 0; transition: opacity .25s; }
.lightbox.open { display: flex; opacity: 1; }
.lightbox img { max-width: 90vw; max-height: 88vh; border-radius: 24px; box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .8); border: 2px solid rgba(255,255,255,0.06); }
.lb-close, .lb-nav { position: absolute; background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .15); color: #fff; cursor: pointer; border-radius: 12px; transition: background .2s; }
.lb-close:hover, .lb-nav:hover { background: rgba(255, 255, 255, .2); }
.lb-close { top: 22px; right: 22px; width: 44px; height: 44px; font-size: 26px; line-height: 1; }
.lb-nav { top: 50%; transform: translateY(-50%); width: 50px; height: 64px; font-size: 34px; line-height: 1; }
.lb-prev { left: 18px; }.lb-next { right: 18px; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .menu-toggle { display: inline-flex; }
  .mobile-menu { display: none; flex-direction: column; padding: 8px 24px 18px; gap: 2px; background: var(--nav-bg); backdrop-filter: blur(18px); border-bottom: 1px solid var(--border); }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { padding: 11px 8px; color: var(--text); font-weight: 700; border-radius: 9px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .pill { margin: 0 auto; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-points { justify-content: center; }
  .hero-mock { order: 2; width: 100%; }
  .hl, .hl.reverse { grid-template-columns: 1fr; direction: ltr; gap: 28px; text-align: center; }
  .ticks { justify-content: center; text-align: left; }
  .hl-media { order: -1; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 620px) {
  .section { padding: 68px 0; }
  .grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; }
  .form { padding: 22px; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 36px 0 10px; }
  .compare th:not(:first-child), .compare td:not(:first-child) { width: 64px; }
  .compare th, .compare td { padding: 13px 12px; font-size: 13.5px; }
  .trust { flex-direction: column; gap: 12px; }
}
