/* ============================================
   PILLAR COACHING — PREMIUM STYLESHEET
   ============================================ */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-base:      #0A0A0A;
  --bg-elevated:  #111111;
  --bg-card:      #161616;
  --bg-card-2:    #1C1C1C;
  --gold:         #C49A2A;
  --gold-light:   #E5B84A;
  --gold-pale:    rgba(196, 154, 42, 0.10);
  --gold-glow:    rgba(196, 154, 42, 0.20);
  --text-primary: #F2F2F2;
  --text-secondary: #8A8A8A;
  --text-muted:   #4A4A4A;
  --border:       #222222;
  --border-light: #2C2C2C;
  --border-gold:  rgba(196, 154, 42, 0.28);
  --max-w:        1120px;
  --pad:          clamp(20px, 4vw, 48px);
  --section-y:    clamp(72px, 10vw, 128px);
  --radius:       12px;
  --radius-lg:    20px;
  --font:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: var(--font); }

/* ── LAYOUT ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.section { padding: var(--section-y) 0; }
.section-alt { background: var(--bg-elevated); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; }
.reveal-d6 { transition-delay: 0.48s; }

/* ── TYPOGRAPHY ── */
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-sub {
  font-size: clamp(16px, 1.8vw, 18px);
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.7;
}

/* ── BADGE ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--gold-pale);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-align: center;
}

.btn-primary {
  background: var(--gold);
  color: #0A0A0A;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(196, 154, 42, 0.30);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 16px;
  border-radius: 10px;
}

.btn-block {
  display: block;
  width: 100%;
  justify-content: center;
}

/* ── NAVBAR ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.nav-logo .dot { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }

.nav-right { display: flex; align-items: center; gap: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg-base);
  flex-direction: column;
  padding: 96px 24px 40px;
  gap: 8px;
  border-right: none;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .btn {
  margin-top: 16px;
  justify-content: center;
}

@media (max-width: 860px) {
  .nav-links,
  .nav-right .btn-ghost { display: none; }
  .hamburger { display: flex; }
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Grid texture */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196, 154, 42, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 154, 42, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

/* Gold radial glow */
.hero-glow {
  position: absolute;
  top: -20%;
  left: 10%;
  width: 900px;
  height: 700px;
  background: radial-gradient(ellipse at center,
    rgba(196, 154, 42, 0.07) 0%,
    transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-eyebrow { margin-bottom: 28px; }

.hero-title {
  font-size: clamp(44px, 6.5vw, 82px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.03;
  margin-bottom: 28px;
}
.hero-title .gold { color: var(--gold); }

.hero-sub {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--text-secondary);
  line-height: 1.68;
  max-width: 600px;
  margin-bottom: 44px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

.hero-proof {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.proof-item strong {
  display: block;
  font-size: 30px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.proof-item span {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ── PAIN SECTION ── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

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

.pain-card {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, transform 0.2s;
}
.pain-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-2px);
}

.pain-icon {
  width: 42px;
  height: 42px;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--gold);
}

.pain-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.pain-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── CALLOUT ── */
.callout-box {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: clamp(48px, 7vw, 88px);
  text-align: center;
  overflow: hidden;
}
.callout-box::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.callout-box::after {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(196,154,42,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.callout-box h2 {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.callout-box p {
  font-size: clamp(16px, 1.8vw, 18px);
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.68;
  position: relative;
  z-index: 1;
}
.callout-cta { position: relative; z-index: 1; }

/* ── FEATURE CARDS ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.2s;
}
.feature-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-pale);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}

.feature-tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 6px;
}

/* ── HOW IT WORKS ── */
.steps-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.steps-connector {
  position: absolute;
  top: 32px;
  left: calc(33.33% - 0px);
  right: calc(33.33% - 0px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold-pale) 0%, var(--border-gold) 50%, var(--gold-pale) 100%);
  border: none;
}

@media (max-width: 640px) {
  .steps-wrap { grid-template-columns: 1fr; }
  .steps-connector { display: none; }
}

.step {
  padding: 0 32px;
  position: relative;
}
.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }

.step-num {
  width: 64px;
  height: 64px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.step h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.step p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── POSITIONING ── */
.pos-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-top: 16px;
}

@media (max-width: 768px) {
  .pos-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pos-arrow { display: none; }
}

.pos-card {
  padding: 32px 28px;
  border-radius: var(--radius);
}
.pos-card.muted {
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.pos-card.highlight {
  background: var(--gold-pale);
  border: 1px solid var(--border-gold);
}

.pos-card .pos-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.pos-card.muted .pos-label { color: var(--text-muted); }
.pos-card.highlight .pos-label { color: var(--gold); }

.pos-card ul { display: flex; flex-direction: column; gap: 10px; }
.pos-card li {
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pos-card.highlight li { color: var(--text-primary); font-weight: 500; }
.pos-card.highlight li::before { content: '✓'; color: var(--gold); font-weight: 700; }
.pos-card.muted li::before { content: '–'; color: var(--text-muted); }

.pos-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  color: var(--text-muted);
  font-size: 20px;
  padding-top: 52px;
}

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: all 0.25s;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured {
  border-color: var(--gold);
  background: var(--bg-card-2);
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #0A0A0A;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.pricing-name {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 6px;
}
.price-dollar { font-size: 22px; font-weight: 700; color: var(--text-secondary); align-self: flex-start; margin-top: 8px; }
.price-amount { font-size: 54px; font-weight: 900; letter-spacing: -0.04em; line-height: 1; }
.price-period { font-size: 15px; color: var(--text-secondary); }
.price-range { font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; }

.pricing-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
}
.pricing-features li .check {
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-features li strong { color: var(--text-primary); font-weight: 600; }

.pricing-btn {
  display: block;
  width: 100%;
  padding: 14px;
  text-align: center;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid var(--border-light);
  background: transparent;
  color: var(--text-primary);
}
.pricing-btn:hover { border-color: var(--gold); color: var(--gold); }
.pricing-card.featured .pricing-btn {
  background: var(--gold);
  border-color: var(--gold);
  color: #0A0A0A;
}
.pricing-card.featured .pricing-btn:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.pricing-note {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--text-secondary);
}
.pricing-note strong { color: var(--text-primary); }

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

.about-photo-wrap {
  position: relative;
}
.about-photo {
  aspect-ratio: 3/4;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--text-muted);
  font-size: 13px;
  text-align: center;
  padding: 32px;
  overflow: hidden;
}
.about-photo-icon {
  width: 80px;
  height: 80px;
  background: var(--bg-elevated);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}
.about-photo p { font-size: 12px; line-height: 1.5; }

.about-text h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 24px;
}
.about-text p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.cred-chip {
  padding: 8px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}
.testimonial-card:hover { border-color: var(--border-gold); }

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.stars span { color: var(--gold); font-size: 14px; }

.testimonial-card blockquote {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.72;
  font-style: italic;
  margin-bottom: 24px;
  quotes: none;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--bg-elevated);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-muted);
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.testimonial-author-info strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}
.testimonial-author-info span {
  font-size: 12px;
  color: var(--text-secondary);
}

