/* ── Variables ────────────────────────────────────────────────────────────────── */
:root {
  --blue:        #0D86EC;
  --blue-light:  #46C8F6;
  --green:       #23BA78;
  --navy:        #1E2B4A;
  --navy-dark:   #141F36;
  --white:       #FFFFFF;
  --gray-50:     #F8FAFC;
  --gray-100:    #F1F5F9;
  --gray-200:    #E2E8F0;
  --gray-500:    #64748B;
  --gray-600:    #475569;
  --gray-900:    #0F172A;
  --gradient:    linear-gradient(135deg, #0D86EC 0%, #46C8F6 45%, #23BA78 100%);
  --radius:      1rem;
  --radius-btn:  100px;
  --shadow:      0 4px 24px -8px rgba(14, 30, 50, 0.13);
  --shadow-lg:   0 12px 36px -10px rgba(14, 30, 50, 0.20);
  --font:        'Montserrat', sans-serif;
}

/* ── Reset ────────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; scroll-padding-top: 66px; }
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ── Base ─────────────────────────────────────────────────────────────────────── */
body {
  font-family: var(--font);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gray-900);
  background: var(--white);
}

/* ── Typography ───────────────────────────────────────────────────────────────── */
h1, h2, h3 {
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.75rem); }
h3 { font-size: 1rem; line-height: 1.4; }

.eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}
.eyebrow--muted { color: var(--navy); opacity: 0.5; }

/* ── Layout ───────────────────────────────────────────────────────────────────── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 768px) { .container { padding: 0 2rem; } }

.section { padding: 5rem 0; }
.section--gray { background: var(--gray-50); }

.section--gradient {
  background: linear-gradient(150deg, #141F36 0%, #1a3460 55%, #0e2546 100%);
  position: relative;
  overflow: hidden;
}
.section--gradient::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 134, 236, 0.16) 0%, transparent 68%);
  pointer-events: none;
}
.section--gradient::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(35, 186, 120, 0.1) 0%, transparent 68%);
  pointer-events: none;
}

.section-header { max-width: 660px; margin-bottom: 3rem; }
.section-header--light .eyebrow { color: var(--blue-light); }
.section-desc { margin-top: 0.8rem; color: var(--gray-600); font-size: 1.05rem; line-height: 1.7; }

.text-white  { color: var(--white); }
.text-faded  { color: rgba(255, 255, 255, 0.65); }

/* ── Buttons ──────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-btn);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px) scale(1.015); }

.btn--gradient {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 8px 28px -10px rgba(13, 134, 236, 0.5);
}
.btn--gradient:hover { box-shadow: 0 14px 36px -10px rgba(13, 134, 236, 0.6); }

.btn--dark {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 6px 20px -10px rgba(14, 30, 50, 0.45);
}
.btn--dark:hover { background: var(--navy-dark); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.18); }

.btn--outline {
  background: transparent;
  border: 1.5px solid var(--gray-200);
  color: var(--navy);
}
.btn--outline:hover { border-color: var(--blue); color: var(--blue); }

.btn--white {
  background: var(--white);
  color: var(--navy);
  font-weight: 600;
  box-shadow: 0 4px 18px -6px rgba(255, 255, 255, 0.18);
}
.btn--white:hover { background: var(--gray-50); }

.btn--confirm {
  background: var(--gradient);
  color: var(--white);
  padding: 0.38rem 0.9rem;
  border-radius: var(--radius-btn);
  font-size: 0.78rem;
  font-weight: 600;
  flex-shrink: 0;
}

.btn--full { width: 100%; justify-content: center; padding: 1rem 1.75rem; font-size: 0.975rem; }

/* ── Intro ────────────────────────────────────────────────────────────────────── */
.intro {
  position: relative;
  background: var(--navy-dark);
  height: 100vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.intro::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(to bottom, transparent, var(--navy));
  pointer-events: none;
}

