:root {
  --ink: #FFFFFF;
  --ink-2: #E2E8F0;
  --paper: #090E14;
  --paper-2: #121822;
  --paper-3: #1A2433;
  --line: rgba(255,255,255,0.12);
  --line-strong: rgba(255,255,255,0.25);
  --accent: oklch(0.88 0.20 128);
  --accent-deep: oklch(0.68 0.22 130);
  --accent-ink: oklch(0.18 0.06 140);
  --muted: rgba(255,255,255,0.55);
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.4), 0 4px 12px rgba(0,0,0,0.4);
  --shadow-lg: 0 30px 60px -30px rgba(0,0,0,0.8);
}
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 { font-family: 'Inter', sans-serif; letter-spacing: -0.025em; font-weight: 700; }
.mono { font-family: 'Inter', sans-serif; font-weight: 500; letter-spacing: 0.04em; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.wrap { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .wrap { padding: 0 20px; } }

/* BUTTONS */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 24px; border-radius: 999px;
  font-weight: 600; font-size: 15px; letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: transform 200ms cubic-bezier(.2,.8,.2,1), background 180ms, color 180ms, border-color 180ms;
  overflow: hidden; white-space: nowrap; isolation: isolate;
  font-family: 'Inter', sans-serif;
}
.btn::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  transform: scaleX(0); transform-origin: left;
  transition: transform 360ms cubic-bezier(.7,0,.2,1); z-index: -1;
}
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary::before { background: var(--ink); }
.btn-primary:hover { color: var(--paper); }
.btn-primary:hover::before { transform: scaleX(1); }
.btn-dark { background: var(--ink); color: var(--paper); }
.btn-dark::before { background: var(--accent); }
.btn-dark:hover { color: var(--accent-ink); }
.btn-dark:hover::before { transform: scaleX(1); }
.btn-ghost { color: var(--ink); border-color: var(--line-strong); background: transparent; }
.btn-ghost::before { background: var(--ink); }
.btn-ghost:hover { color: var(--paper); border-color: var(--ink); }
.btn-ghost:hover::before { transform: scaleX(1); }
.btn-sm { padding: 11px 18px; font-size: 13.5px; }
.btn-lg { padding: 20px 30px; font-size: 16px; }

.pulse-dot {
  position: relative; width: 8px; height: 8px; border-radius: 50%;
  background: currentColor; flex: 0 0 8px;
}
.pulse-dot::after {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 1.5px solid currentColor; opacity: .6;
  animation: ping 1.6s cubic-bezier(0,0,0.2,1) infinite;
}
@keyframes ping {
  0% { transform: scale(0.6); opacity: .8; }
  80%, 100% { transform: scale(1.6); opacity: 0; }
}

