/* ═══════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════ */
:root {
  --paper:        oklch(0.985 0.003 250);
  --ink:          oklch(0.12 0.025 260);
  --ink-soft:     oklch(0.32 0.025 260);
  --hairline:     oklch(0.16 0.02 255 / 12%);
  --cobalt:       oklch(0.42 0.23 264);
  --blue-bright:  oklch(0.62 0.22 250);
  --grad-hero:    radial-gradient(1200px 600px at 80% -10%, oklch(0.85 0.12 250 / 0.5), transparent 60%),
                  radial-gradient(900px 500px at 0% 10%, oklch(0.92 0.06 80 / 0.55), transparent 60%),
                  linear-gradient(180deg, oklch(0.99 0.004 250), oklch(0.96 0.005 250));
  --grad-blue:    linear-gradient(135deg, oklch(0.42 0.23 264), oklch(0.62 0.22 250));
  --grad-ink:     linear-gradient(135deg, oklch(0.12 0.025 260), oklch(0.28 0.04 260));
  --shadow-glow:  0 40px 100px -30px oklch(0.42 0.23 264 / 0.35);
  --shadow-prod:  0 60px 120px -40px oklch(0.16 0.02 255 / 0.35), 0 20px 40px -20px oklch(0.16 0.02 255 / 0.2);
  --shadow-card:  0 1px 0 oklch(1 0 0 / 0.6) inset, 0 10px 30px -15px oklch(0.16 0.02 255 / 0.15);
  --font-display: "Space Grotesk", "Heebo", system-ui, sans-serif;
  --font-body:    "Heebo", system-ui, sans-serif;
  --radius-lg:    1.75rem;
  --radius-xl:    2rem;
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  direction: rtl;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

.container { max-width: 80rem; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 768px) { .container { padding: 0 2rem; } }

.d-block { display: block; }
.ta-end { text-align: end; }
.soft-text { color: var(--ink-soft); }

/* ─── Gradient text ─── */
.grad-text {
  background: var(--grad-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── SVG icons ─── */
.icon {
  width: 1rem; height: 1rem;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: .625rem;
  padding: .875rem 1.75rem;
  border-radius: 999px;
  font-weight: 700; font-size: .9375rem; color: #fff;
  background: var(--grad-ink);
  box-shadow: 0 20px 40px -15px oklch(0.12 0.025 260 / 0.45);
  transition: transform .2s;
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--grad-blue);
  opacity: 0;
  transition: opacity .5s;
}
.btn-primary:hover { transform: scale(1.02); }
.btn-primary:hover::after { opacity: 1; }
.btn-primary > * { position: relative; z-index: 1; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 1.75rem;
  border-radius: 999px;
  font-weight: 600; font-size: .9375rem;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  transition: background .2s;
}
.btn-ghost:hover { background: #fff; }

.btn-blue {
  display: inline-flex; align-items: center; gap: .75rem;
  padding: .75rem 1.5rem;
  border-radius: 999px;
  font-weight: 700; font-size: .875rem; color: #fff;
  background: var(--grad-blue);
  box-shadow: var(--shadow-glow);
  transition: transform .2s;
}
.btn-blue:hover { transform: scale(1.02); }
.btn-full { width: 100%; justify-content: center; padding: 1rem; }

/* ═══════════════════════════════════════════
   EYEBROW
═══════════════════════════════════════════ */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .375rem .75rem;
  border-radius: 999px;
  border: 1px solid var(--hairline);
  background: transparent;
  font-size: .625rem; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--ink-soft);
}
.eyebrow-dot {
  display: inline-block; width: .375rem; height: .375rem;
  border-radius: 50%;
  background: var(--cobalt);
  box-shadow: 0 0 0 4px oklch(0.42 0.23 264 / 0.15);
  flex-shrink: 0;
}
.eyebrow-light {
  border-color: oklch(1 0 0 / 0.2);
  background: transparent;
  color: oklch(0.99 0 0 / 0.8);
}
.eyebrow-dot-bright { background: var(--blue-bright); box-shadow: none; }

/* ═══════════════════════════════════════════
   PAPER BACKDROP
═══════════════════════════════════════════ */
.paper-backdrop {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
}
.backdrop-gradient {
  position: absolute; inset: 0;
  background: var(--grad-hero);
}
.backdrop-grid {
  position: absolute; inset: 0;
  opacity: .5;
  background-image:
    linear-gradient(var(--hairline) 1px, transparent 1px),
    linear-gradient(90deg, var(--hairline) 1px, transparent 1px);
  background-size: 96px 96px;
  -webkit-mask-image: radial-gradient(ellipse at center, black, transparent 80%);
  mask-image: radial-gradient(ellipse at center, black, transparent 80%);
}
.backdrop-dots {
  position: absolute; inset: 0;
  opacity: .35;
  mix-blend-mode: multiply;
  background-image: radial-gradient(oklch(0.16 0.02 255 / 0.18) 1px, transparent 1px);
  background-size: 3px 3px;
}

/* ═══════════════════════════════════════════
   TOP BAR
═══════════════════════════════════════════ */
#topbar {
  position: fixed; inset-inline: 0; top: 0; z-index: 50;
  transition: background .5s, border-color .5s;
  background: oklch(0.99 0.004 250 / 0.3);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
}
#topbar.scrolled {
  background: oklch(0.99 0.004 250 / 0.85);
  border-bottom-color: var(--hairline);
}
.topbar-inner {
  max-width: 80rem; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: .75rem 1.25rem;
}
@media (min-width: 768px) { .topbar-inner { padding: .75rem 2rem; } }
.topbar-brand { display: flex; align-items: center; gap: 1rem; }
.logo-img { height: 1.75rem; width: auto; }
.topbar-divider { display: none; width: 1px; height: 1.25rem; background: var(--hairline); }
@media (min-width: 768px) { .topbar-divider { display: block; } }
.topbar-tag {
  display: none;
  font-size: .6875rem; font-weight: 700;
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--ink-soft); font-family: var(--font-display);
}
@media (min-width: 768px) { .topbar-tag { display: inline; } }
.cobalt { color: var(--cobalt); }
.topbar-cta { font-size: .875rem; }
.hide-xs { display: none; }
@media (min-width: 480px) { .hide-xs { display: inline; } }
.phone-mono { font-family: monospace; font-weight: 700; direction: ltr; }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
#hero {
  position: relative;
  height: 340vh;
}
#hero-sticky {
  position: sticky; top: 0;
  height: 100vh; width: 100%;
  overflow: hidden;
}

