/* ============================================================
   HOMEPAGE — front-page.php specific styles
   ============================================================ */

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 68px 56px 0;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: center;
}

/* Left column */
.hero-content {
  max-width: 600px;
  padding: 80px 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeIn 0.5s ease 0.1s forwards;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--teal-light);
}

.hero .hero-headline {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 50px);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: var(--white-95);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeIn 0.5s ease 0.2s forwards;
}

.hero-sub {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 300;
  color: var(--white-60);
  max-width: 520px;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeIn 0.5s ease 0.3s forwards;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeIn 0.5s ease 0.4s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: var(--white);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  background: var(--teal-muted);
}

.btn-primary svg {
  transition: transform 0.2s;
}

.btn-primary:hover svg {
  transform: translateX(2px);
}

.btn-secondary {
  color: var(--white-80);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 24px;
  border: 1px solid var(--white-25);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}

.btn-secondary:hover {
  color: var(--white-95);
  border-color: var(--white-40);
  background: rgba(255, 255, 255, 0.07);
}

.hero-friction {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 400;
  color: var(--white-40);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
  opacity: 0;
  animation: fadeIn 0.5s ease 0.5s forwards;
}

.hero-pricing {
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 400;
  color: var(--white-60);
  opacity: 0;
  animation: fadeIn 0.5s ease 0.6s forwards;
}

.hero-pricing strong {
  color: var(--white-80);
  font-weight: 600;
}

/* ========== RIGHT COLUMN — FLOW VISUAL ========== */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  opacity: 0;
  animation: fadeIn 0.8s ease 0.3s forwards;
}

.flow-panel {
  width: 340px;
  background: #111E33;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35), 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Stage 1: Project header */
.flow-project {
  padding: 20px 22px 16px;
  border-bottom: 1px solid var(--white-06);
}

.flow-project-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white-20);
  margin-bottom: 10px;
}

.flow-project-label svg {
  opacity: 0.5;
}

.flow-project-title {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--white-80);
  margin-bottom: 4px;
  line-height: 1.35;
}

.flow-project-meta {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  color: var(--white-30);
}

/* Stage 2: Proposals */
.flow-proposals {
  padding: 0;
}

.flow-proposals-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px 0;
}

.flow-proposals-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white-20);
}

.flow-proposals-badge {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--teal-light);
  background: rgba(15, 118, 110, 0.12);
  padding: 3px 8px;
  border-radius: 3px;
}

.flow-proposals-badge .pulse-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal-light);
  margin-right: 4px;
  vertical-align: middle;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.flow-proposal-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  border-bottom: 1px solid var(--white-04);
  transition: background 0.2s ease;
}

.flow-proposal-row:last-child {
  border-bottom: 1px solid var(--white-06);
}

.flow-proposal-row:hover {
  background: rgba(255, 255, 255, 0.02);
}

.flow-proposal-avatar {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: rgba(15, 118, 110, 0.15);
  border: 1px solid rgba(15, 118, 110, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--teal-light);
}

.flow-proposal-info {
  flex: 1;
  min-width: 0;
}

.flow-proposal-name {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--white-70);
  margin-bottom: 1px;
}

.flow-proposal-detail {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 300;
  color: var(--white-25);
}

.flow-proposal-price {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--white-60);
  text-align: right;
}

.flow-proposal-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  padding: 2px 6px 2px 5px;
  border-radius: 3px;
  white-space: nowrap;
}

/* Stage 3: Outcome */
.flow-outcome {
  padding: 16px 22px 18px;
  background: rgba(15, 118, 110, 0.04);
}

.flow-outcome-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.flow-outcome-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white-20);
}

.flow-outcome-stars {
  display: flex;
  gap: 1px;
}

.flow-outcome-stars .star {
  color: var(--gold-light);
  font-size: 11px;
}

.flow-outcome-text {
  font-family: var(--serif);
  font-size: 12.5px;
  font-weight: 400;
  font-style: italic;
  color: var(--white-50);
  line-height: 1.5;
  margin-bottom: 6px;
}

.flow-outcome-author {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 400;
  color: var(--white-20);
}

/* ========== SOCIAL PROOF BAR ========== */
.proof-bar {
  position: relative;
  z-index: 2;
  background: var(--navy-light);
  border-top: 1px solid var(--white-08);
  border-bottom: 1px solid var(--white-08);
}

