/* ===== VARIABLES ===== */
:root {
  --bg: #0D0D0D;
  --surface: #141414;
  --card: #1C1C1C;
  --border: #272727;
  --teal: #00BFA5;
  --teal-dim: rgba(0, 191, 165, 0.12);
  --cta: #E8441A;
  --cta-hover: #FF5530;
  --text: #EFEFEF;
  --muted: #808080;
  --white: #FFFFFF;
  --max-w: 1180px;
  --radius: 8px;
  --ease: 0.2s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== CONTAINER ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== TYPOGRAPHY ===== */
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
  display: block;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--ease);
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--cta);
  color: #fff;
}
.btn-primary:hover { background: var(--cta-hover); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover { border-color: var(--white); color: var(--white); }
.btn-teal {
  background: var(--teal);
  color: #0D0D0D;
  font-weight: 700;
}
.btn-teal:hover { filter: brightness(1.1); transform: translateY(-2px); }
.btn-sm { padding: 10px 22px; font-size: 14px; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,13,13,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--white);
}
.nav-logo span { color: var(--teal); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.25s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: color var(--ease);
}
.nav-mobile a:hover { color: var(--teal); }

/* ===== HERO (HOME) ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 25%;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(13,13,13,0.88) 0%,
    rgba(13,13,13,0.55) 55%,
    rgba(13,13,13,0.15) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  padding-top: 66px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}
.hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--teal);
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 11vw, 130px);
  line-height: 0.93;
  letter-spacing: 0.015em;
  color: var(--white);
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 18px;
  color: rgba(239,239,239,0.75);
  max-width: 460px;
  margin-bottom: 40px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--teal), transparent);
  animation: scrollAnim 1.8s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 30px 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-icon {
  width: 44px;
  height: 44px;
  background: var(--teal-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 20px; height: 20px; stroke: var(--teal); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.trust-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
}
.trust-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.trust-divider {
  width: 1px;
  height: 52px;
  background: var(--border);
}

/* ===== ABOUT ===== */
.about {
  padding: 110px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  position: relative;
}
.about-image img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  aspect-ratio: 3/4;
}
.about-image::after {
  content: '';
  position: absolute;
  inset: -10px -10px 10px 10px;
  border: 2px solid var(--teal);
  border-radius: 16px;
  opacity: 0.2;
  pointer-events: none;
  z-index: -1;
}
.about-content .section-title { margin-bottom: 24px; }
.about-text {
  color: rgba(239,239,239,0.72);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 18px;
}
.about-stats {
  display: flex;
  gap: 44px;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: var(--teal);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-top: 6px;
}

/* ===== TEASER ===== */
.teaser {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
}
.teaser-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.teaser-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,13,13,0.84);
}
.teaser-content {
  position: relative;
  z-index: 2;
}
.teaser-content .section-title { margin-bottom: 36px; }
.teaser-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 48px;
  margin-bottom: 48px;
  max-width: 540px;
}
.teaser-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(239,239,239,0.85);
}
.teaser-list li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  position: relative;
  height: 52vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 64px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13,13,13,1) 0%,
    rgba(13,13,13,0.45) 55%,
    rgba(13,13,13,0.15) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  width: 100%;
  padding-top: 66px;
}
.page-hero-content .section-title { font-size: clamp(44px, 7vw, 80px); margin-bottom: 10px; }

/* ===== FEATURES ===== */
.features {
  padding: 100px 0;
}
.features-header {
  text-align: center;
  margin-bottom: 64px;
}
.features-header .section-title { margin-top: 12px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 22px;
  transition: border-color var(--ease), transform var(--ease);
}
.feature-card:hover {
  border-color: var(--teal);
  transform: translateY(-5px);
}
.feature-icon {
  width: 46px;
  height: 46px;
  background: var(--teal-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature-icon svg { width: 22px; height: 22px; stroke: var(--teal); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.feature-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
}

/* ===== PROOF SECTION ===== */
.proof {
  padding: 90px 0;
  background: var(--surface);
}
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.proof-image img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  height: 460px;
}
.proof-content .section-title { margin-bottom: 28px; }
.proof-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.proof-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.proof-check {
  width: 28px;
  height: 28px;
  background: var(--teal-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.proof-check svg { width: 14px; height: 14px; stroke: var(--teal); fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.proof-item-text {
  font-size: 15px;
  color: rgba(239,239,239,0.82);
  line-height: 1.7;
}

/* ===== PRICING ===== */
.pricing {
  padding: 100px 0;
}
.pricing-header {
  text-align: center;
  margin-bottom: 56px;
}
.pricing-header .section-title { margin-top: 12px; }
.pricing-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.pricing-card-top {
  height: 4px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--cta) 100%);
}
.pricing-card-inner {
  padding: 44px 44px 40px;
}
.pricing-badge {
  display: inline-block;
  background: var(--teal-dim);
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.pricing-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 88px;
  line-height: 1;
  color: var(--white);
  display: flex;
  align-items: flex-start;
  gap: 4px;
}
.pricing-amount-dollar {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--muted);
  margin-top: 12px;
}
.pricing-amount-period {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--muted);
  align-self: flex-end;
  margin-bottom: 8px;
}
.pricing-list {
  margin: 32px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.pricing-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(239,239,239,0.88);
}
.pricing-list li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}
.pricing-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 28px;
}
.pricing-scarcity {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
}
.pricing-scarcity strong { color: var(--cta); }

