/* ============================================
   ELEVATED ROOF MARKETING — Homepage Styles
   ============================================ */


/* ----------------------------------------
   GRAIN TEXTURE OVERLAY (global)
   ---------------------------------------- */
.section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}

.section {
  position: relative;
}

.section > .container,
.section > *:not(.hero__gradient-mesh):not(.hero__overlay):not(.hero__data-grid):not(.calculator-spotlight__glow) {
  position: relative;
  z-index: 2;
}


/* ----------------------------------------
   SECTION BACKGROUNDS
   ---------------------------------------- */
.section--navy {
  background-color: var(--color-navy);
}

.section--navy-light {
  background-color: var(--color-navy-light);
}

.section--light {
  background-color: #FFFFFF;
}
.section--light .section__heading {
  color: var(--color-navy-dark);
}
.section--light .section__intro {
  color: #555;
}
.section--light .eyebrow {
  color: var(--color-teal);
}
.section--light .diff-card {
  background: #F5F8FA;
  border-color: #E2E6EA;
}
.section--light .diff-card:hover {
  border-color: var(--color-teal);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 205, 209, 0.1);
}
.section--light .diff-card__title {
  color: var(--color-navy-dark);
}
.section--light .diff-card__text {
  color: #555;
}
.section--light .diff-card__icon {
  background: rgba(0, 205, 209, 0.1);
}

/* How It Works on light bg */
.section--light .how__timeline::before {
  opacity: 0.5;
}
.section--light .how__step-title {
  color: var(--color-navy-dark);
}
.section--light .how__step-desc {
  color: #555;
}
.section--light .how__step-number {
  box-shadow: 0 0 20px rgba(0, 205, 209, 0.15);
}

/* Problem pain cards on light bg */
.section--light .problem__pain-title {
  color: var(--color-navy-dark);
}
.section--light .problem__pain-text {
  color: #555;
}
.section--light .problem__pain-card {
  border-color: #E2E6EA;
}
.section--light .section__body {
  color: #555;
}

.section--navy-dark {
  background-color: var(--color-navy-dark);
}


/* ----------------------------------------
   SECTION HEADER (shared)
   ---------------------------------------- */
.section__header {
  text-align: center;
  max-width: var(--container-narrow);
  margin: 0 auto var(--space-3xl);
}

.section__heading {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: var(--text-4xl);
  color: var(--color-white);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-md);
}

.section__body {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: var(--color-gray);
  line-height: 1.7;
  max-width: var(--container-narrow);
}

.section__intro {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: var(--color-gray);
  line-height: 1.7;
}


/* ----------------------------------------
   EYEBROW
   ---------------------------------------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-sm);
}


/* ----------------------------------------
   BUTTONS
   ---------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
  font-size: var(--text-base);
  padding: 0.875rem 2rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
  line-height: 1;
}

.btn--gradient {
  background: var(--gradient-brand);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(0, 205, 209, 0.25);
}

.btn--gradient:hover {
  background: var(--gradient-brand-hover);
  box-shadow: 0 6px 25px rgba(0, 205, 209, 0.35);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn--outline:hover {
  border-color: var(--color-teal);
  color: var(--color-teal);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--color-white);
  padding: 0.875rem 1rem;
}

.btn--ghost:hover {
  color: var(--color-teal);
}

.btn--sm {
  font-size: var(--text-sm);
  padding: 0.625rem 1.25rem;
}

.btn--lg {
  font-size: var(--text-lg);
  padding: 1.125rem 2.5rem;
}


/* ----------------------------------------
   CONTAINER
   ---------------------------------------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}


/* ============================================
   SECTION 1: HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-navy-dark);
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero__gradient-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 80%, rgba(0, 205, 209, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(51, 153, 255, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 50% 60% at 50% 50%, rgba(0, 205, 209, 0.05) 0%, transparent 60%);
  z-index: 0;
  animation: meshFloat 20s ease-in-out infinite alternate;
}

/* Animated data grid background */
.hero__data-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 70%);
  --mouse-x: 50%;
  --mouse-y: 50%;
}

.hero__data-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at var(--mouse-x) var(--mouse-y), rgba(0, 205, 209, 0.15), transparent 60%);
  pointer-events: none;
  z-index: 2;
}

.grid-cell {
  border-radius: 2px;
  width: 100%;
  height: 100%;
}

@keyframes cell-pulse {
  from { opacity: var(--opacity-min, 0.05); }
  to { opacity: var(--opacity-max, 0.5); }
}

@keyframes meshFloat {
  0% {
    background-position: 0% 0%, 100% 0%, 50% 50%;
  }
  50% {
    background-position: 30% 20%, 70% 30%, 40% 60%;
  }
  100% {
    background-position: 10% 40%, 90% 10%, 60% 40%;
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 21, 39, 0.6) 0%, rgba(11, 29, 58, 0.8) 100%);
  z-index: 1;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Hero two-column grid */
.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: 7fr 5fr;
    gap: var(--space-2xl);
  }
}

.hero__content {
  text-align: left;
}

/* Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  margin-bottom: var(--space-lg);
}

.hero__badge-text {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  color: var(--color-gray);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero__badge-icon {
  flex-shrink: 0;
}

.hero__heading {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: var(--text-5xl);
  color: var(--color-white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-lg);
}

.hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-xl) 0;
}

.hero__bullets li {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: var(--color-gray);
  line-height: 1.7;
  padding-left: var(--space-lg);
  position: relative;
  margin-bottom: var(--space-xs);
}

.hero__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-teal);
}

.hero__subtext {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  color: var(--color-gray);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: var(--space-xl);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Infographic card */
.hero__infographic {
  display: none;
}

@media (min-width: 1024px) {
  .hero__infographic {
    display: block;
  }
}

.hero__card {
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.hero__card-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(0, 205, 209, 0.08);
  filter: blur(60px);
  pointer-events: none;
}

.hero__card-inner {
  position: relative;
  z-index: 1;
  padding: var(--space-xl);
}

.hero__card-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.hero__card-icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(0, 205, 209, 0.1);
  border: 1px solid rgba(0, 205, 209, 0.2);
}

.hero__card-stat {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  color: var(--color-white);
}