.proof-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 44px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.proof-stat {
  text-align: center;
  flex: 1;
  position: relative;
}

/* paragraph reset — Gutenberg adds default block margins */
.proof-stat p {
  margin: 0;
}

.proof-stat p.proof-stat-value {
  margin-bottom: 6px;
}

.proof-stat-value {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  color: var(--white-95);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.proof-stat-value.gold-accent {
  color: var(--gold-light);
}

.proof-stat-label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  color: var(--white-40);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* divider via pseudo-element — replaces the old .proof-divider element */
.proof-stat+.proof-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: var(--white-08);
}

/* ========== TRUST STATEMENT (replaces logo bar) ========== */
.trust-bar {
  padding: 22px 56px;
  background: var(--navy);
  border-bottom: 1px solid var(--white-06);
}

.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-bar-text {
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 400;
  color: var(--white-40);
  letter-spacing: 0.01em;
  text-align: center;
}

.trust-bar-text strong {
  color: var(--white-65, rgba(255, 255, 255, 0.65));
  font-weight: 600;
}

/* PHP block: explicit divider spans */
.trust-bar-divider {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--white-20);
  flex-shrink: 0;
}

/* Cancel WordPress is-layout-flow margins on trust-bar flex children */
.trust-bar-inner>* {
  margin: 0;
}

/* Gutenberg block: generate dots via CSS so no decorative blocks needed in markup */
.wp-block-group.trust-bar-inner {
  gap: 67px;
  /* no divider flex items — match PHP block's effective text-to-text spacing */
}

.wp-block-group.trust-bar-inner .trust-bar-text {
  position: relative;
}

.wp-block-group.trust-bar-inner .trust-bar-text:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -35px;
  /* half of 67px gap (33.5px) + half dot width (1.5px) = 35px */
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--white-20);
  pointer-events: none;
}

/* ========== DUEDILIO VERIFIED BADGE ========== */
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold);
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  padding: 3px 9px 3px 7px;
  border-radius: 4px;
  white-space: nowrap;
}

.verified-badge svg {
  flex-shrink: 0;
}

/* Gold eyebrow variant for dark sections */
.section-eyebrow-gold {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-eyebrow-gold::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold-light);
}

.who-section {
  position: relative;
  z-index: 2;
  padding: 100px 56px;
  background: var(--light-bg);
}

.who-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--teal);
}

.section-headline {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--dark-95);
  margin-bottom: 16px;
  max-width: 600px;
}

.section-sub {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--dark-60);
  max-width: 560px;
  margin-bottom: 56px;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.who-card {
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-left: 3px solid var(--teal);
  border-radius: 2px 10px 10px 2px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.who-card:hover {
  border-left-color: var(--teal);
  border-color: rgba(15, 118, 110, 0.15);
  border-left: 3px solid var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* Buyer card is the primary audience — subtle visual anchor at rest */
.who-card-primary {
  box-shadow: 0 4px 20px rgba(15, 118, 110, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
  border-left-color: var(--teal);
  border-color: rgba(15, 118, 110, 0.12);
}

.who-card-primary:hover {
  box-shadow: 0 10px 28px rgba(15, 118, 110, 0.12);
}

.who-card-icon {
  display: none;
}

.who-card-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-95);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.who-card-situation {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--teal);
  opacity: 0.8;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

.who-card-pain {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--dark-80);
  margin-bottom: 0;
}

.who-card-services {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
  margin-top: auto;
  padding-top: 24px;
}

.who-card-tag {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  color: var(--dark-60);
  background: var(--dark-04);
  border: 1px solid var(--dark-06);
  padding: 4px 10px;
  border-radius: 3px;
  letter-spacing: 0.02em;
}

.tag-more {
  color: var(--teal);
  background: transparent;
  border: 1px dashed rgba(15, 118, 110, 0.3);
  opacity: 0.8;
}

/* Section CTA */
.section-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 56px;
}

.section-cta .btn-primary {
  background: var(--teal);
  color: var(--white);
}

.section-cta .btn-primary:hover {
  background: var(--teal-muted);
}

.section-cta-secondary {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--teal);
  text-decoration: none;
  transition: color 0.2s;
}

.section-cta-secondary:hover {
  color: var(--teal-muted);
}