.testimonials-note {
  text-align: center;
  margin-top: 28px;
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}

/* ── FAQ ── */
.faq-list {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s;
}
.faq-q:hover { background: var(--bg-card); }

.faq-toggle {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1;
  transition: all 0.25s;
}
.faq-item.open .faq-toggle {
  background: var(--gold-pale);
  border-color: var(--border-gold);
  color: var(--gold);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a-inner {
  padding: 0 28px 24px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ── FINAL CTA ── */
.final-cta {
  padding: var(--section-y) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(196,154,42,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.final-cta h2 {
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.04;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.final-cta p {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text-secondary);
  max-width: 440px;
  margin: 0 auto 40px;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}
.final-cta .cta-wrap { position: relative; z-index: 1; }
.final-cta-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ── FOOTER ── */
.footer {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 52px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

.footer-brand .nav-logo { font-size: 20px; margin-bottom: 14px; }
.footer-brand p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.footer-col li + li { margin-top: 12px; }
.footer-col a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-disclaimer {
  margin-top: 20px;
  font-size: 12px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.5;
}

/* ── APPLY PAGE ── */
.apply-hero {
  padding: 140px 0 80px;
  border-bottom: 1px solid var(--border);
}
.apply-form-section { padding: 80px 0 120px; }

.form-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-aside { order: -1; }
}

.form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
}
@media (max-width: 560px) { .form-wrap { padding: 28px 20px; } }

.form-wrap h2 { font-size: 26px; font-weight: 800; margin-bottom: 8px; }
.form-wrap > p { font-size: 15px; color: var(--text-secondary); margin-bottom: 36px; }

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group:last-of-type { margin-bottom: 0; }

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  background: var(--bg-base);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%238A8A8A' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-group select option { background: #1C1C1C; }

.form-submit {
  margin-top: 28px;
}

.form-aside-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
}
.form-aside-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.form-aside-card ul { display: flex; flex-direction: column; gap: 10px; }
.form-aside-card li {
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.form-aside-card li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

.guarantee-box {
  background: var(--gold-pale);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 24px;
}
.guarantee-box h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--gold); }
.guarantee-box p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