/* Big background word */
#hero-bigword {
  position: absolute;
  inset-inline: 0; top: 28%;
  display: flex; justify-content: center;
  white-space: nowrap;
  font-size: 34vw; font-weight: 900; line-height: 1;
  letter-spacing: -.05em;
  color: var(--ink);
  font-family: var(--font-display);
  pointer-events: none;
  user-select: none;
  opacity: .05;
  will-change: transform, opacity;
}

/* Hairline frame */
.hero-frame {
  display: none;
  position: absolute; inset: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid var(--hairline);
  pointer-events: none;
}
@media (min-width: 768px) { .hero-frame { display: block; } }

/* Stage */
.hero-stage {
  position: relative;
  max-width: 80rem; margin: 0 auto;
  height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 1.25rem;
}
@media (min-width: 768px) { .hero-stage { padding: 0 2rem; } }

/* Corner meta */
.hero-meta {
  position: absolute;
  inset-inline: 1.25rem; top: 5.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
@media (min-width: 768px) { .hero-meta { inset-inline: 2rem; } }
.small-meta {
  font-size: .625rem; letter-spacing: .35em;
  text-transform: uppercase; color: var(--ink-soft);
  display: flex; align-items: center; gap: .5rem;
  white-space: nowrap;
}
.meta-line { display: inline-block; width: 1.5rem; height: 1px; background: var(--ink-soft); flex-shrink: 0; }
@media (max-width: 479px) {
  .small-meta { letter-spacing: .1em; }
  .meta-line { display: none; }
}

/* Headline 1 */
#hero-h1 {
  position: relative; z-index: 10;
  max-width: 56rem;
  will-change: transform, opacity;
}
.hero-h1-text {
  margin-top: 1.25rem;
  font-size: clamp(3rem, 14vw, 7.4vw);
  font-weight: 900; line-height: .92; letter-spacing: -.04em;
  font-family: var(--font-display);
  color: var(--ink);
}
@media (min-width: 768px) { .hero-h1-text { font-size: 7.4vw; } }
.word-gap { display: inline-block; width: .4em; }