/* HEADER */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background 250ms, border-color 250ms, backdrop-filter 250ms;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(9,14,20,0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom-color: var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px; gap: 24px;
}
.logo {
  display: inline-flex; align-items: center; gap: 12px;
  white-space: nowrap;
}
.logo-mark {
  width: 40px; height: 40px;
  background: var(--ink);
  display: grid; place-items: center;
  border-radius: 12px;
  flex: 0 0 40px;
}
.logo-mark svg { width: 24px; height: 24px; }
.logo-text {
  font-weight: 800; font-size: 20px; letter-spacing: -0.04em;
  color: var(--ink);
}
.logo-text .dot { color: var(--accent-deep); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  position: relative; font-size: 14px; font-weight: 500;
  color: var(--ink); padding: 10px 14px; border-radius: 999px;
  transition: background 200ms; white-space: nowrap;
}
.nav-links a:hover { background: rgba(255,255,255,0.06); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
@media (max-width: 980px) { .nav-links { display: none; } }
@media (max-width: 640px) {
  .nav-cta .btn-ghost { display: none; }
}
@media (max-width: 480px) {
  .logo-text { display: none; }
}

/* TICKER */
.ticker {
  background: var(--ink); color: var(--paper);
  overflow: hidden; padding: 16px 0;
}
.ticker-track {
  display: flex; align-items: center; gap: 56px;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 18px; font-weight: 600; letter-spacing: -0.015em;
  white-space: nowrap;
}
.ticker-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* HERO */
.hero {
  padding: 112px 0 0;
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
}
.hero-eyebrow-row {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 28px; border-bottom: 1px solid var(--line);
  margin-bottom: 48px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 600; color: var(--ink);
}
.hero-eyebrow .live {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px; border-radius: 999px;
  background: var(--ink); color: var(--paper);
  font-size: 11.5px; font-weight: 600;
}
.hero-meta {
  display: flex; gap: 28px;
  font-size: 12.5px; color: var(--muted); font-weight: 500;
}
@media (max-width: 760px) {
  .hero-eyebrow-row { flex-direction: column; gap: 14px; align-items: flex-start; }
  .hero-meta { flex-wrap: wrap; gap: 16px; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: stretch;
}
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

.hero-headline {
  font-size: clamp(54px, 8.4vw, 132px);
  line-height: 0.93;
  letter-spacing: -0.04em;
  margin: 0 0 24px;
  font-weight: 800;
  color: var(--ink);
  text-wrap: balance;
}
.hero-headline .accent {
  color: var(--accent-deep);
}
.hero-headline .underline {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.hero-headline .underline::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0.04em;
  height: 0.18em;
  background: var(--accent);
  z-index: -1;
  border-radius: 2px;
}

.hero-sub {
  font-size: clamp(18px, 1.5vw, 21px);
  color: var(--ink); opacity: 0.78;
  max-width: 540px; line-height: 1.45;
  text-wrap: pretty; margin: 0 0 32px;
  font-weight: 500;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }

.hero-trust-row {
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap; padding-top: 24px;
  border-top: 1px solid var(--line);
}
.ht-item { display: flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 500; }
.ht-item .ico {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--accent); display: grid; place-items: center;
  flex: 0 0 24px;
}
.ht-item .ico svg { width: 13px; height: 13px; }

/* Hero image */
.hero-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--paper-2);
  aspect-ratio: 4/5;
  min-height: 540px;
}
@media (max-width: 980px) { .hero-image-wrap { min-height: 460px; } }
.hero-image-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1);
}
.hero-image-wrap:hover img { transform: scale(1.05); }
.hero-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(9,14,20,0) 40%, rgba(9,14,20,0.5) 100%);
  pointer-events: none;
}
.hero-tag-tl {
  position: absolute; top: 20px; left: 20px;
  background: var(--paper); color: var(--ink);
  padding: 10px 16px; border-radius: 999px;
  font-size: 12.5px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-card-bl {
  position: absolute; left: 20px; bottom: 20px; right: 20px;
  background: var(--paper);
  border-radius: 16px;
  padding: 18px 22px;
  display: flex; align-items: center; gap: 16px;
}
.hero-card-bl .icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--ink); display: grid; place-items: center;
  flex: 0 0 48px;
}
.hero-card-bl .icon svg { width: 22px; height: 22px; }
.hero-card-bl .text { line-height: 1.3; flex: 1; min-width: 0; }
.hero-card-bl .text strong { font-size: 15px; display: block; font-weight: 700; }
.hero-card-bl .text span { font-size: 13px; color: var(--muted); font-weight: 500; }
.hero-card-bl .price {
  font-size: 22px; font-weight: 800; letter-spacing: -0.02em;
  color: var(--ink); white-space: nowrap;
}
.hero-card-bl .price small { font-size: 12px; font-weight: 500; color: var(--muted); display: block; letter-spacing: 0.02em; }

/* SECTIONS */
section { padding: 120px 0; position: relative; }
@media (max-width: 720px) { section { padding: 88px 0; } }

