/* ─── Budi.fit v5 — Anthracite × Gold Design System ──────────────────────────
   Base: #0e0c0a anthracite | #1c1812 surface | #252018 card
   Gold: #c49a2e → #e8b84b | Text: #f0ece4 / #b0aa9e / #6a6560
   Heading: Barlow Condensed 800 — performance, uppercase
   Body/UI: Inter 400/500/600
   ─────────────────────────────────────────────────────────────────────────── */

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

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

:root {
  /* Anthracite base */
  --ink:       #070605;
  --base:      #0e0c0a;
  --surface:   #1a1712;
  --card:      #222018;
  --card-hi:   #2a2820;
  --input-bg:  #141210;
  --glass:     rgba(22,19,14,0.85);

  /* Gold */
  --gold:      #c49a2e;
  --gold-hi:   #e8b84b;
  --gold-pale: #f4d98c;
  --gold-dim:  rgba(196,154,46,0.14);
  --gold-line: rgba(217,166,58,0.50);
  --gold-glow: rgba(217,166,58,0.28);

  /* Text */
  --t1:  #f0ece4;
  --t2:  #b0aa9e;
  --t3:  #6a6560;
  --t4:  #3a3530;
  --tg:  #c49a2e;

  /* Borders */
  --b0:  rgba(255,255,255,0.04);
  --b1:  rgba(255,255,255,0.08);
  --b2:  rgba(255,255,255,0.13);
  --bg:  rgba(196,154,46,0.45);

  /* Semantic */
  --danger:    #c85050;
  --danger-bg: rgba(200,80,80,0.10);

  /* Radii */
  --r-sm: 8px; --r-md: 12px; --r-lg: 18px; --r-xl: 26px;
  --ease: cubic-bezier(.4,0,.2,1);
  --form-max: 560px;
}

html { font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--base);
  color: var(--t1);
  min-height: 100dvh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(7,6,5,0.88);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--b0);
}
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 28px;
  height: 58px; display: flex; align-items: center; justify-content: space-between;
}
.brand { text-decoration: none; display: flex; align-items: baseline; }
.brand-word {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 21px; font-weight: 800; letter-spacing: .04em;
  color: var(--t1); text-transform: uppercase;
}
.brand-dot {
  font-size: 25px; font-weight: 800; color: var(--gold-hi); line-height: 1;
  text-shadow: 0 0 14px rgba(232,184,75,.60), 0 0 28px rgba(232,184,75,.25);
}
.save-later-btn {
  display: none; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500; color: var(--t3);
  background: rgba(22,19,14,.7); border: 1px solid var(--b1);
  border-radius: 20px; padding: 6px 14px 6px 10px;
  cursor: pointer; transition: color .2s, border-color .2s; white-space: nowrap;
}
.save-later-btn.visible { display: flex; }
.save-later-btn svg { width:14px; height:14px; flex-shrink:0; }
.save-later-btn:hover { color: var(--gold-hi); border-color: var(--bg); }

/* Progress bar */
.progress-wrap { background: var(--b0); height: 2px; }
.progress-bar {
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-hi));
  transition: width .5s var(--ease);
  box-shadow: 0 0 10px var(--gold-glow), 0 0 3px rgba(232,184,75,.5);
  border-radius: 0 2px 2px 0;
}

/* ════════════════════════════════════════════════
   LAYOUT
════════════════════════════════════════════════ */
#app { display: flex; flex-direction: column; min-height: 100dvh; }
main { flex: 1; }