.who-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--teal);
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
  margin-top: auto;
}

.who-card-cta:hover {
  gap: 10px;
  color: var(--teal-muted);
}

.who-card-cta svg {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.who-card-cta:hover svg {
  transform: translateX(2px);
}

/* ========== HOW IT WORKS (Light Section) ========== */
.how-section {
  position: relative;
  z-index: 2;
  padding: 100px 56px;
  background: var(--light-bg);
}

.how-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.how-section .section-eyebrow {
  color: var(--teal);
}

.how-section .section-eyebrow::before {
  background: var(--teal);
}

.how-section .section-headline {
  color: var(--dark-95);
}

.how-section .section-sub {
  color: var(--dark-60);
}

.how-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.how-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.how-step-number {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: var(--light-card);
  border: 1px solid var(--light-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--teal);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.how-step-content {
  flex: 1;
}

.how-step-title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--dark-95);
  margin-bottom: 6px;
  letter-spacing: -0.005em;
  line-height: 1.3;
}

.how-step-desc {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--dark-60);
}

/* Visual panel — proposal comparison mockup */
.how-visual {
  position: sticky;
  top: 120px;
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
}

.how-visual-header {
  padding: 16px 24px;
  border-bottom: 1px solid var(--light-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.how-visual-title {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-80);
}

.how-visual-badge {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--teal);
  background: var(--teal-subtle);
  padding: 3px 10px;
  border-radius: 4px;
}

.how-visual-body {
  padding: 20px 24px;
}

/* Proposal rows */
.how-proposal {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--dark-06);
}

.how-proposal:last-child {
  border-bottom: none;
}

.how-proposal-avatar {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: var(--teal-subtle);
  color: var(--teal);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-proposal-info {
  flex: 1;
  min-width: 0;
}

.how-proposal-name {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-80);
  margin-bottom: 2px;
}

.how-proposal-meta {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 400;
  color: var(--dark-40);
}

.how-proposal-price {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-80);
  text-align: right;
  white-space: nowrap;
}

.how-proposal-price span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--dark-40);
  margin-top: 1px;
}

.how-proposal-rating {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--gold-light);
  white-space: nowrap;
  margin-left: 8px;
}

/* Visual footer */
.how-visual-footer {
  padding: 14px 24px;
  border-top: 1px solid var(--light-border);
  background: rgba(15, 118, 110, 0.02);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.how-visual-footer-text {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  color: var(--dark-40);
}

.how-visual-footer-action {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
}

.how-section .section-cta {
  margin-top: 64px;
}

.how-section .section-cta-secondary {
  color: var(--teal);
}

.how-section .section-cta-secondary:hover {
  color: var(--teal-muted);
}

/* Concierge callout */
.concierge-callout {
  margin-top: 56px;
  border: 1px solid var(--light-border);
  border-radius: 8px;
  background: var(--light-card);
  padding: 32px 36px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.concierge-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.concierge-title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--dark-95);
  margin-bottom: 8px;
}

.concierge-desc {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--dark-60);
  max-width: 620px;
}

.concierge-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--teal);
  text-decoration: none;
  white-space: nowrap;
  transition: gap 0.2s ease;
  flex-shrink: 0;
}

.concierge-link:hover {
  gap: 10px;
}

/* ========== WHY DUEDILIO (Dark Section) ========== */
.why-section {
  position: relative;
  z-index: 2;
  padding: 100px 56px;
  background: var(--navy);
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.why-section .section-eyebrow-gold {
  color: var(--gold-light);
}

.why-section .section-eyebrow-gold::before {
  background: var(--gold-light);
}

.why-section .section-eyebrow {
  color: var(--teal-light);
}

.why-section .section-eyebrow::before {
  background: var(--teal-light);
}

.why-section .section-headline {
  color: var(--white-95);
}

.why-section .section-sub {
  color: var(--white-40);
  font-weight: 400;
}

/* Comparison table */
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 48px;
}

.comparison-col {
  border-radius: 10px;
  padding: 36px 32px;
}

.comparison-without {
  background: var(--navy-light);
  border: 1px solid var(--white-08);
}

.comparison-with {
  background: rgba(15, 118, 110, 0.06);
  border: 1px solid rgba(15, 118, 110, 0.15);
}

.comparison-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 16px;
}