.section-tag {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12.5px; font-weight: 600;
  color: var(--muted); margin-bottom: 24px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.section-tag::before {
  content: ''; width: 28px; height: 1.5px; background: var(--ink); border-radius: 2px;
}
.section-h {
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.96; margin: 0; letter-spacing: -0.04em;
  font-weight: 800; text-wrap: balance;
}
.section-h .accent { color: var(--accent-deep); }
.section-head {
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: 64px; align-items: end; margin-bottom: 64px;
}
@media (max-width: 880px) { .section-head { grid-template-columns: 1fr; gap: 24px; } }
.section-head .lede {
  font-size: 18px; color: var(--ink); opacity: 0.75;
  line-height: 1.5; max-width: 460px; margin: 0;
  text-wrap: pretty; font-weight: 500;
}

/* SERVICES */
.services { background: var(--paper); }
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 14px;
}
@media (max-width: 980px) { .bento { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .bento { grid-template-columns: 1fr; } }

.bento-card {
  position: relative;
  background: var(--paper-2);
  border-radius: 22px; padding: 28px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: background 300ms;
}
.bento-card:hover { background: var(--paper-3); }
.bento-card.dark { background: var(--ink); color: var(--paper); }
.bento-card.dark:hover { background: var(--ink-2); }
.bento-card.accent { background: var(--accent); color: var(--accent-ink); }
.bento-card.accent:hover { background: var(--accent-deep); color: var(--paper); }

.bento-card .num {
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  color: currentColor; opacity: 0.55; text-transform: uppercase;
}
.bento-card h3 {
  font-size: 32px; line-height: 1.05; margin: 12px 0 0;
  letter-spacing: -0.03em; font-weight: 800;
}
.bento-card .desc {
  margin-top: 14px; font-size: 14.5px; line-height: 1.5;
  opacity: 0.78; max-width: 36ch; font-weight: 500;
}
.bento-card .meta {
  margin-top: auto; padding: 24px 60px 0 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; font-size: 13px; font-weight: 600;
  border-top: 1px solid currentColor; border-color: rgba(10,14,18,0.12);
}
.bento-card.dark .meta { border-color: rgba(0,0,0,0.14); }
.bento-card.accent .meta { border-color: rgba(10,14,18,0.18); }
.bento-card .meta .price { font-weight: 800; }

.bento-card .arrow-cta {
  position: absolute; bottom: 22px; right: 22px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ink); color: var(--paper);
  display: grid; place-items: center;
  transition: transform 240ms cubic-bezier(.2,.8,.2,1), background 240ms;
  z-index: 2;
}
.bento-card:hover .arrow-cta { transform: rotate(-45deg) scale(1.05); }
.bento-card.dark .arrow-cta { background: var(--accent); color: var(--accent-ink); }
.bento-card.accent .arrow-cta { background: var(--ink); color: var(--accent); }

.bc-feature { grid-column: span 4; grid-row: span 2; min-height: 460px; }
.bc-half { grid-column: span 2; grid-row: span 1; }
.bc-wide { grid-column: span 3; grid-row: span 1; }
.bc-img { grid-column: span 2; grid-row: span 1; padding: 0; }
@media (max-width: 980px) {
  .bc-feature, .bc-half, .bc-wide, .bc-img { grid-column: span 2; }
  .bc-feature { grid-row: span 1; min-height: 320px; }
}
@media (max-width: 560px) {
  .bc-feature, .bc-half, .bc-wide, .bc-img { grid-column: span 1; }
}
.bc-feature h3 { font-size: clamp(36px, 5vw, 56px); margin-top: 24px; }
.bc-feature .desc { font-size: 16px; max-width: 44ch; }

.ph {
  position: relative;
  background:
    repeating-linear-gradient(135deg,
      rgba(255,255,255,0.06) 0 14px,
      transparent 14px 28px),
    var(--paper-3);
  overflow: hidden;
}
.ph-label {
  position: absolute; left: 14px; top: 14px;
  font-size: 11px; font-weight: 600;
  color: var(--ink); opacity: 0.7;
  background: var(--paper);
  padding: 4px 8px; border-radius: 6px;
  border: 1px solid var(--line);
}

/* PROCESS */
.process {
  background: var(--ink); color: var(--paper);
  border-radius: 28px;
  margin: 0 16px;
  padding: 88px 0; overflow: hidden;
}
.process .section-tag { color: rgba(255,255,255,0.65); }
.process .section-tag::before { background: var(--paper); }
.process .section-h { color: var(--paper); }
.process .section-h .accent { color: var(--accent); }
.process .section-head .lede { color: rgba(255,255,255,0.78); }

.process-track {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; padding: 0 32px;
}
@media (max-width: 880px) { .process-track { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .process-track { grid-template-columns: 1fr; } }

.proc-step {
  border-top: 1.5px solid rgba(255,255,255,0.18);
  padding-top: 22px; position: relative;
}
.proc-step .num {
  font-size: 56px; line-height: 1; color: var(--accent);
  font-weight: 800; letter-spacing: -0.04em; margin-bottom: 16px;
}
.proc-step h4 {
  font-size: 22px; line-height: 1.15; margin: 0 0 12px;
  letter-spacing: -0.02em; color: var(--paper); font-weight: 700;
}
.proc-step p { color: rgba(255,255,255,0.72); font-size: 14.5px; line-height: 1.55; margin: 0; font-weight: 500; }

/* CALCULATOR */
.calc { background: var(--paper); }
.calc-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--paper);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 980px) { .calc-card { grid-template-columns: 1fr; } }
.calc-form { padding: 48px; border-right: 1px solid var(--line); }
@media (max-width: 980px) { .calc-form { border-right: 0; border-bottom: 1px solid var(--line); padding: 36px; } }

