/* ============================================================
   EVOLV Contractor Solutions — styles.css
   Design System: Dark theme, amber accent, Inter typeface
   ============================================================ */

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
  /* Colors */
  --bg-primary:       #0D0D0D;
  --bg-secondary:     #1A1A1A;
  --bg-card:          #222222;
  --accent:           #D4860A;
  --accent-hover:     #F0A030;
  --text-primary:     #FFFFFF;
  --text-secondary:   #94A3B8;
  --text-muted:       #6B7280;
  --border-default:   #2D2D2D;
  --border-accent:    #D4860A;

  /* Typography */
  --font-family:      'Inter', system-ui, -apple-system, sans-serif;
  --font-body:        17px;
  --line-height:      1.7;

  /* Spacing */
  --section-padding:  100px;
  --container-max:    1100px;
  --container-pad:    clamp(20px, 5vw, 60px);

  /* Transitions */
  --transition-fast:  0.18s ease;
  --transition-base:  0.28s ease;
  --transition-slow:  0.45s ease;

  /* Border radius */
  --radius-sm:        6px;
  --radius-md:        10px;
  --radius-lg:        16px;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-body);
  line-height: var(--line-height);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* ── Utility: Container ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* ── Utility: Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition:
    background-color var(--transition-fast),
    color var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast);
  white-space: nowrap;
  min-height: 44px;
  padding: 12px 24px;
  position: relative;
  overflow: hidden;
}

/* Amber shimmer pseudo-element */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.55s ease;
  pointer-events: none;
}

.btn:hover::after {
  transform: translateX(100%);
}

/* Primary amber button */
.btn--primary {
  background-color: var(--accent);
  color: #0D0D0D;
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background-color: var(--accent-hover);
  box-shadow: 0 0 0 3px rgba(212, 134, 10, 0.35);
  transform: translateY(-1px);
}

.btn--primary:active {
  transform: translateY(0);
}

/* Large variant */
.btn--large {
  font-size: 17px;
  padding: 16px 36px;
  min-height: 56px;
  border-radius: var(--radius-md);
}

/* Full-width variant */
.btn--full {
  width: 100%;
  font-size: 17px;
  padding: 18px 24px;
  min-height: 58px;
  border-radius: var(--radius-md);
}

/* Nav button */
.btn--nav {
  background-color: var(--accent);
  color: #0D0D0D;
  font-size: 14px;
  padding: 10px 20px;
  min-height: 40px;
}

.btn--nav:hover,
.btn--nav:focus-visible {
  background-color: var(--accent-hover);
  box-shadow: 0 0 0 3px rgba(212, 134, 10, 0.35);
}

/* Focus ring for accessibility */
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ── Utility: Section Shared ────────────────────────────────── */
.section {
  padding-block: var(--section-padding);
}

.section__header {
  text-align: center;
  margin-bottom: 60px;
}

.section__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.section__sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 520px;
  margin-inline: auto;
}

/* ── Utility: Fade-in Animation ─────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease calc(var(--delay, 0s)),
    transform 0.65s ease calc(var(--delay, 0s));
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Logo Image ─────────────────────────────────────────────── */
.logo-img {
  display: block;
  object-fit: contain;
}

.logo-img--nav {
  height: 54px;
  width: auto;
  max-width: 220px;
}

.logo-img--footer {
  height: 36px;
  width: auto;
  max-width: 160px;
  opacity: 0.9;
}

/* ── Logo Component (legacy SVG — kept for reference) ────────── */
.logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
}

.logo__mark {
  display: flex;
  align-items: center;
  gap: 6px;
}

.logo__chevrons {
  width: 22px;
  height: 17px;
  flex-shrink: 0;
}

.logo__wordmark {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--text-primary);
}

.logo__subtitle {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-left: 28px;
}

.logo__bar {
  height: 2px;
  width: 100%;
  background-color: var(--accent);
  border-radius: 2px;
  margin-top: 3px;
}

.logo--small .logo__wordmark {
  font-size: 16px;
}

.logo--small .logo__chevrons {
  width: 18px;
  height: 14px;
}

.logo--small .logo__subtitle {
  font-size: 9px;
}

/* ── SECTION 1: Navigation ──────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding-block: 18px;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background-color var(--transition-base),
    border-color var(--transition-base),
    padding-block var(--transition-base),
    backdrop-filter var(--transition-base);
}

.nav.is-scrolled {
  background-color: rgba(13, 13, 13, 0.96);
  border-bottom-color: var(--border-default);
  padding-block: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav__logo {
  text-decoration: none;
  flex-shrink: 0;
}

/* ── SECTION 2: Hero ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 130px;
  padding-bottom: 80px;
  background-color: var(--bg-primary);
  overflow: hidden;
}

/* Amber gradient glow — bottom left */
.hero__glow {
  position: absolute;
  bottom: -120px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    ellipse at center,
    rgba(212, 134, 10, 0.14) 0%,
    rgba(212, 134, 10, 0.05) 45%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 680px;
}

