/* ============================================================
   ANNEX FIBER — Landing Page Styles
   Premium commercial connectivity · New York City
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* ============================================================
   1. CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Colors */
  --navy:         #0A1822;
  --navy-deep:    #060F18;
  --navy-mid:     #111E2C;
  --charcoal:     #1E2832;
  --gold:         #C2A05E;
  --gold-lt:      #D4B57A;
  --gold-dk:      #A8893E;
  --gold-alpha:   rgba(194, 160, 94, 0.18);
  --gold-rule:    rgba(194, 160, 94, 0.28);
  --ivory:        #F7F3EE;
  --ivory-dk:     #EDE8E0;
  --soft-white:   #FEFCF9;
  --text-dark:    #1A2430;
  --text-body:    #2E3D4F;
  --text-muted:   #5A6A7A;
  --text-light:   #8A96A4;
  --border:       rgba(42, 58, 78, 0.12);
  --border-light: rgba(255, 255, 255, 0.1);

  /* Typography */
  --serif:        'Cormorant Garamond', Georgia, serif;
  --sans:         'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --section-v:    7rem;
  --container:    1200px;
  --gutter:       2rem;

  /* Transitions */
  --ease:         cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out:     cubic-bezier(0.0, 0, 0.2, 1);
  --dur:          0.4s;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  /* Prevent horizontal bounce/scroll on iOS and Android */
  overflow-x: clip;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--text-body);
  background: var(--soft-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input, select, textarea {
  font-family: inherit;
}

/* ============================================================
   3. LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section {
  padding: var(--section-v) 0;
}

/* ============================================================
   4. TYPOGRAPHY
   ============================================================ */
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.6875rem;        /* 11px */
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.section-headline {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--text-dark);
}

.section-headline--light {
  color: #fff;
}

.section-sub {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 36rem;
}

.section-sub--light {
  color: rgba(255, 255, 255, 0.68);
}

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  cursor: pointer;
}

.btn--gold {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 4px 24px rgba(194, 160, 94, 0.28);
}

.btn--gold:hover {
  background: var(--gold-lt);
  box-shadow: 0 6px 32px rgba(194, 160, 94, 0.42);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.btn--navy {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 4px 20px rgba(6, 15, 24, 0.25);
}

.btn--navy:hover {
  background: var(--charcoal);
  transform: translateY(-1px);
}

.btn--lg {
  padding: 1.125rem 2.25rem;
  font-size: 0.8125rem;
}

/* ============================================================
   6. NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}

.nav--scrolled {
  background: rgba(6, 15, 24, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.nav__logo img {
  height: 28px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  transition: color var(--dur) var(--ease);
}

.nav__link:hover {
  color: #fff;
}

.nav__cta {
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.65rem 1.4rem;
  border-radius: 2px;
  transition: background var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}

.nav__cta:hover {
  background: var(--gold-lt);
  box-shadow: 0 4px 20px rgba(194, 160, 94, 0.35);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.8);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.nav__hamburger.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile drawer */
.nav__mobile {
  display: none;
  flex-direction: column;
  background: rgba(6, 15, 24, 0.98);
  padding: 0 2.5rem;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
}

.nav__mobile.is-open {
  max-height: 400px;
  padding: 1.5rem 2.5rem 2rem;
}

.nav__mobile a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color var(--dur) var(--ease);
}

.nav__mobile a:hover {
  color: var(--gold);
}

.nav__mobile a:last-child {
  border-bottom: none;
  margin-top: 0.5rem;
  color: var(--gold);
}

/* ============================================================
   7. HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  max-height: 1000px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

/* Multi-layer cinematic scrim */
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    /* Heavy left edge for text zone */
    linear-gradient(
      108deg,
      rgba(6, 15, 24, 0.92)  0%,
      rgba(6, 15, 24, 0.78) 22%,
      rgba(6, 15, 24, 0.52) 42%,
      rgba(6, 15, 24, 0.18) 65%,
      transparent 100%
    ),
    /* Top-to-bottom: nav area dark, middle open, bottom dark for scroll */
    linear-gradient(
      to bottom,
      rgba(6, 15, 24, 0.5)  0%,
      rgba(6, 15, 24, 0.08) 30%,
      rgba(6, 15, 24, 0.08) 60%,
      rgba(6, 15, 24, 0.65) 100%
    );
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 2.5rem 6rem;
  max-width: 1400px;
  margin: 0 auto;
}