/* ════════════════════════════════════════════════
   HERO — step 0
════════════════════════════════════════════════ */
.hero-section {
  position: relative; overflow: hidden;
  padding: 52px 24px 48px;
}
.hero-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 90% at 15% 50%, rgba(28,24,20,.98) 0%, transparent 55%),
    radial-gradient(ellipse 55% 70% at 72% 18%, rgba(217,166,58,.08) 0%, transparent 52%),
    radial-gradient(ellipse 60% 50% at 88% 90%, rgba(18,15,12,.85) 0%, transparent 55%),
    linear-gradient(145deg, #1c1812 0%, #141210 35%, #0e0c0a 65%, #080706 100%);
  pointer-events: none;
}
.hero-section::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 45% 45% at 60% 42%, rgba(217,166,58,.05) 0%, transparent 65%);
  pointer-events: none;
}
.hero-bg-art { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.hero-inner {
  position: relative; z-index: 2;
  max-width: 960px; margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 10px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; width: 22px; height: 1px; background: var(--gold-line);
}
.hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(40px, 10vw, 72px); font-weight: 800;
  text-transform: uppercase; letter-spacing: .01em; line-height: .94;
  color: var(--t1); margin-bottom: 20px;
}
.hero-headline .hl-gold {
  color: var(--gold-hi);
  text-shadow: 0 0 40px rgba(217,166,58,.22);
}
.hero-sub {
  font-size: 15px; color: var(--t2); line-height: 1.75;
  margin-bottom: 30px; max-width: 340px;
}
.hero-cta { display: flex; align-items: center; }

/* Trainer card — hero inline (mobile) */
.hero-trainer-card {
  display: flex; align-items: center; gap: 14px;
  background: rgba(30,26,20,.85);
  border: 1px solid var(--b1);
  border-radius: var(--r-lg);
  padding: 16px 18px; margin-bottom: 28px;
  position: relative; overflow: hidden;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.hero-trainer-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line), transparent);
}
.hero-trainer-logo {
  width: 52px; height: 52px; flex-shrink: 0;
  background: rgba(255,255,255,.04); border: 1px solid var(--b2);
  border-radius: var(--r-sm); padding: 7px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-trainer-logo img { width: 100%; height: 100%; object-fit: contain; }
.hero-trainer-initial {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(217,166,58,.22), rgba(217,166,58,.07));
  border-radius: 4px; display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 800;
  color: rgba(232,184,75,.90); letter-spacing: .04em;
}
.hero-trainer-badge {
  font-size: 10px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--tg); margin-bottom: 4px;
  display: flex; align-items: center; gap: 5px;
}
.hero-trainer-badge::before {
  content: ''; width: 5px; height: 5px; background: var(--gold);
  border-radius: 50%; box-shadow: 0 0 6px rgba(217,166,58,.5);
}
.hero-trainer-name { font-size: 14px; font-weight: 600; color: var(--t1); line-height: 1.2; }
.hero-trainer-role { font-size: 11px; color: var(--t2); margin-top: 3px; }

/* Right column: onboarding preview (desktop) */
.hero-onboard-preview {
  background: rgba(255,255,255,.025);
  border: 1px solid var(--b1);
  border-radius: var(--r-lg); padding: 18px 20px;
  transition: border-color .25s;
}
.hero-onboard-preview:hover { border-color: rgba(217,166,58,.18); }
.preview-label {
  font-size: 10px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--t3); margin-bottom: 13px;
}
.preview-items { display: flex; flex-direction: column; gap: 9px; }
.preview-item { display: flex; align-items: center; gap: 10px; }
.preview-dot {
  width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0;
  background: rgba(217,166,58,.30);
}
.preview-item:first-child .preview-dot {
  background: var(--gold-hi);
  box-shadow: 0 0 6px rgba(217,166,58,.45);
}
.preview-text { font-size: 12px; color: var(--t3); line-height: 1.4; }
.preview-item:first-child .preview-text { color: var(--t2); font-weight: 500; }
.preview-bar-wrap {
  height: 1px; background: var(--b0); margin-top: 14px; border-radius: 1px; overflow: hidden;
}

/* ════════════════════════════════════════════════
   FORM AREA
════════════════════════════════════════════════ */
.form-section { padding: 40px 24px 68px; }
.form-inner { max-width: var(--form-max); margin: 0 auto; }