.hero__card-stat-label {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-gray);
}

/* Progress bars */
.hero__card-bars {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.hero__card-bar-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero__card-bar-labels {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-sm);
  color: var(--color-gray);
}

.hero__card-bar-val--low {
  color: #ff8a8a;
  font-weight: var(--weight-medium);
}

.hero__card-bar-val--high {
  color: var(--color-teal);
  font-weight: var(--weight-medium);
}

.hero__card-bar-track {
  height: 8px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.05);
  overflow: hidden;
}

.hero__card-bar-fill--low {
  height: 100%;
  border-radius: var(--radius-full);
  background: rgba(255, 138, 138, 0.5);
}

.hero__card-bar-fill--high {
  height: 100%;
  border-radius: var(--radius-full);
  background: var(--gradient-brand);
}

.hero__card-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-bottom: var(--space-lg);
}

/* Mini stats row */
.hero__card-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  text-align: center;
}

.hero__card-mini-number {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  color: var(--color-white);
}

.hero__card-mini-label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-gray);
  font-weight: var(--weight-medium);
}

/* Tags */
.hero__card-tags {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  margin-top: var(--space-xl);
}

.hero__card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  font-size: 10px;
  font-weight: var(--weight-medium);
  letter-spacing: 1px;
  color: var(--color-gray);
}

.hero__card-pulse {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
}

.hero__card-pulse::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-ring 2s ease-out infinite;
}

.hero__card-pulse::after {
  content: '';
  position: relative;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  100% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

/* Remove old secondary link styles */
.hero__secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  color: var(--color-gray);
  text-decoration: none;
  transition: color var(--transition-base);
}

.hero__secondary-link:hover {
  color: var(--color-teal);
}

.hero__arrow {
  transition: transform var(--transition-base);
}

.hero__secondary-link:hover .hero__arrow {
  transform: translateY(3px);
}


/* ============================================
   SECTION 2: SOCIAL PROOF BAR
   ============================================ */
.proof-bar {
  background-color: var(--color-surface);
  padding: var(--space-xl) 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.proof-bar__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.proof-bar__left {
  flex-shrink: 0;
}

.proof-bar__stats {
  display: flex;
  gap: var(--space-xl);
  text-align: center;
}

.proof-bar__stat {
  position: relative;
  padding: var(--space-xs) var(--space-md);
}

.proof-bar__stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.proof-bar__number {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.proof-bar__desc {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-gray);
  margin-top: 0.25rem;
}

.proof-bar__divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
}

.proof-bar__right {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.proof-bar__client-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  color: var(--color-teal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  max-width: 140px;
  line-height: 1.4;
}

.proof-bar__logos {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.proof-bar__logo {
  height: 30px;
  width: auto;
  object-fit: contain;
  filter: brightness(2) grayscale(1);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.proof-bar__logo:hover {
  filter: brightness(1) grayscale(0);
  opacity: 1;
}

/* Logo marquee */
.proof-bar__logo--marvin {
  height: 28px;
  transform: scale(3);
  transform-origin: center;
  margin: 0 var(--space-xl);
}

.proof-bar__marquee {
  overflow: hidden;
  width: 300px;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.proof-bar__marquee-track {
  display: flex;
  gap: var(--space-xl);
  animation: marquee-scroll 20s linear infinite;
  width: max-content;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ============================================
   SECTION 3: THE PROBLEM
   ============================================ */
#problem {
  padding: var(--space-4xl) 0;
}

/* New problem layout (two-column with pain cards) */
.problem__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 1024px) {
  .problem__layout {
    grid-template-columns: 1fr 1.4fr;
  }
}

.problem__text .section__heading {
  text-align: left;
}

.problem__text .section__body {
  text-align: left;
}

.problem__pain-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.problem__pain-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border-left: 4px solid #ff8a8a;
}

.problem__pain-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.problem__pain-title {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: var(--text-base);
  color: var(--color-white);
  margin-bottom: 4px;
}

.problem__pain-text {
  font-size: var(--text-sm);
  color: var(--color-gray);
  line-height: 1.6;
}

.problem__visual {
  display: none;
}

@media (min-width: 1024px) {
  .problem__visual {
    display: flex;
    justify-content: stretch;
    align-items: stretch;
    margin-right: calc(-1 * var(--space-xl));
  }
  .problem__visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top right;
    border-radius: var(--radius-lg);
    max-height: none;
  }
}

.problem__visual-box {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(135deg, rgba(25,42,71,0.5), rgba(14,31,60,0.3));
}

.problem__visual-text {
  font-size: var(--text-sm);
  color: var(--color-gray-dark);
  font-weight: var(--weight-medium);
}

/* Keep old problem card styles for backwards compat */
.problem__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.problem__card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-base);
}

.problem__card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 205, 209, 0.15);
  transform: translateY(-4px);
}

.problem__icon {
  margin-bottom: var(--space-md);
}

.problem__card-title {
  font-family: var(--font-heading);
  font-weight: var(--weight-semibold);
  font-size: var(--text-xl);
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.problem__card-text {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-gray);
  line-height: 1.6;
}


/* ============================================
   SECTION 4: THE SOLUTION
   ============================================ */
#solution {
  padding: var(--space-4xl) 0;
}

.solution__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.solution__photo {
  text-align: center;
}

.solution__photo-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.solution__photo-placeholder {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 3 / 4;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-gray-dark);
}

.solution__photo-caption {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-gray);
  margin-top: var(--space-sm);
}


/* ============================================
   SECTION 5: SERVICES
   ============================================ */
#services {
  padding: var(--space-4xl) 0;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.services__card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-xl) var(--space-lg);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.services__card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 205, 209, 0.2);
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0, 205, 209, 0.08);
}

.services__card-icon {
  margin-bottom: var(--space-md);
}

.services__card-title {
  font-family: var(--font-heading);
  font-weight: var(--weight-semibold);
  font-size: var(--text-2xl);
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.services__card-desc {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-gray);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.services__card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-lg);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  flex-grow: 1;
}

.services__card-features li {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-gray);
  background: rgba(0, 205, 209, 0.06);
  border: 1px solid rgba(0, 205, 209, 0.12);
  border-radius: var(--radius-full);
  padding: 0.375rem 0.875rem;
}