.hero__eyebrow {
  display: block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.hero__headline {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 11ch;
  margin-bottom: 1.5rem;
}

.hero__sub {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  max-width: 34rem;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.hero__scroll span {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  writing-mode: vertical-rl;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.15); }
}

/* ============================================================
   8. TRUST STRIP
   ============================================================ */
.trust {
  background: var(--charcoal);
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--dur) var(--ease);
}

.trust__item:last-child {
  border-right: none;
}

.trust__item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.trust__icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
  flex-shrink: 0;
}

.trust__label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
}

/* ============================================================
   9. PROBLEM / SOLUTION
   ============================================================ */
.solution {
  background: var(--ivory);
}

.solution__header {
  text-align: center;
  margin-bottom: 5rem;
}

.solution__header .section-sub {
  margin: 0 auto;
  margin-top: 1.25rem;
}

.solution__grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 3.5rem;
  align-items: start;
}

.solution__divider {
  background: linear-gradient(
    to bottom,
    transparent,
    var(--gold-rule) 10%,
    var(--gold-rule) 90%,
    transparent
  );
  align-self: stretch;
}

.solution__col-label {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  position: relative;
}

.solution__col--problem .solution__col-label {
  color: var(--text-muted);
}

.solution__col--problem .solution__col-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}

.solution__col--solution .solution__col-label {
  color: var(--gold);
}

.solution__col--solution .solution__col-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 100%;
  height: 1px;
  background: var(--gold-rule);
  transition: right 1s var(--ease-out);
}

.solution__col--solution.is-visible .solution__col-label::after {
  right: 0;
}

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

.solution__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.solution__item-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.solution__col--problem .solution__item-icon {
  color: var(--text-muted);
  opacity: 0.5;
}

.solution__col--solution .solution__item-icon {
  color: var(--gold);
}

.solution__item-text {}

.solution__item-title {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.solution__col--problem .solution__item-title {
  color: var(--text-body);
  font-weight: 500;
}

.solution__item-sub {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   10. FEATURES — Why Annex Fiber
   ============================================================ */
.features {
  background: var(--soft-white);
}

.features__header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.features__header .section-sub {
  margin: 1.25rem auto 0;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

.feature-card {
  background: var(--soft-white);
  padding: 2.5rem;
  transition: background var(--dur) var(--ease);
}

.feature-card:hover {
  background: var(--ivory);
}

.feature-card__icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.feature-card__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.3125rem;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.feature-card__text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   11. CONNECTIVITY REVIEW (PROCESS)
   ============================================================ */
.process {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

/* Subtle texture */
.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(194, 160, 94, 0.04) 0%, transparent 60%);
}

.process__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 5rem;
  align-items: start;
}

.process__divider {
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(194, 160, 94, 0.2) 10%,
    rgba(194, 160, 94, 0.2) 90%,
    transparent
  );
  align-self: stretch;
}

.process__left {}

.process__left .section-headline {
  margin-bottom: 1.25rem;
}

.process__left .section-sub {
  margin-bottom: 2rem;
}

.process__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--gold-rule);
  padding: 0.5rem 1rem;
  border-radius: 2px;
  margin-top: 2rem;
}

.process__badge-text {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
}

.process__badge-text strong {
  color: var(--gold);
  font-weight: 500;
}

.process__right {}

.process__list-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid rgba(194, 160, 94, 0.2);
}

.process__items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process__item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.process__item-num {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1px solid var(--gold-rule);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold);
  margin-top: 1px;
}

.process__item-text {}

.process__item-title {
  font-weight: 500;
  font-size: 0.9375rem;
  color: #fff;
  margin-bottom: 0.2rem;
}

.process__item-sub {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.55;
}

/* ============================================================
   12. CONTACT / FORM
   ============================================================ */
.contact {
  background: var(--ivory);
}

.contact__header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.contact__header .section-sub {
  margin: 1.25rem auto 0;
}

.contact__body {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: start;
}

.contact__sidebar {}