/* Steps */
.step { display: none; }
.step.active { display: block; animation: stepIn .26s var(--ease) both; }
@keyframes stepIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Step heading */
.step-heading { margin-bottom: 30px; }
.step-eyebrow {
  font-size: 10px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--t4); margin-bottom: 8px;
}
.step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 30px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .02em; color: var(--t1); line-height: 1.05;
}
.step-subtitle { font-size: 14px; color: var(--t3); margin-top: 8px; line-height: 1.65; }

/* ════════════════════════════════════════════════
   FORM ELEMENTS
════════════════════════════════════════════════ */
.field-group { margin-bottom: 22px; }
.field-label {
  display: block; font-size: 13px; font-weight: 500;
  color: var(--t2); margin-bottom: 9px; line-height: 1.4;
}
.field-label .req { color: var(--gold); margin-left: 2px; }
.field-label .opt { color: var(--t4); font-weight: 400; margin-left: 4px; font-size: 12px; }

input[type="text"], input[type="email"], input[type="tel"], textarea {
  width: 100%; background: var(--input-bg);
  border: 1px solid var(--b1); border-radius: var(--r-md);
  color: var(--t1); font-family: 'Inter', sans-serif;
  font-size: 15px; padding: 13px 15px; outline: none;
  -webkit-appearance: none;
  transition: border-color .2s, box-shadow .2s;
}
input[type="text"]:focus, input[type="email"]:focus,
input[type="tel"]:focus, textarea:focus {
  border-color: var(--bg);
  box-shadow: 0 0 0 3px rgba(196,154,46,.09);
}
input::placeholder, textarea::placeholder { color: var(--t4); }
textarea { resize: vertical; min-height: 84px; }

.field-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field-error { font-size: 12px; color: var(--danger); margin-top: 5px; display: none; }
.field-error.visible { display: block; }

.inline-notice {
  font-size: 12px; color: var(--t2);
  background: rgba(217,166,58,.07); border: 1px solid rgba(217,166,58,.18);
  border-radius: var(--r-sm); padding: 10px 13px; margin-top: 10px; line-height: 1.55;
}

/* Year select */
.year-select-wrap { position: relative; }
.year-select-wrap::after {
  content: ''; position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 5px solid var(--t3); pointer-events: none;
}
select#godina {
  width: 100%; background: var(--input-bg); border: 1px solid var(--b1);
  border-radius: var(--r-md); color: var(--t1); font-family: 'Inter', sans-serif;
  font-size: 15px; padding: 13px 38px 13px 15px;
  outline: none; cursor: pointer; -webkit-appearance: none; appearance: none;
  transition: border-color .2s, box-shadow .2s;
}
select#godina:focus { border-color: var(--bg); box-shadow: 0 0 0 3px rgba(196,154,46,.09); }
select#godina option { background: #1a1712; color: var(--t1); }

/* ── Choice grid ── */
.choice-grid { display: grid; gap: 8px; }
.choice-grid.cols-2 { grid-template-columns: 1fr 1fr; }
.choice-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.choice-grid.cols-1 { grid-template-columns: 1fr; }

.choice-btn {
  background: var(--surface); border: 1px solid var(--b1);
  border-radius: var(--r-md); color: var(--t2);
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 400;
  padding: 11px 14px; cursor: pointer;
  transition: all .18s var(--ease); text-align: center; line-height: 1.4;
  -webkit-tap-highlight-color: transparent;
}
.choice-btn:hover { border-color: var(--bg); color: var(--t1); background: var(--card); }
.choice-btn.selected {
  background: var(--gold-dim); border-color: var(--bg);
  color: var(--gold-hi); font-weight: 500;
}

