/* UnitySelection — design system */
:root {
  --ink: #0a0a0a;
  --ink-2: #1a1a1f;
  --paper: #ffffff;
  --paper-2: #faf8f3;
  --paper-3: #f1ede4;
  --line: #e7e3d8;
  --line-2: #d8d3c4;
  --muted: #6b6b6b;
  --muted-2: #4a4a4a;
  --brand: #ff6a13;
  --brand-2: #e25800;
  --brand-soft: #fff1e8;
  --gold: #d4a849;
  --ok: #1a7f4f;
  --warn: #b54708;
  --danger: #b42318;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(10,10,10,0.05);
  --shadow: 0 8px 24px rgba(10,10,10,0.08);
  --shadow-lg: 0 30px 60px -20px rgba(10,10,10,0.25);
  --container: 1200px;
  --font-display: "Playfair Display", "Iowan Old Style", "Source Serif Pro", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--brand-2); }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; margin: 0; }
h1 { font-size: clamp(38px, 5.5vw, 68px); }
h2 { font-size: clamp(28px, 3.6vw, 44px); }
h3 { font-size: 22px; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* Top ribbon */
.ribbon {
  background: var(--ink);
  color: #cfcabd;
  font-size: 13px;
  padding: 10px 0;
  text-align: center;
  letter-spacing: 0.01em;
}
.ribbon strong { color: var(--paper); font-weight: 600; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  font-size: 22px;
  letter-spacing: -0.01em;
}
.brand:hover { color: var(--ink); }
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--paper);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  position: relative;
  overflow: hidden;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, var(--brand) 50%);
  opacity: .9;
}
.brand-mark span { position: relative; z-index: 1; }

nav.primary { display: flex; align-items: center; gap: 32px; }
nav.primary a {
  color: var(--ink);
  font-weight: 500;
  font-size: 15px;
  position: relative;
}
nav.primary a:not(.btn)::after {
  content: "";
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 2px;
  background: var(--brand);
  transition: width .25s ease;
}
nav.primary a:not(.btn):hover { color: var(--ink); }
nav.primary a:not(.btn):hover::after,
nav.primary a.active::after { width: 100%; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .1s ease, background .15s ease, color .15s ease, border-color .15s ease, box-shadow .2s ease;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--brand);
  color: var(--paper);
}
.btn-primary:hover { background: var(--brand-2); color: var(--paper); box-shadow: 0 10px 24px rgba(255, 106, 19, 0.35); }
.btn-dark {
  background: var(--ink);
  color: var(--paper);
}
.btn-dark:hover { background: var(--ink-2); color: var(--paper); box-shadow: 0 10px 24px rgba(10, 10, 10, 0.25); }
.btn-light {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--line);
}
.btn-light:hover { background: var(--paper-2); border-color: var(--line-2); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.btn-ghost-light {
  background: transparent;
  color: var(--paper);
  border-color: rgba(255,255,255,.3);
}
.btn-ghost-light:hover { background: rgba(255,255,255,.1); color: var(--paper); border-color: rgba(255,255,255,.6); }
.btn-lg { padding: 16px 28px; font-size: 16px; }

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  cursor: pointer;
  background: var(--paper);
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  margin: 4px auto;
  transition: transform .2s;
}

/* Hero — dramatic dark with photo */
.hero {
  position: relative;
  min-height: 88vh;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .35;
  filter: saturate(.8) contrast(1.05);
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 70% at 70% 50%, rgba(255,106,19,0.22), transparent 60%),
              linear-gradient(180deg, rgba(10,10,10,0.8) 0%, rgba(10,10,10,0.6) 60%, var(--ink) 100%);
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.eyebrow-line {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 24px;
}
.eyebrow-line::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--brand);
}
.hero h1 {
  color: var(--paper);
  font-size: clamp(44px, 6.5vw, 84px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--brand);
}
.hero p.lead {
  font-size: clamp(16px, 1.4vw, 19px);
  color: #cfcabd;
  margin: 0 0 36px;
  max-width: 56ch;
  line-height: 1.6;
}
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .trust {
  margin-top: 44px;
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero .trust .ti {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero .trust .ti .num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--paper);
  line-height: 1;
}
.hero .trust .ti .lbl {
  font-size: 12.5px;
  color: #b8b3a5;
  letter-spacing: 0.04em;
}

