/* ============================================================
   STN PEOPLE — Global Staffing Landing
   Brand: cyan #02c1d8 · lime #bfe007 · gris #9db1ba
   Type:  Instrument Serif (display) + Inter (UI/body)
   ============================================================ */

:root {
  --brand-primary: #02c1d8;
  --brand-lime:    #bfe007;
  --brand-gray:    #9db1ba;
  --brand-navy:    #0a1f3d;
  --brand-deep:    #06142b;

  --ink:        #0c1424;
  --ink-2:      #2a3445;
  --ink-3:      #54607a;
  --line:       #e3e7ee;
  --line-2:     #eef1f6;
  --paper:      #fafbfc;
  --paper-2:    #f4f6fa;

  --serif:  "Instrument Serif", "Times New Roman", serif;
  --sans:   "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono:   "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.serif-italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 18px;
  cursor: pointer;
  transition: all .18s ease;
  white-space: nowrap;
}
.btn-pill { padding: 9px 16px; font-size: 13px; }
.btn-lg   { padding: 14px 24px; font-size: 15px; }
.btn-block { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--brand-primary);
  color: #06142b;
  border-color: var(--brand-primary);
  font-weight: 600;
}
.btn-primary:hover { background: #03d6f0; border-color: #03d6f0; transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.95);
  border-color: rgba(255,255,255,0.25);
}
.btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.5); }

.btn-ghost-light {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
.btn-ghost-light:hover { background: var(--paper); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--brand-deep);
  color: #fff;
  overflow: hidden;
  padding-bottom: 32px;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 50%, transparent 90%);
}
.hero-glow {
  position: absolute;
  width: 900px; height: 900px;
  left: 50%; top: -200px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(2,193,216,0.25), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}

/* topbar */
.topbar {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 56px;
  gap: 24px;
}
.brand-logo { height: 56px; width: auto; }

.topnav {
  display: flex;
  gap: 28px;
}
.topnav a {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  font-weight: 500;
  transition: color .15s;
}
.topnav a:hover { color: #fff; }

/* hero content */
.hero-inner {
  position: relative;
  z-index: 4;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 56px 72px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--brand-primary);
  font-weight: 500;
  padding: 8px 14px;
  border: 1px solid rgba(2,193,216,0.3);
  border-radius: 999px;
  background: rgba(2,193,216,0.08);
  margin-bottom: 32px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-lime);
  box-shadow: 0 0 8px var(--brand-lime);
}

.hero-headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 9vw, 132px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 0 0 56px;
  color: #fff;
  word-break: break-word;
  hyphens: auto;
}
.hero-headline .line { display: block; }
.hero-headline .line:nth-child(2) { color: rgba(255,255,255,0.6); }
.hero-headline .serif-italic { color: var(--brand-primary); }

/* hero meta block */
.hero-meta {
  display: grid;
  grid-template-columns: auto 1px 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 56px;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.meta-stat { display: flex; align-items: center; gap: 24px; }
.stat-num {
  font-family: var(--serif);
  font-size: 112px;
  line-height: 1;
  font-weight: 400;
  color: var(--brand-lime);
  letter-spacing: -0.04em;
  display: flex;
  align-items: center;
}
.stat-num .pct { font-size: 64px; opacity: 0.85; align-self: flex-start; margin-top: 8px; }
.stat-label {
  font-size: 15px;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
  max-width: 240px;
  align-self: center;
}
.meta-divider { width: 1px; height: 80px; background: rgba(255,255,255,0.15); }
.meta-bullets {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
}
.meta-bullets li {
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  gap: 10px;
}
.meta-bullets svg { color: var(--brand-lime); flex-shrink: 0; }

/* hero cta */
.hero-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.cta-trust {
  margin-left: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.trust-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-lime);
}