.contact__sidebar-headline {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.contact__sidebar-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.contact__sidebar-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact__sidebar-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border);
}

.contact__sidebar-item:first-child {
  border-top: 1px solid var(--border);
}

.contact__sidebar-item svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  color: var(--gold);
}

.contact__sidebar-item span {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Form Wrapper ── */
.form-wrap {
  background: var(--soft-white);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 3rem;
  position: relative;
}

/* ── GoHighLevel Integration Comment ──
   OPTION A — Replace form-wrap content with GHL iframe embed:
   <iframe src="YOUR_GHL_FORM_URL" width="100%" height="auto"
           frameborder="0" scrolling="no" id="ghl-form-frame"></iframe>
   <script>// GHL iframe auto-resize script here</script>

   OPTION B — Keep native form + POST to GHL webhook on submit.
   See script.js → handleFormSubmit() for webhook URL placeholder.

   OPTION C — GHL JS embed (paste their script tag):
   <script src="GHL_EMBED_SCRIPT_URL"></script>
   <div id="ghl-form-container"></div>
── */

/* Thank You State */
.form-thankyou {
  display: none;
  text-align: center;
  padding: 4rem 2rem;
}

.form-thankyou.is-visible {
  display: block;
  animation: fadeUp 0.5s var(--ease-out) both;
}

.form-thankyou__icon {
  width: 52px;
  height: 52px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
  color: var(--gold);
}

.form-thankyou__headline {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.form-thankyou__text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 30rem;
  margin: 0 auto;
}

/* ── Form Fields ── */
.form__section-title {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--gold-rule);
}

.form__section-title + .form__section-title {
  margin-top: 2.5rem;
}

.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.5rem;
}

.form__grid--3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.form__full {
  grid-column: 1 / -1;
}

/* Floating label field */
.field {
  position: relative;
  margin-bottom: 1.5rem;
}

.field__label {
  position: absolute;
  top: 1rem;
  left: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  transition: all 0.22s var(--ease);
  pointer-events: none;
  transform-origin: left top;
}

.field__input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 1rem 0 0.5rem;
  font-size: 0.9375rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color var(--dur) var(--ease);
  -webkit-appearance: none;
  border-radius: 0;
}

.field__input:focus {
  border-bottom-color: var(--gold);
}

.field__input::placeholder {
  color: transparent;
}

/* Float label up when focused or filled */
.field__input:focus + .field__label,
.field__input:not(:placeholder-shown) + .field__label {
  top: -0.25rem;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  color: var(--gold);
}

/* Select fields */
select.field__input {
  cursor: pointer;
  padding-right: 1.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A6A7A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 12px;
}

select.field__input option {
  color: var(--text-dark);
  background: #fff;
}

/* Textarea */
textarea.field__input {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
  padding-top: 1.5rem;
}

/* Error state */
.field--error .field__input {
  border-bottom-color: #c0392b;
}

.field__error {
  display: none;
  font-size: 0.6875rem;
  color: #c0392b;
  margin-top: 0.25rem;
}

.field--error .field__error {
  display: block;
}

/* Checkbox group */
.checkbox-group {
  margin-bottom: 1.5rem;
}

.checkbox-group__label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.875rem;
  display: block;
}

.checkbox-group__items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid var(--border);
  border-radius: 2px;
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--dur) var(--ease);
  position: relative;
}

.checkbox-item input[type="checkbox"]:checked {
  background: var(--navy);
  border-color: var(--navy);
}

.checkbox-item input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border-right: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  transform: rotate(45deg);
}

.checkbox-item__label {
  font-size: 0.8125rem;
  color: var(--text-body);
  cursor: pointer;
}

/* Radio group */
.radio-group {
  margin-bottom: 1.5rem;
}

.radio-group__label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.875rem;
  display: block;
}

.radio-group__items {
  display: flex;
  gap: 1.5rem;
}

.radio-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.radio-item input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--dur) var(--ease);
  position: relative;
}

.radio-item input[type="radio"]:checked {
  border-color: var(--navy);
}

.radio-item input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--navy);
}

.radio-item__label {
  font-size: 0.8125rem;
  color: var(--text-body);
  cursor: pointer;
}