.comparison-without .comparison-label {
  color: var(--white-40);
  border-bottom: 1px solid var(--white-08);
}

.comparison-label-sub {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  opacity: 0.7;
}

.comparison-with .comparison-label {
  color: var(--teal-light);
  border-bottom: 1px solid var(--white-08);
}

.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.55;
  font-weight: 400;
}

.comparison-list li strong {
  font-weight: 600;
}

.comparison-without .comparison-list li strong {
  color: var(--white-80);
}

.comparison-with .comparison-list li strong {
  color: var(--white-95);
}

.comparison-without .comparison-list li {
  color: var(--white-40);
}

.comparison-with .comparison-list li {
  color: var(--white-80);
}

.comparison-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.comparison-icon svg {
  width: 10px;
  height: 10px;
}

.comparison-without .comparison-icon {
  background: rgba(255, 255, 255, 0.04);
}

.comparison-without .comparison-icon svg {
  stroke: var(--white-20);
}

.comparison-with .comparison-icon {
  background: rgba(20, 184, 166, 0.15);
}

.comparison-with .comparison-icon svg {
  stroke: var(--teal-light);
}

/* Competitive pricing callout */
.why-pricing-note {
  background: var(--navy-light);
  border: 1px solid var(--white-08);
  border-radius: 8px;
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 48px;
}

.why-pricing-icon {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--teal-light);
  font-size: 18px;
}

.why-pricing-text {
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--white-60);
}

.why-pricing-text strong {
  font-weight: 600;
  color: var(--white-95);
}

/* One-strike policy callout */
.why-policy {
  background: var(--navy-light);
  border: 1px solid var(--white-08);
  border-radius: 8px;
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 48px;
}

.why-policy-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(15, 118, 110, 0.1);
  border: 1px solid rgba(15, 118, 110, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-policy-icon svg {
  color: var(--teal-light);
}

.why-policy-content {
  flex: 1;
}

.why-policy-title {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--white-95);
  margin-bottom: 4px;
}

.why-policy-desc {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--white-40);
}

.why-vetting-link {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--teal-light);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 6px;
  transition: gap 0.2s ease;
}

.why-vetting-link:hover {
  gap: 9px;
}

.why-section .section-cta .btn-primary {
  background: var(--teal);
  color: var(--white);
}

.why-section .section-cta .btn-primary:hover {
  background: var(--teal-muted);
}

/* ========== SERVICES OVERVIEW (Dark Section) ========== */
.services-section {
  position: relative;
  z-index: 2;
  padding: 100px 56px;
  background: var(--navy);
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.services-section .section-eyebrow-gold {
  color: var(--gold-light);
}

.services-section .section-eyebrow-gold::before {
  background: var(--gold-light);
}

.services-section .section-eyebrow {
  color: var(--teal-light);
}

.services-section .section-eyebrow::before {
  background: var(--teal-light);
}

.services-section .section-headline {
  color: var(--white-95);
}

.services-section .section-sub {
  color: var(--white-40);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-tile {
  background: var(--navy-light);
  border: 1px solid var(--white-08);
  border-radius: 10px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.service-tile:hover {
  border-color: var(--white-15);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.service-tile-featured {
  border-color: rgba(15, 118, 110, 0.2);
  background: linear-gradient(135deg, var(--navy-light), rgba(15, 118, 110, 0.04));
}

.service-tile-featured:hover {
  border-color: rgba(15, 118, 110, 0.35);
}

.service-tile-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(15, 118, 110, 0.08);
  border: 1px solid rgba(15, 118, 110, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.service-tile-icon svg {
  color: var(--teal-light);
  opacity: 0.85;
}

.service-tile-featured .service-tile-icon {
  background: rgba(15, 118, 110, 0.12);
  border-color: rgba(15, 118, 110, 0.2);
}

.service-tile-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--white-95);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
  line-height: 1.25;
}

.service-tile-featured .service-tile-name {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-tile-badge {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-light);
  background: rgba(15, 118, 110, 0.12);
  padding: 3px 8px;
  border-radius: 3px;
  white-space: nowrap;
}

.service-tile-desc {
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--white-40);
  margin-bottom: 24px;
  flex: 1;
}

.service-tile-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--teal-light);
  text-decoration: none;
  transition: gap 0.2s ease;
  margin-top: auto;
}