.calc-step { margin-bottom: 36px; }
.calc-step:last-child { margin-bottom: 0; }
.step-h {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 16px;
}
.step-h .step-num { font-size: 12px; font-weight: 600; color: var(--muted); letter-spacing: 0.06em; }
.step-h h4 { font-size: 20px; margin: 0; letter-spacing: -0.02em; font-weight: 700; }

.pill-row { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 14px; font-weight: 600;
  color: var(--ink); cursor: pointer;
  transition: all 180ms cubic-bezier(.2,.8,.2,1);
  display: inline-flex; align-items: center; gap: 10px;
}
.pill:hover { border-color: var(--ink); }
.pill .sub { font-size: 11.5px; color: var(--muted); font-weight: 500; }
.pill.active { background: var(--ink); color: var(--paper); border-color: var(--ink); transform: translateY(-1px); }
.pill.active .sub { color: rgba(255,255,255,0.7); }

.level-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
@media (max-width: 540px) { .level-row { grid-template-columns: 1fr; } }
.level {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px; cursor: pointer;
  transition: all 180ms;
  display: flex; flex-direction: column; gap: 4px;
  background: var(--paper);
}
.level:hover { border-color: var(--ink); }
.level.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.level .name { font-weight: 700; font-size: 15px; }
.level .desc { font-size: 12.5px; opacity: 0.72; font-weight: 500; }

.addons { display: flex; flex-direction: column; gap: 8px; }
.addon {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer; transition: all 180ms;
  background: var(--paper);
}
.addon:hover { border-color: var(--ink); }
.addon.on { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.addon .left { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 14.5px; }
.addon .box {
  width: 22px; height: 22px; border-radius: 7px;
  border: 1.5px solid var(--line-strong); display: grid; place-items: center;
  transition: all 180ms; flex: 0 0 22px; font-size: 13px;
}
.addon.on .box { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.addon .price { font-size: 13.5px; font-weight: 600; opacity: 0.78; }

.calc-side {
  padding: 48px;
  display: flex; flex-direction: column;
  background: var(--paper-2);
  position: relative; overflow: hidden;
}
.calc-side::before {
  content: ''; position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent), transparent 60%);
  top: -200px; right: -200px;
  opacity: 0.3; pointer-events: none;
  filter: blur(40px);
}
@media (max-width: 980px) { .calc-side { padding: 36px; } }

.price-display { position: relative; }
.price-display .lbl {
  font-size: 12px; font-weight: 600;
  color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.price-num {
  font-weight: 800; letter-spacing: -0.04em;
  font-size: clamp(72px, 10vw, 140px); line-height: 0.92;
  margin: 0; color: var(--ink);
  display: flex; align-items: flex-start; gap: 10px;
  font-feature-settings: "tnum" 1;
}
.price-num .currency {
  font-size: 0.24em; font-weight: 600; color: var(--muted);
  margin-top: 0.3em; letter-spacing: 0;
}
.price-display .breakdown {
  margin-top: 28px; padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 8px;
}
.pb-row { display: flex; justify-content: space-between; gap: 12px;
  font-size: 13.5px; color: var(--muted); font-weight: 500; }
.pb-row.total {
  color: var(--ink); font-weight: 700;
  padding-top: 10px; margin-top: 4px;
  border-top: 1px dashed var(--line-strong);
}
.calc-cta { margin-top: 28px; }
.calc-cta .btn { width: 100%; justify-content: center; }
.calc-fineprint { margin-top: 14px; font-size: 12px; font-weight: 500; color: var(--muted); text-align: center; }

/* ABOUT */
.about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: stretch; }
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } }
.about-media { aspect-ratio: 4/5; border-radius: 22px; }
.about-content { display: flex; flex-direction: column; }
.about-quote {
  font-weight: 800; line-height: 0.98;
  font-size: clamp(40px, 5.5vw, 76px);
  letter-spacing: -0.035em; margin: 0 0 36px;
  color: var(--ink); text-wrap: balance;
}
.about-quote .accent { color: var(--accent-deep); }
.about-content p {
  font-size: 16px; color: var(--ink); line-height: 1.6;
  max-width: 440px; margin: 0 0 14px; font-weight: 500;
}
.about-content p.muted { color: var(--muted); }
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  margin-top: auto; padding-top: 36px; gap: 16px;
  border-top: 1px solid var(--line);
}
.stat-item .num {
  font-size: 44px; font-weight: 800;
  letter-spacing: -0.03em; line-height: 1;
}
.stat-item .num .accent { color: var(--accent-deep); }
.stat-item .lbl {
  font-size: 12px; font-weight: 600;
  color: var(--muted); text-transform: uppercase;
  letter-spacing: 0.06em; margin-top: 8px;
}