.services__card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-teal);
  text-decoration: none;
  transition: gap var(--transition-base), color var(--transition-base);
  margin-top: auto;
}

.services__card-link:hover {
  gap: 0.75rem;
  color: var(--color-blue);
}


/* ============================================
   SECTION 6: AI CALCULATOR SPOTLIGHT
   ============================================ */
.calculator-spotlight {
  background-color: var(--color-navy);
  padding: var(--space-4xl) 0;
  overflow: hidden;
}

.calculator-spotlight__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 205, 209, 0.08) 0%, rgba(51, 153, 255, 0.04) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.calculator__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: var(--space-md);
  align-items: flex-start;
  margin-bottom: var(--space-3xl);
}

.calculator__step {
  text-align: center;
  padding: var(--space-lg);
}

.calculator__step-number {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: var(--weight-bold);
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.calculator__step-title {
  font-family: var(--font-heading);
  font-weight: var(--weight-semibold);
  font-size: var(--text-lg);
  color: var(--color-white);
  margin-bottom: var(--space-xs);
}

.calculator__step-desc {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-gray);
  line-height: 1.6;
}

.calculator__step-connector {
  width: 60px;
  height: 2px;
  background: var(--gradient-brand);
  align-self: center;
  margin-top: -1rem;
  opacity: 0.4;
}

.calculator__body {
  text-align: center;
  max-width: var(--container-narrow);
  margin: 0 auto var(--space-2xl);
}

.calculator__body .section__body {
  margin: 0 auto;
}

.calculator__mockup {
  margin-bottom: var(--space-2xl);
}

/* Step-to-slide active sync */
.calculator__step--active {
  position: relative;
}
.calculator__step--active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--gradient-brand);
  border-radius: 2px;
}

/* ── Calculator Demo Slideshow ── */
.calc-demo {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3), 0 0 60px rgba(0, 205, 209, 0.06);
  position: relative;
}

/* Browser chrome bar */
.calc-demo__chrome {
  height: 36px;
  background: #1a1a2e;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.calc-demo__dots {
  display: flex;
  gap: 6px;
}

.calc-demo__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.calc-demo__dots span:nth-child(1) { background: #ff5f56; }
.calc-demo__dots span:nth-child(2) { background: #ffbd2e; }
.calc-demo__dots span:nth-child(3) { background: #27c93f; }

.calc-demo__url {
  flex: 1;
  text-align: center;
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.02em;
}

/* Slide viewport */
.calc-demo__viewport {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

/* Progress bar */
.calc-demo__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--gradient-brand);
  z-index: 10;
}
.calc-demo__progress--animating {
  animation: calc-demo-progress 4s linear forwards;
}
@keyframes calc-demo-progress {
  from { width: 0; }
  to { width: 100%; }
}

/* Individual slides */
.calc-demo__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.calc-demo__slide--active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

/* Slide backgrounds */
.calc-demo__slide--dark { background: #0C1117; }
.calc-demo__slide--cream { background: #F5F2EC; }
.calc-demo__slide--white { background: #FDFCFA; }
.calc-demo__slide--bright { background: #ffffff; }

/* Slide inner container */
.calc-demo__slide-inner {
  width: 100%;
  padding: 6% 8%;
  overflow: hidden;
}
.calc-demo__slide-inner--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* ── Slide 1: Address Input ── */
.calc-demo__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #C9972B;
  margin-bottom: 8px;
}
.calc-demo__heading {
  font-family: var(--font-heading);
  font-size: clamp(16px, 2.5vw, 26px);
  font-weight: 700;
  color: #F5F2EC;
  line-height: 1.15;
  margin-bottom: 8px;
}
.calc-demo__heading em {
  font-style: italic;
  color: #C9972B;
}
.calc-demo__subtitle {
  font-family: var(--font-body);
  font-size: clamp(10px, 1.4vw, 13px);
  color: #9A968D;
  line-height: 1.5;
  max-width: 380px;
  margin-bottom: 16px;
}
.calc-demo__address-bar {
  display: flex;
  align-items: center;
  background: #161D26;
  border: 1px solid rgba(201, 151, 43, 0.2);
  border-radius: 6px;
  padding: 8px 10px;
  gap: 8px;
  max-width: 360px;
  width: 100%;
  margin-bottom: 14px;
}
.calc-demo__pin {
  flex-shrink: 0;
  color: #C9972B;
}
.calc-demo__address-text {
  flex: 1;
  font-family: var(--font-body);
  font-size: clamp(10px, 1.3vw, 13px);
  color: #F5F2EC;
}
.calc-demo__estimate-btn {
  flex-shrink: 0;
  background: #C9972B;
  color: #0C1117;
  font-family: var(--font-heading);
  font-size: clamp(9px, 1.1vw, 12px);
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 4px;
}
.calc-demo__trust {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.calc-demo__trust-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: clamp(8px, 1vw, 10px);
  color: #706C64;
}
.calc-demo__trust-item svg { stroke: #706C64; }

/* ── Slide 2: Loading ── */
.calc-demo__spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #E8E4DC;
  border-top-color: #C9972B;
  border-radius: 50%;
  animation: calc-demo-spin 0.8s linear infinite;
  margin-bottom: 16px;
}
@keyframes calc-demo-spin {
  to { transform: rotate(360deg); }
}
.calc-demo__loading-text {
  font-family: var(--font-body);
  font-size: clamp(11px, 1.4vw, 14px);
  color: #4A473F;
}

/* ── Slide 3: Results ── */
.calc-demo__results-header {
  text-align: center;
  margin-bottom: 4%;
}
.calc-demo__results-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #6B7A2E;
  margin-bottom: 4px;
}
.calc-demo__results-title {
  font-family: var(--font-heading);
  font-size: clamp(14px, 2vw, 22px);
  font-weight: 700;
  color: #0C1117;
  margin-bottom: 2px;
}
.calc-demo__results-address {
  font-family: var(--font-body);
  font-size: clamp(9px, 1.1vw, 12px);
  color: #706C64;
}
.calc-demo__results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4%;
  align-items: start;
}
.calc-demo__map-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #E8E4DC;
}
.calc-demo__map-placeholder {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #e2dfda 0%, #d4d0c8 50%, #e2dfda 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.calc-demo__map-label {
  font-family: var(--font-body);
  font-size: 10px;
  color: #9A968D;
}
.calc-demo__estimate-card {
  background: white;
  border-radius: 8px;
  border: 1px solid #E8E4DC;
  overflow: hidden;
}
.calc-demo__price-range {
  background: #0C1117;
  padding: 12% 8%;
  text-align: center;
}
.calc-demo__price-label {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(8px, 1vw, 10px);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}
.calc-demo__price-value {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(16px, 2.2vw, 24px);
  font-weight: 700;
  color: #F5F2EC;
}
.calc-demo__details {
  padding: 8% 8%;
}
.calc-demo__detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid #f0ede8;
}
.calc-demo__detail-row:last-child { border-bottom: none; }
.calc-demo__detail-label {
  font-family: var(--font-body);
  font-size: clamp(9px, 1vw, 11px);
  color: #706C64;
}
.calc-demo__detail-value {
  font-family: var(--font-heading);
  font-size: clamp(9px, 1.1vw, 12px);
  font-weight: 600;
  color: #0C1117;
}

/* ── Slide 4: Lead Capture ── */
.calc-demo__form-card {
  background: white;
  border-radius: 10px;
  border: 1px solid #E8E4DC;
  padding: 6% 8%;
  max-width: 340px;
  width: 100%;
  text-align: left;
}
.calc-demo__form-heading {
  font-family: var(--font-heading);
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 700;
  color: #0C1117;
  margin-bottom: 4px;
  text-align: center;
}
.calc-demo__form-subtitle {
  font-family: var(--font-body);
  font-size: clamp(9px, 1.1vw, 12px);
  color: #706C64;
  margin-bottom: 16px;
  text-align: center;
  line-height: 1.5;
}
.calc-demo__form-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}
.calc-demo__field-label {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(8px, 0.9vw, 10px);
  font-weight: 600;
  color: #4A473F;
  margin-bottom: 3px;
}
.calc-demo__field-input {
  display: block;
  background: #F5F2EC;
  border: 1px solid #E8E4DC;
  border-radius: 4px;
  padding: 7px 10px;
  font-family: var(--font-body);
  font-size: clamp(9px, 1vw, 12px);
  color: #0C1117;
}
.calc-demo__form-btn {
  display: block;
  background: #0C1117;
  color: #F5F2EC;
  font-family: var(--font-heading);
  font-size: clamp(10px, 1.2vw, 13px);
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 6px;
  text-align: center;
  border-bottom: 3px solid #C9972B;
}