/* Word reveal animation */
.word-reveal {
  display: inline-block;
  overflow: hidden;
  vertical-align: baseline;
  line-height: 1;
}
.word-reveal::after {
  content: attr(data-text);
}
.word-reveal {
  clip-path: inset(0 0 100% 0);
  animation: wordIn .85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes wordIn {
  to { clip-path: inset(0 0 0% 0); }
}

.hero-sub {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: 1rem; line-height: 1.7;
  color: var(--ink-soft);
  opacity: 0;
  animation: fadeUp .7s ease forwards;
  animation-delay: var(--d, .55s);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-ctas {
  margin-top: 2.25rem;
  display: flex; flex-wrap: wrap; align-items: center; gap: .75rem;
  opacity: 0;
  animation: fadeUp .7s ease forwards;
  animation-delay: var(--d, .7s);
}

/* Headline 2 */
#hero-h2 {
  position: absolute;
  inset-inline: 1.25rem; bottom: 5rem;
  z-index: 10;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem;
  pointer-events: none;
  opacity: 0;
  will-change: transform, opacity;
}
@media (min-width: 768px) { #hero-h2 { inset-inline: 2rem; } }
.hero-h2-text {
  margin-top: .75rem;
  font-size: clamp(2rem, 6vw, 3.75rem);
  font-weight: 900; line-height: .95; letter-spacing: -.04em;
  font-family: var(--font-display); color: var(--ink);
}
.hero-h2-sub {
  display: none;
  max-width: 18rem;
  font-size: .875rem; line-height: 1.7;
  color: var(--ink-soft);
}
@media (min-width: 768px) { .hero-h2-sub { display: block; } }

/* Laptop */
.laptop-perspective {
  position: absolute; inset-inline: 0; top: 18%; bottom: 0;
  z-index: 0;
  display: flex; align-items: flex-end; justify-content: center;
  perspective: 1800px;
}
@media (min-width: 768px) {
  .laptop-perspective { top: 18%; align-items: center; }
}
#laptop-3d {
  position: relative;
  width: 110%; max-width: 48rem;
  transform-style: preserve-3d;
  transform-origin: 50% 90%;
  will-change: transform;
  transform: rotateX(-10deg) rotateZ(-2deg) scale(.7) translateY(18vh) translateX(0%);
}
@media (min-width: 768px) { #laptop-3d { width: 58%; } }
#laptop-glow {
  position: absolute; inset: -6rem;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, oklch(0.62 0.22 250 / 0.55), transparent 65%);
  filter: blur(2px);
  opacity: 0;
  will-change: opacity;
}
.laptop-img {
  width: 100%;
  filter: drop-shadow(0 60px 60px oklch(0.12 0.025 260 / 0.35));
}
.laptop-shadow {
  position: absolute;
  inset-inline: 8%; bottom: -6%;
  height: 8%;
  border-radius: 50%;
  background: oklch(0.12 0.025 260 / 0.35);
  filter: blur(1.5rem);
}

/* Scroll cue */
#scroll-cue {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  z-index: 20;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  will-change: opacity;
}
.scroll-text { font-size: .625rem; text-transform: uppercase; letter-spacing: .4em; color: var(--ink-soft); }
.scroll-line { display: block; height: 2rem; width: 1px; background: var(--ink-soft); }