.hero__headline {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.hero__subheadline {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  line-height: 1.2;
}

.hero__body {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero__trust {
  margin-top: 14px;
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}

/* ── SECTION 3: Money Leaks ─────────────────────────────────── */
.leaks {
  background-color: var(--bg-secondary);
}

.leaks__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}

/* Card Component */
.card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-default);
  border-left: 4px solid transparent;
  border-radius: var(--radius-md);
  padding: 28px 26px;
  position: relative;
  transition:
    border-left-color var(--transition-base),
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

/* Amber left border slides in when visible */
.card.is-visible {
  border-left-color: var(--border-accent);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(212, 134, 10, 0.15);
}

.card__number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0.75;
}

.card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.card__body {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.leaks__stat {
  text-align: center;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 700;
  color: var(--accent);
  padding: 28px 20px;
  border: 1px solid rgba(212, 134, 10, 0.25);
  border-radius: var(--radius-md);
  background-color: rgba(212, 134, 10, 0.05);
  max-width: 640px;
  margin-inline: auto;
}

/* ── SECTION 4: About Cesar ─────────────────────────────────── */
.about {
  background-color: var(--bg-primary);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__text .section__title {
  margin-bottom: 24px;
}

.about__body {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 18px;
}

.about__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.pill {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  background-color: rgba(212, 134, 10, 0.08);
  border: 1px solid rgba(212, 134, 10, 0.35);
  border-radius: 100px;
  padding: 6px 16px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

/* Photo placeholder (legacy) */
.photo-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: 480px;
  background-color: var(--bg-card);
  border: 2px solid var(--border-accent);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
}

.photo-placeholder__label {
  position: relative;
  z-index: 1;
  color: var(--text-muted);
}

/* Real headshot */
.about__headshot {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border-accent);
  display: block;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(212, 134, 10, 0.12);
}

/* ── SECTION 5: Contact Form ────────────────────────────────── */
.contact {
  background-color: var(--bg-secondary);
}

.contact__inner {
  max-width: 680px;
}

.contact__subheadline {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 600;
  color: var(--accent);
  line-height: 1.5;
  text-align: center;
}

/* Form */
.form {
  background-color: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 48px);
  margin-top: 48px;
}

.form__row--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form__group:last-of-type {
  margin-bottom: 0;
}

.form__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
}

.form__required {
  color: var(--accent);
}

.form__optional {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 13px;
}

.form__input {
  font-family: var(--font-family);
  font-size: 16px;
  color: var(--text-primary);
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  width: 100%;
  min-height: 48px;
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    background-color var(--transition-fast);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form__input::placeholder {
  color: var(--text-muted);
}

.form__input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212, 134, 10, 0.18);
  background-color: #1E1E1E;
}

.form__input:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212, 134, 10, 0.18);
}

/* Select arrow */
.form__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 44px;
}

.form__select option {
  background-color: var(--bg-card);
  color: var(--text-primary);
}

.form__textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

/* Form message (success / error) */
.form__message {
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 0;
  margin-bottom: 0;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height var(--transition-base),
    padding var(--transition-base),
    margin-bottom var(--transition-base);
}

.form__message.is-success {
  color: #4ADE80;
  background-color: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.25);
  padding: 14px 18px;
  margin-bottom: 20px;
  max-height: 100px;
}

.form__message.is-error {
  color: #F87171;
  background-color: rgba(248, 113, 113, 0.08);
  border: 1px solid rgba(248, 113, 113, 0.25);
  padding: 14px 18px;
  margin-bottom: 20px;
  max-height: 100px;
}

/* Submit button loading state */
.btn--loading {
  opacity: 0.75;
  pointer-events: none;
}

/* Below form */
.contact__below {
  margin-top: 32px;
  text-align: center;
}