/* ── Bright / Teal Theme Overrides ── */
.calc-demo__eyebrow--teal { color: var(--color-teal); }
.calc-demo__heading--dark { color: #1a1a2e; }
.calc-demo__heading--dark em { color: var(--color-teal); font-style: italic; }
.calc-demo__subtitle--dark { color: #555; }

.calc-demo__address-bar--light {
  background: #f4f6f8;
  border-color: #dde1e6;
}
.calc-demo__address-text--dark { color: #1a1a2e; }
.calc-demo__estimate-btn--teal {
  background: var(--color-teal);
  color: #fff;
}
.calc-demo__address-bar--light .calc-demo__pin { color: var(--color-teal); }

.calc-demo__trust--dark .calc-demo__trust-item { color: #888; }
.calc-demo__trust--dark .calc-demo__trust-item svg { stroke: #888; }

/* Results on bright bg */
.calc-demo__results-eyebrow--teal { color: var(--color-teal); }
.calc-demo__results-title--dark { color: #1a1a2e; }
.calc-demo__results-address--dark { color: #666; }

/* Estimate card light variant */
.calc-demo__estimate-card--light {
  border-color: #e2e6ea;
}
.calc-demo__price-range--teal {
  background: linear-gradient(135deg, #0a2540 0%, #0d3151 100%);
}
.calc-demo__price-label--light { color: rgba(255, 255, 255, 0.6); }

/* Form light variant */
.calc-demo__form-card--light {
  background: #fff;
  border-color: #e2e6ea;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.calc-demo__form-heading--dark { color: #1a1a2e; }
.calc-demo__field-input--light {
  background: #f4f6f8;
  border-color: #dde1e6;
  color: #333;
}
.calc-demo__form-btn--teal {
  background: var(--color-teal);
  color: #fff;
  border-bottom: 3px solid #00a8ab;
}

/* ── Slide 2: Satellite Map Layout ── */
.calc-demo__satellite-layout {
  display: flex;
  flex-direction: column;
  gap: 4%;
}
.calc-demo__satellite-layout .calc-demo__map-card {
  width: 100%;
}
.calc-demo__map-placeholder--aerial {
  background:
    radial-gradient(ellipse at 45% 45%, #6b8a5e 0%, #7d9b6e 20%, #8a9e7a 35%, #a3aa8e 50%, #b5b09a 65%, #c8bfa8 80%, #9aab88 100%);
  position: relative;
}
.calc-demo__map-pin {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
.calc-demo__map-placeholder--aerial::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 48%, rgba(200, 200, 180, 0.3) 48%, rgba(200, 200, 180, 0.3) 52%, transparent 52%),
    linear-gradient(0deg, transparent 30%, rgba(200, 200, 180, 0.2) 30%, rgba(200, 200, 180, 0.2) 34%, transparent 34%),
    linear-gradient(0deg, transparent 65%, rgba(200, 200, 180, 0.2) 65%, rgba(200, 200, 180, 0.2) 69%, transparent 69%);
  pointer-events: none;
}
.calc-demo__map-placeholder--aerial::after {
  content: 'Google';
  position: absolute;
  bottom: 6px;
  left: 8px;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

/* Roof data rows below map */
.calc-demo__roof-data {
  background: #fff;
  border: 1px solid #e2e6ea;
  border-radius: 8px;
  padding: 4% 5%;
}
.calc-demo__data-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}
.calc-demo__data-row:last-of-type { border-bottom: none; }
.calc-demo__data-label {
  font-family: var(--font-body);
  font-size: clamp(9px, 1.1vw, 12px);
  color: #666;
}
.calc-demo__data-value {
  font-family: var(--font-heading);
  font-size: clamp(10px, 1.2vw, 13px);
  font-weight: 600;
  color: #1a1a2e;
}
.calc-demo__data-disclaimer {
  margin-top: 8px;
  padding-left: 10px;
  border-left: 2px solid var(--color-teal);
  font-family: var(--font-body);
  font-size: clamp(8px, 0.9vw, 10px);
  color: #999;
  line-height: 1.5;
}

/* Arrow buttons on bright slides need dark styling */
.calc-demo__arrow {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
}
.calc-demo__arrow:hover {
  background: rgba(0, 0, 0, 0.12);
  color: #1a1a2e;
}

/* ── Navigation Arrows ── */
.calc-demo__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  z-index: 5;
}
.calc-demo__arrow--prev { left: 10px; }
.calc-demo__arrow--next { right: 10px; }

/* ── Dot Indicators ── */
.calc-demo__indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px 0;
  background: #1a1a2e;
}
.calc-demo__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.calc-demo__dot--active {
  width: 24px;
  border-radius: 4px;
  background: var(--color-teal);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .calc-demo__arrow { display: none; }
  .calc-demo__viewport { aspect-ratio: 3 / 4; }
  .calc-demo__results-grid { grid-template-columns: 1fr; gap: 8px; }
  .calc-demo__map-placeholder { aspect-ratio: 16 / 9; }
  .calc-demo__address-bar { flex-wrap: wrap; justify-content: center; }
  .calc-demo__estimate-btn, .calc-demo__estimate-btn--teal { width: 100%; text-align: center; }
  .calc-demo__trust, .calc-demo__trust--dark { flex-direction: column; align-items: center; }
  .calc-demo__satellite-layout .calc-demo__map-card { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .calc-demo__slide { transition: none; }
  .calc-demo__spinner { animation: none; }
  .calc-demo__progress { display: none; }
}

.calculator__cta {
  text-align: center;
}


/* ============================================
   SECTION 7: HOW IT WORKS
   ============================================ */
#how-it-works {
  padding: var(--space-4xl) 0;
}

.how__timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 60px;
}

.how__timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-teal), var(--color-blue), transparent);
  opacity: 0.3;
}

.how__step {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
  position: relative;
}

.how__step:last-child {
  margin-bottom: 0;
}

.how__step-number {
  position: absolute;
  left: -60px;
  top: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: var(--text-lg);
  color: var(--color-white);
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(0, 205, 209, 0.2);
}

.how__step-content {
  padding-top: 0.25rem;
}

.how__step-title {
  font-family: var(--font-heading);
  font-weight: var(--weight-semibold);
  font-size: var(--text-xl);
  color: var(--color-white);
  margin-bottom: var(--space-xs);
}

.how__step-desc {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-gray);
  line-height: 1.7;
}

.how__cta {
  text-align: center;
  margin-top: var(--space-3xl);
}


/* ============================================
   SECTION 8: PRICING
   ============================================ */
#pricing {
  padding: var(--space-4xl) 0;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  align-items: stretch;
}

.pricing__tier {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
  position: relative;
}

.pricing__tier:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
}