/* BLOG */
.blog { background: var(--paper-2); }
.blog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 720px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  background: var(--paper);
  border-radius: 22px; overflow: hidden;
  cursor: pointer; display: flex; flex-direction: column;
  transition: transform 280ms cubic-bezier(.2,.8,.2,1);
}
.blog-card:hover { transform: translateY(-6px); }
.blog-img { aspect-ratio: 16/10; }
.blog-body { padding: 28px; }
.blog-meta {
  display: flex; gap: 14px; font-size: 11.5px; font-weight: 600;
  color: var(--muted); text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 16px;
}
.blog-card h3 {
  font-size: 26px; margin: 0 0 14px; line-height: 1.15;
  letter-spacing: -0.025em; text-wrap: balance; font-weight: 700;
}
.blog-card p { font-size: 14.5px; color: var(--muted); margin: 0; line-height: 1.55; font-weight: 500; }
.blog-link {
  font-size: 13px; font-weight: 600;
  margin-top: 20px; display: inline-flex; gap: 8px; align-items: center;
  color: var(--ink);
}
.blog-card:hover .blog-link { color: var(--accent-deep); }

/* FINAL CTA */
.final-cta {
  background: var(--ink); color: var(--paper);
  text-align: center; border-radius: 28px;
  margin: 0 16px;
  padding: 80px 24px;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; inset: -40%;
  background: radial-gradient(ellipse at center, var(--accent), transparent 50%);
  opacity: 0.18; pointer-events: none;
}
.final-cta-eyebrow {
  font-size: 13px; font-weight: 600;
  color: var(--accent); letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 24px; position: relative;
}
.final-cta h2 {
  font-size: clamp(36px, 5vw, 72px); margin: 0 0 28px;
  color: var(--paper); position: relative;
  text-wrap: balance; font-weight: 800; letter-spacing: -0.03em;
}
.final-cta h2 .accent { color: var(--accent); }
.final-phone {
  font-size: clamp(22px, 2.6vw, 32px); font-weight: 700;
  letter-spacing: -0.02em; color: var(--paper);
  display: inline-flex; align-items: center; gap: 14px;
  padding: 16px 28px; border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.22);
  transition: all 240ms; position: relative;
}
.final-phone:hover { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); transform: scale(1.02); }
.final-phone svg { width: 1.1em; height: 1.1em; flex: 0 0 auto; }

/* FOOTER */
footer {
  background: var(--paper); color: var(--ink);
  padding: 80px 0 32px; margin-top: 16px;
}
.ft-mega {
  font-size: clamp(64px, 14vw, 220px);
  line-height: 0.88; letter-spacing: -0.05em;
  margin: 0 0 64px; font-weight: 900;
  color: var(--ink); overflow: hidden; white-space: nowrap;
}
.ft-mega .accent { color: var(--accent-deep); }
.ft-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-top: 48px; border-top: 1px solid var(--line);
  margin-bottom: 48px;
}
@media (max-width: 760px) { .ft-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .ft-grid { grid-template-columns: 1fr; } }
.ft-col h5 {
  font-size: 11.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--muted); margin: 0 0 18px;
}
.ft-col a, .ft-col p {
  display: block; color: var(--ink); font-size: 14.5px;
  margin: 0 0 10px; line-height: 1.55; font-weight: 500;
}
.ft-col a { transition: color 180ms; }
.ft-col a:hover { color: var(--accent-deep); }
.ft-bottom {
  border-top: 1px solid var(--line); padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: var(--muted); font-weight: 500;
}

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