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

:root {
  --orange: #FB5607;
  --orange-hover: #e04d06;
  --dark-btn: #26201D;
  --dark-btn-hover: #3a322e;
  --bg: #000;
  --text: #fff;
  --text-muted: rgba(230, 236, 255, 0.7);
  --text-dim: rgba(255, 255, 255, 0.41);
  --text-accent: #FFCBB3;
  --text-gray: #b3b3b3;
  --card-bg: rgba(17, 17, 17, 0.6);
  --card-border: rgba(255, 255, 255, 0.10);
  --section-max: 1148px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 8px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.06;
  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)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 0;
}

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

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

ul, ol {
  list-style: none;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--orange);
  color: #fff;
}

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

.btn-secondary {
  background: var(--dark-btn);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: var(--dark-btn-hover);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-full {
  width: 100%;
}

/* ===== SECTION BADGE ===== */
.section-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--orange);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 12px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-logo img {
  height: 28px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-nav a.nav-link {
  font-size: 16px;
  color: var(--text-muted);
  padding: 8px 12px;
  border-radius: 8px;
  transition: color 0.2s;
}

.header-nav a.nav-link:hover {
  color: #fff;
}

.header-nav .btn {
  padding: 10px 24px;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 160px 40px 40px;
  text-align: center;
  overflow: hidden;
  background: #000;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(80% 25% at 50% 7.5%, rgb(97, 39, 10) 0%, rgb(0, 0, 0) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Grid pattern overlay */
.hero-rays {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1440px;
  height: 500px;
  opacity: 1;
  pointer-events: none;
  z-index: 2;
  background: url('images/grid-texture.svg') center top / cover no-repeat;
  mix-blend-mode: hard-light;
}

/* Noise/grain texture overlay */
.hero .hero-noise {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.06;
  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)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 0;
}

.hero-avatars,
.hero h1,
.hero-subtitle,
.hero-buttons {
  position: relative;
  z-index: 5;
}

.hero-cards {
  position: relative;
  z-index: 5;
  text-align: left;
  margin-top: 40px;
  padding-bottom: 40px;
}

.hero .hero-noise {
  z-index: 4;
}

.hero-avatars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 24px;
}

.hero-avatars img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #000;
  margin-left: -5px;
  object-fit: cover;
}

.hero-avatars img:first-child {
  margin-left: 0;
}

.hero-social-proof {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 16px;
  font-size: 16px;
  color: var(--text-muted);
}

.hero-social-proof .count {
  color: #fff;
  font-weight: 500;
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 64px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 864px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* ===== LOGO MARQUEE (inside hero) ===== */
.marquee-section {
  position: relative;
  z-index: 5;
  overflow: hidden;
  padding: 0;
  margin-top: 60px;
  margin-bottom: 60px;
  max-width: var(--section-max);
  margin-left: auto;
  margin-right: auto;
  contain: content;
}

.marquee-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 160px;
  height: 100%;
  background: linear-gradient(to right, #000, transparent);
  z-index: 2;
  pointer-events: none;
}

.marquee-section::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 160px;
  height: 100%;
  background: linear-gradient(to left, #000, transparent);
  z-index: 2;
  pointer-events: none;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  animation: marquee 25s linear infinite;
}

.marquee-track img {
  height: 36px;
  width: auto;
  opacity: 0.45;
  filter: grayscale(100%) brightness(1.5);
}

@keyframes marquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-33.333%, 0, 0); }
}

/* ===== CARDS GRID (Problem sections) ===== */
.container {
  max-width: var(--section-max);
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

/* Ambient glow behind card sections */
.container::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 1400px;
  height: 800px;
  background: radial-gradient(ellipse 60% 40% at 50% 30%, rgba(97, 39, 10, 0.20) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.cards-grid {
  display: grid;
  grid-template-columns: 38fr 62fr;
  gap: 24px;
  margin-bottom: 24px;
}

.cards-grid + .cards-grid {
  grid-template-columns: 62fr 38fr;
}

.card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.card h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 10px;
}

.card > p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* Problem card - competitor list */
.competitor-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.competitor-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-xs);
  width: fit-content;
}