.pricing__tier--popular {
  background: rgba(0, 205, 209, 0.04);
  border: 2px solid transparent;
  background-clip: padding-box;
  box-shadow:
    0 0 0 2px rgba(0, 205, 209, 0.3),
    0 8px 40px rgba(0, 205, 209, 0.1);
  transform: scale(1.03);
}

.pricing__tier--popular:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow:
    0 0 0 2px rgba(0, 205, 209, 0.5),
    0 12px 50px rgba(0, 205, 209, 0.15);
}

.pricing__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-brand);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.375rem 1.25rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pricing__tier-header {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing__tier-name {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: var(--text-2xl);
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.pricing__tier-price {
  margin-bottom: var(--space-sm);
}

.pricing__amount {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: var(--text-3xl);
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing__frequency {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-gray-dark);
  margin-top: 0.25rem;
}

.pricing__tier-desc {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-gray);
  line-height: 1.6;
}

.pricing__features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-xl);
  flex-grow: 1;
}

.pricing__feature {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-gray);
  padding: 0.625rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
  padding-left: 1.75rem;
}

.pricing__feature::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: var(--gradient-brand);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 12L2 7.5l1.4-1.4L6.5 9.2l6.1-6.1L14 4.5z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 12L2 7.5l1.4-1.4L6.5 9.2l6.1-6.1L14 4.5z'/%3E%3C/svg%3E");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}

.pricing__cta {
  width: 100%;
  text-align: center;
  margin-top: auto;
}

.pricing__note {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-gray-dark);
  text-align: center;
  max-width: var(--container-narrow);
  margin: var(--space-2xl) auto 0;
  line-height: 1.7;
}

.pricing__note a {
  color: var(--color-teal);
  text-decoration: none;
  font-weight: var(--weight-medium);
}

.pricing__note a:hover {
  text-decoration: underline;
}


/* ============================================
   SECTION 9: TESTIMONIALS
   ============================================ */
#testimonials {
  padding: var(--space-4xl) 0;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.testimonials__card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 3px solid var(--color-teal);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin: 0;
  transition: all var(--transition-base);
}

.testimonials__card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-4px);
}

.testimonials__quote-icon {
  margin-bottom: var(--space-md);
}

.testimonials__text {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-gray);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--space-lg);
}

.testimonials__author {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: var(--space-sm);
}

.testimonials__name {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-white);
  font-style: normal;
  font-weight: var(--weight-medium);
}


/* ============================================
   SECTION 10: FINAL CTA
   ============================================ */
.final-cta {
  background: linear-gradient(135deg, rgba(0, 205, 209, 0.15) 0%, rgba(51, 153, 255, 0.15) 100%);
  padding: var(--space-4xl) 0;
  text-align: center;
}