/* logos row */
.logos-row {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 24px;
  padding: 32px 56px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.logos-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.logos-track {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.client-logo {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 18px 10px 0;
  border-right: 1px solid rgba(255,255,255,0.10);
  min-width: 140px;
}
.client-logo:last-child { border-right: none; }
.client-logo-name {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.10em;
  color: rgba(255,255,255,0.92);
}
.client-logo-sub {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
}

/* ============================================================
   SECTION SCAFFOLD
   ============================================================ */
.section {
  padding: 120px 56px;
  max-width: 1280px;
  margin: 0 auto;
}
.section-light { background: #fff; }
.section-dark {
  background: var(--brand-navy);
  color: #fff;
  max-width: none;
  padding-left: 56px;
  padding-right: 56px;
}
.section-dark > * { max-width: 1280px; margin-left: auto; margin-right: auto; }
.section-tight { padding-top: 96px; padding-bottom: 96px; }

.section-head {
  max-width: 800px;
  margin-bottom: 72px;
}
.kicker {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--brand-primary);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.kicker-dark { color: var(--brand-lime); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(34px, 5.5vw, 76px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}
.section-title-dark { color: #fff; }
.section-title .serif-italic { color: var(--brand-primary); }
.section-title-dark .serif-italic { color: var(--brand-primary); }

.section-lede {
  font-size: 18px;
  color: var(--ink-3);
  margin-top: 24px;
  max-width: 620px;
  line-height: 1.55;
}

/* ============================================================
   WHY GRID
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 56px;
}
.why-card {
  background: #fff;
  padding: 44px 40px 48px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 280px;
}
.why-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}
.why-num {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--brand-primary);
  letter-spacing: -0.02em;
}
.why-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-3);
  background: var(--paper);
  padding: 5px 10px;
  border-radius: 4px;
}
.why-title {
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
}
.why-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-3);
  margin: 0;
}

/* testimonial */
.testimonial {
  position: relative;
  background: var(--paper);
  border-radius: 16px;
  padding: 56px 64px 48px;
  border: 1px solid var(--line);
}
.quote-mark {
  position: absolute;
  top: 8px; left: 32px;
  font-family: var(--serif);
  font-size: 140px;
  line-height: 1;
  color: var(--brand-primary);
  opacity: 0.5;
}
.testimonial blockquote {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.25;
  font-weight: 400;
  margin: 0 0 24px;
  color: var(--ink);
  letter-spacing: -0.01em;
  max-width: 880px;
  position: relative;
  z-index: 1;
}
.testimonial blockquote em {
  font-style: italic;
  color: var(--ink);
}
.quote-meta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  text-transform: uppercase;
}

/* projects band — concrete past engagements */
.projects-band {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.projects-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 28px;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 40px;
}
.project-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 16px;
  border-left: 2px solid var(--brand-primary);
}
.project-client {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--ink);
}
.project-role {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-2);
}
@media (max-width: 980px) {
  .projects-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 600px) {
  .projects-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   STEPS / HOW
   ============================================================ */
.steps {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 96px;
}
.step {
  position: relative;
  padding-top: 8px;
}
.step-rail {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
}
.step-num {
  font-family: var(--serif);
  font-size: 64px;
  color: var(--brand-primary);
  line-height: 1;
  letter-spacing: -0.03em;
}
.step-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin-left: 16px;
}
.step-days {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--brand-lime);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.step-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 12px;
  color: #fff;
}
.step-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

/* specialties */
.specialties {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 56px;
}
.specialties-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--brand-lime);
  margin-bottom: 32px;
  text-transform: uppercase;
}
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.specialty {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 28px 24px;
  transition: all .2s;
}
.specialty:hover {
  background: rgba(2,193,216,0.06);
  border-color: rgba(2,193,216,0.25);
}
.specialty-key {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--brand-primary);
  margin-bottom: 12px;
}
.specialty-title {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.15;
  color: #fff;
  letter-spacing: -0.01em;
}
.specialties-foot {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  max-width: 720px;
  line-height: 1.6;
  font-style: italic;
}