/* ── Toggle Da/Ne ── */
.toggle-group { display: flex; gap: 8px; }
.toggle-btn {
  flex: 1; background: var(--surface); border: 1px solid var(--b1);
  border-radius: var(--r-md); color: var(--t2);
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500;
  padding: 11px; cursor: pointer;
  transition: all .18s var(--ease); text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.toggle-btn:hover { border-color: var(--bg); color: var(--t1); }
.toggle-btn.selected {
  background: var(--gold-dim); border-color: var(--bg); color: var(--gold-hi);
}

/* ── Segmented control ── */
.seg-control {
  display: flex; background: var(--input-bg); border: 1px solid var(--b1);
  border-radius: var(--r-md); padding: 3px; gap: 2px;
}
.seg-btn {
  flex: 1; background: none; border: none;
  border-radius: calc(var(--r-md) - 3px); color: var(--t3);
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 500;
  padding: 9px 4px; cursor: pointer;
  transition: all .18s var(--ease); text-align: center;
  -webkit-tap-highlight-color: transparent; white-space: nowrap;
}
.seg-btn:hover { color: var(--t1); }
.seg-btn.selected { background: var(--gold-dim); color: var(--gold-hi); }

/* ── Icon cards (job type) ── */
.icon-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.icon-card {
  background: var(--surface); border: 1px solid var(--b1);
  border-radius: var(--r-md); padding: 14px 12px; cursor: pointer;
  transition: all .18s var(--ease); text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.icon-card:hover { border-color: var(--bg); background: var(--card); }
.icon-card.selected { background: var(--gold-dim); border-color: var(--bg); }
.icon-card-icon { font-size: 22px; margin-bottom: 6px; line-height: 1; }
.icon-card-label { font-size: 12px; font-weight: 500; color: var(--t2); line-height: 1.3; }
.icon-card.selected .icon-card-label { color: var(--gold-hi); }

/* ── Slider ── */
.water-slider-wrap { padding: 4px 0 8px; }
.water-labels {
  display: flex; justify-content: space-between;
  font-size: 11px; color: var(--t4); margin-bottom: 10px;
}
input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 3px;
  background: var(--b1); border-radius: 2px; outline: none; cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 22px; height: 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-hi));
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(217,166,58,.45);
  cursor: pointer; transition: box-shadow .2s;
}
input[type="range"]::-webkit-slider-thumb:hover {
  box-shadow: 0 2px 16px rgba(217,166,58,.65);
}
.water-value-display {
  text-align: center; margin-top: 10px;
  font-size: 15px; font-weight: 600; color: var(--gold-hi);
}

/* ── Conditional field ── */
.cond-field {
  display: none; margin-top: 12px; padding: 16px;
  background: rgba(10,8,6,.55); border-radius: var(--r-md);
  border-left: 2px solid rgba(217,166,58,.42);
}
.cond-field.visible { display: block; }

/* ── Checkboxes ── */
.checkbox-group { display: flex; flex-direction: column; gap: 18px; }
.checkbox-item { display: flex; gap: 12px; align-items: flex-start; }
.checkbox-item input[type="checkbox"] {
  width: 18px; height: 18px; min-width: 18px; margin-top: 2px;
  accent-color: var(--gold); cursor: pointer;
}
.checkbox-item label { font-size: 13px; color: var(--t2); line-height: 1.65; cursor: pointer; }
.checkbox-item a { color: var(--tg); text-decoration: none; }
.checkbox-item a:hover { text-decoration: underline; }

/* Dividers */
.divider { border: none; border-top: 1px solid var(--b0); margin: 24px 0; }
.section-divide { display: flex; align-items: center; gap: 10px; margin: 28px 0 22px; }
.section-divide-line { flex: 1; height: 1px; background: var(--b0); }
.section-divide-label {
  font-size: 10px; letter-spacing: .1em; color: var(--t4); text-transform: uppercase;
}

