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

:root {
  --gold:   #c8912a;
  --gold-l: #d9a84a;
  --ink:    #1e1b16;
  --ink-2:  #3a3529;
  --muted:  #8a7f6e;
  --cream:  #faf7f2;
  --cream2: #f2ede3;
  --warm:   #19160f;
  --white:  #ffffff;
  --border: rgba(30,27,22,0.1);
  --max:    1100px;
  --serif:  'Playfair Display', Georgia, serif;
  --sans:   'Inter', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--cream); color: var(--ink); line-height: 1.65; overflow-x: hidden; }
h1, h2, h3 { font-family: var(--serif); letter-spacing: -0.01em; line-height: 1.15; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

@media (min-width: 768px) {
  .wrap { padding: 0 32px; }
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 68px; transition: all 0.4s ease;
}
nav.light {
  background: rgba(250,247,242,0.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; text-decoration: none; letter-spacing: -0.02em; color: #fff; transition: color 0.4s; }
nav.light .logo { color: var(--ink); }
.logo .dot { color: var(--gold); }
.nav-links { display: none; gap: 32px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.87rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: #fff; }
nav.light .nav-links a { color: var(--muted); }
nav.light .nav-links a:hover { color: var(--ink); }
.nav-cta {
  display: inline-flex; align-items: center;
  padding: 9px 22px; border-radius: 8px;
  font-size: 0.87rem; font-weight: 600; text-decoration: none;
  background: var(--gold); color: #fff;
  transition: all 0.2s;
  box-shadow: 0 2px 12px rgba(200,145,42,0.35);
}
.nav-cta:hover { background: var(--gold-l); }

@media (min-width: 768px) {
  .nav-links { display: flex; }
}

/* ── HERO ── */
#hero {
  background: var(--warm);
  padding: 80px 0 64px; position: relative; overflow: hidden;
}

@media (min-width: 768px) {
  #hero { padding: 120px 0 100px; }
}
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 90% 70% at 55% 55%, rgba(200,145,42,0.09) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 0% 100%, rgba(180,120,20,0.12) 0%, transparent 55%);
}
.hero-grain {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
}
.hero-sep {
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(200,145,42,0.5) 30%, rgba(200,145,42,0.5) 70%, transparent 100%);
}
.hero-inner { position: relative; text-align: center; }
.hero-right { display: none; }

@media (min-width: 768px) {
  .hero-inner { text-align: left; }
}

@media (min-width: 1024px) {
  .hero-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 72px;
  }
  .hero-right { display: flex; flex-direction: column; gap: 14px; }
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--gold-l); margin-bottom: 28px;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero-tag { justify-content: flex-start; }
}
.hero-tag-line { width: 28px; height: 1px; background: rgba(200,145,42,0.5); }
#hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  color: #fff; font-weight: 700;
  max-width: 680px; margin: 0 auto 24px;
}

@media (min-width: 768px) {
  #hero h1 { margin: 0 0 24px; }
}
#hero h1 em { font-style: italic; color: var(--gold-l); }
.hero-sub {
  font-size: 1.05rem; color: rgba(250,247,242,0.55);
  max-width: 500px; margin: 0 auto 48px; line-height: 1.8;
}

@media (min-width: 768px) {
  .hero-sub { margin: 0 0 48px; }
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; justify-content: center; }