/* ============================================================
   COMPARE
   ============================================================ */
.compare-wrap {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.compare-table thead th {
  text-align: left;
  padding: 28px 24px;
  background: var(--paper);
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}
.compare-table thead th.col-stn {
  background: var(--brand-deep);
  color: #fff;
  position: relative;
}
.col-head, .col-head-stn {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.col-head-stn { color: var(--brand-primary); }
.col-sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--ink-3);
  margin-top: 6px;
  text-transform: uppercase;
}
.compare-table thead .col-stn .col-sub { color: var(--brand-lime); }

.compare-table tbody tr { border-bottom: 1px solid var(--line-2); }
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table td {
  padding: 18px 24px;
  vertical-align: top;
  color: var(--ink-2);
}
.compare-table td.row-label {
  font-weight: 500;
  color: var(--ink);
  width: 28%;
}
.compare-table td.cell-stn {
  background: rgba(2,193,216,0.05);
  color: var(--ink);
  font-weight: 500;
  position: relative;
}
.compare-table td.cell-stn::before {
  content: "✓";
  color: var(--brand-primary);
  font-weight: 700;
  margin-right: 8px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 60px 1fr 30px;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  text-align: left;
  font-family: var(--sans);
}
.faq-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--ink-3);
}
.faq-q-text {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.faq-toggle {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--brand-primary);
  text-align: right;
}
.faq-a {
  padding: 0 24px 32px 84px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-3);
  max-width: 800px;
}
.faq-item.open { background: var(--paper); }

/* ============================================================
   CALCULATOR
   ============================================================ */
.section-calc {
  background: linear-gradient(180deg, var(--brand-deep) 0%, var(--brand-navy) 100%);
  color: #fff;
  max-width: none;
  padding: 120px 56px;
}
.section-calc .section-head { max-width: 1280px; margin-left: auto; margin-right: auto; margin-bottom: 64px; }

.calc-card {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 56px 48px;
}
.calc-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.calc-row { display: flex; flex-direction: column; gap: 16px; }
.calc-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.calc-label-key {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.55);
}
.calc-label-val {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--brand-primary);
  letter-spacing: -0.02em;
}
.calc-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
  outline: none;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--brand-lime);
  cursor: pointer;
  border: 4px solid var(--brand-deep);
  box-shadow: 0 0 0 1px var(--brand-lime);
}
.calc-slider::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--brand-lime);
  cursor: pointer;
  border: 4px solid var(--brand-deep);
  box-shadow: 0 0 0 1px var(--brand-lime);
}
.calc-scale {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
}

.calc-result {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1.4fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
}
.result-block { display: flex; flex-direction: column; gap: 8px; }
.result-key {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}
.result-val {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #fff;
}
.result-muted { color: rgba(255,255,255,0.45); text-decoration: line-through; text-decoration-color: rgba(255,255,255,0.2); }
.result-arrow {
  font-family: var(--serif);
  font-size: 32px;
  color: rgba(255,255,255,0.3);
}
.result-block-big .result-val.result-big {
  font-size: 64px;
  color: var(--brand-lime);
}
.calc-foot {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  font-style: italic;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  max-width: 720px;
}

/* ============================================================
   BOOK
   ============================================================ */
.section-book {
  background: var(--brand-deep);
  color: #fff;
  max-width: none;
  padding: 120px 56px;
}
.book-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.book-headline {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 400;
  margin: 16px 0 20px;
  letter-spacing: -0.02em;
  color: #fff;
}
.book-lede {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin: 0 0 40px;
  max-width: 480px;
}