/* ═══════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════ */
.marquee-section {
  position: relative;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 1.5rem 0;
  background: oklch(0.99 0.004 250 / 0.6);
  overflow: hidden;
}
.marquee-track { overflow: hidden; }
.marquee-inner {
  display: flex; gap: 3rem;
  white-space: nowrap;
  animation: marqueeScroll 40s linear infinite;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.mq-item {
  display: inline-flex; align-items: center; gap: 3rem;
  font-size: clamp(1.25rem, 4vw, 2.5rem);
  font-weight: 900; letter-spacing: -.02em;
  font-family: var(--font-display); color: var(--ink);
  flex-shrink: 0;
}
.mq-dot {
  display: inline-block; width: .5rem; height: .5rem;
  border-radius: 50%; background: var(--cobalt); flex-shrink: 0;
}
.mq-fade {
  position: absolute; top: 0; bottom: 0; width: 6rem;
  pointer-events: none; z-index: 1;
}
.mq-fade-s { left: 0;  background: linear-gradient(to right, var(--paper), transparent); }
.mq-fade-e { right: 0; background: linear-gradient(to left,  var(--paper), transparent); }

/* ═══════════════════════════════════════════
   OFFER BAND
═══════════════════════════════════════════ */
.offer-section { padding: 5rem 0; }
.offer-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  background: var(--grad-ink);
  box-shadow: var(--shadow-prod);
}
@media (min-width: 768px) { .offer-card { padding: 3.5rem; } }
.offer-glow {
  position: absolute; top: -50%; right: -25%;
  height: 140%; width: 60%;
  border-radius: 50%;
  opacity: .4;
  background: radial-gradient(circle, oklch(0.62 0.22 250 / 0.7), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.offer-stats {
  display: grid; gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .offer-stats { grid-template-columns: repeat(3, 1fr); align-items: end; } }
.stat-big {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 900; letter-spacing: -.03em;
  font-family: var(--font-display);
  color: oklch(0.99 0 0);
  line-height: 1;
}
.stat .grad-text { color: transparent; }
.stat-lbl { margin-top: .75rem; font-size: .875rem; color: oklch(0.85 0.01 250 / 0.7); }

/* ═══════════════════════════════════════════
   SPECS GRID
═══════════════════════════════════════════ */
.specs-section { padding: 7rem 0; }
.sec-header { display: flex; flex-direction: column; gap: 1.25rem; }
.sec-title {
  max-width: 48rem;
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 900; line-height: .95; letter-spacing: -.04em;
  font-family: var(--font-display); color: var(--ink);
}
.specs-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--hairline);
  border-radius: 1rem;
  overflow: hidden;
}
@media (min-width: 640px) { .specs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .specs-grid { grid-template-columns: repeat(4, 1fr); } }
.spec-card {
  position: relative;
  padding: 2rem;
  background: var(--paper);
  overflow: hidden;
  transition: background .2s;
}
.spec-card:hover { background: oklch(0.99 0.004 250); }
.spec-top { display: flex; align-items: center; justify-content: space-between; }
.spec-num { font-size: .75rem; font-family: monospace; letter-spacing: .15em; color: var(--ink-soft); }
.spec-dot {
  width: .5rem; height: .5rem; border-radius: 50%;
  background: var(--cobalt);
  transition: transform .3s;
}
.spec-card:hover .spec-dot { transform: scale(1.5); }
.spec-name {
  margin-top: 3rem;
  font-size: 1.125rem; font-weight: 900; letter-spacing: -.02em;
  font-family: var(--font-display); color: var(--ink);
}
.spec-desc { margin-top: .5rem; font-size: .875rem; line-height: 1.6; color: var(--ink-soft); }
.spec-bar {
  position: absolute; inset-inline: 0; bottom: 0;
  height: 2px;
  background: var(--cobalt);
  transform: scaleX(0);
  transform-origin: end;
  transition: transform .7s;
}
.spec-card:hover .spec-bar { transform: scaleX(1); transform-origin: start; }

/* reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════════
   AI FEATURES SECTION
═══════════════════════════════════════════ */
.ai-section {
  padding: 7rem 0;
  background: oklch(0.975 0.004 250 / 0.6);
}
.ai-intro-text {
  margin-top: 1.5rem;
  max-width: 44rem;
  font-size: 1.0625rem; line-height: 1.75;
  color: var(--ink-soft);
}
.ai-grid { margin-top: 3.5rem; }

/* ═══════════════════════════════════════════
   DESIGN SECTION
═══════════════════════════════════════════ */
.design-section { padding: 7rem 0; }
.design-kpis {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}
@media (min-width: 640px) { .design-kpis { grid-template-columns: repeat(4, 1fr); } }
.design-caps { margin-top: 2rem; }
.cap-desc {
  margin-top: .375rem;
  font-size: .8125rem; line-height: 1.6;
  color: var(--ink-soft);
}

/* ═══════════════════════════════════════════
   DISPLAY & AUDIO SECTION
═══════════════════════════════════════════ */
.display-section {
  padding: 7rem 0;
  background: oklch(0.975 0.004 250 / 0.6);
}
.display-grid {
  margin-top: 3.5rem;
  display: grid; gap: 1.5rem;
}
@media (min-width: 768px) { .display-grid { grid-template-columns: 1fr 1fr; } }
.display-card {
  border-radius: 1.75rem;
  border: 1px solid var(--hairline);
  background: #fff;
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
  transition: transform .2s;
}
.display-card:hover { transform: translateY(-4px); }
.display-card-num {
  font-size: .75rem; font-family: monospace;
  letter-spacing: .15em; color: var(--cobalt);
}
.display-card-title {
  margin-top: .75rem;
  font-size: 1.375rem; font-weight: 900;
  letter-spacing: -.03em; line-height: 1.1;
  font-family: var(--font-display); color: var(--ink);
}
.display-card-desc {
  margin-top: 1rem;
  font-size: .9375rem; line-height: 1.75;
  color: var(--ink-soft);
  flex: 1;
}
.display-stats {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--hairline);
  display: flex; gap: 2rem;
}
.display-stat-big {
  font-size: 1.25rem; font-weight: 900;
  font-family: var(--font-display); color: var(--ink);
  letter-spacing: -.02em;
}
.display-stat-lbl {
  margin-top: .25rem;
  font-size: .75rem; color: var(--ink-soft);
}

/* ═══════════════════════════════════════════
   I/O PORTS SECTION
═══════════════════════════════════════════ */
.ports-section { padding: 7rem 0; }
.ports-card {
  margin-top: 3.5rem;
  border-radius: 1.75rem;
  border: 1px solid var(--hairline);
  background: #fff;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.ports-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--hairline);
}
@media (min-width: 640px) { .ports-inner { grid-template-columns: repeat(4, 1fr); } }
.port-item {
  padding: 1.75rem;
  background: var(--paper);
  transition: background .2s;
}
.port-item:hover { background: oklch(0.99 0.004 250); }
.port-name {
  font-size: .9375rem; font-weight: 700;
  font-family: var(--font-display); color: var(--ink);
  line-height: 1.3;
}
.port-detail {
  margin-top: .375rem;
  font-size: .8125rem; color: var(--ink-soft); line-height: 1.5;
}

/* ═══════════════════════════════════════════
   ENTERPRISE MANAGEMENT SECTION
═══════════════════════════════════════════ */
.mgmt-section {
  padding: 7rem 0;
  background: oklch(0.975 0.004 250 / 0.6);
}