@media (min-width: 768px) {
  .hero-actions { justify-content: flex-start; margin-bottom: 72px; }
}
.btn-hero {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 30px; border-radius: 8px;
  font-size: 0.95rem; font-weight: 600; font-family: var(--sans);
  text-decoration: none; cursor: pointer; border: none;
  transition: all 0.22s;
}
.btn-hero--gold { background: var(--gold); color: #fff; box-shadow: 0 4px 24px rgba(200,145,42,0.4); }
.btn-hero--gold:hover { background: var(--gold-l); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(200,145,42,0.5); }
.btn-hero--outline { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.18); }
.btn-hero--outline:hover { color: #fff; border-color: rgba(255,255,255,0.4); }
.hero-metrics { display: flex; gap: 40px; flex-wrap: wrap; justify-content: center; }

@media (min-width: 768px) {
  .hero-metrics { gap: 56px; justify-content: flex-start; }
}
.metric-val { font-family: var(--serif); font-size: 2.2rem; font-weight: 700; color: #fff; line-height: 1; }
.metric-label { font-size: 0.8rem; color: rgba(250,247,242,0.4); margin-top: 5px; }

/* ── SECTION COMMON ── */
.sec-tag { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.sec-title { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 700; color: var(--ink); margin-bottom: 14px; }
.sec-title--white { color: #fff; }
.sec-sub { font-size: 1rem; color: var(--muted); line-height: 1.75; max-width: 480px; }
.sec-sub--white { color: rgba(250,247,242,0.5); }

/* ── BRIDGE ── */
#bridge {
  background: #fff;
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.bridge-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.bridge-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 0;
}

@media (min-width: 768px) {
  .bridge-inner { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .bridge-item { padding: 0 40px; }
  .bridge-item + .bridge-item { border-left: 1px solid var(--border); }
}

.bridge-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(200,145,42,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.bridge-icon svg { color: var(--gold); }
.bridge-text h3 {
  font-family: var(--sans); font-size: 0.95rem; font-weight: 600;
  color: var(--ink); margin-bottom: 5px;
}
.bridge-text p {
  font-size: 0.85rem; color: var(--muted); line-height: 1.6; margin: 0;
}

/* ── DASHBOARD PREVIEW ── */
#dashboard-preview {
  background: var(--warm); padding: 64px 0;
  position: relative; overflow: hidden;
}

@media (min-width: 768px) {
  #dashboard-preview { padding: 100px 0 120px; }
}
.db-header { margin-bottom: 56px; }
.db-header .sec-sub { max-width: 520px; }

.browser-wrap {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}
.browser-wrap::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(200,145,42,0.3), rgba(200,145,42,0.05) 50%, transparent);
  pointer-events: none; z-index: 1;
}
.browser {
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.07);
  position: relative;
}
.browser-chrome {
  background: #252017; padding: 12px 18px;
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.chrome-dots { display: flex; gap: 6px; }
.chrome-dot { width: 11px; height: 11px; border-radius: 50%; }
.chrome-dot:nth-child(1) { background: #ff5f57; }
.chrome-dot:nth-child(2) { background: #febc2e; }
.chrome-dot:nth-child(3) { background: #28c840; }
.chrome-bar {
  flex: 1; background: rgba(255,255,255,0.06); border-radius: 6px;
  padding: 5px 12px; font-size: 0.73rem; color: rgba(255,255,255,0.3); font-family: monospace;
}
.browser-body { display: flex; height: 300px; }

@media (min-width: 768px) {
  .browser-body { height: 440px; }
}

.db-sidebar {
  display: none;
}

@media (min-width: 768px) {
  .db-sidebar {
    width: 192px; background: #16130d; flex-shrink: 0;
    border-right: 1px solid rgba(255,255,255,0.06); padding: 18px 0;
    display: flex; flex-direction: column;
  }
}
.db-sidebar-logo {
  padding: 0 18px 18px; font-family: var(--serif); font-size: 1rem; font-weight: 700;
  color: rgba(255,255,255,0.75); border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 14px;
}
.db-sidebar-logo .dot { color: var(--gold); }
.db-nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 18px; font-size: 0.8rem; color: rgba(255,255,255,0.35);
  border-left: 2px solid transparent; transition: all 0.15s;
}
.db-nav-item.on { color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.05); border-left-color: var(--gold); }
.db-nav-icon { width: 14px; height: 14px; border-radius: 3px; background: currentColor; opacity: 0.5; flex-shrink: 0; }
.db-nav-item.on .db-nav-icon { opacity: 1; background: var(--gold); }

.db-main { flex: 1; overflow: hidden; background: #f5f1ea; display: flex; flex-direction: column; }
.db-topbar {
  background: #fff; padding: 13px 22px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  display: flex; align-items: center; justify-content: space-between; flex-shrink: 0;
}
.db-topbar-title { font-size: 0.9rem; font-weight: 600; color: var(--ink); }
.db-topbar-sub { font-size: 0.72rem; color: var(--muted); margin-top: 1px; }
.db-topbar-btn {
  background: var(--gold); color: #fff; border-radius: 6px;
  padding: 6px 14px; font-size: 0.75rem; font-weight: 600;
}
.db-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 14px 20px; flex-shrink: 0; }
.db-stat { background: #fff; border-radius: 8px; padding: 12px 14px; border: 1px solid rgba(0,0,0,0.07); }
.db-stat-val { font-family: var(--serif); font-size: 1.6rem; font-weight: 700; color: var(--ink); line-height: 1; }
.db-stat-lbl { font-size: 0.68rem; color: var(--muted); margin-top: 3px; }
.db-stat-lbl span { color: #28a745; font-weight: 600; }
.db-table { margin: 0 20px 16px; background: #fff; border-radius: 8px; border: 1px solid rgba(0,0,0,0.07); overflow: hidden; flex-shrink: 0; }
.db-th {
  display: grid; grid-template-columns: 2fr 0.9fr 0.6fr 1fr 0.8fr;
  padding: 9px 14px; background: #f9f6f0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  font-size: 0.67rem; font-weight: 600; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.db-tr {
  display: grid; grid-template-columns: 2fr 0.9fr 0.6fr 1fr 0.8fr;
  padding: 10px 14px; border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 0.78rem; color: var(--ink); align-items: center;
}
.db-tr:last-child { border-bottom: none; }
.db-name { font-weight: 500; }
.db-phone { color: var(--muted); font-size: 0.72rem; }
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 2px 8px; border-radius: 20px; font-size: 0.7rem; font-weight: 600;
}
.badge::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.badge-ok { background: rgba(40,167,69,0.1); color: #28a745; }
.badge-wait { background: rgba(254,188,46,0.15); color: #b8880a; }
.badge-cancel { background: rgba(220,53,69,0.1); color: #dc3545; }

/* ── WIDGET SECTION ── */
#widget-demo {
  padding: 64px 0;
  background: var(--cream);
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  #widget-demo { padding: 120px 0; }
}
.widget-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}

@media (min-width: 1024px) {
  .widget-layout { grid-template-columns: 1fr 1fr; gap: 80px; }
}

.fake-site {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 56px rgba(30,27,22,0.09);
}
.fake-site-top {
  background: #1e1b16; padding: 14px 20px;
  display: flex; align-items: center; gap: 12px;
}
.fake-site-top-dots { display: flex; gap: 5px; }
.fake-site-top-dots span { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.2); }
.fake-site-top-bar {
  flex: 1; background: rgba(255,255,255,0.08); border-radius: 5px;
  padding: 4px 10px; font-size: 0.68rem; color: rgba(255,255,255,0.35); font-family: monospace;
}
.fake-site-body { padding: 28px 24px; }
.fake-hero-title { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.fake-hero-sub { font-size: 0.78rem; color: var(--muted); margin-bottom: 20px; }
.widget-box {
  background: var(--cream); border: 1px solid var(--border); border-radius: 10px; padding: 18px;
}
.widget-box-title { font-size: 0.82rem; font-weight: 600; color: var(--ink); margin-bottom: 14px; }
.widget-slots { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.wslot {
  padding: 6px 11px; border-radius: 6px; border: 1.5px solid var(--border);
  font-size: 0.75rem; font-weight: 600; color: var(--muted);
  background: #fff; cursor: pointer;
}
.wslot.sel { border-color: var(--gold); color: var(--gold); background: rgba(200,145,42,0.07); }
.wslot.full { opacity: 0.35; text-decoration: line-through; }
.widget-form-row { display: flex; gap: 8px; margin-bottom: 8px; }
.wfield {
  flex: 1; padding: 8px 10px; background: #fff; border: 1.5px solid var(--border);
  border-radius: 7px; font-size: 0.75rem; color: var(--muted);
}
.wfield.active { border-color: var(--gold); color: var(--ink); }
.wbtn {
  width: 100%; padding: 10px; background: var(--gold); color: #fff;
  border-radius: 7px; font-size: 0.8rem; font-weight: 600; text-align: center;
  margin-top: 8px; cursor: pointer;
}

/* ── FEATURES ── */
#features {
  padding: 64px 0;
  background: var(--cream2);
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  #features { padding: 120px 0; }
}
.feat-header { margin-bottom: 64px; }
.feat-grid {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--border); border-radius: 16px; overflow: hidden; background: var(--border);
  gap: 1px;
}

@media (min-width: 768px) {
  .feat-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .feat-grid { grid-template-columns: repeat(3, 1fr); }
}

.feat-card {
  background: #fff; padding: 38px 32px;
  transition: background 0.2s;
}
.feat-card:hover { background: var(--cream); }
.feat-ico {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--cream2); display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feat-ico svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.feat-card h3 { font-family: var(--sans); font-size: 1rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.feat-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

/* ── TRUST ── */
#trust {
  background: var(--warm); padding: 64px 0;
}

@media (min-width: 768px) {
  #trust { padding: 100px 0; }
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  background: rgba(255,255,255,0.06); border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}

@media (min-width: 768px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
}

.trust-card {
  background: rgba(255,255,255,0.03); padding: 44px 36px;
  transition: background 0.2s;
}
.trust-card:hover { background: rgba(255,255,255,0.055); }
.trust-num {
  font-family: var(--serif); font-size: 2.8rem; font-weight: 700;
  color: var(--gold); line-height: 1; margin-bottom: 10px;
}
.trust-card h3 { font-size: 1.05rem; font-weight: 600; font-family: var(--sans); color: #fff; margin-bottom: 8px; }
.trust-card p { font-size: 0.88rem; color: rgba(250,247,242,0.4); line-height: 1.65; }

/* ── HOW ── */
#how {
  padding: 64px 0;
  background: var(--cream);
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  #how { padding: 120px 0; }
}
.how-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}

@media (min-width: 1024px) {
  .how-inner { grid-template-columns: 1fr 1fr; gap: 80px; }
}

.how-steps { display: flex; flex-direction: column; }
.how-step {
  display: flex; gap: 22px; padding: 28px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  position: relative; overflow: hidden;
}
.how-step:last-child { border-bottom: none; }
.step-n {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%;
  border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 600; color: var(--muted);
  transition: all 0.3s; margin-top: 2px;
}
.how-step.on .step-n { border-color: var(--gold); color: var(--gold); background: rgba(200,145,42,0.07); }
.step-content h3 { font-size: 1rem; font-weight: 600; font-family: var(--sans); color: var(--ink); margin-bottom: 5px; transition: color 0.3s; }
.step-content p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; opacity: 0.35; transition: opacity 0.35s; }
.how-step.on .step-content p { opacity: 1; }
.how-visual-wrap {
  position: sticky; top: 100px;
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden; box-shadow: 0 8px 48px rgba(30,27,22,0.07);
  min-height: 340px; position: relative;
}
.how-visual { width: 100%; }

.how-v {
  position: absolute; inset: 24px;
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
  display: flex; flex-direction: column; justify-content: center;
}
.how-v.on { opacity: 1; transform: translateY(0); pointer-events: auto; }
.how-v.out { opacity: 0; transform: translateY(-10px); }

@keyframes step-progress { from { width: 0 } to { width: 100% } }
.how-step::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  height: 2px; background: var(--gold); width: 0;
}
.how-step.on::after { animation: step-progress 5s linear forwards; }

.setup-form { display: flex; flex-direction: column; gap: 10px; }
.setup-row { display: flex; gap: 8px; }
.setup-field {
  flex: 1; padding: 10px 12px; border: 1.5px solid var(--border);
  border-radius: 7px; font-size: 0.78rem; color: var(--muted);
  background: var(--cream);
}
.setup-field.filled { border-color: rgba(200,145,42,0.4); color: var(--ink); background: #fff; }
.setup-btn { background: var(--gold); color: #fff; padding: 11px; border-radius: 7px; font-size: 0.82rem; font-weight: 600; text-align: center; }

.code-wrap { background: #2b2620; border-radius: 10px; padding: 18px 20px; border: 1px solid rgba(200,145,42,0.15); }
.code-comment { color: rgba(200,145,42,0.45); font-size: 0.73rem; font-family: monospace; margin-bottom: 8px; }
.code-line { font-family: monospace; font-size: 0.73rem; color: rgba(250,247,242,0.65); line-height: 1.8; }
.code-tag { color: #93c5fd; }
.code-attr { color: #86efac; }
.code-val { color: var(--gold-l); }

.notif-card { background: var(--cream); border: 1px solid var(--border); border-radius: 10px; padding: 16px; }
.notif-header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.notif-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.notif-title { font-size: 0.82rem; font-weight: 600; color: var(--ink); }
.notif-time { font-size: 0.72rem; color: var(--muted); margin-left: auto; }
.notif-row { display: flex; justify-content: space-between; font-size: 0.78rem; padding: 5px 0; border-bottom: 1px solid var(--border); }
.notif-row:last-child { border-bottom: none; }
.notif-key { color: var(--muted); }
.notif-val { font-weight: 500; color: var(--ink); }
.notif-confirm { margin-top: 12px; background: var(--gold); color: #fff; border-radius: 6px; padding: 8px; font-size: 0.78rem; font-weight: 600; text-align: center; }

/* ── PRICING ── */
#pricing {
  padding: 64px 0;
  background: var(--cream2);
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  #pricing { padding: 120px 0; }
}
.pricing-header { margin-bottom: 64px; }
.plans {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .plans { grid-template-columns: 1fr 1fr; }
}

.plan {
  background: #fff; border: 1px solid var(--border);
  border-radius: 16px; padding: 46px 42px; position: relative;
}
.plan--dark { background: var(--ink); border-color: var(--ink); }
.plan-pop {
  position: absolute; top: 22px; right: 22px;
  background: var(--gold); color: #fff;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 3px 12px; border-radius: 20px;
}
.plan-name { font-family: var(--serif); font-size: 1.45rem; font-weight: 700; margin-bottom: 6px; color: var(--ink); }
.plan--dark .plan-name { color: #fff; }
.plan-pitch { font-size: 0.88rem; color: var(--muted); margin-bottom: 30px; line-height: 1.65; }
.plan--dark .plan-pitch { color: rgba(250,247,242,0.45); }
.plan-price { display: flex; align-items: flex-end; gap: 5px; margin-bottom: 4px; }
.plan-amount { font-family: var(--serif); font-size: 3rem; font-weight: 700; line-height: 1; color: var(--ink); }
.plan--dark .plan-amount { color: #fff; }
.plan-per { font-size: 0.88rem; color: var(--muted); padding-bottom: 4px; }
.plan--dark .plan-per { color: rgba(250,247,242,0.4); }
.plan-note { font-size: 0.8rem; color: var(--muted); margin-bottom: 32px; }
.plan--dark .plan-note { color: rgba(250,247,242,0.35); }
.plan-list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 38px; }
.plan-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--ink-2); }
.plan--dark .plan-list li { color: rgba(250,247,242,0.75); }
.plan-list li::before {
  content: '';
  flex-shrink: 0; width: 16px; height: 16px; margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8' fill='%23c8912a' opacity='.12'/%3E%3Cpath d='M5 8l2 2 4-4' stroke='%23c8912a' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/cover;
}
.plan-cta {
  display: block; text-align: center; padding: 13px 24px; border-radius: 8px;
  font-size: 0.9rem; font-weight: 600; font-family: var(--sans);
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.2s;
}
.plan-cta--border { border: 1.5px solid var(--border); color: var(--ink); background: transparent; }
.plan-cta--border:hover { border-color: var(--ink); background: var(--cream2); }
.plan-cta--gold { background: var(--gold); color: #fff; box-shadow: 0 4px 18px rgba(200,145,42,0.35); }
.plan-cta--gold:hover { background: var(--gold-l); transform: translateY(-1px); }
.plan-extra { margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.82rem; color: rgba(250,247,242,0.38); line-height: 1.6; }
.plan-extra strong { color: rgba(250,247,242,0.7); }

/* ── CTA FINAL ── */
#cta-final {
  background: var(--warm); padding: 64px 0; text-align: center;
  position: relative; overflow: hidden;
}

@media (min-width: 768px) {
  #cta-final { padding: 100px 0; }
}
#cta-final::before {
  content: ''; position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,145,42,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-final-inner { position: relative; max-width: 640px; margin: 0 auto; }
.cta-final-inner h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); color: #fff; margin-bottom: 18px; }
.cta-final-inner h2 em { font-style: italic; color: var(--gold-l); }
.cta-final-inner p { font-size: 1.05rem; color: rgba(250,247,242,0.5); line-height: 1.75; margin-bottom: 40px; max-width: 480px; margin-left: auto; margin-right: auto; }
.btn-cta { display: inline-block; padding: 16px 36px; background: var(--gold); color: #fff; font-weight: 600; font-size: 0.95rem; border-radius: 8px; text-decoration: none; letter-spacing: 0.01em; transition: background 0.2s, transform 0.15s; }
.btn-cta:hover { background: #b07a20; transform: translateY(-1px); }
.cta-final-note { margin-top: 20px; font-size: 0.8rem; color: rgba(250,247,242,0.25); }

/* ── CONTACT ── */
#contact {
  padding: 64px 0;
  background: var(--cream);
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  #contact { padding: 120px 0; }
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 1024px) {
  .contact-inner { grid-template-columns: 1fr 1.45fr; gap: 80px; }
}

.contact-promises { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.promise { display: flex; align-items: flex-start; gap: 12px; font-size: 0.88rem; color: var(--muted); }
.promise::before { content: ''; flex-shrink: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); margin-top: 7px; }
form { display: flex; flex-direction: column; gap: 14px; }
.frow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 768px) {
  .frow { grid-template-columns: 1fr 1fr; }
}

label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--ink-2); margin-bottom: 5px; }
input, select, textarea {
  width: 100%; padding: 11px 14px; background: #fff;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-family: var(--sans); font-size: 0.9rem; color: var(--ink);
  outline: none; transition: border-color 0.2s, box-shadow 0.2s; appearance: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,145,42,0.1); }
textarea { resize: vertical; min-height: 100px; }
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%238a7f6e' stroke-width='1.5' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px;
}
.fsubmit { display: flex; justify-content: flex-end; }
.btn-submit {
  padding: 13px 36px; background: var(--ink); color: #fff;
  border: none; border-radius: 8px;
  font-family: var(--sans); font-size: 0.92rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
}
.btn-submit:hover { background: var(--ink-2); transform: translateY(-1px); }
.btn-submit:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }
.fmsg { display: none; padding: 12px 16px; border-radius: 8px; font-size: 0.88rem; }
.fmsg.ok { display: block; background: rgba(200,145,42,0.07); border: 1px solid rgba(200,145,42,0.25); color: #7a5a10; }
.fmsg.err { display: block; background: rgba(200,60,60,0.06); border: 1px solid rgba(200,60,60,0.2); color: #8a2020; }

/* ── FOOTER ── */
footer { background: var(--warm); padding: 52px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-logo { font-family: var(--serif); font-size: 1.15rem; font-weight: 700; color: rgba(250,247,242,0.6); text-decoration: none; }
.footer-logo .dot { color: var(--gold); }
.footer-copy { font-size: 0.8rem; color: rgba(250,247,242,0.25); }
.footer-links { display: flex; gap: 22px; }
.footer-links a { font-size: 0.8rem; color: rgba(250,247,242,0.3); text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: rgba(250,247,242,0.65); }

/* ── HERO CARDS ── */
.hcard-confirm {
  background: #fff;
  border-radius: 16px;
  padding: 24px 26px;
  box-shadow: 0 28px 80px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.07);
}
.hcard-confirm__header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px; padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.hcard-confirm__logo { font-family: var(--serif); font-size: 0.9rem; font-weight: 700; color: var(--ink); }
.hcard-confirm__logo .dot { color: var(--gold); }
.hcard-confirm__badge {
  font-size: 0.71rem; font-weight: 700;
  background: rgba(40,167,69,0.1); color: #28a745;
  padding: 3px 10px; border-radius: 20px;
}
.hcard-confirm__rest { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.hcard-confirm__meta {
  font-size: 0.8rem; color: var(--muted);
  display: flex; gap: 5px; align-items: center; flex-wrap: wrap; margin-bottom: 14px;
}
.hcard-sep { opacity: 0.4; }
.hcard-confirm__note {
  font-size: 0.77rem; color: var(--muted);
  background: var(--cream2); padding: 7px 10px;
  border-radius: 6px; margin-bottom: 16px;
  border-left: 2px solid var(--gold);
}
.hcard-confirm__link { font-size: 0.78rem; font-weight: 600; color: var(--gold); }

.hcard-notif {
  display: flex; align-items: center; gap: 12px;
  background: rgba(22,19,13,0.92);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px; padding: 13px 16px;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.5);
  align-self: flex-start; margin-left: 20px;
}
.hcard-notif__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.hcard-notif__body { flex: 1; min-width: 0; }
.hcard-notif__title { font-size: 0.78rem; font-weight: 600; color: rgba(250,247,242,0.9); margin-bottom: 2px; }
.hcard-notif__sub { font-size: 0.71rem; color: rgba(250,247,242,0.4); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hcard-notif__time { font-size: 0.7rem; color: rgba(250,247,242,0.25); white-space: nowrap; flex-shrink: 0; }

/* ── COMPARISON ── */
#vs {
  padding: 64px 0;
  background: var(--cream2);
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  #vs { padding: 100px 0; }
}

.vs-intro { margin-bottom: 48px; }
.vs-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.vs-table {
  min-width: 520px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.vs-head {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.vs-head .vs-crit { padding: 14px 20px; background: transparent; }
.vs-head .vs-cell {
  padding: 14px 10px; text-align: center;
  font-size: 0.78rem; font-weight: 600; color: var(--ink);
  background: transparent;
}
.vs-head .vs-hl { background: var(--gold); color: #fff; font-size: 0.85rem; }

.vs-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.vs-last { border-bottom: none; }

.vs-crit {
  padding: 13px 20px; font-size: 0.84rem; font-weight: 500;
  color: var(--ink) !important; background: #fff; display: flex; align-items: center;
}
.vs-cell {
  padding: 13px 10px; background: #fff; text-align: center;
  font-size: 0.84rem; color: var(--muted);
  display: flex; align-items: center; justify-content: center;
}
.vs-hl {
  background: rgba(200,145,42,0.05);
  border-left: 2px solid rgba(200,145,42,0.3);
  border-right: 2px solid rgba(200,145,42,0.3);
  color: var(--ink);
}
.vs-ok { color: #28a745; font-weight: 700; }
.vs-bad { color: #dc3545; }

/* ── REVEAL ── */
.r { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.r.v { opacity: 1; transform: none; }
.r.d1 { transition-delay: 0.1s; }
.r.d2 { transition-delay: 0.2s; }
.r.d3 { transition-delay: 0.3s; }
