/* =====================================================
   REACH Intensive — styles.css
   Font: Inter (Google Fonts)
   Colors: #8A1538 accent · #111111 text · #FFFFFF bg
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ── CSS Variables ─────────────────────────────────── */
:root {
  --bg:            #FFFFFF;
  --surface:       #F5F5F7;
  --surface-dark:  #1B1B2E;
  --navy:          #1E3766;
  --navy-dark:     #162B52;
  --navy-light:    #EEF2F8;
  --border:        #E5E5E7;
  --text:          #111111;
  --text-sec:      #555555;
  --accent:        #8A1538;
  --accent-dark:   #6A0F2A;
  --accent-light:  #FDF2F5;
  --font:          'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w:         1200px;
  --pad-x:         24px;
  --r:             8px;
  --r-lg:          16px;
  --shadow:        0 1px 4px rgba(0,0,0,.05), 0 4px 16px rgba(0,0,0,.07);
  --shadow-lg:     0 8px 32px rgba(0,0,0,.12);
  --tr:            .2s ease;
}

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); background: var(--bg); color: var(--text); font-size: 17px; line-height: 1.65; }
img  { max-width: 100%; display: block; }
a    { color: inherit; }
ul   { list-style: none; }
p    { margin-bottom: .85rem; }
p:last-child { margin-bottom: 0; }

/* ── Typography ────────────────────────────────────── */
h1 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; line-height: 1.12; letter-spacing: -.025em; }
h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 700; line-height: 1.18; letter-spacing: -.018em; }
h3 { font-size: clamp(17px, 2vw, 21px); font-weight: 600; line-height: 1.3;  letter-spacing: -.01em; }

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