.intro__paths {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.intro-path {
  stroke-dasharray: 0.3 0.7;
  stroke-dashoffset: 0;
  animation: introPathTravel linear infinite;
}

@keyframes introPathTravel {
  to { stroke-dashoffset: -1; }
}

.intro__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.intro__logo {
  width: 300px;
  opacity: 0;
  animation: introFadeUp 1s ease .2s forwards;
}

.intro__btn {
  background: var(--white);
  color: var(--navy-dark);
  padding: .7rem 2.25rem;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: .875rem;
  opacity: 0;
  animation: introFadeUp .9s ease .65s forwards;
}
.intro__btn:hover { background: var(--gray-100); }

.intro__tagline {
  color: rgba(255,255,255,.5);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: 0;
  animation: introFadeUp .9s ease .5s forwards;
}

.intro__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  color: rgba(255,255,255,.35);
  font-size: 1.4rem;
  opacity: 0;
  animation: introFadeUp .9s ease 1s forwards, introScrollBob 2s ease-in-out 1.9s infinite;
  z-index: 2;
}
.intro__scroll:hover { color: rgba(255,255,255,.7); }

@keyframes introFadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes introScrollBob {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50%       { opacity: 1; transform: translateY(6px); }
}

/* ── Navigation ───────────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gray-200);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 66px;
}
.nav__logo img { height: 28px; }
.nav__links {
  display: none;
  gap: 2rem;
  align-items: center;
}
.nav__links a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-600);
  transition: color 0.15s;
}
.nav__links a:hover { color: var(--navy); }
@media (min-width: 768px) { .nav__links { display: flex; } }

/* ── Hero ─────────────────────────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 0 5rem;
}
.hero__inner {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 960px) {
  .hero__inner { grid-template-columns: 1.1fr 0.9fr; }
}

.hero__sub {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78em;
  display: block;
}

.hero__desc {
  margin-top: 1.25rem;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
  line-height: 1.72;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 2rem;
  align-items: center;
}
.hero__stat { text-align: left; }
.hero__stat-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__stat-label {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.1rem;
}
.hero__stat-divider {
  width: 1px;
  height: 38px;
  background: rgba(255, 255, 255, 0.12);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* Hero card */
.hero__card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.35rem;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero__card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.card-label {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.25rem;
  display: block;
}
.card-label--sm {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.65rem;
  display: block;
}
.card-company {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
}

.badge {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.28rem 0.7rem;
  border-radius: 100px;
  white-space: nowrap;
}
.badge--processing {
  background: rgba(13, 134, 236, 0.2);
  color: var(--blue-light);
  border: 1px solid rgba(13, 134, 236, 0.3);
}

.hero__card-matches { margin-bottom: 1.25rem; }

.match {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.58rem 0.75rem;
  border-radius: 0.6rem;
  margin-bottom: 0.4rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.match--strong {
  background: rgba(35, 186, 120, 0.1);
  border-color: rgba(35, 186, 120, 0.2);
}

.match__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.match__dot--strong  { background: var(--green); }
.match__dot--partial { background: var(--blue-light); }
.match__dot--weak    { background: rgba(255, 255, 255, 0.22); }

.match__info { flex: 1; min-width: 0; }
.match__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.match__tag          { font-size: 0.7rem; font-weight: 600; color: var(--green); display: block; }
.match__tag--partial { color: var(--blue-light); }
.match__tag--weak    { color: rgba(255, 255, 255, 0.35); }

.hero__card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.38);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 0.85rem;
  margin-top: 0.1rem;
}

/* ── Cards grid ───────────────────────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 580px)  { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .cards-grid { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.card__icon {
  width: 2.25rem; height: 2.25rem;
  border-radius: 0.55rem;
  background: var(--gradient);
  margin-bottom: 1rem;
}
.card__icon--navy { background: var(--navy); }
.card__title { margin-bottom: 0.6rem; }
.card__body { font-size: 0.875rem; line-height: 1.68; color: var(--gray-600); }

/* ── Timeline (vertical — Block 2 & 6) ───────────────────────────────────────── */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
}

.timeline__item {
  display: grid;
  grid-template-columns: 3.5rem 2px 1fr;
  gap: 0 1.25rem;
  align-items: stretch;
}

.timeline__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  z-index: 1;
  box-shadow: var(--shadow);
}
.timeline__icon--gradient { background: var(--gradient); }

.timeline__connector {
  width: 2px;
  background: var(--gray-200);
  margin: 0 auto;
  min-height: 2rem;
}
.timeline__connector--last { background: transparent; }