.competitor-item:nth-child(2) {
  margin-left: 32px;
}

.competitor-item:nth-child(3) {
  margin-left: 64px;
}

.competitor-item img.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.competitor-item .name {
  font-weight: 500;
  font-size: 16px;
}

.competitor-item .icon-status {
  width: 16px;
  height: 16px;
  margin-left: 4px;
}

/* Card 2 — Frozen accounts */
.card-frozen {
  display: flex;
  flex-direction: column;
}

/* ── Step Timeline ── */
.frozen-steps {
  display: flex;
  flex-direction: column;
  margin-top: 12px;
  gap: 6px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Left rail: number + connector line */
.step-track {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 26px;
  flex-shrink: 0;
}

.step-number {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-connector {
  display: none;
}

/* Right side: text content area — pill style */
.step-content {
  flex: 1;
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
}

.step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.step-title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}

.step-desc {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.35;
}

.step-time {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3px 9px;
  border-radius: 20px;
  flex-shrink: 0;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* ── Final step highlight ── */
.step-highlight {
}

.step-highlight .step-number {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0 0 12px rgba(251, 86, 7, 0.35), 0 0 4px rgba(251, 86, 7, 0.2);
}


.step-highlight .step-content {
  background: rgba(251, 86, 7, 0.06);
  border: 1px solid rgba(251, 86, 7, 0.12);
  border-radius: 10px;
  padding: 12px 18px;
}

.step-highlight .step-title {
  color: #fff;
}

.step-highlight .step-time {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
  font-weight: 700;
  box-shadow: 0 0 8px rgba(251, 86, 7, 0.25);
}

/* "Built for" section */
.frozen-who {
  margin-top: auto;
  padding-top: 20px;
}

.frozen-who-label {
  font-size: 12px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 10px;
}

/* User type pills */
.user-type-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.user-type-pills .pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.pill-icon {
  width: 14px;
  height: 14px;
  color: var(--orange);
  flex-shrink: 0;
}

/* Card 3 — Hidden spreads */
.card-spreads {
  display: flex;
  flex-direction: column;
}

/* DoorDex pricing panel */
.doordex-pricing {
  margin-top: 4px;
  padding: 20px;
  border-radius: 14px;
  background: rgba(251, 86, 7, 0.06);
  border: 1px solid rgba(251, 86, 7, 0.18);
  position: relative;
  overflow: hidden;
}

.doordex-pricing::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(251, 86, 7, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

.doordex-pricing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.dp-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.dp-header-left img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.dp-verified {
  width: 14px !important;
  height: 14px !important;
  border-radius: 0 !important;
}

.dp-badge {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 9px;
  border-radius: 20px;
  background: var(--orange);
  border: none;
  box-shadow: 0 0 8px rgba(251, 86, 7, 0.25);
}

.doordex-rates {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 16px;
}

.rate-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rate-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.rate-value {
  font-size: 34px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.rate-unit {
  font-size: 20px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

.rate-divider {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 2px;
}

.doordex-promises {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.doordex-promises span {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* What others charge — compact pills */
.others-fees {
  margin-top: auto;
  padding-top: 16px;
}

.others-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 10px;
}

.others-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.others-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.others-item svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  color: var(--orange);
}

.others-item strong {
  color: #fff;
  font-weight: 600;
}

.others-item.others-total {
  background: rgba(200, 80, 30, 0.1);
  border-color: rgba(200, 80, 30, 0.2);
}

.others-item.others-total svg {
  color: rgba(255, 140, 60, 0.8);
}

.others-item.others-total strong {
  color: #ff9a5c;
}

/* Limits comparison card */
.comparison-table {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.comparison-row {
  display: flex;
  gap: 10px;
}

.comparison-row .col {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}

.comparison-row .col svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--orange);
}

.comparison-row .col.good {
  color: #fff;
}

.comparison-row .col.bad {
  color: #fff;
}

/* Provider row at bottom of comparison */
.provider-row {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.provider-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.provider-badge img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.provider-badge .status-icon {
  width: 16px;
  height: 16px;
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
  position: relative;
}

/* Benefits section ambient glow */
.benefits-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: calc(100% + 100px);
  background: radial-gradient(ellipse 60% 30% at 50% 30%, rgba(97, 39, 10, 0.30) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.benefits-section > .container {
  position: relative;
  z-index: 1;
}

.section {
  padding: 80px 0;
}

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

.section-header .section-badge {
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: 44px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 440px;
  margin: 0 auto;
}

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

.benefit-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.benefit-card .icon {
  width: 48px;
  height: 48px;
  background: rgba(251, 86, 7, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.benefit-card .icon svg {
  width: 24px;
  height: 24px;
  color: var(--orange);
}

.benefit-card h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 16px;
  color: var(--text-muted);
}

.benefits-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ===== FEATURE MARQUEE ===== */
.feature-marquee {
  padding: 16px 0 8px;
  overflow: hidden;
  contain: content;
}

.feature-track {
  display: flex;
  gap: 12px;
  width: max-content;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  animation: marquee-feature 25s linear infinite;
}

.feature-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.feature-item svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
  flex-shrink: 0;
}

/* Stats marquee */
.stats-marquee {
  padding: 8px 0 16px;
  overflow: hidden;
  contain: content;
}

.stats-track {
  display: flex;
  gap: 12px;
  width: max-content;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  animation: marquee-stats 25s linear infinite;
}

.stats-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.stats-item svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
  flex-shrink: 0;
}

@keyframes marquee-feature {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-25%, 0, 0); }
}

@keyframes marquee-stats {
  0% { transform: translate3d(-25%, 0, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

/* ===== DIFFERENCE / STATS SECTION ===== */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
  margin: 60px auto 0;
}

.diff-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.diff-value {
  font-size: 44px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 10px;
}

.diff-unit {
  font-size: 24px;
  font-weight: 500;
  color: var(--orange);
}

.diff-label {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.4;
}

.diff-logo img {
  width: 28px;
  height: 28px;
}

/* ===== COMPARISON TABLE SECTION ===== */
.comparison-section .table-container {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.comparison-section .table-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 24px 40px;
  border-bottom: 1px solid var(--card-border);
}

.comparison-section .table-header .doordex-col {
  display: flex;
  align-items: center;
  gap: 8px;
}

.comparison-section .table-header .doordex-col img {
  height: 24px;
}

.comparison-section .table-header h3 {
  font-size: 24px;
  font-weight: 500;
}

.comparison-section .table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 20px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  align-items: center;
}

.comparison-section .table-row:last-child {
  border-bottom: none;
}

.comparison-section .table-row .label {
  font-size: 16px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.comparison-section .table-row .label svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
}

.comparison-section .table-row .doordex-val {
  font-size: 16px;
  color: var(--text-muted);
}

.comparison-section .table-row .others-val {
  font-size: 16px;
  color: var(--text-muted);
}

/* ===== TEAM NOTE ===== */
.team-note {
  text-align: center;
  padding: 80px 40px;
}

.team-note .section-badge {
  margin-bottom: 24px;
}

.team-note blockquote {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.4;
  max-width: 640px;
  margin: 0 auto 32px;
  color: #fff;
}

.team-note .author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.team-note .author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.team-note .author span {
  font-size: 16px;
  color: var(--text-muted);
}

/* ===== PRICING SECTION ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.pricing-card h2 {
  font-size: 44px;
  font-weight: 500;
  margin-bottom: 16px;
}

.pricing-card > p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--text-muted);
}

.pricing-features li svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
  flex-shrink: 0;
}

.pricing-note {
  text-align: center;
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 24px;
}

/* ===== WALL OF LOVE / TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.testimonial-card .stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-card .stars svg {
  width: 18px;
  height: 18px;
  color: #FFA500;
}

.testimonial-card .quote {
  font-size: 16px;
  color: #fff;
  flex: 1;
  margin-bottom: 24px;
}

.testimonial-card .author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card .author-info img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card .author-info .details {
  display: flex;
  flex-direction: column;
}

.testimonial-card .author-info .details .name {
  font-size: 14px;
  font-weight: 500;
}

.testimonial-card .author-info .details .role {
  font-size: 14px;
  color: var(--text-muted);
}

/* Join prompt after testimonials */
.join-prompt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 40px;
  font-size: 16px;
  color: var(--text-muted);
}

.join-prompt .avatars {
  display: flex;
}

.join-prompt .avatars img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #000;
  margin-left: -5px;
  object-fit: cover;
}

.join-prompt .avatars img:first-child {
  margin-left: 0;
}

.join-prompt .count {
  color: #fff;
  font-weight: 500;
}

/* ===== EXCLUSIVE PERKS ===== */
.perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.perk-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.perk-card .icon {
  width: 48px;
  height: 48px;
  background: rgba(251, 86, 7, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.perk-card .icon svg {
  width: 24px;
  height: 24px;
  color: var(--orange);
}

.perk-card h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 8px;
}

.perk-card p {
  font-size: 16px;
  color: var(--text-muted);
}

.perks-coming-soon {
  text-align: center;
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 40px;
  position: relative;
}

.perks-coming-soon .gift-icon {
  position: absolute;
  right: calc(50% - 320px);
  top: -200px;
  width: 80px;
  height: 80px;
  opacity: 0.5;
}

/* ===== FAQ SECTION ===== */
.faq-list {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--card-border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  text-align: left;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--text-muted);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding-bottom: 20px;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  text-align: center;
  padding: 80px 40px;
}


.cta-section .section-badge {
  margin-bottom: 20px;
}

.cta-section h2 {
  font-size: 44px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.cta-image {
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
}

.cta-image img {
  width: 100%;
}

/* ===== FOOTER ===== */
.footer {
  padding: 60px 40px 40px;
  border-top: 1px solid var(--card-border);
}

.footer-top {
  max-width: var(--section-max);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo img {
  height: 34px;
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  font-size: 16px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-email {
  color: var(--text-accent) !important;
}

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

.footer-socials {
  display: flex;
  gap: 24px;
  max-width: var(--section-max);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--card-border);
}

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

.footer-social-link svg {
  width: 24px;
  height: 24px;
}

.footer-social-link span {
  font-size: 16px;
  color: var(--text-muted);
}

.footer-bottom {
  max-width: var(--section-max);
  margin: 24px auto 0;
  font-size: 16px;
  color: var(--text-muted);
}


/* ===== SECTION GLOW EFFECTS ===== */

/* Setup: position for glow sections — no overflow hidden so glows bleed between sections */
.difference-section,
.comparison-section,
.pricing-section,
.testimonials-section,
.perks-section,
.team-note {
  position: relative;
}

.difference-section > .container,
.comparison-section > .container,
.pricing-section > .container,
.testimonials-section > .container,
.perks-section > .container {
  position: relative;
  z-index: 1;
}

/* Section ambient glows — centered on headline areas, bleeding into adjacent sections */
.difference-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: calc(100% + 100px);
  background: radial-gradient(ellipse 60% 30% at 50% 30%, rgba(97, 39, 10, 0.25) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.comparison-section::after {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: calc(100% + 100px);
  background: radial-gradient(ellipse 60% 30% at 50% 30%, rgba(97, 39, 10, 0.20) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.team-note::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -10%;
  right: -10%;
  bottom: -100px;
  background: radial-gradient(ellipse 50% 40% at 50% 45%, rgba(97, 39, 10, 0.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.team-note > * {
  position: relative;
  z-index: 1;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: calc(100% + 100px);
  background: radial-gradient(ellipse 60% 30% at 50% 25%, rgba(97, 39, 10, 0.30) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: calc(100% + 100px);
  background: radial-gradient(ellipse 60% 30% at 50% 25%, rgba(97, 39, 10, 0.20) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.perks-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: calc(100% + 100px);
  background: radial-gradient(ellipse 60% 30% at 50% 25%, rgba(97, 39, 10, 0.30) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: calc(100% + 100px);
  background: radial-gradient(ellipse 60% 30% at 50% 30%, rgba(97, 39, 10, 0.30) 0%, transparent 60%);
  pointer-events: none;
}

/* Footer — burnt orange glow from bottom */
.footer {
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: radial-gradient(83% 50% at 44% 111.5%, rgb(97, 39, 10) 0%, rgb(0, 0, 0) 100%);
  pointer-events: none;
  z-index: 0;
}

.footer > * {
  position: relative;
  z-index: 1;
}

/* Section divider — hidden */
.section-divider {
  display: none;
}

/* ===== GRADIENT ORBS — subtle colored blobs behind content ===== */

/* Benefits section — two orbs flanking the cards */
.benefits-section::after {
  content: '';
  position: absolute;
  top: 30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(251, 86, 7, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}

.benefits-grid::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -8%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(160, 70, 15, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(80px);
}

.benefits-grid {
  position: relative;
}

/* Difference section — warm orb behind stat cards */
.diff-grid::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(251, 86, 7, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(80px);
}

.diff-grid::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: 10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(180, 80, 20, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(80px);
}

/* Pricing section — orbs behind pricing cards */
.pricing-grid::before {
  content: '';
  position: absolute;
  top: -15%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(251, 86, 7, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(80px);
}

.pricing-grid::after {
  content: '';
  position: absolute;
  bottom: -15%;
  right: -10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(160, 70, 15, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(80px);
}

.pricing-grid {
  position: relative;
}

/* Testimonials — subtle orb behind cards */
.testimonials-grid::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 30%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(251, 86, 7, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(80px);
}

.testimonials-grid {
  position: relative;
}

/* Perks — orbs behind perk cards */
.perks-grid::before {
  content: '';
  position: absolute;
  top: -20%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(251, 86, 7, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(80px);
}

.perks-grid::after {
  content: '';
  position: absolute;
  bottom: -25%;
  left: 5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(180, 80, 20, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(80px);
}

.perks-grid {
  position: relative;
}

/* Hero cards area — orbs behind problem cards */
.hero-cards::after {
  content: '';
  position: absolute;
  top: 20%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(251, 86, 7, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}

/* Comparison table — orb behind table */
.table-container::after {
  content: '';
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 400px;
  background: radial-gradient(circle, rgba(251, 86, 7, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(80px);
}

/* ===== SCROLL ANIMATIONS ===== */

/* Base state — hidden, shifted down */
.anim {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

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

/* Stagger delays for cards in grids */
.anim-d1 { transition-delay: 0.1s; }
.anim-d2 { transition-delay: 0.2s; }
.anim-d3 { transition-delay: 0.3s; }

/* Hero — fade in from top on load (no scroll trigger) */
@keyframes hero-fade-in {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-avatars {
  animation: hero-fade-in 0.8s ease-out 0.2s both;
}

.hero h1 {
  animation: hero-fade-in 0.8s ease-out 0.4s both;
}

.hero-subtitle {
  animation: hero-fade-in 0.8s ease-out 0.6s both;
}

.hero-buttons {
  animation: hero-fade-in 0.8s ease-out 0.8s both;
}

.marquee-section {
  animation: hero-fade-in 0.8s ease-out 1.0s both;
}

/* Scale-in for section badges */
.anim-badge {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.anim-badge.anim-visible {
  opacity: 1;
  transform: scale(1);
}

/* Fade-in for diff stats */
.anim-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.anim-scale.anim-visible {
  opacity: 1;
  transform: scale(1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 48px;
  }

  .section-header h2,
  .pricing-card h2,
  .cta-section h2 {
    font-size: 36px;
  }

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

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

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

  .comparison-section .table-container {
    overflow-x: auto;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 12px 20px;
  }

  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 16px 20px;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .header-nav.open {
    display: flex;
  }

  .header-nav .nav-link {
    display: block;
    padding: 12px 0;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    padding: 120px 20px 40px;
  }

  .hero::before {
    background: radial-gradient(150% 18% at 50% 0%, rgb(97, 39, 10) 0%, rgb(0, 0, 0) 100%);
  }

  .hero h1 {
    font-size: 36px;
  }

  .marquee-section {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .marquee-section::before,
  .marquee-section::after {
    width: 60px;
  }

  .section {
    padding: 80px 20px;
  }

  .container {
    padding: 0 20px;
  }

  .cards-grid,
  .cards-grid + .cards-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid,
  .benefits-grid-2 {
    grid-template-columns: 1fr;
  }

  .benefits-grid,
  .perks-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2,
  .pricing-card h2,
  .cta-section h2 {
    font-size: 30px;
  }

  .card {
    padding: 24px;
  }

  .hero-buttons {
    flex-direction: row;
  }

  .cta-buttons {
    flex-direction: row;
  }

  .marquee-track img {
    height: 22px;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 16px;
  }

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

  .diff-stat {
    padding: 28px 16px;
  }

  .diff-value {
    font-size: 32px;
  }

  .diff-unit {
    font-size: 18px;
  }

  .user-types {
    flex-direction: column;
    gap: 20px;
  }

  .team-note blockquote {
    font-size: 24px;
  }

  .comparison-section .table-header,
  .comparison-section .table-row {
    grid-template-columns: 1fr 1fr 1fr;
    padding: 14px 16px;
    gap: 8px;
  }

  .comparison-section .table-header h3 {
    font-size: 16px;
  }

  .comparison-section .table-row .label {
    font-size: 13px;
  }

  .comparison-section .table-row .label svg {
    width: 16px;
    height: 16px;
  }

  .comparison-section .table-row .doordex-val,
  .comparison-section .table-row .others-val {
    font-size: 12px;
  }

  .benefits-section::before {
    top: -500px;
    height: calc(100% + 500px);
    background: radial-gradient(ellipse 200% 600px at 50% 500px, rgba(97, 39, 10, 0.35) 0%, transparent 65%);
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }

  .section-header h2,
  .pricing-card h2,
  .cta-section h2 {
    font-size: 26px;
  }

}

/* ===== REFERRAL FORM ===== */
.apply-section .apply-card {
  max-width: 560px;
  margin: 0 auto;
  padding: 40px;
}

.referral-form {
  display: grid;
  gap: 20px;
}

.referral-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.referral-form label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

.referral-form input[type="text"],
.referral-form input[type="email"],
.referral-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}

.referral-form input::placeholder,
.referral-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.referral-form input:focus,
.referral-form textarea:focus {
  border-color: rgba(251, 86, 7, 0.6);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(251, 86, 7, 0.15);
}

.referral-form textarea {
  min-height: 120px;
  resize: vertical;
  font-family: 'Inter', sans-serif;
}

.referral-form input[type="submit"],
.referral-form .btn.btn-primary {
  margin-top: 8px;
}

.referral-form .form-note {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.5;
  margin-top: 4px;
  text-align: center;
}

.form-error {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  margin-bottom: 20px;
  background: rgba(251, 86, 7, 0.08);
  border: 1px solid rgba(251, 86, 7, 0.25);
  border-radius: 12px;
  font-size: 14px;
  color: #FFCBB3;
}

.form-error svg {
  flex-shrink: 0;
  color: var(--orange);
}

/* Thank-you page check badge */
.thank-you-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(251, 86, 7, 0.12);
  border: 1px solid rgba(251, 86, 7, 0.35);
  color: var(--orange);
  box-shadow: 0 0 40px rgba(251, 86, 7, 0.25);
}

@media (max-width: 768px) {
  .apply-section .apply-card {
    padding: 28px 22px;
  }

  .referral-form input[type="text"],
  .referral-form input[type="email"],
  .referral-form textarea {
    font-size: 16px; /* keep >=16px to avoid iOS zoom on focus */
    padding: 13px 14px;
  }
}