/* ── Section padding ───────────────────────────────── */
section         { padding: 96px 0; }
.sec-surface    { background: var(--surface); }
.sec-dark       { background: var(--surface-dark); color: #fff; }

/* ── Section heading ───────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.sec-heading { margin-bottom: 48px; }
.sec-heading h2 { margin-bottom: 10px; }
.sec-heading p  { color: var(--text-sec); font-size: 17px; max-width: 640px; }

/* ── Grid helpers ──────────────────────────────────── */
.two-col {
  display: grid;
  gap: 48px;
  align-items: start;
}
.two-col-60-40 { grid-template-columns: 3fr 2fr; }
.two-col-40-60 { grid-template-columns: 2fr 3fr; }
.two-col-50-50 { grid-template-columns: 1fr 1fr; }

/* ── Primary CTA Button ────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  height: 50px; padding: 0 28px;
  background: var(--accent); color: #fff;
  font-family: var(--font); font-size: 15px; font-weight: 600; letter-spacing: .01em;
  border: none; border-radius: 6px;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: background var(--tr), box-shadow var(--tr), transform var(--tr);
}
.btn-primary:hover  { background: var(--accent-dark); box-shadow: 0 4px 20px rgba(138,21,56,.28); transform: translateY(-1px); }
.btn-primary:active { transform: none; }
.btn-large          { height: 54px; padding: 0 36px; font-size: 16px; }
.btn-block          { width: 100%; justify-content: center; }
.btn-outline {
  background: transparent; color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover  { background: var(--accent-light); box-shadow: none; }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HEADER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 62px;
}
.logo { font-size: 16px; font-weight: 800; color: var(--text); text-decoration: none; letter-spacing: -.01em; }
.logo em { font-style: normal; color: var(--accent); }
.logo-accent { font-style: normal; color: var(--accent); }
.header-nav { display: flex; gap: 24px; align-items: center; }
.nav-link { font-size: 14px; font-weight: 600; color: var(--accent); text-decoration: none; letter-spacing: .01em; transition: opacity .2s; }
.nav-link:hover { opacity: .75; }
.header-btn { height: 38px; padding: 0 18px; font-size: 14px; }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION 1 — HERO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#hero {
  padding: 88px 0 80px;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(30,55,102,.055) 39px, rgba(30,55,102,.055) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(30,55,102,.055) 39px, rgba(30,55,102,.055) 40px);
}

.hero-eyebrow {
  display: inline-block;
  font-size: 13px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent); background: var(--accent-light);
  padding: 5px 12px; border-radius: 4px;
  margin-bottom: 22px;
}
#hero h1                { margin-bottom: 16px; }
#hero h1 em             { font-style: normal; color: var(--accent); }
.hero-subtitle          { font-size: 17px; color: var(--text-sec); line-height: 1.7; margin-bottom: 28px; max-width: 520px; }

.symptoms-list          { margin-bottom: 32px; }
.symptoms-list li       { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; margin-bottom: 9px; }
.symptoms-list li::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0; margin-top: 8px;
}
.btn-note { font-size: 13px; color: var(--text-sec); margin-top: 11px; }

.hero-photo-wrap { display: flex; align-items: flex-start; }
.hero-photo {
  width: 100%; aspect-ratio: 3 / 4; max-height: 520px;
  border-radius: var(--r-lg);
  background: linear-gradient(145deg, #F0EBF0 0%, #E2E0E8 100%);
  border: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-photo-initials { font-size: 56px; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 8px; }
.hero-photo-name     { font-size: 14px; color: var(--text-sec); font-weight: 500; text-align: center; padding: 0 16px; }
.hero-photo-badge {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-size: 12px; font-weight: 600; letter-spacing: .04em;
  padding: 6px 16px; border-radius: 20px; white-space: nowrap;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION 2 — FOR WHOM
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.check-list          { margin-bottom: 28px; }
.check-list li       { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 16px; }
.check-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; flex-shrink: 0; margin-top: 2px;
}
.for-whom-note {
  background: var(--accent-light); border-left: 3px solid var(--accent);
  padding: 16px 20px; border-radius: 0 var(--r) var(--r) 0;
  font-size: 15px; font-weight: 500; color: var(--text); line-height: 1.6;
}

/* Chaos → Focus diagram */
.chaos-focus {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 10px; align-items: center;
  text-align: center; position: sticky; top: 76px;
}
.cf-label   { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-sec); margin-bottom: 4px; }
.cf-block   { width: 100%; border-radius: var(--r); padding: 16px 14px; }
/* №7: Хаос → полный бордовый; Фокус → полный синий */
.cf-block.chaos { background: var(--accent); border: none; color: #fff; }
.cf-block.focus { background: var(--navy);   border: none; color: #fff; }
.cf-block-icon  { font-size: 22px; margin-bottom: 6px; }
.cf-block-title { font-size: 13px; font-weight: 700; margin-bottom: 8px; }
.cf-block.chaos .cf-block-title { color: #fff; }
.cf-block.focus .cf-block-title { color: #fff; }
.cf-item        { font-size: 12px; color: var(--text-sec); margin-bottom: 3px; }
.cf-block.chaos .cf-item,
.cf-block.focus .cf-item { color: rgba(255,255,255,.78); }
.cf-arrow       { font-size: 22px; color: var(--text-sec); font-weight: 700; }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION 3 — WHY NOW
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.why-text { max-width: 800px; margin: 0 auto; }
.why-text p          { font-size: 17px; color: var(--text-sec); margin-bottom: 18px; }
.why-text .strong-p  { color: var(--text); font-weight: 500; }

.why-pillars {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin: 36px 0;
}
.why-pillar {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r); padding: 22px;
  display: flex; align-items: center; gap: 14px;
}
.wp-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--surface-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.wp-text h3 { font-size: 15px; margin-bottom: 2px; }
.wp-text p  { font-size: 13px; color: var(--text-sec); margin: 0; }

.why-quote {
  background: var(--surface-dark); color: #fff;
  border-radius: var(--r-lg); padding: 28px 36px;
  font-size: 18px; font-style: italic; font-weight: 600;
  line-height: 1.55; text-align: center;
  max-width: 800px; margin: 0 auto;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION 4 — WHAT IS REACH
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.reach-intro {
  max-width: 800px;
  background: var(--surface); border-radius: var(--r-lg);
  padding: 28px 32px; margin-bottom: 40px;
  border-left: 4px solid var(--accent);
  font-size: 16px; color: var(--text); line-height: 1.7;
}

/* 3-axis visual */
.three-axes-wrap { margin-bottom: 12px; }
.three-axes {
  display: flex; align-items: stretch; gap: 0;
  background: var(--surface); border-radius: var(--r-lg) var(--r-lg) 0 0;
  padding: 32px 32px 28px;
}
.axis-card {
  flex: 1; text-align: center;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r); padding: 22px 14px;
}
/* №6: текст в карточках осей — крупнее */
.axis-icon  { font-size: 32px; margin-bottom: 10px; }
.axis-title { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.axis-desc  { font-size: 14px; color: var(--text-sec); }
.axis-x {
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 800; color: var(--accent);
  padding: 0 12px; flex-shrink: 0;
}
.three-axes-result {
  background: var(--surface); border-radius: 0 0 var(--r-lg) var(--r-lg);
  padding: 16px 32px 28px; text-align: center; margin-bottom: 44px;
}
.three-axes-result p { font-size: 14px; color: var(--text-sec); margin: 0; }
.three-axes-result strong { color: var(--text); }

/* R-E-A-C-H cards */
.reach-cards {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 16px; margin-bottom: 32px;
}
.reach-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r); padding: 24px 14px; text-align: center;
  transition: box-shadow var(--tr), transform var(--tr);
}
.reach-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.reach-letter {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--accent); color: #fff;
  font-size: 22px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
}
.reach-word  { font-size: 11px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 7px; }
.reach-title { font-size: 14px; font-weight: 600; margin-bottom: 6px; line-height: 1.3; }
.reach-desc  { font-size: 13px; color: var(--text-sec); line-height: 1.5; }

.method-footer-box {
  background: var(--accent); color: #fff;
  border-radius: var(--r-lg); padding: 26px 32px;
  display: flex; align-items: center; gap: 24px;
}
.method-footer-box strong { font-size: 20px; font-weight: 800; white-space: nowrap; }
.method-footer-box p { font-size: 15px; opacity: .85; margin: 0; }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION 5 — OUTCOMES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.outcome-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 0; border-bottom: 1px solid var(--border);
}
.outcome-item:first-child { border-top: 1px solid var(--border); }
/* №3: бейджи номеров → синий */
.outcome-num {
  width: 28px; height: 28px; border-radius: 6px;
  background: var(--navy); color: #fff;
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.outcome-text { font-size: 15px; line-height: 1.6; }

/* CTA sticky card — №2: синий вместо тёмного */
.outcomes-card {
  background: var(--navy); color: #fff;
  border-radius: var(--r-lg); padding: 32px 28px;
  position: sticky; top: 76px;
}
.oc-eyebrow  { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 10px; }
.oc-title    { font-size: 20px; font-weight: 700; line-height: 1.3; margin-bottom: 10px; }
.oc-detail   { font-size: 14px; color: rgba(255,255,255,.6); margin-bottom: 24px; line-height: 1.6; }
.oc-price    { font-size: 40px; font-weight: 800; line-height: 1; margin-bottom: 4px; }
.oc-price-sm { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 22px; }
.oc-guarantee{ font-size: 12px; color: rgba(255,255,255,.4); text-align: center; margin-top: 12px; }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION 6 — PROGRAM (7 modules)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.program-intro { font-size: 17px; color: var(--text-sec); max-width: 600px; margin-bottom: 44px; }

.modules-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0 40px; align-items: start;
}
.modules-col { display: flex; flex-direction: column; }