/* Form footer */
.form__footer {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.form__disclaimer {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 20rem;
}

.form__submit {
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.form__submit-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form__submit-loading {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.form__submit.is-loading .form__submit-text {
  display: none;
}

.form__submit.is-loading .form__submit-loading {
  display: flex;
}

.spinner {
  width: 14px;
  height: 14px;
  border: 1.5px solid rgba(6, 15, 24, 0.25);
  border-top-color: var(--navy-deep);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================================
   13. FOOTER
   ============================================================ */
.footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.footer__logo img {
  height: 24px;
  width: auto;
}

.footer__contacts {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.footer__contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--dur) var(--ease);
  padding: 0 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__contact:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__contact:hover {
  color: rgba(255, 255, 255, 0.85);
}

.footer__contact svg {
  flex-shrink: 0;
  color: var(--gold);
  opacity: 0.6;
}

.footer__tag {
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.22);
  text-align: right;
  white-space: nowrap;
}

/* ============================================================
   14. SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

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

.fade-in {
  opacity: 0;
  transition: opacity 0.65s var(--ease-out);
}

.fade-in.is-visible {
  opacity: 1;
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

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

/* ============================================================
   15. RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --section-v: 5rem;
  }

  .trust__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }

  .trust__item:nth-child(3) {
    border-right: none;
  }

  .trust__item:nth-child(4) {
    border-left: 1px solid rgba(255,255,255,.06);
  }

  .trust__item:nth-child(4),
  .trust__item:nth-child(5),
  .trust__item:nth-child(6) {
    border-top: 1px solid rgba(255,255,255,.06);
  }

  .solution__grid {
    grid-template-columns: 1fr 1px 1fr;
    gap: 0 2.5rem;
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .process__divider {
    display: none;
  }

  .contact__body {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact__sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
  }

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

  .footer__contacts {
    justify-content: center;
  }

  .footer__tag {
    text-align: center;
  }
}

/* ============================================================
   16. RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --section-v: 4rem;
    --gutter: 1.25rem;
  }

  /* ── Overflow containment ─────────────────────────────────── */
  /* Belt-and-suspenders: html has overflow-x: clip above.
     This ensures no child element can widen the document. */
  .container,
  .hero__content,
  .nav__inner,
  .nav__mobile,
  .trust__grid,
  .features__grid,
  .is-right__grid,
  .biz-types__grid,
  .walkaway__grid,
  .process__inner,
  .contact__body,
  .form-wrap,
  .footer__inner {
    max-width: 100%;
  }

  /* Nav */
  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__mobile {
    display: flex;
    /* Mobile nav must not exceed viewport */
    width: 100%;
    box-sizing: border-box;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .nav__mobile.is-open {
    padding: 1.5rem 1.25rem 2rem;
  }

  .nav__inner {
    padding: 0 1.25rem;
  }

  /* Hero */
  .hero {
    align-items: center;
    min-height: 100svh;
  }

  .hero__content {
    padding: 5rem 1.25rem 4rem;
    box-sizing: border-box;
    width: 100%;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch; /* stretch so children fill width */
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;   /* allow text wrap if needed */
    text-align: center;
  }

  .hero__scroll {
    display: none;
  }

  /* ── Buttons: prevent long labels from forcing overflow ─── */
  .btn {
    white-space: normal;
    text-align: center;
  }

  /* ── Process badge ─────────────────────────────────────── */
  .process__badge {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
  }

  .process__badge-text {
    white-space: normal;
    line-height: 1.5;
  }

  /* Trust */
  .trust__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust__item:nth-child(2n) {
    border-right: none;
  }

  .trust__item:nth-child(2) {
    border-right: none;
  }

  .trust__item:nth-child(n+3) {
    border-top: 1px solid rgba(255,255,255,.06);
  }

  .trust__item {
    padding: 1rem 0.75rem; /* tighter padding prevents overflow at 375px */
  }

  /* Solution */
  .solution__grid {
    grid-template-columns: 1fr;
    gap: 3rem 0;
  }

  .solution__divider {
    display: none;
  }

  /* Features */
  .features__grid {
    grid-template-columns: 1fr;
  }

  /* Form */
  .form-wrap {
    padding: 1.75rem 1.25rem;
    box-sizing: border-box;
    width: 100%;
  }

  .form__grid,
  .form__grid--3 {
    grid-template-columns: 1fr;
  }

  .form__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .form__submit {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }

  /* Contact sidebar */
  .contact__sidebar {
    grid-template-columns: 1fr;
  }

  .footer__contacts {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer__contact {
    border: none !important;
  }

  /* ── Footer extra bottom space for sticky CTA bar ──────── */
  /* sticky bar is ~80px tall (56px btn + 14px top + 10px safe area) */
  .footer {
    padding-bottom: calc(3rem + 80px);
  }
}

/* ============================================================
   17. UTILITY — GOLD RULE
   ============================================================ */
.gold-rule {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-rule) 20%,
    var(--gold-rule) 80%,
    transparent
  );
  margin: 0;
}

/* ============================================================
   18. MOBILE STICKY CTA BAR
   ============================================================ */

/* Container — hidden on tablet & desktop */
.sticky-cta {
  display: none;
}

@media (max-width: 768px) {
  .sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    /* Respect iPhone home-bar / notch safe area */
    padding: 0 14px calc(14px + env(safe-area-inset-bottom, 0px));
    z-index: 900; /* below nav (nav is 1000) but above all content */
    /* Slide-in: starts hidden below viewport */
    transform: translateY(calc(100% + 20px));
    opacity: 0;
    transition:
      transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity   280ms ease;
    /* Pointer-events off while hidden so nothing is accidentally tappable */
    pointer-events: none;
  }

  /* Visible state — toggled by JS */
  .sticky-cta.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  /* The button itself */
  .sticky-cta__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 56px;
    /* Minimum 44px touch target already exceeded by height */
    min-height: 44px;
    padding: 0 24px;
    border-radius: 14px;
    cursor: pointer;

    /* Deep navy matching site palette */
    background: var(--navy-deep, #060F18);
    color: #ffffff;

    /* Subtle brass/gold border */
    border: 1px solid rgba(194, 160, 94, 0.45);

    /* Typography — match site sans */
    font-family: var(--sans, 'Inter', sans-serif);
    font-size: 0.8125rem;   /* 13px */
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;

    /* Layered shadow: depth + gold glow */
    box-shadow:
      0 4px 24px rgba(6, 15, 24, 0.55),
      0 1px 0 rgba(194, 160, 94, 0.18) inset;

    /* Smooth hover/active feedback */
    transition:
      background  200ms ease,
      box-shadow  200ms ease,
      border-color 200ms ease;
  }

  .sticky-cta__btn:hover {
    background: #0d1f30;
    border-color: rgba(194, 160, 94, 0.7);
    box-shadow:
      0 6px 32px rgba(6, 15, 24, 0.65),
      0 1px 0 rgba(194, 160, 94, 0.25) inset;
  }

  .sticky-cta__btn:active {
    background: #050d16;
    transform: scale(0.985);
    transition-duration: 80ms;
  }

  /* Keyboard focus — visible ring using gold accent */
  .sticky-cta__btn:focus-visible {
    outline: 2px solid var(--gold, #C2A05E);
    outline-offset: 3px;
  }

  /* Arrow icon */
  .sticky-cta__arrow {
    flex-shrink: 0;
    opacity: 0.85;
  }
}
/* /MOBILE STICKY CTA BAR */

/* ============================================================
   19. IS THIS REVIEW RIGHT FOR YOUR BUSINESS?
   ============================================================ */
.is-right {
  background: var(--soft-white);
}

.is-right__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.is-right__header .section-sub {
  margin: 0 auto;
}

.is-right__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
}

.is-right__card {
  background: var(--soft-white);
  padding: 2rem 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: background var(--dur) var(--ease);
}

.is-right__card:hover {
  background: var(--ivory);
}

.is-right__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--gold);
  margin-top: 2px;
}