.timeline__content {
  padding: 0 0 2rem 0;
}
.timeline__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
  margin-top: 0.65rem;
}
.timeline__body { font-size: 0.875rem; color: var(--gray-600); line-height: 1.7; }

/* ── Timeline horizontal (Block 3 — How it works) ────────────────────────────── */
.timeline--horizontal {
  flex-direction: row;
  max-width: 100%;
  align-items: flex-start;
  gap: 0;
  overflow-x: auto;
}

.timeline__item--step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 140px;
  position: relative;
}

.timeline__connector--h {
  position: absolute;
  top: 1.75rem;
  left: 50%;
  right: -50%;
  width: 100%;
  height: 2px;
  background: var(--gray-200);
  margin: 0;
  min-height: unset;
  z-index: 0;
}
.timeline__connector--last.timeline__connector--h { background: transparent; }

.timeline__item--step .timeline__icon {
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
}

.timeline__content--center {
  text-align: center;
  padding: 0 0.5rem;
}
.timeline__content--center .step__num {
  text-align: center;
  margin-bottom: 0.4rem;
}
.timeline__content--center .step__title {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}
.timeline__content--center .step__body {
  font-size: 0.78rem;
}

@media (max-width: 768px) {
  .timeline--horizontal {
    flex-direction: column;
    align-items: flex-start;
    overflow-x: visible;
  }
  .timeline__item--step {
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
    min-width: unset;
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .timeline__connector--h { display: none; }
  .timeline__content--center { text-align: left; padding: 0; }
  .timeline__content--center .step__num { text-align: left; }
}

/* Step styles used inside horizontal timeline */
.step__num {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.6rem;
}
.step__title { margin-bottom: 0.5rem; font-weight: 600; color: var(--navy); }
.step__body { font-size: 0.82rem; color: var(--gray-600); line-height: 1.62; }

/* ── Pilot spotlight ──────────────────────────────────────────────────────────── */
.pilot-spotlight {
  background: var(--navy);
  border-radius: 1.5rem;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 20px 60px -20px rgba(14, 30, 50, 0.4);
}

.pilot-spotlight__label {
  background: var(--gradient);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.55rem 1.75rem;
  letter-spacing: 0.04em;
}
.pilot-spotlight__flame { margin-right: 0.3rem; }

.pilot-spotlight__inner {
  display: grid;
  gap: 2rem;
  padding: 2rem 2rem 2.25rem;
}
@media (min-width: 768px) {
  .pilot-spotlight__inner { grid-template-columns: 1.2fr 0.8fr; align-items: start; }
}

.pilot-spotlight__tier {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.5rem;
}
.pilot-spotlight__headline {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.85rem;
}
.pilot-spotlight__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.pilot-spotlight__perks {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.pilot-spotlight__perks li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.5;
}

.pilot-spotlight__deadline {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.pilot-spotlight__deadline strong { color: rgba(255,255,255,0.7); }

.pilot-spotlight__right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pilot-spotlight__saving {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1.1rem;
  padding: 1.5rem;
  text-align: center;
}
.pilot-spotlight__saving-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
}
.pilot-spotlight__saving-amount {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.pilot-spotlight__saving-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

.pilot-spotlight__wms {
  background: rgba(35, 186, 120, 0.1);
  border: 1px solid rgba(35, 186, 120, 0.2);
  border-radius: 1rem;
  padding: 1.25rem;
}
.pilot-spotlight__wms-title {
  font-size: 0.84rem;
  font-weight: 600;
  color: #4ade80;
  margin-bottom: 0.4rem;
}
.pilot-spotlight__wms-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

.pricing-other-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 1rem;
}

.pricing-grid--compact { grid-template-columns: 1fr; }
@media (min-width: 580px) { .pricing-grid--compact { grid-template-columns: repeat(2, 1fr); } }

.pricing-card--compact { padding: 1.5rem; }

/* ── Form pitch pilot badge ───────────────────────────────────────────────────── */
.form-pitch__pilot {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  background: linear-gradient(135deg, rgba(13,134,236,0.08), rgba(35,186,120,0.08));
  border: 1px solid rgba(13,134,236,0.2);
  border-radius: 0.85rem;
  padding: 1rem 1.25rem;
  margin-top: 1.25rem;
}
.form-pitch__pilot-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  margin-top: 0.3rem;
  box-shadow: 0 0 0 3px rgba(35,186,120,0.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(35,186,120,0.2); }
  50%       { box-shadow: 0 0 0 6px rgba(35,186,120,0.1); }
}
.form-pitch__pilot-title {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.form-pitch__pilot-sub {
  font-size: 0.78rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ── Calculator ───────────────────────────────────────────────────────────────── */
.calc {
  display: grid;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 1.5rem;
  padding: 2rem;
  backdrop-filter: blur(8px);
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) { .calc { grid-template-columns: 1fr 1fr; } }

.calc__plan-toggle {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.calc__plan-btn {
  flex: 0 0 auto;
  padding: .55rem 1rem;
  border-radius: var(--radius-btn);
  border: 1px solid rgba(255,255,255,.2);
  background: transparent;
  color: rgba(255,255,255,.6);
  font-size: .8rem;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: all .15s ease;
  white-space: nowrap;
}
.calc__plan-btn:hover { border-color: rgba(255,255,255,.45); color: var(--white); }
.calc__plan-btn--active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.calc__label-note {
  font-weight: 400;
  opacity: 0.55;
  font-size: .75rem;
}

.calc__pilot-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(13,134,236,.1);
  border: 1px solid rgba(13,134,236,.25);
  border-radius: .85rem;
  padding: .9rem 1.1rem;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
  user-select: none;
}
.calc__pilot-card:hover {
  background: rgba(13,134,236,.16);
  border-color: rgba(13,134,236,.45);
}
.calc__pilot-card.is-active {
  background: rgba(13,134,236,.22);
  border-color: var(--blue);
}
.calc__pilot-card__left {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.calc__pilot-card__flame { font-size: 1.1rem; flex-shrink: 0; }
.calc__pilot-card__title {
  font-size: .85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .15rem;
}
.calc__pilot-card__desc {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
}
.calc__pilot-card__toggle {
  width: 40px;
  height: 22px;
  border-radius: 100px;
  background: rgba(255,255,255,.15);
  position: relative;
  flex-shrink: 0;
  transition: background .2s ease;
}
.calc__pilot-card__knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  transition: transform .2s ease;
  display: block;
}
.calc__pilot-card.is-active .calc__pilot-card__toggle { background: var(--blue); }
.calc__pilot-card.is-active .calc__pilot-card__knob { transform: translateX(18px); }

.pricing-card__pilot-note {
  text-align: center;
  font-size: .75rem;
  color: var(--blue);
  margin-top: .75rem;
  font-weight: 600;
}

.calc__field { margin-bottom: 1.5rem; }
.calc__field:last-child { margin-bottom: 0; }
.calc__inputs .btn { margin-top: 1.25rem; }
.calc__field label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0.65rem;
}

.calc__slider-wrap { display: block; }

input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.18);
  outline: none;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--blue);
  cursor: pointer;
  box-shadow: 0 0 0 3px rgba(13, 134, 236, 0.28);
  transition: box-shadow 0.15s;
}
input[type="range"]::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 5px rgba(13, 134, 236, 0.2);
}
input[type="range"]::-moz-range-thumb {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--blue);
  border: none;
  cursor: pointer;
}