.module-card {
  display: flex; gap: 16px;
  padding: 22px 0; border-bottom: 1px solid var(--border);
}
.modules-col > .module-card:first-child { border-top: 1px solid var(--border); }

.module-num {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--accent); color: #fff;
  font-size: 13px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.module-body h3 { font-size: 16px; margin-bottom: 6px; }
.module-body p  { font-size: 14px; color: var(--text-sec); line-height: 1.6; margin: 0; }

.mid-cta-row {
  padding: 20px 0; border-bottom: 1px solid var(--border);
}
.mid-cta-row .btn-outline { height: 42px; padding: 0 20px; font-size: 14px; }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION 7 — FORMAT / PRICE / GUARANTEE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.info-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-bottom: 44px;
}
.info-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px 28px;
  box-shadow: var(--shadow);
}
.sec-surface .info-card { background: var(--bg); }
/* №1: featured карточка → синий вместо бордового */
.info-card.featured {
  background: var(--navy); border-color: var(--navy);
  color: #fff; box-shadow: var(--shadow-lg);
}
.ic-eyebrow      { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-sec); margin-bottom: 14px; }
.info-card.featured .ic-eyebrow { color: rgba(255,255,255,.55); }
.ic-icon         { font-size: 30px; margin-bottom: 14px; }
.ic-price        { font-size: 46px; font-weight: 800; line-height: 1; margin-bottom: 4px; }
.info-card.featured .ic-price { color: #fff; }
.ic-price-note   { font-size: 13px; color: var(--text-sec); margin-bottom: 20px; }
.info-card.featured .ic-price-note { color: rgba(255,255,255,.6); }

.feat-list       { list-style: none; }
.feat-list li    { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; margin-bottom: 10px; line-height: 1.5; }
.feat-list li .fi-ok { color: var(--accent); font-weight: 800; flex-shrink: 0; }
.info-card.featured .feat-list li .fi-ok { color: #FFD700; }
.info-card.featured .feat-list li { color: rgba(255,255,255,.9); }

.format-cta-wrap { text-align: center; }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION 8 — ABOUT
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.about-photo-col { position: sticky; top: 76px; }
.about-photo {
  width: 100%; aspect-ratio: 3/4; max-height: 480px;
  border-radius: var(--r-lg);
  background: linear-gradient(145deg, var(--accent-light) 0%, #E8E0E8 100%);
  border: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.about-photo-i { font-size: 54px; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 8px; }
.about-photo-n { font-size: 14px; color: var(--text-sec); font-weight: 500; text-align: center; padding: 0 12px; }

.about-name  { font-size: 30px; font-weight: 800; margin-bottom: 4px; }
.about-role  { font-size: 15px; color: var(--accent); font-weight: 600; margin-bottom: 24px; }
.about-quote {
  font-size: 17px; font-style: italic; font-weight: 600;
  border-left: 3px solid var(--accent); padding-left: 20px;
  margin-bottom: 32px; line-height: 1.6; color: var(--text);
}

.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px; }
.about-stat  { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 16px; }
.st-num      { font-size: 22px; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 4px; }
.st-lbl      { font-size: 13px; color: var(--text-sec); line-height: 1.4; }

.about-contact {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface-dark); color: #fff;
  padding: 12px 22px; border-radius: var(--r);
  font-size: 14px; font-weight: 600; text-decoration: none;
  transition: background var(--tr);
}
.about-contact:hover { background: #2B2B3E; }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION 9 — FAQ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.faq-list { max-width: 760px; margin: 0 auto; }

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

.faq-btn {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: var(--font); font-size: 16px; font-weight: 600;
  color: var(--text); padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  line-height: 1.4;
}
.faq-btn:hover { color: var(--accent); }

.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--text-sec); font-size: 16px;
  transition: background var(--tr), color var(--tr), transform var(--tr);
}
.faq-item.open .faq-icon {
  background: var(--accent); border-color: var(--accent);
  color: #fff; transform: rotate(45deg);
}

.faq-answer {
  display: none; padding: 0 0 20px;
  font-size: 15px; color: var(--text-sec); line-height: 1.7; max-width: 680px;
}
.faq-item.open .faq-answer { display: block; }

.faq-cta {
  margin-top: 64px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 52px 48px; text-align: center;
}
.faq-cta h2          { margin-bottom: 12px; }
.faq-cta p           { color: var(--text-sec); margin-bottom: 28px; max-width: 540px; margin-left: auto; margin-right: auto; }
.faq-cta .btn-note   { margin-top: 14px; }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION 10 — APPLY (FORM)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* №2: фон формы → синий вместо тёмного */
#apply { background: var(--navy) !important; }
#apply .sec-heading h2 { color: #fff; }
#apply .sec-heading p  { color: rgba(255,255,255,.6); }

.apply-form {
  max-width: 640px;
  margin: 0 auto;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 40px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-grp  { display: flex; flex-direction: column; gap: 6px; }
.form-grp.full { grid-column: 1 / -1; }

.form-grp label {
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,.7); letter-spacing: .01em;
}
.form-grp input,
.form-grp select,
.form-grp textarea {
  font-family: var(--font); font-size: 15px;
  color: var(--text); background: #fff;
  border: 1.5px solid var(--border); border-radius: 5px;
  padding: 11px 14px; outline: none; width: 100%;
  transition: border-color var(--tr);
}
.form-grp input:focus,
.form-grp select:focus,
.form-grp textarea:focus { border-color: var(--accent); }
.form-grp textarea       { resize: vertical; min-height: 96px; }

.form-actions { margin-top: 8px; }
.form-note-dark { font-size: 12px; color: rgba(255,255,255,.4); text-align: center; margin-top: 10px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
footer { background: #0D0D0D; color: rgba(255,255,255,.45); padding: 28px 0; font-size: 13px; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-logo  { font-weight: 800; color: #fff; font-size: 14px; }
.footer-logo em { font-style: normal; color: var(--accent); }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SCROLL-REVEAL ANIMATION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity  0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PHOTO BANNERS (full-bleed transitions between blocks)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.photo-banner {
  position: relative;
  width: 100%;
  min-height: 72vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background layer — slightly oversized for parallax room */
.pb-bg {
  position: absolute;
  inset: -15% 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
}

/* Individual photo sources
   TODO: replace picsum URLs with actual image paths once files are placed in img/ folder */
#banner-technology .pb-bg {
  background-image:
    linear-gradient(135deg, rgba(14,18,44,.72) 0%, rgba(138,21,56,.50) 100%),
    url('img/modestas-urbonas-vj_9l20fzj0-unsplash.jpg');
  /* → Replace with: url('img/modestas-urbonas-vj_9l20fzj0-unsplash.jpg') */
}
#banner-change .pb-bg {
  background-image:
    linear-gradient(135deg, rgba(14,18,44,.78) 0%, rgba(30,55,102,.60) 100%),
    url('img/m-rennim-0pKGmISCzRE-unsplash.jpg');
  /* → Replace with: url('img/m-rennim-0pKGmISCzRE-unsplash.jpg') */
}

/* Text container */
.pb-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px var(--pad-x);
  box-sizing: border-box;
  text-align: left;
}
.pb-text {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  color: #fff;
  letter-spacing: .06em;
  line-height: 1.2;
  text-transform: uppercase;
  max-width: 820px;
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity  0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.pb-text.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile */
@media (max-width: 767px) {
  .photo-banner { min-height: 55vh; }
  .pb-text { font-size: clamp(20px, 7vw, 32px); }
  .pb-inner { padding: 60px 0; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ACCENT IMAGE STRIPS (visual accents across blocks)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.accent-img-strip {
  width: 100%; height: 240px;
  border-radius: var(--r-lg); overflow: hidden;
  position: relative; margin-top: 48px;
}
.accent-img-strip img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.accent-img-strip::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(138,21,56,.14) 0%, rgba(30,55,102,.20) 100%);
  pointer-events: none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION 3 — WHY NOW: dark industrial image background
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#why-now {
  background:
    linear-gradient(rgba(14,18,44,.84), rgba(14,18,44,.88)),
    url('https://picsum.photos/seed/industrial-factory-night/1600/700') center/cover no-repeat;
}
#why-now .eyebrow       { color: rgba(255,255,255,.6); }
#why-now h2             { color: #fff; }
#why-now .why-text p    { color: rgba(255,255,255,.65); }
#why-now .why-text .strong-p { color: rgba(255,255,255,.92); }
#why-now .why-pillar    { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.12); }
#why-now .wp-text h3    { color: #fff; }
#why-now .wp-text p     { color: rgba(255,255,255,.6); }
#why-now .wp-icon       { background: rgba(255,255,255,.1); }
#why-now .why-quote     {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE — Tablet 768–1199px
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1199px) {
  section { padding: 72px 0; }

  .reach-cards       { grid-template-columns: repeat(3, 1fr); }
  .reach-cards .reach-card:nth-child(4),
  .reach-cards .reach-card:nth-child(5) { grid-column: auto; }

  .three-axes        { flex-direction: column; gap: 8px; padding: 24px; }
  .axis-x            { transform: rotate(90deg); padding: 2px 0; }
  .three-axes-result { border-radius: 0 0 var(--r-lg) var(--r-lg); padding: 12px 24px 24px; }

  .hero-photo { max-height: 420px; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE — Mobile < 768px
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 767px) {
  section   { padding: 48px 0; }
  :root     { --pad-x: 16px; }
  #hero     { padding: 56px 0 48px; }

  /* All two-col → single col */
  .two-col-60-40,
  .two-col-40-60,
  .two-col-50-50 { grid-template-columns: 1fr; gap: 32px; }

  /* Hero: photo moves above text */
  .hero-photo-wrap { order: -1; max-width: 220px; margin: 0 auto; }
  .hero-photo { aspect-ratio: 1; }
  .hero-photo-badge { font-size: 11px; padding: 5px 12px; }

  /* About photo */
  .about-photo-col { position: static; }
  .about-photo     { max-width: 180px; aspect-ratio: 1; }

  /* Chaos-focus */
  .chaos-focus { position: static; }

  /* 3 axes */
  .three-axes { padding: 20px; }
  .three-axes-result { padding: 12px 20px 20px; }

  /* REACH cards */
  .reach-cards { grid-template-columns: 1fr 1fr; }
  .reach-cards .reach-card:last-child { grid-column: span 2; }

  /* Why pillars */
  .why-pillars { grid-template-columns: 1fr; }

  /* Info cards */
  .info-cards { grid-template-columns: 1fr; }

  /* Modules */
  .modules-grid { grid-template-columns: 1fr; gap: 0; }

  /* Outcomes card */
  .outcomes-card { position: static; }

  /* About stats */
  .about-stats { grid-template-columns: 1fr 1fr; }

  /* Form */
  .form-grid    { grid-template-columns: 1fr; }
  .apply-form   { padding: 28px 20px; }

  /* Accent image strips */
  .accent-img-strip { height: 160px; margin-top: 32px; }

  /* FAQ CTA */
  .faq-cta { padding: 36px 20px; }

  /* Method footer */
  .method-footer-box { flex-direction: column; text-align: center; }

  /* Footer */
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  h1 { font-size: 26px; }
  h2 { font-size: 21px; }
  .reach-cards { grid-template-columns: 1fr; }
  .reach-cards .reach-card:last-child { grid-column: auto; }
  .about-stats { grid-template-columns: 1fr; }
  .why-quote   { font-size: 16px; padding: 22px 20px; }
}

/* ─── LANGUAGE SWITCHER ─────────────────────────────── */
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--text-sec);
  padding: 3px 5px;
  border-radius: 4px;
  transition: color var(--tr), background var(--tr);
}
.lang-btn.active {
  color: var(--accent);
  background: var(--accent-light);
}
.lang-btn:hover:not(.active) {
  color: var(--text);
}
.lang-sep {
  color: var(--border);
  font-weight: 400;
}