/* ═══════════════════════════════════════════
   KINETIC HEADLINE
═══════════════════════════════════════════ */
#kinetic { padding: 8rem 0; overflow: hidden; }
.kinetic-lines { margin-top: 2.5rem; }
.k-line {
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 900; line-height: 1.05; letter-spacing: -.04em;
  font-family: var(--font-display);
  color: oklch(0.16 0.02 255 / 0.15);
  transform: translateX(8%);
  opacity: .08;
  transition: color .4s, opacity .4s, transform .4s;
  will-change: transform, opacity, color;
}
.k-line.lit {
  color: var(--ink);
  opacity: 1;
  transform: translateX(0);
}

/* ═══════════════════════════════════════════
   GIFT SECTION
═══════════════════════════════════════════ */
.gift-section { padding: 7rem 0; }
.gift-grid {
  display: grid; gap: 3.5rem;
  align-items: center;
}
@media (min-width: 768px) { .gift-grid { grid-template-columns: 1fr 1fr; } }
.gift-img-wrap { position: relative; }
.gift-glow {
  position: absolute; inset: -1.5rem; z-index: -1;
  border-radius: 2.5rem;
  background: radial-gradient(circle, oklch(0.62 0.22 250 / 0.18), transparent 70%);
  filter: blur(40px);
}
.gift-frame {
  overflow: hidden;
  border-radius: 1.75rem;
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-prod);
}
.gift-badge {
  position: absolute; bottom: -1.5rem; inset-inline-start: -1.5rem;
  padding: .75rem 1.25rem;
  border-radius: 999px;
  font-size: .875rem; font-weight: 700; color: #fff;
  background: var(--grad-blue);
  box-shadow: var(--shadow-glow);
}
.gift-title {
  margin-top: 1.25rem;
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 900; line-height: .95; letter-spacing: -.04em;
  font-family: var(--font-display); color: var(--ink);
}
.gift-desc {
  margin-top: 1.5rem;
  font-size: 1.0625rem; line-height: 1.7;
  color: var(--ink-soft);
}
.gift-list { margin-top: 2rem; display: flex; flex-direction: column; gap: .75rem; }
.gift-list li { display: flex; align-items: flex-start; gap: .75rem; color: var(--ink); }
.gift-bullet {
  flex-shrink: 0;
  margin-top: .6rem;
  display: inline-block; height: .375rem; width: 1.5rem;
  border-radius: 999px;
  background: var(--grad-blue);
}
.gift-ctas { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: .75rem; }
.gift-note { margin-top: 1.5rem; font-size: .75rem; color: var(--ink-soft); }
.gift-banner {
  margin-top: 5rem;
  border-radius: 1.5rem;
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.gift-banner img { width: 100%; }

/* ═══════════════════════════════════════════
   ZIPCOM SECTION
═══════════════════════════════════════════ */
.zipcom-section { padding: 7rem 0; }
.zipcom-grid {
  display: grid; gap: 3.5rem;
}
@media (min-width: 768px) { .zipcom-grid { grid-template-columns: 5fr 7fr; } }
.zipcom-title {
  margin-top: 1.25rem;
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 900; line-height: .95; letter-spacing: -.04em;
  font-family: var(--font-display); color: var(--ink);
}
.zipcom-desc {
  margin-top: 1.5rem;
  font-size: 1.0625rem; line-height: 1.7;
  color: var(--ink-soft);
}
.kpi-row { margin-top: 2rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; }
.kpi-card {
  padding: 1rem;
  border-radius: 1rem; border: 1px solid var(--hairline);
  background: #fff; box-shadow: var(--shadow-card);
}
.kpi-big { font-size: 1.125rem; font-weight: 900; font-family: var(--font-display); color: var(--ink); }
.kpi-lbl { margin-top: .25rem; font-size: .75rem; color: var(--ink-soft); }
.caps-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; }
.cap-card {
  border-radius: 1rem; border: 1px solid var(--hairline);
  background: #fff; padding: 1.25rem 1.25rem 1.5rem;
  box-shadow: var(--shadow-card);
}
.cap-num { font-size: .75rem; font-family: monospace; letter-spacing: .15em; color: var(--cobalt); }
.cap-name { margin-top: .5rem; font-weight: 700; font-size: .9375rem; color: var(--ink); }