/* Hero side card — quote */
.quote-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.quote-card::before {
  content: "";
  position: absolute;
  top: -16px; left: 28px;
  background: var(--brand);
  color: var(--paper);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.quote-card[data-label]::before { content: attr(data-label); }
.quote-card h3 {
  font-family: var(--font-display);
  margin-bottom: 6px;
  font-size: 24px;
}
.quote-card p.sub { color: var(--muted); font-size: 14px; margin: 0 0 22px; }
.quote-card label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.quote-card input[type="number"] {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-size: 18px;
  font-family: inherit;
  font-weight: 600;
  transition: border .15s ease, box-shadow .15s ease;
}
.quote-card input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-soft);
}
.quote-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 15px;
  color: var(--muted-2);
}
.quote-row.first { padding-top: 18px; }
.quote-row.total {
  border-bottom: none;
  border-top: 2px solid var(--ink);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  margin-top: 4px;
  padding-top: 16px;
  font-family: var(--font-display);
}

/* Sections */
section { padding: 110px 0; }
section.alt { background: var(--paper-2); }
section.dark {
  background: var(--ink);
  color: var(--paper);
}
section.dark .section-head h2 { color: var(--paper); }
section.dark .section-head p { color: #b8b3a5; }
.section-head {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-head .eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 18px;
}
.section-head h2 { margin-bottom: 16px; }
.section-head p {
  color: var(--muted);
  font-size: 18px;
  margin: 0;
  line-height: 1.6;
}
.section-head.left { text-align: left; margin-left: 0; }

/* Process steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.step {
  padding: 40px 32px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background .2s ease;
}
.step:last-child { border-right: none; }
.step:hover { background: var(--paper-2); }
.step .num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 18px;
  font-style: italic;
}
.step h3 { margin: 0 0 8px; font-size: 20px; }
.step p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.6; }

/* Product showcase */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.product-card .thumb {
  aspect-ratio: 4 / 5;
  background: var(--paper-3);
  position: relative;
  overflow: hidden;
}
.product-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.product-card:hover .thumb img { transform: scale(1.06); }
.product-card .thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,10,10,0.55) 100%);
}
.product-card .tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--paper);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 1;
}
.product-card .tag.hot { background: var(--brand); color: var(--paper); }
.product-card .body {
  padding: 22px 22px 26px;
}
.product-card h4 {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0 0 6px;
}
.product-card p {
  margin: 0;
  font-size: 14.5px;
  color: var(--muted);
}
.product-card .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}
.product-card .arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--paper-2);
  display: grid;
  place-items: center;
  transition: background .2s, color .2s, transform .2s;
  color: var(--ink);
}
.product-card:hover .arrow {
  background: var(--brand);
  color: var(--paper);
  transform: translateX(4px) rotate(-45deg);
}

/* Feature side-by-side */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split.reverse > :first-child { order: 2; }
.split-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lg);
}
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.split-image .badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--paper);
  padding: 14px 18px;
  border-radius: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: var(--shadow);
}
.split-image .badge .icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid; place-items: center;
  font-size: 20px;
}
.split-image .badge .text strong { display: block; font-size: 15px; }
.split-image .badge .text span { font-size: 12.5px; color: var(--muted); }
.split-content h2 { margin-bottom: 20px; }
.split-content p { font-size: 17px; color: var(--muted-2); margin: 0 0 16px; line-height: 1.7; }
.split-content ul { list-style: none; padding: 0; margin: 24px 0 0; }
.split-content li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.split-content li:first-child { border-top: none; padding-top: 0; }
.split-content li .check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--paper);
  display: grid; place-items: center;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Stats band */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.stat-tile {
  padding: 48px 28px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-tile:last-child { border-right: none; }
.stat-tile .num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
  font-style: italic;
}
.stat-tile .lbl {
  margin-top: 12px;
  font-size: 14px;
  color: #b8b3a5;
  letter-spacing: 0.04em;
}