.book-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}
.book-cta {
  display: block;
  background: rgba(2,193,216,0.08);
  border: 1px solid rgba(2,193,216,0.3);
  border-radius: 14px;
  padding: 24px 28px;
  cursor: pointer;
  transition: all .2s;
}
.book-cta:hover {
  background: rgba(2,193,216,0.12);
  border-color: var(--brand-primary);
  transform: translateY(-1px);
}
.book-cta-alt {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.1);
  cursor: default;
}
.book-cta-alt:hover { transform: none; }
.book-cta-key {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--brand-lime);
  margin-bottom: 8px;
}
.book-cta-alt .book-cta-key { color: rgba(255,255,255,0.5); }
.book-cta-title {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.1;
  margin-bottom: 6px;
  color: #fff;
  letter-spacing: -0.01em;
}
.book-cta-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.book-or {
  font-family: var(--serif);
  font-style: italic;
  color: rgba(255,255,255,0.35);
  text-align: center;
  font-size: 16px;
}

.book-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
}
.bc-key {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.4);
  margin-right: 12px;
}

/* airtable embed wrap */
.airtable-wrap {
  background: #fff;
  color: var(--ink);
  border-radius: 14px;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-head-airtable { margin-bottom: 0; }
.airtable-embed {
  width: 100%;
  min-height: 720px;
  display: block;
  border-radius: 12px;
}

/* form */
.brief-form {
  background: #fff;
  color: var(--ink);
  border-radius: 20px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-head { margin-bottom: 8px; }
.form-key {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--brand-primary);
  margin-bottom: 8px;
}
.form-title {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.field { display: flex; flex-direction: column; gap: 6px; }
.field span {
  font-size: 12px;
  color: var(--ink-3);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.field input, .field select {
  font-family: var(--sans);
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color .15s;
}
.field input:focus, .field select:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(2,193,216,0.12);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-foot {
  font-size: 12px;
  color: var(--ink-3);
  text-align: center;
  margin-top: 4px;
}

.form-success {
  background: #fff;
  color: var(--ink);
  border-radius: 20px;
  padding: 56px 36px;
  text-align: center;
}
.success-mark {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--brand-lime);
  color: var(--brand-deep);
  font-size: 28px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.success-title {
  font-family: var(--serif);
  font-size: 32px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.success-text {
  font-size: 15px;
  color: var(--ink-3);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   SECTION CTA (reusable inline at end of sections)
   ============================================================ */
.section-cta {
  margin-top: 64px;
  padding: 32px 40px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.section-cta-light {
  background: var(--paper);
  border: 1px solid var(--line);
}
.section-cta-dark {
  background: rgba(2,193,216,0.08);
  border: 1px solid rgba(2,193,216,0.25);
}
.section-cta-text {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  flex: 1;
  min-width: 280px;
}
.section-cta-light .section-cta-text { color: var(--ink); }
.section-cta-dark .section-cta-text { color: #fff; }
.section-cta-wrap-dark { max-width: 1100px; margin: 0 auto; }

.btn-dark {
  background: var(--brand-deep);
  color: #fff;
  border-color: var(--brand-deep);
  font-weight: 600;
}
.btn-dark:hover { background: var(--brand-navy); border-color: var(--brand-navy); transform: translateY(-1px); }

/* ============================================================
   STICKY FLOATING CTA
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 80px);
  background: var(--brand-deep);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.25), 0 0 0 1px rgba(2,193,216,0.4);
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: transform .32s cubic-bezier(.2,.8,.2,1), opacity .25s ease;
  z-index: 90;
}
.sticky-cta-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}
.sticky-cta:hover {
  background: var(--brand-navy);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3), 0 0 0 1px var(--brand-primary);
}
.sticky-cta-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand-lime);
  box-shadow: 0 0 8px var(--brand-lime);
}
.sticky-cta-arrow { color: var(--brand-primary); font-size: 16px; }

@media (max-width: 640px) {
  .sticky-cta { bottom: 16px; padding: 12px 18px; font-size: 13px; }
  .section-cta { padding: 24px; }
  .section-cta-text { font-size: 22px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 64px 56px 32px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 56px;
  margin-bottom: 56px;
}
.footer-logo { height: 64px; width: auto; margin-bottom: 14px; }
.footer-tag {
  font-size: 13px;
  color: var(--ink-3);
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-key {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-3);
  margin-bottom: 6px;
}
.footer-col a {
  font-size: 14px;
  color: var(--ink-2);
  cursor: pointer;
}
.footer-col a:hover { color: var(--brand-primary); }

.footer-base {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  text-transform: uppercase;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .topnav { display: none; }
  .topbar { padding: 18px 24px; }
  .hero-inner { padding: 40px 24px 56px; }
  .hero-headline { font-size: 56px; line-height: 1.02; word-break: break-word; }
  .section { padding: 80px 24px; }
  .section-dark, .section-calc, .section-book { padding-left: 24px; padding-right: 24px; }
  .hero-meta { grid-template-columns: 1fr; gap: 24px; align-items: flex-start; }
  .meta-stat { align-items: center; }
  .stat-num { font-size: 88px; }
  .stat-num .pct { font-size: 50px; }
  .meta-divider { display: none; }
  .meta-bullets { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .specialties-grid { grid-template-columns: 1fr 1fr; }
  .calc-controls { grid-template-columns: 1fr; gap: 32px; }
  .calc-result { grid-template-columns: 1fr; gap: 16px; }
  .result-arrow { display: none; }
  .book-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-base { flex-direction: column; gap: 8px; }
  .compare-wrap { overflow-x: auto; }
  .compare-table { min-width: 800px; }
  .testimonial { padding: 40px 28px 32px; }
  .testimonial blockquote { font-size: 24px; }
  .quote-mark { font-size: 100px; left: 16px; top: 0; }
  .section-head { margin-bottom: 48px; }
  .section-lede { font-size: 16px; margin-top: 20px; }
}
@media (max-width: 640px) {
  .topbar { padding: 14px 16px; gap: 8px; }
  .topbar .btn-pill { font-size: 12px; padding: 8px 12px; }
  .brand-logo { height: 44px; }
  .hero-inner { padding: 32px 16px 48px; }
  .hero-headline { font-size: 44px; line-height: 1.04; margin-bottom: 32px; word-break: break-word; }
  .hero-eyebrow { font-size: 10px; margin-bottom: 24px; padding: 6px 12px; }
  .stat-num { font-size: 72px; }
  .stat-num .pct { font-size: 42px; }
  .stat-label { font-size: 14px; max-width: 100%; }
  .hero-cta { gap: 12px; }
  .cta-trust { margin-left: 0; font-size: 12px; }
  .logos-row { padding: 24px 16px; }
  .logos-track { gap: 12px; }
  .section { padding: 64px 16px; }
  .section-dark, .section-calc, .section-book { padding-left: 16px; padding-right: 16px; }
  .why-card { padding: 32px 24px; min-height: auto; }
  .why-title { font-size: 24px; }
  .steps { grid-template-columns: 1fr; }
  .step-num { font-size: 48px; }
  .step-title { font-size: 22px; }
  .specialties-grid { grid-template-columns: 1fr; }
  .specialty { padding: 22px 20px; }
  .field-row { grid-template-columns: 1fr; }
  .calc-card { padding: 32px 22px; }
  .calc-label-val { font-size: 28px; }
  .result-val { font-size: 32px; }
  .result-block-big .result-val.result-big { font-size: 44px; }
  .brief-form { padding: 28px 22px; }
  .book-cta { padding: 20px 22px; }
  .book-cta-title { font-size: 22px; }
  .faq-q { grid-template-columns: 36px 1fr 24px; gap: 14px; padding: 22px 0; }
  .faq-q-text { font-size: 19px; }
  .faq-a { padding: 0 0 24px 50px; font-size: 15px; }
  .testimonial blockquote { font-size: 20px; }
  .testimonial { padding: 36px 22px 28px; }
  .quote-mark { font-size: 80px; left: 12px; }
}