.is-right__title {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.is-right__text {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   20. WHAT YOU'LL WALK AWAY WITH
   ============================================================ */
.walkaway {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.walkaway::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(194, 160, 94, 0.05) 0%, transparent 60%);
}

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

.walkaway__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.walkaway__header .section-sub--light {
  margin: 0 auto;
}

.eyebrow--light {
  color: rgba(194, 160, 94, 0.72);
}

.walkaway__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-bottom: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.walkaway__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.375rem 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--dur) var(--ease);
}

.walkaway__item:hover {
  background: rgba(255, 255, 255, 0.025);
}

.walkaway__item svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--gold);
  margin-top: 2px;
}

.walkaway__item-text {
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.walkaway__note {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.7;
  font-style: italic;
  max-width: 38rem;
  margin: 0 auto;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ============================================================
   21. BUILT FOR BUSINESSES LIKE YOURS
   ============================================================ */
.biz-types {
  background: var(--ivory);
}

.biz-types__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.biz-types__header .section-sub {
  margin: 0 auto;
}

.biz-types__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
}

.biz-types__card {
  background: var(--ivory);
  padding: 2.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.875rem;
  transition: background var(--dur) var(--ease);
}

.biz-types__card:hover {
  background: var(--soft-white);
}

.biz-types__icon {
  width: 30px;
  height: 30px;
  color: var(--gold);
}

.biz-types__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--text-dark);
  line-height: 1.25;
}