/* Testimonials */
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.t-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--line);
  position: relative;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.t-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-2); }
.t-card .stars { color: var(--gold); margin-bottom: 16px; font-size: 16px; letter-spacing: 2px; }
.t-card blockquote {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.5;
  margin: 0 0 24px;
  color: var(--ink);
}
.t-card .author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.t-card .avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: var(--paper-3);
  flex-shrink: 0;
}
.t-card .author strong { display: block; font-size: 15px; }
.t-card .author span { font-size: 13px; color: var(--muted); }

/* Pricing */
.pricing-card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow);
}
.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, var(--brand), var(--gold));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.pricing-card .label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}
.pricing-card .price {
  font-family: var(--font-display);
  font-size: 96px;
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
  margin: 8px 0 4px;
}
.pricing-card .price .sym { font-size: 48px; vertical-align: top; color: var(--muted); margin-right: 4px; }
.pricing-card .price .pct { color: var(--brand); }
.pricing-card .sub { color: var(--muted); margin: 6px 0 28px; font-size: 15px; }
.pricing-card ul { list-style: none; padding: 0; margin: 0 0 32px; text-align: left; }
.pricing-card li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.pricing-card li:first-child { border-top: none; }
.pricing-card li::before {
  content: "✓";
  color: var(--brand);
  font-weight: 700;
  flex-shrink: 0;
}

/* CTA banner */
.cta-banner {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: 64px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 100% at 100% 50%, rgba(255,106,19,0.22), transparent);
}
.cta-banner > * { position: relative; }
.cta-banner h2 { color: var(--paper); margin-bottom: 12px; }
.cta-banner p { color: #cfcabd; margin: 0; font-size: 18px; max-width: 50ch; }
.cta-banner .actions { display: flex; gap: 14px; justify-content: flex-end; flex-wrap: wrap; }

/* Footer */
.site-footer {
  background: var(--ink);
  color: #cfcabd;
  padding: 80px 0 32px;
}
.site-footer .grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-footer .brand { color: var(--paper); margin-bottom: 16px; }
.site-footer .brand-mark { background: var(--paper); color: var(--ink); }
.site-footer h4 {
  color: var(--paper);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0 0 18px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: #cfcabd; font-size: 14px; }
.site-footer a:hover { color: var(--paper); }
.site-footer .legal {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #8a8470;
}
.site-footer .disclaimer {
  font-size: 13px;
  color: #8a8470;
  margin-top: 14px;
  max-width: 50ch;
  line-height: 1.6;
}

/* Marquee */
.marquee-bar {
  background: var(--ink);
  color: var(--paper);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}
.marquee-bar.light { background: var(--paper-2); color: var(--ink); }
.marquee-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
  align-items: center;
}
.marquee-track span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 24px;
}
.marquee-track span::after {
  content: "✦";
  color: var(--brand);
  font-style: normal;
  font-size: 18px;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Form pages */
.page {
  padding: 80px 0;
}
.page-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.page-head .eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
  display: inline-block;
}
.page-head h1 { margin-bottom: 14px; }
.page-head p { font-size: 18px; color: var(--muted); margin: 0; }

.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 32px;
  align-items: flex-start;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.field .hint { font-size: 13px; color: var(--muted); margin-top: 6px; line-height: 1.5; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  background: var(--paper);
  transition: border .15s ease, box-shadow .15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-soft);
}
.field textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fieldset {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 22px;
}
.fieldset legend {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  padding: 0 10px;
  color: var(--ink);
}