/* ═══════════════════════════════════════════
   LEAD FORM
═══════════════════════════════════════════ */
.lead-section { padding: 7rem 0; }
.lead-card {
  overflow: hidden;
  border-radius: 2rem;
  background: var(--grad-ink);
  box-shadow: var(--shadow-prod);
}
.lead-grid {
  display: grid; gap: 3rem;
  padding: 2.5rem;
}
@media (min-width: 768px) {
  .lead-grid { grid-template-columns: 1fr 1fr; padding: 4rem; }
}
.lead-title {
  margin-top: 1.25rem;
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 900; line-height: .95; letter-spacing: -.04em;
  font-family: var(--font-display); color: oklch(0.99 0 0);
}
.lead-desc {
  margin-top: 1.25rem;
  color: oklch(0.85 0.01 250 / 0.75); line-height: 1.7;
}
.lead-info .btn-blue { margin-top: 2rem; }

/* Form — wrapper keeps form+success in one grid column */
.lead-form-wrap { display: block; }
#lead-form { display: grid; gap: 1rem; align-content: start; }
.form-field { display: flex; flex-direction: column; gap: .375rem; }
.form-lbl { font-size: .75rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: oklch(0.85 0.01 250 / 0.65); }
.form-input {
  background: transparent;
  border: 1px solid oklch(1 0 0 / 0.18);
  border-radius: .75rem;
  padding: .75rem 1rem;
  font-size: .9375rem; color: #fff;
  font-family: inherit;
  outline: none;
  transition: background .2s, border-color .2s;
}
.form-input::placeholder { color: rgba(255,255,255,.3); }
.form-input:focus { background: oklch(1 0 0 / 0.06); border-color: oklch(1 0 0 / 0.35); }
.form-consent {
  display: flex; align-items: flex-start; gap: .75rem;
  font-size: .875rem; color: oklch(0.85 0.01 250 / 0.75);
  cursor: pointer; margin-top: .5rem;
}
.form-consent input { width: 1rem; height: 1rem; margin-top: .2rem; accent-color: var(--cobalt); flex-shrink: 0; }

/* Success state */
#lead-success {
  display: none;
  flex-direction: column; align-items: flex-start; justify-content: center;
  background: oklch(1 0 0 / 0.06);
  border: 1px solid oklch(1 0 0 / 0.15);
  border-radius: 1rem;
  padding: 2rem;
}
#lead-success.visible { display: flex; }
.success-check { font-size: 1.5rem; color: #fff; }
.success-title { margin-top: .75rem; font-size: 1.375rem; font-weight: 700; color: #fff; }
.success-desc { margin-top: .5rem; color: oklch(0.85 0.01 250 / 0.75); }
.success-phone { margin-top: .75rem; font-weight: 700; color: var(--blue-bright); direction: ltr; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer {
  padding: 3rem 0;
  border-top: 1px solid var(--hairline);
}
.footer-inner {
  display: flex; flex-direction: column; gap: 1.5rem;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .footer-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}
.footer-left { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer-logo { height: 1.5rem; width: auto; }
.footer-copy { font-size: .875rem; color: var(--ink-soft); }
.footer-phone { font-size: .875rem; font-weight: 700; color: var(--ink); }

/* ═══════════════════════════════════════════
   STICKY CALL BAR (mobile)
═══════════════════════════════════════════ */
.sticky-call {
  position: fixed; bottom: 1rem; inset-inline: 0;
  z-index: 40;
  display: flex; justify-content: center;
  pointer-events: none;
}
@media (min-width: 768px) { .sticky-call { display: none; } }
.sticky-call-btn {
  pointer-events: all;
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.25rem;
  border-radius: 999px;
  font-size: .875rem; font-weight: 700; color: #fff;
  background: var(--grad-ink);
  box-shadow: 0 20px 40px -10px oklch(0.12 0.025 260 / 0.4);
}