.calc__output {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  flex-shrink: 0;
  font-style: normal;
}

.calc__field--rate { display: flex; align-items: center; gap: 1rem; }
.calc__field--rate label { margin-bottom: 0; flex-shrink: 0; }

.calc__number {
  width: 100px;
  padding: 0.65rem 1rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.15s;
}
.calc__number:focus { border-color: var(--blue); }
.calc__number::-webkit-inner-spin-button,
.calc__number::-webkit-outer-spin-button { opacity: 0.5; }

/* Results */
.calc__tier-rec {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.calc__tier-rec strong {
  color: var(--blue-light);
  font-weight: 600;
}

.calc__results {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 1.1rem;
  padding: 1.5rem;
}

.calc__result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.calc__result-row--highlight { padding-top: 0.5rem; }

.calc__result-label { font-size: 0.875rem; color: rgba(255, 255, 255, 0.6); }
.calc__result-label--big { font-size: 1rem; font-weight: 600; color: var(--white); }

.calc__result-value { font-size: 1.05rem; font-weight: 600; color: var(--white); }
.calc__result-value--muted {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
  font-weight: 400;
  font-size: 0.95rem;
}
.calc__result-value--big {
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.calc__result-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.09);
  margin: 0.25rem 0;
}

.calc__result-badge {
  background: rgba(35, 186, 120, 0.14);
  border: 1px solid rgba(35, 186, 120, 0.25);
  border-radius: 0.6rem;
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #4ade80;
  text-align: center;
}
.calc__result-badge span { font-size: 1.15rem; }