.items-table { width: 100%; border-collapse: collapse; margin-top: 10px; }
.items-table th {
  font-size: 12px;
  text-align: left;
  color: var(--muted);
  font-weight: 600;
  padding: 8px 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.items-table td { padding: 6px 4px; vertical-align: top; }
.items-table input { padding: 10px 12px; font-size: 14px; }
.items-table .col-link { width: 42%; }
.items-table .col-qty { width: 80px; }
.items-table .col-price { width: 120px; }
.items-table .col-rm { width: 44px; text-align: center; }
.btn-rm {
  background: #fef3f2;
  color: var(--danger);
  border: 1px solid #fecdca;
  border-radius: 10px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}
.btn-rm:hover { background: #fee4e2; }
.btn-add-row {
  margin-top: 12px;
  background: var(--brand-soft);
  color: var(--brand-2);
  border: 1.5px dashed var(--brand);
  padding: 11px 18px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: background .15s;
}
.btn-add-row:hover { background: #ffe4d2; }

.summary {
  position: sticky;
  top: 100px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}
.summary h3 { font-family: var(--font-display); margin: 0 0 18px; font-size: 22px; }
.summary .row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 15px;
  color: var(--muted-2);
}
.summary .row.total {
  border-top: 2px solid var(--ink);
  margin-top: 8px;
  padding-top: 16px;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  font-family: var(--font-display);
}
.summary .balance {
  margin-top: 18px;
  padding: 14px;
  border-radius: 12px;
  background: var(--paper-2);
  font-size: 14px;
  color: var(--muted-2);
  line-height: 1.5;
}
.summary .balance.warn {
  background: #fff8eb;
  color: #6f4500;
  border: 1px solid #fedf89;
}
.summary .balance.ok {
  background: #ecfdf3;
  color: #054f31;
  border: 1px solid #abefc6;
}

.alert {
  padding: 16px 18px;
  border-radius: 12px;
  margin-bottom: 22px;
  font-size: 14.5px;
}
.alert.success { background: #ecfdf3; color: #054f31; border: 1px solid #abefc6; }
.alert.error { background: #fef3f2; color: #7a271a; border: 1px solid #fecdca; }

/* Doc pages */
.doc { max-width: 760px; margin: 0 auto; }
.doc h2 { font-size: 26px; margin-top: 40px; }
.doc h3 { font-size: 19px; margin-top: 28px; }
.doc p, .doc li { color: var(--muted-2); font-size: 16px; line-height: 1.75; }
.doc ul { padding-left: 20px; }
.doc strong { color: var(--ink); }

/* FAQ component */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  cursor: pointer;
  padding: 24px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 28px;
  color: var(--brand);
  transition: transform .25s ease;
  font-family: var(--font-sans);
  font-weight: 300;
}
.faq-item[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}
.faq-item .body {
  padding: 0 0 24px;
  color: var(--muted-2);
  font-size: 16px;
  line-height: 1.7;
  max-width: 75ch;
}

/* Responsive */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step { border-right: none; border-bottom: 1px solid var(--line); }
  .step:nth-child(odd) { border-right: 1px solid var(--line); }
  .step:nth-last-child(-n+2) { border-bottom: none; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .stat-tile:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  .stat-tile:nth-child(even) { border-right: none; }
  .stat-tile { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-tile:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 900px) {
  section { padding: 72px 0; }
  .hero { padding: 80px 0 60px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse > :first-child { order: 0; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .summary { position: static; }
  .t-grid { grid-template-columns: 1fr; }
  .cta-banner { grid-template-columns: 1fr; padding: 44px; text-align: center; }
  .cta-banner .actions { justify-content: center; }
  .site-footer .grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  nav.primary { display: none; }
  nav.primary.open {
    display: flex;
    position: absolute;
    top: 78px;
    left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 20px 28px;
    gap: 4px;
    box-shadow: var(--shadow);
  }
  nav.primary.open a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  nav.primary.open a:last-child { border-bottom: none; margin-top: 8px; }
  .menu-toggle { display: block; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .product-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .form-card { padding: 24px; }
  .pricing-card { padding: 32px 24px; }
  .pricing-card .price { font-size: 72px; }
  .site-footer .grid { grid-template-columns: 1fr; }
  .hero .trust { gap: 24px; }
  .hero .trust .ti .num { font-size: 22px; }
}