.contact__email {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.contact__email a {
  color: var(--text-secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}

.contact__email a:hover {
  color: var(--accent);
}

.contact__spanish {
  font-size: 15px;
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}

/* ── SECTION 6: Footer ──────────────────────────────────────── */
.footer {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-default);
  padding-top: 48px;
  padding-bottom: 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 32px;
  padding-bottom: 40px;
}

.footer__center {
  text-align: center;
}

.footer__copy {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.footer__location {
  font-size: 13px;
  color: var(--text-muted);
  opacity: 0.7;
}

.footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.footer__email {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--transition-fast);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__email:hover {
  color: var(--accent);
}

.footer__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer__linkedin:hover {
  color: var(--accent);
}

.footer__linkedin-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Tagline bar */
.footer__tagline {
  border-top: 1px solid var(--border-default);
  padding-block: 18px;
  text-align: center;
}

.footer__tagline p {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  font-style: italic;
  letter-spacing: 0.01em;
}

/* ── Responsive: Tablet ─────────────────────────────────────── */
@media (max-width: 900px) {
  :root {
    --section-padding: 72px;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__photo {
    order: -1;
  }

  .photo-placeholder {
    max-height: 320px;
    aspect-ratio: 4 / 3;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }

  .footer__right {
    align-items: center;
  }
}

/* ── Responsive: Mobile ─────────────────────────────────────── */
@media (max-width: 600px) {
  :root {
    --section-padding: 56px;
    --container-pad: 20px;
  }

  /* Hero */
  .hero {
    padding-top: 110px;
    padding-bottom: 56px;
  }

  .hero__body {
    font-size: 16px;
  }

  .btn--large {
    width: 100%;
    font-size: 16px;
    padding: 16px 24px;
  }

  /* Cards */
  .leaks__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* About */
  .about__inner {
    gap: 36px;
  }

  /* Form */
  .form__row--2col {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form {
    padding: 24px 20px;
  }

  /* Footer */
  .footer__inner {
    gap: 20px;
  }

  .footer__logo {
    display: flex;
    justify-content: center;
  }
}

/* ── Accessibility: Reduced Motion ──────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }

  .btn::after {
    display: none;
  }
}

/* ── Hero Badge ─────────────────────────────────────────────── */
.hero__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background-color: rgba(212, 134, 10, 0.10);
  border: 1px solid rgba(212, 134, 10, 0.35);
  border-radius: 100px;
  padding: 6px 18px;
  margin-bottom: 24px;
}

/* ── SECTION 3: Proof Stats ─────────────────────────────────── */
.proof {
  background-color: var(--bg-secondary);
  padding-block: 72px;
}

.proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.proof__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.proof__number {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}

.proof__label {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 200px;
}

@media (max-width: 700px) {
  .proof__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ── SECTION 4: How It Works ────────────────────────────────── */
.how {
  background-color: var(--bg-primary);
}

.how__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 48px;
}

.how__step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid var(--border-default);
}

.how__step:last-child {
  border-bottom: none;
}

.how__step-num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  flex-shrink: 0;
  padding-top: 4px;
  min-width: 32px;
}

.how__step-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.how__step-body {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.how__guarantee {
  background-color: rgba(212, 134, 10, 0.06);
  border: 1px solid rgba(212, 134, 10, 0.30);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
}

.how__guarantee-text {
  font-size: 18px;
  color: var(--text-primary);
  line-height: 1.5;
}

.how__guarantee-text strong {
  color: var(--accent);
}

/* ── SECTION 5: Offer Stack ─────────────────────────────────── */
.offers {
  background-color: var(--bg-secondary);
}

.offers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.offer__card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  position: relative;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

.offer__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.offer__card--featured {
  border-color: var(--border-accent);
  background-color: #1E1A12;
}

.offer__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0D0D0D;
  background-color: var(--accent);
  border-radius: 100px;
  padding: 4px 14px;
  white-space: nowrap;
}

.offer__step {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  opacity: 0.8;
}

.offer__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.offer__price {
  font-size: 28px;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.1;
}

.offer__price-note {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
}

.offer__body {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}

.offer__outcome {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  border-top: 1px solid var(--border-default);
  padding-top: 14px;
  letter-spacing: 0.01em;
}

.offers__note {
  text-align: center;
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.6;
}

.offers__note strong {
  color: var(--accent);
}

/* ── SECTION 7: Pilot Program ───────────────────────────────── */
.pilot {
  background-color: var(--bg-primary);
}

.pilot__inner {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.pilot__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background-color: rgba(212, 134, 10, 0.10);
  border: 1px solid rgba(212, 134, 10, 0.35);
  border-radius: 100px;
  padding: 6px 18px;
  margin-bottom: 20px;
}

.pilot__title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 28px;
}

.pilot__body {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 18px;
  text-align: left;
}

.pilot__body--bold {
  font-weight: 600;
  color: var(--text-primary);
}

.pilot__inner .btn {
  margin-top: 16px;
}