/* ===== FAQ ===== */
.faq-section {
  padding: 90px 0;
  background: var(--surface);
}
.faq {
  max-width: 700px;
  margin: 0 auto;
}
.faq-header {
  text-align: center;
  margin-bottom: 52px;
}
.faq-header .section-title { margin-top: 12px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'Inter', sans-serif;
  transition: color var(--ease);
}
.faq-q:hover { color: var(--white); }
.faq-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.25s;
  stroke: var(--muted);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.faq-a {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.8;
  padding-bottom: 22px;
  display: none;
}
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-item.open .faq-q { color: var(--white); }

/* ===== APPLY PAGE ===== */
.apply-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 66px);
  padding-top: 66px;
}
.apply-left {
  position: sticky;
  top: 66px;
  height: calc(100vh - 66px);
  overflow: hidden;
}
.apply-left-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
}
.apply-left-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13,13,13,0.95) 0%,
    rgba(13,13,13,0.5) 50%,
    rgba(13,13,13,0.1) 100%
  );
}
.apply-left-content {
  position: absolute;
  bottom: 52px;
  left: 52px;
  right: 52px;
  z-index: 2;
}
.apply-left-content .section-title { font-size: clamp(34px, 4vw, 54px); margin-bottom: 14px; }
.apply-left-sub {
  font-size: 16px;
  color: rgba(239,239,239,0.72);
  line-height: 1.7;
  margin-bottom: 28px;
}
.spots-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(232,68,26,0.12);
  border: 1px solid rgba(232,68,26,0.5);
  color: #FF6B47;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 100px;
}
.spots-dot {
  width: 8px;
  height: 8px;
  background: var(--cta);
  border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}
.apply-right {
  background: var(--surface);
  padding: 60px 52px;
  overflow-y: auto;
}
.apply-right-header {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.apply-right-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 6px;
}
.apply-right-header p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== FORM ===== */
.form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-input,
.form-select,
.form-textarea {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 15px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
  width: 100%;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,191,165,0.08);
}
.form-select { cursor: pointer; }
.form-select option { background: var(--card); }
.form-textarea { resize: vertical; min-height: 88px; }
.form-input::placeholder,
.form-textarea::placeholder { color: #3A3A3A; }

/* ===== PAYMENT BLOCK ===== */
.payment-section {
  margin-top: 8px;
}
.payment-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.payment-section-label::before,
.payment-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.payment-block {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.payment-block-header {
  padding: 14px 20px;
  background: rgba(0,0,0,0.25);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.payment-block-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}
.payment-secure {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
}
.payment-secure svg { width: 13px; height: 13px; stroke: var(--teal); fill: none; stroke-width: 2.5; }
.payment-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.payment-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: var(--teal-dim);
  border: 1px solid rgba(0,191,165,0.2);
  border-radius: 10px;
}
.payment-summary-info { }
.payment-summary-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.payment-summary-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.payment-summary-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--teal);
}
.stripe-field { display: flex; flex-direction: column; gap: 8px; }
.stripe-field-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.stripe-input-mock {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
}
.stripe-input-mock svg { width: 18px; height: 18px; stroke: #3A3A3A; fill: none; stroke-width: 1.5; flex-shrink: 0; }
.stripe-placeholder-text {
  font-size: 14px;
  color: #383838;
  letter-spacing: 0.06em;
  flex: 1;
}
.stripe-card-icons {
  display: flex;
  gap: 5px;
  margin-left: auto;
}
.stripe-card-icon {
  width: 30px;
  height: 19px;
  border-radius: 3px;
  background: #252525;
  border: 1px solid #333;
}
.stripe-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.payment-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--teal) 0%, #009e87 100%);
  color: #0A0A0A;
  font-weight: 800;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  cursor: not-allowed;
  opacity: 0.55;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.01em;
}
.payment-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2.5; }
.payment-coming {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: #555;
}
.payment-coming svg { width: 12px; height: 12px; stroke: #555; fill: none; stroke-width: 2; }
.payment-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.payment-note svg { width: 12px; height: 12px; stroke: var(--muted); fill: none; stroke-width: 2; }

/* ===== CTA STRIP ===== */
.cta-strip {
  background: linear-gradient(135deg, #0f2720 0%, #0D0D0D 100%);
  border-top: 1px solid rgba(0,191,165,0.15);
  border-bottom: 1px solid rgba(0,191,165,0.15);
  padding: 80px 0;
  text-align: center;
}
.cta-strip .section-title { margin: 12px 0 20px; }
.cta-strip p {
  font-size: 17px;
  color: rgba(239,239,239,0.65);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 52px 0 36px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: 0.06em;
  color: var(--white);
}
.footer-logo span { color: var(--teal); }
.footer-links {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 14px;
  color: var(--muted);
  transition: color var(--ease);
}
.footer-links a:hover { color: var(--teal); }
.footer-copy {
  font-size: 12px;
  color: #3A3A3A;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .proof-grid { grid-template-columns: 1fr; gap: 48px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .teaser-list { grid-template-columns: 1fr; }
  .apply-layout { grid-template-columns: 1fr; }
  .apply-left { position: relative; height: 44vh; min-height: 300px; }
  .apply-right { padding: 44px 28px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(58px, 16vw, 80px); }
  .trust-items { gap: 24px; }
  .trust-divider { display: none; }
  .pricing-card-inner { padding: 32px 24px; }
  .about-stats { gap: 28px; }
  .apply-left-content { left: 24px; right: 24px; bottom: 32px; }
}