/* ════════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════════ */
.btn-start {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-hi) 60%, #d4a030 100%);
  border: none; border-radius: var(--r-md);
  color: #0a0804;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em;
  padding: 15px 32px; cursor: pointer;
  box-shadow: 0 4px 24px rgba(217,166,58,.38), 0 1px 0 rgba(255,255,255,.18) inset;
  transition: box-shadow .22s, transform .15s;
  -webkit-tap-highlight-color: transparent;
  position: relative; overflow: hidden;
}
.btn-start::after {
  content: ''; position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  transform: skewX(-20deg);
  animation: sheen 4.5s ease-in-out infinite;
}
@keyframes sheen { 0%{left:-60%} 45%{left:130%} 100%{left:130%} }
.btn-start:hover {
  box-shadow: 0 6px 32px rgba(217,166,58,.52), 0 1px 0 rgba(255,255,255,.22) inset;
  transform: translateY(-1px);
}
.btn-start:active { transform: scale(.98); }

.step-nav { margin-top: 36px; display: flex; gap: 10px; }

.btn-back {
  flex: 0 0 auto; background: none; border: 1px solid var(--b1);
  border-radius: var(--r-md); color: var(--t3);
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500;
  padding: 13px 20px; cursor: pointer;
  transition: all .18s var(--ease); -webkit-tap-highlight-color: transparent;
}
.btn-back:hover { border-color: var(--b2); color: var(--t2); }

.btn-next, .btn-submit {
  flex: 1;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-hi) 100%);
  border: none; border-radius: var(--r-md); color: #0a0804;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em;
  padding: 14px 20px; cursor: pointer;
  transition: box-shadow .2s, transform .15s, opacity .15s;
  box-shadow: 0 4px 20px rgba(217,166,58,.30);
  -webkit-tap-highlight-color: transparent;
}
.btn-next:hover, .btn-submit:hover {
  box-shadow: 0 6px 28px rgba(217,166,58,.48);
  opacity: .92;
}
.btn-next:active, .btn-submit:active { transform: scale(.98); }
.btn-next:disabled, .btn-submit:disabled {
  background: var(--surface); border: 1px solid var(--b1);
  color: var(--t4); box-shadow: none; cursor: not-allowed; opacity: 1;
  font-family: 'Barlow Condensed', sans-serif;
}

/* ════════════════════════════════════════════════
   REVIEW SCREEN
════════════════════════════════════════════════ */
.review-section {
  background: var(--surface); border: 1px solid var(--b1);
  border-radius: var(--r-lg); margin-bottom: 12px; overflow: hidden;
}
.review-section-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 16px; border-bottom: 1px solid var(--b0);
}
.review-section-title { font-size: 13px; font-weight: 600; color: var(--t1); }
.btn-edit {
  font-size: 12px; color: var(--tg); background: none; border: none;
  cursor: pointer; font-family: 'Inter', sans-serif; font-weight: 500;
  padding: 0; transition: color .15s;
}
.btn-edit:hover { color: var(--gold-hi); }
.review-rows { padding: 12px 16px; display: flex; flex-direction: column; gap: 8px; }
.review-row { display: flex; gap: 12px; font-size: 13px; }
.review-key { color: var(--t3); flex-shrink: 0; min-width: 130px; }
.review-val { color: var(--t1); word-break: break-word; }

/* ════════════════════════════════════════════════
   SUMMARY SCREEN
════════════════════════════════════════════════ */
.summary-screen { padding-top: 8px; }

.summary-hero-panel {
  background: linear-gradient(160deg, var(--card) 0%, var(--surface) 100%);
  border: 1px solid var(--b1); border-radius: var(--r-xl);
  padding: 44px 32px; text-align: center; margin-bottom: 20px;
  position: relative; overflow: hidden;
}
.summary-hero-panel::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-line), transparent);
}
.summary-check {
  width: 64px; height: 64px; background: var(--gold-dim);
  border: 1px solid var(--bg); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.summary-check svg { width: 28px; height: 28px; }
.summary-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 34px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .02em; color: var(--t1); line-height: 1.05; margin-bottom: 14px;
}
.summary-body-short { font-size: 14px; color: var(--t2); line-height: 1.75; max-width: 320px; margin: 0 auto; }