.final-cta__content {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.final-cta__heading {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: var(--text-4xl);
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: var(--space-md);
}

.final-cta__body {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: var(--color-gray);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.final-cta__subline {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-gray-dark);
  margin-top: var(--space-md);
}


/* ============================================
   REVEAL ANIMATIONS (base states)
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-stagger .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-stagger .reveal:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger .reveal:nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger .reveal:nth-child(4) { transition-delay: 0.45s; }


/* ============================================
   RESPONSIVE: TABLET (below 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .hero__heading {
    font-size: var(--text-4xl);
  }

  .section__heading {
    font-size: var(--text-3xl);
  }

  .final-cta__heading {
    font-size: var(--text-3xl);
  }

  .solution__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .pricing__tier--popular {
    transform: scale(1);
  }

  .pricing__tier--popular:hover {
    transform: translateY(-4px);
  }
}


/* ============================================
   RESPONSIVE: MOBILE (below 768px)
   ============================================ */
@media (max-width: 768px) {
  .hero {
    min-height: 90vh;
    padding-top: calc(var(--nav-height) + var(--space-lg));
  }

  .hero__heading {
    font-size: var(--text-3xl);
  }

  .hero__subtext {
    font-size: var(--text-base);
  }

  .hero__actions {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .proof-bar__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .proof-bar__stat:nth-child(2)::after {
    display: none;
  }

  .proof-bar__number {
    font-size: var(--text-2xl);
  }

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

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

  .calculator__steps {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .calculator__step-connector {
    width: 2px;
    height: 30px;
    margin: 0 auto;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

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

  .how__timeline {
    padding-left: 50px;
  }

  .how__step-number {
    left: -50px;
    width: 36px;
    height: 36px;
    font-size: var(--text-base);
  }

  .section__heading {
    font-size: var(--text-2xl);
  }

  .final-cta__heading {
    font-size: var(--text-2xl);
  }

  #problem,
  #solution,
  #services,
  #how-it-works,
  #pricing,
  #testimonials {
    padding: var(--space-3xl) 0;
  }

  .section__header {
    margin-bottom: var(--space-2xl);
  }

  /* Proof bar: stack vertically on mobile */
  .proof-bar__row {
    flex-direction: column;
    gap: var(--space-md);
  }
  .proof-bar__divider {
    width: 60px;
    height: 1px;
  }
  .proof-bar__right {
    flex-direction: column;
    gap: var(--space-sm);
  }
  .proof-bar__client-label {
    max-width: none;
    text-align: center;
  }
  .proof-bar__marquee {
    width: 240px;
  }
  .proof-bar__logo--marvin {
    transform: scale(1.8);
    margin: 0 var(--space-md);
  }

  /* Diff cards: add gap on mobile */
  .diff-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .diff-card {
    padding: var(--space-lg);
  }

  /* Problem section: stack image below text */
  .problem__layout {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .problem__visual {
    display: block;
    margin-right: 0;
  }
  .problem__visual img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
  }

  /* Calculator steps: single column */
  .calculator__steps {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    text-align: center;
  }
  .calculator__step-connector {
    width: 2px;
    height: 24px;
    margin: 0 auto;
  }
  .calculator__step {
    padding: var(--space-md);
  }

  /* Calculator demo: taller for mobile */
  .calc-demo__viewport {
    aspect-ratio: 3 / 4;
  }
  .calc-demo__slide-inner {
    padding: 8% 6%;
  }
  .calc-demo__results-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .calc-demo__arrow {
    display: none;
  }
  .calc-demo__address-bar,
  .calc-demo__address-bar--light {
    flex-wrap: wrap;
    justify-content: center;
  }
  .calc-demo__estimate-btn,
  .calc-demo__estimate-btn--teal {
    width: 100%;
    text-align: center;
  }
  .calc-demo__trust,
  .calc-demo__trust--dark {
    flex-direction: column;
    align-items: center;
  }

  /* Support grid: stack with gap */
  .support-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  /* Pricing cards: single column */
  .pricing-cards-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .pricing-hover-card--featured {
    transform: none;
  }
  .pricing-hover-card:hover,
  .pricing-hover-card--featured:hover {
    transform: none !important;
  }

  /* Contact form grid */
  .waitlist-form-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}


/* ============================================
   RESPONSIVE: SMALL MOBILE (below 480px)
   ============================================ */
@media (max-width: 480px) {
  .hero__heading {
    font-size: var(--text-2xl);
  }

  .hero__subtext {
    font-size: var(--text-sm);
  }

  .proof-bar__stats {
    grid-template-columns: 1fr 1fr;
  }

  .proof-bar__stat::after {
    display: none !important;
  }

  .section__heading {
    font-size: var(--text-xl);
  }

  .final-cta__heading {
    font-size: var(--text-xl);
  }

  .section__body,
  .section__intro {
    font-size: var(--text-base);
  }

  .calculator__step-number {
    font-size: var(--text-3xl);
  }

  .pricing__amount {
    font-size: var(--text-2xl);
  }

  .how__timeline {
    padding-left: 44px;
  }

  .how__timeline::before {
    left: 14px;
  }

  .how__step-number {
    left: -44px;
    width: 30px;
    height: 30px;
    font-size: var(--text-sm);
  }
}


/* ============================================
   ALTERNATIVE PRICING SECTION (comparison)
   ============================================ */

.pricing-alt {
  position: relative;
  background: #000000;
  padding: var(--space-4xl) 0;
  overflow: hidden;
}

/* Evaluation label */
.pricing-alt__eval-label {
  display: inline-block;
  background: rgba(255, 100, 100, 0.15);
  color: #ff6b6b;
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 100, 100, 0.3);
  margin-bottom: var(--space-lg);
}

/* Background grid pattern */
.pricing-alt__bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 400px;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 70px 80px;
  mask-image: radial-gradient(50% 50%, white, transparent);
  -webkit-mask-image: radial-gradient(50% 50%, white, transparent);
  z-index: 0;
}

/* Background blue glow */
.pricing-alt__bg-glow {
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  width: 80%;
  height: 100%;
  background: radial-gradient(circle at center, #206ce8 0%, transparent 70%);
  opacity: 0.15;
  mix-blend-mode: screen;
  z-index: 0;
}

/* Header */
.pricing-alt__header {
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 10;
  padding-top: var(--space-lg);
}

.pricing-alt__title {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: var(--weight-bold);
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.pricing-alt__subtitle {
  color: #9ca3af;
  font-size: var(--text-base);
  max-width: 500px;
  margin: 0 auto var(--space-lg);
  line-height: 1.6;
}

/* Monthly/Yearly Toggle */
.pricing-alt__toggle {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.pricing-alt__toggle-inner {
  position: relative;
}

.pricing-alt__toggle-btn {
  position: relative;
  z-index: 10;
  height: 44px;
  padding: 0 24px;
  border: none;
  background: transparent;
  color: #d1d5db;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  cursor: pointer;
  transition: color 0.2s ease;
  border-radius: var(--radius-full);
}

.pricing-alt__toggle-btn--active {
  color: #ffffff;
}

.pricing-alt__toggle-btn--active .pricing-alt__toggle-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-full);
  border: 3px solid #3b82f6;
  background: linear-gradient(to top, #3b82f6, #2563eb);
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.4);
  z-index: -1;
}

.pricing-alt__toggle-label {
  position: relative;
  z-index: 2;
}

/* Wrap the two toggle buttons */
.pricing-alt__toggle {
  display: inline-flex;
  background: #171717;
  border: 1px solid #374151;
  border-radius: var(--radius-full);
  padding: 4px;
  gap: 0;
}

/* Cards Grid */
.pricing-alt__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  max-width: 1000px;
  margin: 0 auto;
  padding: var(--space-lg) 0;
  position: relative;
  z-index: 10;
}

/* Individual Card */
.pricing-alt__card {
  background: linear-gradient(to right, #171717, #262626, #171717);
  border: 1px solid #404040;
  border-radius: var(--radius-xl);
  padding: 0;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
}

.pricing-alt__card--popular {
  background: linear-gradient(to right, #171717, #2a2a2a, #171717);
  box-shadow: 0px -13px 300px 0px rgba(9, 0, 255, 0.35);
  border-color: #525252;
  z-index: 20;
}

/* Badge */
.pricing-alt__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to top, #3b82f6, #2563eb);
  color: white;
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  padding: 4px 16px;
  border-radius: var(--radius-full);
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Card Header */
.pricing-alt__card-header {
  padding: var(--space-lg);
  text-align: left;
}

.pricing-alt__card-name {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

/* Price */
.pricing-alt__card-price {
  display: flex;
  align-items: baseline;
  margin-bottom: var(--space-sm);
}

/* Strikethrough original price */
.pricing-alt__price-original {
  font-size: var(--text-xl);
  color: #6b7280;
  text-decoration: line-through;
  text-decoration-color: #ef4444;
  text-decoration-thickness: 2px;
  display: block;
  margin-bottom: 2px;
}

.pricing-alt__price-original .pricing-alt__dollar {
  font-size: var(--text-xl);
  color: #6b7280;
}

.pricing-alt__price-sale {
  display: flex;
  align-items: baseline;
}

.pricing-alt__dollar {
  font-size: var(--text-4xl);
  font-weight: var(--weight-semibold);
  color: var(--color-white);
}

.pricing-alt__amount {
  font-size: var(--text-4xl);
  font-weight: var(--weight-semibold);
  color: var(--color-white);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.pricing-alt__amount.switching {
  opacity: 0;
  transform: translateY(-8px);
}

.pricing-alt__period {
  font-size: var(--text-base);
  color: #9ca3af;
  margin-left: 4px;
}

.pricing-alt__card-desc {
  font-size: var(--text-sm);
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: var(--space-xs);
}

.pricing-alt__setup-note {
  font-size: var(--text-xs);
  color: #6b7280;
  font-style: italic;
}

/* Scarcity line */
.pricing-alt__scarcity {
  color: #f59e0b;
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  margin-bottom: var(--space-lg);
}

.pricing-alt__scarcity strong {
  color: #fbbf24;
}

/* Toggle description (small, below toggle pill) */
.pricing-alt__toggle-desc {
  color: #6b7280;
  font-size: var(--text-xs);
  margin-top: var(--space-sm);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  transition: opacity 0.3s ease;
}

/* Toggle detail (bigger, bolder description for V3) */
.pricing-alt__toggle-detail {
  max-width: 600px;
  margin: var(--space-md) auto 0;
  padding: var(--space-md) var(--space-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.pricing-alt__toggle-detail-text {
  color: #d1d5db;
  font-size: var(--text-base);
  line-height: 1.7;
  text-align: center;
  transition: opacity 0.3s ease;
}

.pricing-alt__toggle-detail-text.switching {
  opacity: 0;
}

/* Tier label (GOOD / BETTER / BEST) */
.pricing-alt__tier-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: var(--space-xs);
}

.pricing-alt__card--popular .pricing-alt__tier-label {
  color: #60a5fa;
}

.pricing-alt__card--best .pricing-alt__tier-label {
  color: #a78bfa;
}

/* Retainer line (below one-time price) */
.pricing-alt__retainer-line {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 4px;
  margin-bottom: var(--space-sm);
}

.pricing-alt__retainer-plus {
  color: #6b7280;
  font-size: var(--text-lg);
}

.pricing-alt__retainer-amount {
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  color: var(--color-teal);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.pricing-alt__retainer-amount.switching {
  opacity: 0;
  transform: translateY(-6px);
}

.pricing-alt__retainer-freq {
  font-size: var(--text-xs);
  color: #9ca3af;
  transition: opacity 0.3s ease;
}

.pricing-alt__retainer-freq.switching {
  opacity: 0;
}

/* Value callouts */
.pricing-alt__value {
  display: inline;
  color: #6b7280;
  font-size: var(--text-xs);
  font-style: italic;
}

.pricing-alt__total-value {
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px dashed #374151;
  font-size: var(--text-sm);
  color: #9ca3af;
  font-weight: var(--weight-medium);
}

/* Best card styling */
.pricing-alt__card--best {
  border-color: #7c3aed33;
}

.pricing-alt__card--best:hover {
  border-color: #7c3aed55;
}

/* Guarantee section */
.pricing-alt__guarantee {
  max-width: 700px;
  margin: var(--space-xl) auto;
  text-align: center;
  padding: var(--space-lg);
  border: 1px solid #374151;
  border-radius: var(--radius-lg);
  background: rgba(23, 23, 23, 0.6);
  position: relative;
  z-index: 10;
}

.pricing-alt__guarantee-icon {
  color: #22c55e;
  margin-bottom: var(--space-sm);
}

.pricing-alt__guarantee-icon svg {
  margin: 0 auto;
}

.pricing-alt__guarantee-title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.pricing-alt__guarantee-text {
  color: #d1d5db;
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.pricing-alt__guarantee-text:last-child {
  margin-bottom: 0;
}

.pricing-alt__guarantee-text strong {
  color: var(--color-white);
}

/* CTA Button */
.pricing-alt__btn {
  display: block;
  width: calc(100% - var(--space-lg) * 2);
  margin: 0 var(--space-lg) var(--space-lg);
  padding: 16px;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  border-radius: var(--radius-lg);
  border: 1px solid #404040;
  background: linear-gradient(to top, #0a0a0a, #525252);
  color: var(--color-white);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.pricing-alt__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.pricing-alt__btn--popular {
  background: linear-gradient(to top, #3b82f6, #2563eb);
  border-color: #3b82f6;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

.pricing-alt__btn--popular:hover {
  box-shadow: 0 6px 30px rgba(59, 130, 246, 0.5);
}

/* Features */
.pricing-alt__features {
  padding: 0 var(--space-lg) var(--space-lg);
  border-top: 1px solid #404040;
  margin-top: auto;
  padding-top: var(--space-md);
}

.pricing-alt__features-heading {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.pricing-alt__feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-alt__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: var(--text-sm);
  color: #d1d5db;
}

.pricing-alt__dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: #6b7280;
  border-radius: 50%;
}

/* Note below cards */
.pricing-alt__note {
  text-align: center;
  color: #6b7280;
  font-size: var(--text-sm);
  margin-top: var(--space-lg);
  position: relative;
  z-index: 10;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-alt__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .pricing-alt__title {
    font-size: var(--text-3xl);
  }

  .pricing-alt__card--popular {
    order: -1;
  }
}

@media (max-width: 480px) {
  .pricing-alt__title {
    font-size: var(--text-2xl);
  }

  .pricing-alt__toggle-btn {
    padding: 0 16px;
    font-size: var(--text-xs);
  }
}


/* ============================================
   WAITLIST SECTION
   ============================================ */

.waitlist {
  position: relative;
  z-index: 10;
  padding: var(--space-xl) var(--space-lg);
}

.waitlist__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-2xl) var(--space-xl);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(0, 205, 209, 0.08), rgba(51, 153, 255, 0.08));
  border: 1px solid rgba(0, 205, 209, 0.2);
  backdrop-filter: blur(8px);
}

.waitlist__title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: var(--space-sm);
}

.waitlist__title em {
  font-style: italic;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.waitlist__text {
  color: #9ca3af;
  font-size: var(--text-base);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.waitlist__openings {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-teal);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}

.waitlist__btn {
  display: inline-block;
  padding: 16px 40px;
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-white);
  border: 2px solid var(--color-teal);
  border-radius: var(--radius-md);
  background: transparent;
  transition: all 0.3s ease;
}

.waitlist__btn:hover {
  background: var(--color-teal);
  color: var(--color-navy);
  box-shadow: 0 0 20px rgba(0, 205, 209, 0.3);
}

@media (max-width: 480px) {
  .waitlist__title {
    font-size: var(--text-2xl);
    letter-spacing: 2px;
  }

  .waitlist__inner {
    padding: var(--space-xl) var(--space-md);
  }
}


/* ============================================
   PRICING V3 (simplified, benefit-focused)
   ============================================ */

.pricing-v3 {
  position: relative;
  background: #000000;
  padding: var(--space-4xl) 0;
  overflow: hidden;
}

.pricing-v3 .pricing-alt__bg-grid,
.pricing-v3 .pricing-alt__bg-glow {
  /* Reuse the same background effects from pricing-alt */
}

.pricing-v3__eval-label {
  display: inline-block;
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(34, 197, 94, 0.3);
  margin-bottom: var(--space-lg);
}

/* V3 benefit bullets — simpler, no value tags */
.pricing-v3 .pricing-alt__feature {
  font-size: var(--text-sm);
  color: #e5e7eb;
  line-height: 1.5;
}

.pricing-v3 .pricing-alt__feature strong {
  color: var(--color-white);
}

.pricing-v3 .pricing-alt__features {
  border-top: 1px solid #333333;
}

.pricing-v3 .pricing-alt__features-heading {
  display: none;
}


/* ============================================
   DIFFERENTIATOR CARDS
   ============================================ */

.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.diff-card {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  background: rgba(14, 31, 60, 0.5);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s ease;
}

.diff-card:hover {
  border-color: rgba(0, 205, 209, 0.3);
  transform: translateY(-4px);
}

.diff-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 205, 209, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
}

.diff-card__title {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: var(--text-lg);
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.diff-card__text {
  font-size: var(--text-sm);
  color: var(--color-gray);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .diff-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================
   WAITLIST + FORM GRID
   ============================================ */

.waitlist-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.waitlist-form__left {
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .waitlist-form-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}


/* ============================================
   FOUNDER + SUPPORT + PRICING GRIDS
   ============================================ */

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  max-width: 800px;
  margin: 0 auto;
}

/* Hover elevation on pricing cards */
.pricing-hover-card {
  transition: all 0.3s ease !important;
}

.pricing-hover-card:hover {
  transform: scale(1.05) !important;
  border-color: rgba(0, 205, 209, 0.4) !important;
  box-shadow: 0 0 40px rgba(0, 205, 209, 0.12) !important;
  z-index: 5 !important;
}

.pricing-hover-card--featured {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(0, 205, 209, 0.1);
}

.pricing-hover-card--featured:hover {
  transform: scale(1.08) !important;
  box-shadow: 0 0 60px rgba(0, 205, 209, 0.2) !important;
}

/* Hover elevation on support cards */
.support-hover-card {
  transition: all 0.3s ease !important;
}

.support-hover-card:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(0, 205, 209, 0.3) !important;
  box-shadow: 0 0 30px rgba(0, 205, 209, 0.1) !important;
}

.support-hover-card:hover h3 {
  color: var(--color-teal) !important;
}

@media (max-width: 768px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .pricing-cards-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

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