.calc__disclaimer {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.55;
  margin-top: auto;
}

/* ── Pricing ──────────────────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.pricing-card .pricing-card__features {
  flex: 1;
}
.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.pricing-card--featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), var(--shadow);
  transform: translateY(-8px);
}
.pricing-card--featured:hover { transform: translateY(-11px); }

.pricing-card__badge {
  position: absolute;
  top: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card__top { margin-bottom: 1.5rem; }
.pricing-card__tier { font-size: 1rem; font-weight: 600; color: var(--navy); }
.pricing-card__note { font-size: 0.79rem; color: var(--gray-500); margin: 0.2rem 0 0.85rem; }
.pricing-card__price {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1;
}
.pricing-card__price span { font-size: 1rem; font-weight: 400; color: var(--gray-500); letter-spacing: 0; }

.pricing-card__features {
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.pricing-card__features li {
  font-size: 0.875rem;
  color: var(--gray-600);
  padding-left: 1.3rem;
  position: relative;
  line-height: 1.5;
}
.pricing-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 600;
}

/* ── Competitor note ──────────────────────────────────────────────────────────── */
.competitor-note {
  margin-top: 2.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.65;
}
.competitor-note strong { color: var(--navy); }

/* ── Demo form ────────────────────────────────────────────────────────────────── */
.form-wrap {
  display: grid;
  gap: 3rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
@media (min-width: 900px) {
  .form-wrap { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
}

.form-pitch h2 { margin-bottom: 1rem; }
.form-pitch p  { font-size: 0.95rem; color: var(--gray-600); line-height: 1.72; margin-bottom: 1rem; }

.form-pitch__list {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.form-pitch__list li {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  padding-left: 1.3rem;
  position: relative;
}
.form-pitch__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
}

.form-pitch__note { font-size: 0.82rem; color: var(--gray-500); font-style: italic; }

.form { display: flex; flex-direction: column; gap: 1rem; }

.form__row { display: grid; gap: 1rem; }
@media (min-width: 580px) { .form__row { grid-template-columns: 1fr 1fr; } }

.form__field { display: flex; flex-direction: column; gap: 0.35rem; }
.form__field label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--navy);
}
.label-opt { font-weight: 400; color: var(--gray-500); }

.form__field input,
.form__field textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 0.7rem;
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--white);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  resize: vertical;
}
.form__field input:focus,
.form__field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(13, 134, 236, 0.1);
}
.form__field input::placeholder,
.form__field textarea::placeholder { color: var(--gray-200); }

.form__field--error input,
.form__field--error textarea {
  border-color: #f43f5e;
  background: #fff1f2;
}
.form__error {
  font-size: 0.8rem;
  color: #e11d48;
  display: block;
}
.form__success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 0.7rem;
  padding: 0.875rem 1.25rem;
  font-size: 0.9rem;
  color: #15803d;
  line-height: 1.5;
}
.form__disclaimer {
  font-size: 0.8rem;
  color: var(--gray-500);
  text-align: center;
  margin-top: 0.25rem;
}