.summary-trainer-card {
  background: var(--surface); border: 1px solid var(--b1);
  border-radius: var(--r-lg); padding: 18px 20px;
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px; position: relative; overflow: hidden;
}
.summary-trainer-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line), transparent);
}
.summary-trainer-logo {
  width: 52px; height: 52px; background: var(--b0);
  border: 1px solid var(--b1); border-radius: var(--r-sm);
  padding: 7px; flex-shrink: 0; overflow: hidden;
  display: flex; align-items: center;
}
.summary-trainer-logo img { width: 100%; height: 100%; object-fit: contain; }
.summary-trainer-initial {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(217,166,58,.20), rgba(217,166,58,.06));
  border-radius: 4px; display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 800;
  color: rgba(232,184,75,.85);
}
.summary-trainer-info .label { font-size: 10px; color: var(--t4); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 4px; }
.summary-trainer-info .name  { font-size: 14px; font-weight: 600; color: var(--t1); }
.summary-trainer-info .role  { font-size: 12px; color: var(--t2); margin-top: 2px; }

.summary-detail { font-size: 14px; color: var(--t2); line-height: 1.8; margin-bottom: 28px; }
.summary-detail p { margin-bottom: 10px; }

.summary-actions { display: flex; flex-direction: column; gap: 10px; }
.btn-primary-full {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-hi));
  border: none; border-radius: var(--r-md); color: #0a0804;
  font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .06em;
  padding: 14px; cursor: pointer;
  transition: box-shadow .2s, opacity .15s;
  box-shadow: 0 4px 20px rgba(217,166,58,.30);
  -webkit-tap-highlight-color: transparent;
}
.btn-primary-full:hover { opacity: .9; box-shadow: 0 6px 28px rgba(217,166,58,.45); }

.btn-secondary {
  width: 100%; background: none; border: 1px solid var(--b1);
  border-radius: var(--r-md); color: var(--t2);
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500;
  padding: 13px; cursor: pointer;
  transition: all .18s; -webkit-tap-highlight-color: transparent;
}
.btn-secondary:hover { border-color: var(--b2); color: var(--t1); }

/* Toast */
.toast {
  position: fixed; bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(70px);
  background: var(--card); border: 1px solid var(--bg);
  border-radius: var(--r-md); padding: 12px 18px; font-size: 13px; color: var(--t1);
  max-width: 340px; width: calc(100% - 40px); text-align: center;
  z-index: 300; opacity: 0; pointer-events: none;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* Footer */
.site-footer { border-top: 1px solid var(--b0); padding: 22px 28px; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 12px; color: var(--t4); text-decoration: none; transition: color .15s; }
.footer-links a:hover { color: var(--t2); }
.footer-copy { font-size: 11px; color: var(--t4); }

/* Utility */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }

/* ════════════════════════════════════════════════
   DESKTOP — two-column hero
════════════════════════════════════════════════ */
@media (min-width: 800px) {
  .hero-section { padding: 72px 40px 68px; }
}

@media (min-width: 1000px) {
  .hero-section { padding: 90px 52px 84px; }

  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: center;
    max-width: 1100px;
  }

  /* hide mobile trainer card on desktop */
  .hero-trainer-card { display: none; }

  .hero-right {
    display: flex; flex-direction: column; gap: 12px;
  }

  /* Desktop trainer card — right column */
  .hero-right .hero-trainer-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0;
    padding: 20px;
  }
  .hero-right .hero-trainer-card .tc-row {
    display: flex; align-items: center; gap: 14px; margin-bottom: 14px; width: 100%;
  }
  .hero-right .hero-trainer-card .tc-divider {
    height: 1px; background: var(--b1); margin-bottom: 12px; width: 100%;
  }
  .hero-right .hero-trainer-card .tc-desc {
    font-size: 13px; color: var(--t3); line-height: 1.65;
  }

  .hero-headline { font-size: clamp(58px, 6vw, 86px); }

  .form-section { padding: 56px 52px 80px; }
  .form-inner { max-width: 600px; }
  .step-title { font-size: 32px; }
  .summary-headline { font-size: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