/* ============================================================
   22. THANK YOU ENHANCEMENTS
   ============================================================ */
.form-thankyou__items {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  max-width: 24rem;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.form-thankyou__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.form-thankyou__item svg {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  color: var(--gold);
  margin-top: 1px;
}

/* ============================================================
   23. RESPONSIVE — NEW SECTIONS (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .is-right__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .biz-types__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .walkaway__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   24. RESPONSIVE — NEW SECTIONS (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  .is-right__grid {
    grid-template-columns: 1fr;
  }

  .biz-types__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .walkaway__grid {
    grid-template-columns: 1fr;
  }

  .is-right__card {
    padding: 1.5rem 1.25rem;
  }

  .biz-types__card {
    padding: 1.75rem 1rem;
  }
}

/* ============================================================
   25. PRIORITY LAUNCH — LANDING PAGE COMPONENTS
   ============================================================ */

/* Hero incentive line */
.hero__incentive {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.55;
  font-style: italic;
  max-width: 34rem;
}

.hero__incentive svg {
  flex-shrink: 0;
  width: 11px;
  height: 11px;
  color: var(--gold);
  opacity: 0.72;
  margin-top: 2px;
}

/* Process section — priority note */
.priority-note {
  margin-top: 1.75rem;
  padding: 0.875rem 1rem;
  border-left: 2px solid rgba(194, 160, 94, 0.28);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.65;
  font-style: italic;
}

.priority-note strong {
  color: rgba(194, 160, 94, 0.72);
  font-style: normal;
  font-weight: 500;
}

/* Form sidebar — priority callout */
.form-priority {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--gold-rule);
  border-radius: 2px;
  background: rgba(194, 160, 94, 0.04);
}

.form-priority__label {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.625rem;
}

.form-priority__text {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.form-priority__disclaimer {
  font-size: 0.6875rem;
  color: var(--text-light);
  line-height: 1.55;
  font-style: italic;
}

/* ============================================================
   26. THANK-YOU PAGE — HERO
   ============================================================ */
.thankyou-hero {
  background: var(--navy-deep);
  padding: 10rem 0 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.thankyou-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% -10%,
    rgba(194, 160, 94, 0.07) 0%,
    transparent 60%
  );
}

.thankyou-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-rule) 30%, var(--gold-rule) 70%, transparent);
}

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

.thankyou-hero__check {
  width: 56px;
  height: 56px;
  border: 1.5px solid var(--gold-rule);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--gold);
}

.thankyou-hero__company {
  display: block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.875rem;
  min-height: 1.2em; /* reserve space to prevent layout shift */
}

.thankyou-hero__headline {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.875rem, 4.5vw, 3.25rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: #fff;
  max-width: 22ch;
  margin: 0 auto 1.5rem;
}

.thankyou-hero__sub {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.62);
  max-width: 34rem;
  margin: 0 auto;
}

/* ============================================================
   27. THANK-YOU PAGE — NEXT STEPS
   ============================================================ */
.next-steps {
  background: var(--soft-white);
}

.next-steps__header {
  text-align: center;
  margin-bottom: 4rem;
}

.next-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