/* ── Footer ───────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.6);
  padding-top: 3.5rem;
}
.footer__inner {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
@media (min-width: 768px) { .footer__inner { grid-template-columns: 1.6fr 1fr 1fr; } }

.footer__brand img   { height: 22px; margin-bottom: 0.85rem; }
.footer__brand p     { font-size: 0.875rem; line-height: 1.65; color: rgba(255,255,255,0.75); }

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__col-title {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.15rem;
}
.footer__col a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.15s;
}
.footer__col a:hover { color: var(--white); }
.footer__partner-link { color: var(--blue-light) !important; }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
}
.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer__bottom a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.15s;
}
.footer__bottom a:hover { color: var(--white); }

/* ── Scroll reveal ────────────────────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive tweaks ────────────────────────────────────────────────────────── */
@media (max-width: 767px) {

  /* Intro */
  .intro { min-height: 100svh; }
  .intro__logo { width: 200px; }
  .intro__tagline { max-width: 210px; letter-spacing: .16em; }
  .intro__btn { padding: .6rem 1.75rem; font-size: .8rem; }

  /* Nav */
  .nav__inner { height: 56px; }
  .nav__logo img { height: 26px; }
  .nav .btn { padding: 0.55rem 1.1rem; font-size: 0.8rem; }

  /* Hero */
  .hero { padding: 2.5rem 0 3rem; }
  .hero h1 { font-size: clamp(2rem, 7vw, 3rem); }
  .hero__desc { font-size: .95rem; }
  .hero__stats { gap: 1rem; flex-wrap: wrap; }
  .hero__stat-value { font-size: 1.5rem; }
  .hero__stat-divider { display: none; }
  .hero__ctas { flex-direction: column; gap: .75rem; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .hero__card { margin-top: 1.5rem; }

  /* Sections */
  .section { padding: 3rem 0; }
  .section-header { margin-bottom: 2rem; }
  .section-header h2 { font-size: clamp(1.5rem, 5vw, 2rem); }

  /* Timeline */
  .timeline__item { gap: 1rem; }

  /* How it works horizontal timeline */
  .timeline--horizontal { flex-direction: column; gap: 1.5rem; }
  .timeline--horizontal .timeline__connector--h { display: none; }

  /* Calculator */
  .calc { grid-template-columns: 1fr; padding: 1.25rem; gap: 1.5rem; }
  .calc__label-note { display: none; }
  .calc__plan-btn { font-size: 0.75rem; padding: 0.55rem 0.9rem; }
  .calc__field--rate { display: block; }
  .calc__field--rate label { margin-bottom: 0.65rem; }
  .calc__number { width: 100%; }
  .calc__results { padding: 1rem; gap: 0.6rem; }
  .calc__result-row { gap: 0.5rem; }
  .calc__result-label { font-size: 0.8rem; }
  .calc__result-value { font-size: 0.95rem; }
  .calc__result-value--big { font-size: 1.5rem; }
  .calc__result-badge { font-size: 0.8rem; }
  .calc__disclaimer { font-size: 0.7rem; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card--featured { transform: none; }
  .pricing-grid--compact { grid-template-columns: 1fr; }

  /* Pilot spotlight */
  .pilot-spotlight__inner { flex-direction: column; }
  .pilot-spotlight__right { display: none; }

  /* Why Sortiq */
  .cards-grid { grid-template-columns: 1fr; }

  /* Form */
  .form-wrap { padding: 1.5rem; }
  .form__row { grid-template-columns: 1fr; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }

  /* Cookie banner */
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .cookie-banner__actions { width: 100%; justify-content: flex-end; }
}

/* ── Cookie banner ────────────────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 680px;
  background: var(--navy-dark);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  z-index: 9999;
  box-shadow: var(--shadow-lg);
}
.cookie-banner__text {
  flex: 1;
  font-size: .8125rem;
  color: rgba(255,255,255,.7);
  line-height: 1.55;
  margin: 0;
}
.cookie-banner__text a { color: var(--blue-light); }
.cookie-banner__text a:hover { text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: .625rem; flex-shrink: 0; }
.cookie-banner__btn {
  padding: .5rem 1.25rem;
  border-radius: var(--radius-btn);
  font-size: .8125rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: var(--font);
}
.cookie-banner__btn--ghost {
  background: transparent;
  color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.2);
}
.cookie-banner__btn--ghost:hover { border-color: rgba(255,255,255,.45); color: var(--white); }
.cookie-banner__btn--accept {
  background: var(--gradient);
  color: var(--white);
}
.cookie-banner__btn--accept:hover { opacity: .9; }