.service-tile-link:hover {
  gap: 10px;
}

.service-tile-link svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.service-tile-link:hover svg {
  transform: translateX(2px);
}

.services-section .section-cta {
  margin-top: 56px;
}

.services-section .section-cta-secondary {
  color: var(--white-60);
}

.services-section .section-cta-secondary:hover {
  color: var(--white-95);
}

/* ========== TESTIMONIALS (Light Section) ========== */
.testimonials-section {
  position: relative;
  z-index: 2;
  padding: 100px 56px;
  background: var(--light-bg);
}

.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-section .section-eyebrow {
  color: var(--teal);
}

.testimonials-section .section-eyebrow::before {
  background: var(--teal);
}

.testimonials-section .section-headline {
  color: var(--dark-95);
}

.testimonials-section .section-sub {
  color: var(--dark-60);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.testimonial-card {
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: 10px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 20px;
}

/* Featured testimonial gets a gold top border */
.testimonial-card-featured {
  border-top: 2px solid var(--gold-border);
  box-shadow: 0 2px 12px rgba(184, 134, 11, 0.06);
}

.testimonial-stars .star {
  color: var(--gold-light);
  font-size: 14px;
}

.testimonial-quote {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--dark-80);
  margin-bottom: 28px;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--dark-06);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal-subtle);
  border: 1px solid rgba(15, 118, 110, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  flex-shrink: 0;
}

.testimonial-name {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-95);
  line-height: 1.3;
}

.testimonial-context {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 400;
  color: var(--dark-40);
}

/* Trustpilot bar */
.trustpilot-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px 0;
}

.trustpilot-rating {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-80);
}

.trustpilot-stars {
  display: flex;
  gap: 2px;
}

.trustpilot-stars .star {
  color: #00B67A;
  font-size: 15px;
}

.trustpilot-link {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--teal);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s ease;
}

.trustpilot-link:hover {
  gap: 9px;
}

.trustpilot-divider {
  width: 1px;
  height: 16px;
  background: var(--dark-10);
  flex-shrink: 0;
}

/* Testimonials proof stats */
.testimonials-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: -8px;
  margin-bottom: 48px;
}

.testimonials-proof-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--dark-40);
}

.testimonials-proof-stat strong {
  font-weight: 700;
  color: var(--dark-80);
}

.testimonials-proof-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--dark-20);
  flex-shrink: 0;
}

/* Short-form snippet quotes */
.testimonials-snippets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 24px;
  margin-bottom: 40px;
}

.snippet-card {
  padding: 24px;
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: 10px;
}

.snippet-quote {
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--dark-60);
  font-style: italic;
}

.snippet-author {
  margin-top: 12px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--dark-40);
  letter-spacing: 0.01em;
}

/* ========== PRICING CALLOUT (Dark Section) ========== */
.pricing-section {
  position: relative;
  z-index: 2;
  padding: 100px 56px;
  background: var(--navy);
}

.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-section .section-eyebrow {
  color: var(--teal-light);
}

.pricing-section .section-eyebrow::before {
  background: var(--teal-light);
}

.pricing-section .section-headline {
  color: var(--white-95);
}

.pricing-section .section-sub {
  color: var(--white-40);
}

.pricing-card-wrapper {
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.06), rgba(15, 118, 110, 0.02));
  padding: 48px 44px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
}

.pricing-price-block {
  padding-right: 48px;
  border-right: 1px solid var(--white-08);
}

.pricing-amount {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 700;
  color: var(--white-95);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.pricing-term {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--teal-light);
  letter-spacing: 0.01em;
}

.pricing-content-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing-details {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--white-60);
  max-width: 520px;
}

.pricing-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 400;
  color: var(--white-40);
}

.pricing-feature svg {
  color: var(--teal-light);
  flex-shrink: 0;
  opacity: 0.7;
}

/* Concierge subtle callout */
.pricing-concierge {
  margin-top: 24px;
  border: 1px solid var(--white-08);
  border-radius: 8px;
  background: var(--navy-light);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.pricing-concierge-content {
  flex: 1;
}

.pricing-concierge-title {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--white-80);
  margin-bottom: 4px;
}

.pricing-concierge-title span {
  font-weight: 400;
  color: var(--white-40);
}

.pricing-concierge-desc {
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--white-40);
}

