:root {
  --ink: #123043;
  --ink-deep: #0C1D28;
  --green: #0B4A3A;
  --green-deep: #08382C;
  --gold: #C6A15B;
  --gold-strong: #B3894A;
  --gold-soft: #EAD9B4;
  --cream: #F6F4EF;
  --cream-2: #FBF9F5;
  --paper: #FFFFFF;
  --text: #1B2A24;
  --muted: #5C6B64;
  --line: #E5E2D8;
  --danger: #B42318;
  --danger-bg: #FEF3F2;
  --ok: #0B4A3A;
  --shadow: 0 18px 46px rgba(12, 29, 40, 0.12);
  --shadow-sm: 0 8px 24px rgba(12, 29, 40, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --header-h: 72px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.18;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 5.4vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.35rem); font-weight: 800; }
h3 { font-size: 1.12rem; font-weight: 700; }

p { margin: 0 0 1em; }

a { color: var(--green); }

img, svg { max-width: 100%; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 10px 16px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-narrow { max-width: 860px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 13px 26px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .12s ease, box-shadow .18s ease;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 10px 24px rgba(18, 48, 67, 0.22);
}
.btn-primary:hover { background: var(--green); color: #fff; }

.btn-outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: #fff; }

.btn-gold {
  background: var(--gold);
  color: var(--ink-deep);
  box-shadow: 0 10px 24px rgba(198, 161, 91, 0.35);
}
.btn-gold:hover { background: var(--gold-strong); color: #fff; }

.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-sm { padding: 9px 18px; font-size: 0.92rem; }
.btn-block { width: 100%; }

.eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-strong);
}
.eyebrow-light { color: var(--gold-soft); }

.section { padding: 72px 0; }
.section-alt { background: var(--cream); }

main section[id] { scroll-margin-top: calc(var(--header-h) + 14px); }

.section-head {
  max-width: 680px;
  margin: 0 auto 44px;
  text-align: center;
}
.section-head p { color: var(--muted); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}

.brand-mark { width: 30px; height: 30px; flex: none; }

.brand-text { color: var(--ink); }

.site-nav { display: none; }

.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 4px;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.site-nav a:hover { color: var(--green); border-color: var(--gold); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: 52px 0 80px;
  background:
    radial-gradient(1100px 520px at 85% -10%, rgba(198, 161, 91, 0.16), transparent 60%),
    linear-gradient(180deg, #FBF9F5 0%, #F6F4EF 55%, #F0EDE4 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 44px;
  align-items: center;
}

.hero-copy h1 { margin-bottom: 18px; }

.hero-sub {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 14px;
}

.hero-price-hero {
  font-size: 1.28rem;
  color: var(--ink);
  margin-bottom: 2px;
}
.hero-price-hero strong {
  color: var(--green);
  font-size: 1.55rem;
  font-weight: 800;
}

.hero-price-note {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-min-qty {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}

.min-qty-stamp {
  display: inline-block;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  padding: 7px 14px;
  border-radius: 999px;
  border: 2px solid var(--gold);
}

.hero-min-qty-note { color: var(--muted); font-size: 0.9rem; }

.hero-visual { position: relative; display: grid; gap: 18px; }

.hero-product-frame {
  position: relative;
  background: linear-gradient(160deg, #FFFFFF 0%, #F1EEE5 100%);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 34px 24px 20px;
  box-shadow: var(--shadow);
  text-align: center;
}

.hero-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--gold);
  color: var(--ink-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 999px;
}

.hero-product-img {
  width: 100%;
  max-width: 260px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
}

.hero-spec {
  margin-top: 12px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.hero-product-tag {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-price-ladder {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 18px 18px 20px;
}

.hero-price-ladder-title {
  margin: 0 0 10px;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.9rem;
}

.ladder-rows { display: grid; gap: 4px; }

.ladder-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 6px 8px;
  border-radius: 8px;
  font-size: 0.95rem;
}
.ladder-row.is-low {
  background: var(--cream);
  outline: 1px solid var(--gold);
}
.ladder-row.is-start {
  background: rgba(198, 161, 91, 0.16);
  outline: 1px solid var(--gold);
}
.ladder-row.is-start strong { color: var(--gold-strong); font-size: 1.12rem; }

.ladder-row-qty { color: var(--muted); font-weight: 600; white-space: nowrap; }

.ladder-row-dash {
  flex: 1;
  border-bottom: 1px dashed var(--line);
}

.ladder-row strong { color: var(--ink); font-size: 1rem; white-space: nowrap; }
.ladder-row.is-low strong { color: var(--green); font-size: 1.08rem; }

.hero-price-ladder-note {
  margin: 10px 2px 16px;
  color: var(--muted);
  font-size: 0.85rem;
}

/* ---------- Trust bar ---------- */

.trust-bar { border-bottom: 1px solid var(--line); background: #fff; }

.trust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  padding: 20px 20px;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
}

.trust-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}

/* ---------- Products ---------- */

.tier-label {
  margin: 0 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--line);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.tier-label:not(:first-of-type) { margin-top: 44px; }

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}

.product-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.product-card.is-popular {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(198, 161, 91, 0.35);
}
.product-card.is-popular:hover { box-shadow: var(--shadow); }

.product-card--primary {
  border-color: rgba(198, 161, 91, 0.6);
}
.product-card--primary .product-card__media {
  padding: 28px 24px 16px;
}
.product-card--primary .product-img { max-width: 250px; }
.product-card--primary h3 { font-size: 1.28rem; }
.product-card--primary .product-card__type { margin-bottom: 10px; }

.product-card__media {
  position: relative;
  background: linear-gradient(160deg, #FBF9F5 0%, #EFECE2 100%);
  padding: 24px 20px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img {
  width: 100%;
  max-width: 220px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--ink-deep);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  padding: 5px 11px;
  border-radius: 999px;
  text-transform: uppercase;
}
.badge-budget { background: #DCE8E1; color: var(--green-deep); }
.badge-smart { background: #DCE8E1; color: var(--green-deep); }
.badge-premium { background: var(--ink); color: var(--gold-soft); }
.badge-teams { background: #E8E3F2; color: #4A3B78; }
.badge-xmas { background: #F4E3DC; color: #7A3B2A; }

.product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 20px 22px;
}

.product-card__type {
  color: var(--gold-strong);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.product-card h3 { margin-bottom: 4px; font-size: 1.08rem; }

.product-card__desc { color: var(--muted); font-size: 0.94rem; }

.product-card__for {
  font-size: 0.87rem;
  color: var(--text);
  margin: 4px 0 12px;
}
.product-card__for strong { color: var(--ink); }

.product-card__price { margin-bottom: 12px; }

.price-value { font-size: 1.3rem; font-weight: 800; color: var(--ink); }
.price-per { color: var(--muted); font-size: 0.88rem; }
.price-note { display: block; color: var(--muted); font-size: 0.8rem; }

.price-table {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.price-table__head,
.price-table__row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
}

.price-table__head {
  padding: 0 8px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.price-table__row {
  width: 100%;
  text-align: left;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-family: inherit;
  padding: 8px 12px;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.price-table__row span { color: var(--muted); font-weight: 600; font-size: 0.9rem; }
.price-table__row strong { color: var(--ink); font-size: 0.95rem; }
.price-table__row:hover { border-color: var(--gold); }
.price-table__row.is-selected {
  border-color: var(--green);
  background: #EEF4F0;
  box-shadow: inset 0 0 0 1px var(--green);
}
.price-table__row.is-selected span { color: var(--green-deep); }
.price-table__row.is-selected strong { color: var(--green); }

.price-table-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0 0 14px;
}

.product-card__qty-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.qty-select {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  background: #fff;
  margin-bottom: 12px;
  cursor: pointer;
}
.qty-select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(11, 74, 58, 0.12);
}

.product-card .btn { margin-top: auto; }

/* ---------- Calculator (dark) ---------- */

.section-calc {
  background:
    radial-gradient(900px 420px at 88% 0%, rgba(198, 161, 91, 0.16), transparent 60%),
    linear-gradient(160deg, var(--ink-deep) 0%, var(--green-deep) 100%);
  color: #fff;
}

.section-calc .section-head h2 { color: #fff; }
.section-calc .section-head p { color: rgba(255, 255, 255, 0.78); }

.calc-grid {
  display: grid;
  gap: 28px;
  align-items: start;
}

.calc-step {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  margin: 0 0 14px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 10px;
}
.calc-step:not(:first-child) { margin-top: 30px; }

.chip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.chip {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.chip:hover { border-color: var(--gold); }
.chip.is-selected {
  border-color: var(--gold);
  background: rgba(198, 161, 91, 0.16);
  box-shadow: inset 0 0 0 1px var(--gold);
}
.chip.is-unavailable { opacity: 0.75; }

.chip-icon { width: 34px; height: 26px; flex: none; }

.chip small { display: block; font-weight: 400; font-size: 0.74rem; color: rgba(255, 255, 255, 0.7); line-height: 1.3; }

.qty-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.qty-btn {
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-sm);
  padding: 13px 4px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.qty-btn:hover { border-color: var(--gold); }
.qty-btn.is-selected {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink-deep);
}
.qty-btn.is-soft { color: rgba(255, 255, 255, 0.55); }

.ladder {
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 20px 16px 12px;
}

.ladder-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  text-align: center;
}

.ladder-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  height: 180px;
}

.ladder-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  border: 0;
  background: none;
  padding: 0;
  font-family: inherit;
  cursor: pointer;
  min-width: 0;
}

.ladder-fill {
  width: 100%;
  max-width: 56px;
  min-height: 6px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 6px 6px 0 0;
  transition: background .15s ease, opacity .15s ease;
}

.ladder-col.is-selected .ladder-fill { background: var(--gold); }
.ladder-col.is-offer .ladder-fill { background: rgba(255, 255, 255, 0.16); }

.ladder-price {
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.ladder-col.is-offer .ladder-price { color: rgba(255, 255, 255, 0.55); }

.ladder-qty {
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
}
.ladder-col.is-offer .ladder-qty { color: rgba(255, 255, 255, 0.55); }

.ladder-save {
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 700;
  white-space: nowrap;
}

.calc-price-rule {
  margin: 16px 0 0;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-soft);
}

.calc-result {
  background: #fff;
  color: var(--text);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.calc-result__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
  margin-bottom: 18px;
}

.calc-result__product { font-weight: 800; font-size: 1.05rem; color: var(--ink); }
.calc-result__qty { color: var(--muted); font-size: 0.9rem; }

.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 7px 0;
  font-size: 0.95rem;
  color: var(--muted);
}
.calc-row strong { color: var(--ink); font-size: 1.05rem; }

.calc-row.is-total {
  border-top: 1px solid var(--line);
  margin-top: 10px;
  padding-top: 14px;
  font-size: 1.05rem;
}
.calc-row.is-total span { color: var(--ink); }
.calc-row.is-total strong { font-size: 1.4rem; color: var(--green); }

.calc-save-row {
  background: #EEF4F0;
  border-radius: 10px;
  padding: 10px 12px;
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--green-deep);
}
.calc-save-row strong { color: var(--green); }

.calc-offer {
  text-align: center;
  padding: 18px 4px;
}
.calc-offer h4 { color: var(--ink); font-size: 1.15rem; margin-bottom: 8px; }
.calc-offer p { color: var(--muted); font-size: 0.95rem; }

.calc-cta { margin-top: 20px; }
.calc-cta .btn { width: 100%; }

/* ---------- Christmas ---------- */

.christmas {
  background:
    radial-gradient(900px 420px at 12% 0%, rgba(198, 161, 91, 0.18), transparent 60%),
    linear-gradient(160deg, var(--green-deep) 0%, var(--ink-deep) 100%);
  color: #fff;
  padding: 72px 0;
}

.christmas-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

.christmas-copy h2 { color: #fff; }

.christmas-copy p { color: rgba(255, 255, 255, 0.82); }

.christmas-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}

.christmas-timeline li {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 14px 0 14px 54px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  counter-increment: step;
}
.christmas-timeline li:last-child { border-bottom: 0; }
.christmas-timeline li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 14px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(198, 161, 91, 0.6);
  color: var(--gold);
  font-weight: 800;
  border-radius: 50%;
}

.timeline-month {
  font-weight: 800;
  color: var(--gold);
  min-width: 92px;
}

.timeline-step { color: rgba(255, 255, 255, 0.85); }

/* ---------- Steps ---------- */

.steps {
  display: grid;
  gap: 18px;
}

.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  position: relative;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--gold);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.step h3 { margin-bottom: 8px; }
.step p { color: var(--muted); margin: 0; font-size: 0.95rem; }

/* ---------- Form ---------- */

.lead-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.form-field { margin-bottom: 18px; }

.form-field label,
.form-fieldset legend {
  display: block;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 18px;
}

input[type="text"],
input[type="tel"],
input[type="email"],
select {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
input:focus, select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(11, 74, 58, 0.12);
}
input[aria-invalid="true"] { border-color: var(--danger); }

input[type="file"] {
  width: 100%;
  border: 1.5px dashed var(--line);
  border-radius: var(--radius-sm);
  padding: 12px;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--muted);
  background: var(--cream-2);
  cursor: pointer;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.choice {
  position: relative;
  display: block;
  cursor: pointer;
}
.choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.choice span {
  display: block;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.choice:hover span { border-color: var(--gold); }
.choice input:checked + span {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.choice input:focus-visible + span {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.form-hint { font-size: 0.82rem; color: var(--muted); display: block; margin-top: 6px; }

.logo-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.logo-row .form-hint { margin-top: 8px; }

.logo-remove {
  flex: none;
  margin-top: 6px;
  background: transparent;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 4px 12px;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--danger);
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.logo-remove:hover { border-color: var(--danger); background: var(--danger-bg); }
.logo-remove[hidden] { display: none; }

[hidden] { display: none !important; }

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}

.form-noscript {
  background: #fff8e6;
  border: 1px solid var(--gold-soft);
  border-radius: 8px;
  color: var(--ink);
  font-size: 0.85rem;
  padding: 10px 12px;
  margin-bottom: 16px;
}

.form-error {
  display: none;
  font-size: 0.82rem;
  color: var(--danger);
  margin-top: 6px;
}
.form-error.is-visible { display: block; }

.form-consent {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 4px 0 18px;
}

.form-microcopy {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
}

.lead-form .btn { margin-top: 4px; }

.form-success {
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 48px 24px;
  box-shadow: var(--shadow-sm);
}
.form-success h3 { margin-top: 16px; }
.form-success p { color: var(--muted); }

.success-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 800;
}

/* ---------- FAQ ---------- */

.faq-list { display: grid; gap: 12px; }

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex: none;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  color: var(--green);
  font-size: 1.1rem;
  font-weight: 700;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.faq-item[open] summary::after {
  content: "−";
  transform: rotate(180deg);
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.faq-item p {
  padding: 0 20px 18px;
  margin: 0;
  color: var(--muted);
}

/* ---------- Final CTA ---------- */

.final-cta {
  background: var(--cream);
  border-top: 1px solid var(--line);
  text-align: center;
  padding: 72px 0;
}

.final-cta-inner h2 { margin-bottom: 10px; }
.final-cta-inner p { color: var(--muted); margin-bottom: 26px; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 0;
}

.footer-inner {
  display: grid;
  gap: 20px;
  text-align: center;
  justify-items: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-brand-name { font-weight: 700; color: #fff; }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
}
.footer-nav a { color: rgba(255, 255, 255, 0.7); text-decoration: none; font-size: 0.92rem; }
.footer-nav a:hover { color: var(--gold); }

.footer-copy { margin: 0; font-size: 0.85rem; }

/* ---------- Sticky CTA ---------- */

.sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 10px 12px 10px 16px;
}

.sticky-cta[hidden] { display: none; }

.sticky-cta__info {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.3;
  min-width: 0;
}
.sticky-cta__info small { display: block; font-weight: 600; color: var(--muted); }

/* ---------- Responsive ---------- */

@media (min-width: 620px) {
  .container { padding: 0 28px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .chip-grid { grid-template-columns: repeat(4, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; gap: 0 18px; }
  .choice-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .lead-form { padding: 34px 32px; }
  .christmas-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .hero-visual { grid-template-columns: 1fr 1fr; align-items: center; }
  .product-card--wide { grid-column: 1 / -1; display: grid; grid-template-columns: 320px 1fr; }
  .product-card--wide .product-card__body { display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: min-content; column-gap: 24px; align-content: center; }
}

@media (min-width: 900px) {
  .site-nav { display: flex; gap: 24px; }
  .hero { padding: 68px 0 88px; }
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 48px; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .calc-grid { grid-template-columns: 1.15fr 0.85fr; gap: 32px; }
  .calc-result { position: sticky; top: calc(var(--header-h) + 20px); }
  .steps { gap: 26px; }
}

@media (min-width: 1180px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .chip-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
  .sticky-cta { display: none; }
}

@media (max-width: 619px) {
  .hero { padding-bottom: 64px; }
  .qty-btn { padding: 13px 2px; font-size: 0.95rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}