.next-step {
  background: var(--soft-white);
  padding: 2.5rem 2rem;
  transition: background var(--dur) var(--ease);
}

.next-step:hover {
  background: var(--ivory);
}

.next-step__num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold-rule);
  line-height: 1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.next-step__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.next-step__text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   28. THANK-YOU PAGE — PRIORITY LAUNCH CARD
   ============================================================ */
.ty-priority {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.ty-priority::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 65% 50%, rgba(194, 160, 94, 0.05) 0%, transparent 60%);
}

.ty-priority__card {
  position: relative;
  z-index: 1;
  border: 1px solid var(--gold-rule);
  border-radius: 3px;
  padding: 3.5rem 3rem;
  max-width: 860px;
  margin: 0 auto;
}

.ty-priority__eyebrow {
  display: block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.625rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.ty-priority__headline {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.2;
  color: #fff;
  margin-bottom: 1rem;
  max-width: 28ch;
}

.ty-priority__text {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 38rem;
}

.ty-priority__list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 2.5rem;
}

.ty-priority__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.ty-priority__item svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--gold);
  margin-top: 2px;
}

.ty-priority__disclaimer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.28);
  line-height: 1.6;
  font-style: italic;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ============================================================
   29. THANK-YOU PAGE — PREPARE & CONTACT
   ============================================================ */
.ty-prepare {
  background: var(--ivory);
}

.ty-prepare__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 4rem;
}

.ty-prepare__list {
  display: flex;
  flex-direction: column;
}

.ty-prepare__item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.5;
}

.ty-prepare__item:first-child {
  border-top: 1px solid var(--border);
}

.ty-prepare__item svg {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  color: var(--gold);
  margin-top: 2px;
}

.ty-prepare__note {
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  color: var(--text-light);
  line-height: 1.6;
  font-style: italic;
}

.ty-prepare__contact {
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 2.5rem 2rem;
  background: var(--soft-white);
}

.ty-prepare__contact-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid var(--border);
}

.ty-prepare__contact-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ty-prepare__contact-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--text-body);
  transition: color var(--dur) var(--ease);
  word-break: break-all;
}

.ty-prepare__contact-link:hover {
  color: var(--gold);
}

.ty-prepare__contact-link svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  color: var(--gold);
}

/* ============================================================
   30. THANK-YOU PAGE — RETURN CTA
   ============================================================ */
.ty-return {
  background: var(--navy-deep);
  padding: 5rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.ty-return__text {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.22);
}

/* ============================================================
   31. THANK-YOU PAGE — RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .next-steps__grid {
    grid-template-columns: 1fr;
  }

  .ty-prepare__body {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .thankyou-hero {
    padding: 7rem 0 4rem;
  }

  .ty-priority__card {
    padding: 2rem 1.25rem;
  }

  .ty-priority__headline {
    max-width: 100%;
  }

  .next-step {
    padding: 2rem 1.5rem;
  }

  .ty-prepare__contact {
    padding: 1.75rem 1.25rem;
  }
}

/* ============================================================
   32. IS-RIGHT PRIORITY LAUNCH FEATURED PANEL
   ============================================================ */
.is-right__launch {
  margin-top: 2px;
  background: var(--navy);
  border: 1px solid var(--border);
  border-top: none;
  padding: 3rem 3.5rem;
  position: relative;
  overflow: hidden;
}

.is-right__launch::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-rule) 15%,
    rgba(194, 160, 94, 0.7) 50%,
    var(--gold-rule) 85%,
    transparent
  );
}

.is-right__launch::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(194, 160, 94, 0.04) 0%, transparent 55%);
  pointer-events: none;
}

.is-right__launch-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  align-items: start;
}

.is-right__launch-eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.is-right__launch-headline {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.5vw, 2.125rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 1.125rem;
}

.is-right__launch-body {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.75;
}

.is-right__launch-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.75rem;
  padding-top: 0.25rem;
}

.is-right__launch-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.is-right__launch-item svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--gold);
  margin-top: 2px;
}

.is-right__launch-disclaimer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.28);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Responsive */
@media (max-width: 1024px) {
  .is-right__launch-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .is-right__launch {
    padding: 2rem 1.25rem;
  }
}