.pricing-concierge-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--teal-light);
  text-decoration: none;
  white-space: nowrap;
  transition: gap 0.2s ease;
  flex-shrink: 0;
}

.pricing-concierge-link:hover {
  gap: 10px;
}

.pricing-section .section-cta {
  margin-top: 48px;
}

.pricing-cta-note {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 400;
  color: var(--white-20);
  margin-top: 14px;
  text-align: center;
}

/* ========== KNOWLEDGE CENTER (Light Section) ========== */
.knowledge-section {
  position: relative;
  z-index: 2;
  padding: 100px 56px;
  background: var(--light-bg);
}

.knowledge-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.knowledge-section .section-eyebrow {
  color: var(--teal);
}

.knowledge-section .section-eyebrow::before {
  background: var(--teal);
}

.knowledge-section .section-headline {
  color: var(--dark-95);
}

.knowledge-section .section-sub {
  color: var(--dark-60);
}

/* Knowledge proof stats */
.knowledge-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: -8px;
  margin-bottom: 48px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--dark-40);
}

.knowledge-proof strong {
  font-weight: 700;
  color: var(--dark-80);
}

.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.knowledge-card {
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: 10px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.knowledge-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.knowledge-card-tag {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
  width: fit-content;
  margin-bottom: 14px;
}

.knowledge-card-tag.tag-article {
  color: var(--teal);
  background: var(--teal-subtle);
}

.knowledge-card-tag.tag-guide {
  color: #7C3AED;
  background: rgba(124, 58, 237, 0.08);
}

.knowledge-card-tag.tag-checklist {
  color: #B45309;
  background: rgba(180, 83, 9, 0.08);
}

.knowledge-card-tag.tag-template {
  color: #0369A1;
  background: rgba(3, 105, 161, 0.08);
}

.knowledge-card-title {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-95);
  line-height: 1.35;
  margin-bottom: 8px;
}

.knowledge-card-excerpt {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--dark-40);
  flex: 1;
}

.knowledge-card-link {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  transition: gap 0.2s ease;
}

.knowledge-card-link:hover {
  gap: 10px;
}

/* Browse link */
.knowledge-browse {
  margin-bottom: 48px;
}

.knowledge-browse-link {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-40);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease, gap 0.2s ease;
}

.knowledge-browse-link:hover {
  color: var(--teal);
  gap: 10px;
}

/* Email capture */
.knowledge-email {
  border: 1px solid var(--light-border);
  border-radius: 10px;
  background: var(--light-card);
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.knowledge-email-content {
  flex: 1;
}

.knowledge-email-title {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--dark-95);
  margin-bottom: 4px;
}

.knowledge-email-desc {
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 400;
  color: var(--dark-40);
}

.knowledge-email-form {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.knowledge-email-input {
  font-family: var(--sans);
  font-size: 14px;
  padding: 10px 16px;
  border: 1px solid var(--dark-06);
  border-radius: 6px;
  background: var(--light-bg);
  color: var(--dark-80);
  width: 240px;
  outline: none;
  transition: border-color 0.2s ease;
}

.knowledge-email-input::placeholder {
  color: var(--dark-20);
}

.knowledge-email-input:focus {
  border-color: var(--teal);
}

.knowledge-email-btn {
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 600;
  color: white;
  background: var(--teal);
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.knowledge-email-btn:hover {
  background: #0e6b63;
}

/* ========== VENDOR CTA (Slate Section) ========== */
.vendor-section {
  position: relative;
  z-index: 2;
  padding: 80px 56px;
  background: #1E2A3A;
}

.vendor-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.vendor-content {
  flex: 1;
}

.vendor-section .vendor-headline {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--white-95);
  line-height: 1.3;
  margin-bottom: 10px;
}

.vendor-desc {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--white-40);
  max-width: 600px;
}

.vendor-cta {
  flex-shrink: 0;
}

.vendor-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--white-95);
  text-decoration: none;
  padding: 13px 28px;
  border: 1px solid var(--white-20);
  border-radius: 8px;
  background: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.vendor-cta a:hover {
  border-color: var(--white-40);
  background: rgba(255, 255, 255, 0.06);
}

/* ========== FOOTER ========== */
.footer {
  position: relative;
  z-index: 2;
  padding: 64px 56px 0;
  background: var(--navy);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--white-08);
}

.footer-brand-desc {
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--white-40);
  margin-top: 16px;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-contact-line {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--white-40);
  line-height: 1.8;
}

.footer-contact-line a {
  color: var(--white-40);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-line a:hover {
  color: var(--white-80);
}

.footer-col-title {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white-60);
  text-decoration: none;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  display: block;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 400;
  color: var(--white-40);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--white-80);
}

/* Footer bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.footer-copy {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  color: var(--white-20);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-legal a {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  color: var(--white-20);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--white-40);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-social a {
  color: var(--white-20);
  transition: color 0.2s ease;
}

.footer-social a:hover {
  color: var(--white-40);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .nav {
    padding: 0 32px;
  }

  .hero {
    padding: 68px 32px 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-content {
    padding: 60px 0 40px;
    max-width: 100%;
  }

  .hero-visual {
    padding: 0 0 60px;
    justify-content: flex-start;
  }

  .flow-panel {
    width: 320px;
  }

  .proof-bar-inner {
    padding: 36px 32px;
  }

  .logo-bar {
    padding: 24px 32px;
  }

  .who-section {
    padding: 80px 32px;
  }

  .who-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .how-section {
    padding: 80px 32px;
  }

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

  .how-visual {
    position: static;
    max-width: 480px;
  }

  .why-section {
    padding: 80px 32px;
  }

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

  .services-section {
    padding: 80px 32px;
  }

  .testimonials-section {
    padding: 80px 32px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .testimonials-proof {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

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

  .pricing-section {
    padding: 80px 32px;
  }

  .pricing-card-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 36px 32px;
  }

  .pricing-price-block {
    padding-right: 0;
    border-right: none;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--white-08);
  }

  .pricing-concierge {
    flex-direction: column;
    align-items: flex-start;
  }

  .knowledge-section {
    padding: 80px 32px;
  }

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

  .knowledge-email {
    flex-direction: column;
    align-items: flex-start;
  }

  .vendor-section {
    padding: 64px 32px;
  }

  .vendor-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer {
    padding: 48px 32px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero .hero-headline {
    font-size: 32px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .hero-visual {
    display: none;
  }

  .who-section {
    padding: 60px 24px;
  }

  .who-card {
    padding: 28px 24px;
  }

  .how-section {
    padding: 60px 24px;
  }

  .how-visual {
    display: none;
  }

  .concierge-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .concierge-callout {
    padding: 24px;
  }

  .why-section {
    padding: 60px 24px;
  }

  .why-policy {
    flex-direction: column;
    gap: 12px;
    padding: 24px;
  }

  .services-section {
    padding: 60px 24px;
  }

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

  .service-tile {
    padding: 28px 24px;
  }

  .testimonials-section {
    padding: 60px 24px;
  }

  .testimonial-card {
    padding: 28px 24px;
  }

  .testimonials-proof {
    gap: 12px;
  }

  .testimonials-proof-dot {
    display: none;
  }

  .testimonials-proof {
    flex-direction: column;
    gap: 4px;
  }

  .testimonials-snippets {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .trustpilot-bar {
    flex-wrap: wrap;
    gap: 12px;
  }

  .pricing-section {
    padding: 60px 24px;
  }

  .pricing-card-wrapper {
    padding: 28px 24px;
  }

  .pricing-amount {
    font-size: 48px;
  }

  .pricing-concierge {
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-features {
    gap: 8px 20px;
  }

  .knowledge-section {
    padding: 60px 24px;
  }

  .knowledge-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .knowledge-card {
    padding: 20px 18px;
  }

  .knowledge-proof {
    flex-direction: column;
    gap: 4px;
  }

  .knowledge-email {
    padding: 24px;
  }

  .knowledge-email-form {
    width: 100%;
  }

  .knowledge-email-input {
    flex: 1;
    width: auto;
  }

  .vendor-section {
    padding: 48px 24px;
  }

  .vendor-section .vendor-headline {
    font-size: 20px;
  }

  .footer {
    padding: 40px 24px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .proof-bar-inner {
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
  }

  .proof-stat+.proof-stat::before {
    display: none;
  }

  .proof-stat {
    min-width: 140px;
  }

  .proof-stat-value {
    font-size: 26px;
  }

  .logo-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .logo-bar-logos {
    gap: 28px;
  }
}