/* ═══════════════════════════════════════════════════════════
   INDEX2.CSS — Rucking Polska | Alternate Design
   Site palette · Oswald typography · Conversion-focused
   ═══════════════════════════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --i2-bg:       #0a0a14;
  --i2-bg2:      #10102a;
  --i2-bg3:      #1a1a2e;
  --i2-text:     #e9ecef;
  --i2-muted:    #8892a4;
  --i2-gold:     #ffd700;
  --i2-gold-h:   #ffe44d;
  --i2-red:      #e63946;
  --i2-red-h:    #c82333;
  --i2-border:   rgba(255, 215, 0, 0.10);
  --i2-border-s: rgba(255, 215, 0, 0.28);
  --i2-max:      1200px;
  --i2-pad:      7rem 2rem;
  --i2-font-d:   'Oswald', sans-serif;
  --i2-font-b:   'Inter', sans-serif;
}

/* ─── BASE OVERRIDE ──────────────────────────────────────── */
body {
  background: var(--i2-bg);
  color: var(--i2-text);
  font-family: var(--i2-font-b);
}

/* Fix global justify from style.css */
.v2-hero *, .v2-bar *, .v2-what *,
.v2-cases *, .v2-start *,
.v2-journey *, .v2-community *,
.v2-numbers *, .v2-cta * {
  text-align: unset;
  hyphens: none;
  -webkit-hyphens: none;
}

/* ─── UTILITIES ──────────────────────────────────────────── */
.v2-wrap {
  max-width: var(--i2-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.v2-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--i2-gold);
  margin-bottom: 1rem;
}

.v2-label--center { display: block; text-align: center; }
.v2-label--dim    { color: rgba(240, 235, 224, 0.35); }

/* ─── SCROLL REVEAL ──────────────────────────────────────── */
.v2-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.v2-reveal.visible        { opacity: 1; transform: translateY(0); }
.v2-reveal--d1            { transition-delay: 0.10s; }
.v2-reveal--d2            { transition-delay: 0.20s; }
.v2-reveal--d3            { transition-delay: 0.30s; }
.v2-reveal--d4            { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  .v2-reveal { opacity: 1; transform: none; transition: none; }
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.v2-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 2rem;
  font-family: var(--i2-font-b);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  white-space: nowrap;
}

.v2-btn--primary {
  background: var(--i2-red);
  color: #fff;
  border: 2px solid var(--i2-red);
}
.v2-btn--primary:hover {
  background: var(--i2-red-h);
  border-color: var(--i2-red-h);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(212,71,42,0.35);
}

.v2-btn--ghost {
  background: transparent;
  color: var(--i2-text);
  border: 2px solid rgba(240,235,224,0.22);
}
.v2-btn--ghost:hover {
  border-color: rgba(240,235,224,0.55);
  background: rgba(240,235,224,0.05);
}

.v2-btn--outline {
  background: transparent;
  color: var(--i2-gold);
  border: 2px solid var(--i2-gold);
}
.v2-btn--outline:hover {
  background: var(--i2-gold);
  color: var(--i2-bg);
  transform: translateY(-1px);
}

.v2-btn--cta {
  background: var(--i2-gold);
  color: var(--i2-bg);
  border: 2px solid var(--i2-gold);
  font-family: var(--i2-font-d);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 1.1rem 2.8rem;
}
.v2-btn--cta:hover {
  background: var(--i2-gold-h);
  border-color: var(--i2-gold-h);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(200,164,92,0.28);
}

.v2-arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--i2-gold);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: gap 0.2s ease;
}
.v2-arrow-link:hover { gap: 0.75rem; }

/* ═══════════════════════════════════════════════════════════
   1. HERO
   ═══════════════════════════════════════════════════════════ */
.v2-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--i2-bg);
}

.v2-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/nocny-trening-legionowo.jpg');
  background-size: cover;
  background-position: center 35%;
  filter: brightness(0.28) saturate(0.6);
}

.v2-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(10,10,20,0.85) 0%,
    rgba(10,10,20,0.25) 55%,
    rgba(10,10,20,0.90) 100%
  );
}

.v2-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--i2-max);
  margin: 0 auto;
  padding: 6rem 2rem 5rem;
}

.v2-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.2rem;
}
.v2-hero__eyebrow-line {
  display: block;
  width: 36px;
  height: 2px;
  background: var(--i2-gold);
  flex-shrink: 0;
}
.v2-hero__eyebrow-text {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--i2-gold);
}

.v2-hero__title {
  font-family: var(--i2-font-d);
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--i2-text);
  margin: 0 0 1.8rem;
  max-width: none;
  white-space: nowrap;
}

.v2-hero__title-line2 {
  display: block;
  color: var(--i2-gold);
  white-space: nowrap;
}

@media (max-width: 600px) {
  .v2-hero__title {
    white-space: normal;
    font-size: clamp(2.2rem, 9vw, 3.5rem);
  }
  .v2-hero__title-line2 {
    white-space: normal;
  }
}

.v2-hero__sub {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: rgba(233,236,239,0.55);
  max-width: 32ch;
  line-height: 1.5;
  margin-bottom: 2.8rem;
  font-family: var(--i2-font-d);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.v2-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.v2-hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(240,235,224,0.35);
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.v2-hero__scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(240,235,224,0.4), transparent);
  animation: v2scrollpulse 2s ease-in-out infinite;
}
@keyframes v2scrollpulse {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 0.9; }
}

/* ═══════════════════════════════════════════════════════════
   2. QUICK BAR
   ═══════════════════════════════════════════════════════════ */
.v2-bar {
  background: var(--i2-bg2);
  border-top: 1px solid var(--i2-border);
  border-bottom: 1px solid var(--i2-border);
  padding: 1.4rem 2rem;
}
.v2-bar__inner {
  max-width: var(--i2-max);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.v2-bar__item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.82rem;
  color: var(--i2-muted);
}
.v2-bar__item strong {
  font-family: var(--i2-font-d);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--i2-text);
  letter-spacing: 0.5px;
}
.v2-bar__item i { color: var(--i2-gold); font-size: 0.75rem; }
.v2-bar__divider {
  width: 1px;
  height: 20px;
  background: var(--i2-border);
}

/* ═══════════════════════════════════════════════════════════
   3. WHAT IS RUCKING
   ═══════════════════════════════════════════════════════════ */
.v2-what {
  padding: var(--i2-pad);
}
.v2-what__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 5rem;
  align-items: center;
}

.v2-what__image {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
}
.v2-what__image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center bottom;
  display: block;
  transition: transform 0.6s ease;
}
.v2-what__image:hover img { transform: scale(1.03); }

.v2-what__badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(12,11,10,0.88);
  backdrop-filter: blur(8px);
  border: 1px solid var(--i2-border-s);
  padding: 0.5rem 1.1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--i2-gold);
  border-radius: 2px;
}

.v2-what__text h2 {
  font-family: var(--i2-font-d);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--i2-text);
  margin: 0 0 1.4rem;
}
.v2-what__text p {
  font-size: 1.03rem;
  color: rgba(240,235,224,0.68);
  line-height: 1.78;
  margin-bottom: 2rem;
  max-width: 52ch;
}

.v2-what__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.v2-what__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.93rem;
  color: var(--i2-text);
  line-height: 1.45;
}
.v2-what__list li i {
  color: var(--i2-gold);
  flex-shrink: 0;
  font-size: 0.75rem;
  margin-top: 3px;
}

/* ═══════════════════════════════════════════════════════════
   3. DUALITY — czym jest rucking
   ═══════════════════════════════════════════════════════════ */
.v2-duality {
  padding: var(--i2-pad);
  background: var(--i2-bg);
  border-bottom: 1px solid var(--i2-border);
}

.v2-duality *,
.v2-duality * {
  text-align: unset;
  hyphens: none;
  -webkit-hyphens: none;
}

.v2-duality__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  margin: 2.5rem 0 0;
  align-items: start;
}

.v2-duality__side {
  padding: 2.5rem;
  border: 1px solid var(--i2-border);
  background: var(--i2-bg2);
}

.v2-duality__side--upgrade {
  border-top: 3px solid var(--i2-gold);
  background: var(--i2-bg3);
}

.v2-duality__level {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--i2-muted);
  margin-bottom: 1.2rem;
}

.v2-duality__side--upgrade .v2-duality__level {
  color: var(--i2-gold);
}

.v2-duality__title {
  font-family: var(--i2-font-d);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--i2-text);
  margin: 0 0 2rem;
}

.v2-duality__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.v2-duality__list li {
  font-size: 0.9rem;
  color: rgba(233,236,239,0.65);
  line-height: 1.5;
  padding-left: 1.2rem;
  position: relative;
}

.v2-duality__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--i2-muted);
  font-size: 0.75rem;
}

.v2-duality__note {
  font-size: 0.85rem;
  color: var(--i2-text);
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
  padding-top: 1.2rem;
  border-top: 1px solid var(--i2-border);
}

.v2-duality__metrics {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.v2-duality__metric {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.v2-duality__val {
  font-family: var(--i2-font-d);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--i2-gold);
  letter-spacing: 0.02em;
}

.v2-duality__lbl {
  font-size: 0.75rem;
  color: var(--i2-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.v2-duality__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  color: var(--i2-border-s);
  font-size: 1.2rem;
  align-self: center;
}

.v2-duality__bridge {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--i2-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.v2-duality__bridge p {
  font-family: var(--i2-font-d);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--i2-text);
  margin: 0;
}

.v2-duality__bridge strong {
  color: var(--i2-gold);
}

@media (max-width: 960px) {
  .v2-duality__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .v2-duality__arrow {
    padding: 1rem 0;
    transform: rotate(90deg);
  }
  .v2-duality__bridge {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   4. CASES — jeden plecak, różne drogi
   ═══════════════════════════════════════════════════════════ */
.v2-cases {
  padding: var(--i2-pad);
  background: var(--i2-bg2);
  border-top: 1px solid var(--i2-border);
  border-bottom: 1px solid var(--i2-border);
}

.v2-cases__head {
  margin-bottom: 3.5rem;
}

.v2-cases__title {
  font-family: var(--i2-font-d);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--i2-text);
  margin: 0;
}

.v2-cases__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--i2-border);
  border: 1px solid var(--i2-border);
}

.v2-cases__card {
  background: var(--i2-bg2);
  padding: 2.5rem 2rem;
  transition: background 0.25s ease;
}
.v2-cases__card:hover {
  background: var(--i2-bg3);
}

.v2-cases__cat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--i2-muted);
  margin-bottom: 0.6rem;
}

.v2-cases__name {
  font-family: var(--i2-font-d);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--i2-text);
  margin: 0 0 1rem;
}

.v2-cases__card p {
  font-size: 0.88rem;
  color: var(--i2-muted);
  line-height: 1.7;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   CYTAT
   ═══════════════════════════════════════════════════════════ */
.v2-quote {
  padding: 6rem 2rem;
  background: var(--i2-bg3);
  border-top: 1px solid var(--i2-border);
  border-bottom: 1px solid var(--i2-border);
}

.v2-quote *, .v2-quote * {
  text-align: unset;
  hyphens: none;
  -webkit-hyphens: none;
}

.v2-quote__inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.v2-quote__text {
  font-family: var(--i2-font-d);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 500;
  line-height: 1.3;
  color: var(--i2-text);
  margin: 0 0 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.v2-quote__author {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--i2-red);
}

.v2-quote__name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--i2-text);
}

.v2-quote__meta {
  font-size: 0.78rem;
  color: var(--i2-muted);
  letter-spacing: 0.03em;
}

/* ═══════════════════════════════════════════════════════════
   JAK ZACZĄĆ — 3 kroki
   ═══════════════════════════════════════════════════════════ */
.v2-start {
  padding: var(--i2-pad);
  background: var(--i2-bg);
}

.v2-start__head {
  margin-bottom: 3.5rem;
}

.v2-start__head h2 {
  font-family: var(--i2-font-d);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--i2-text);
  margin: 0;
}

.v2-start__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 3rem;
}

.v2-start__step {
  padding-right: 2rem;
}

.v2-start__num {
  font-family: var(--i2-font-d);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--i2-red);
  margin-bottom: 1rem;
}

.v2-start__step h3 {
  font-family: var(--i2-font-d);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--i2-text);
  margin: 0 0 0.75rem;
}

.v2-start__step p {
  font-size: 0.88rem;
  color: var(--i2-muted);
  line-height: 1.7;
  margin: 0;
  max-width: 26ch;
}

.v2-start__arrow {
  color: var(--i2-border-s);
  font-size: 1.1rem;
  padding: 0 1.5rem;
  padding-top: 1.6rem;
  align-self: start;
}

.v2-start__foot {
  border-top: 1px solid var(--i2-border);
  padding-top: 2rem;
}

/* ═══════════════════════════════════════════════════════════
   JOURNEY (zachowany dla innych stron)
   ═══════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════
   4. JOURNEY
   ═══════════════════════════════════════════════════════════ */
.v2-journey {
  padding: var(--i2-pad);
  background: var(--i2-bg2);
  border-top: 1px solid var(--i2-border);
  border-bottom: 1px solid var(--i2-border);
}
.v2-journey__head {
  margin-bottom: 4rem;
}
.v2-journey__head h2 {
  font-family: var(--i2-font-d);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--i2-text);
  margin: 0;
}

.v2-journey__track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.v2-journey__step {
  padding: 2.2rem 2rem 2.2rem 0;
  border-top: 3px solid var(--i2-border);
  transition: border-color 0.3s ease;
}
.v2-journey__step:hover          { border-top-color: var(--i2-gold); }
.v2-journey__step--elite         { border-top-color: var(--i2-gold); }

.v2-journey__num {
  font-family: var(--i2-font-d);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--i2-muted);
  margin-bottom: 1.1rem;
  padding-top: 1.4rem;
}
.v2-journey__step--elite .v2-journey__num { color: var(--i2-gold); }

.v2-journey__name {
  display: block;
  font-family: var(--i2-font-d);
  font-size: 1.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--i2-text);
  text-decoration: none;
  margin-bottom: 0.8rem;
  transition: color 0.2s ease;
}
.v2-journey__name:hover { color: var(--i2-gold); }

.v2-journey__step p {
  font-size: 0.87rem;
  color: var(--i2-muted);
  line-height: 1.65;
  margin: 0;
  max-width: 22ch;
}

.v2-journey__foot {
  margin-top: 3.5rem;
}

/* ═══════════════════════════════════════════════════════════
   5. COMMUNITY PHOTOS
   ═══════════════════════════════════════════════════════════ */
.v2-community {
  padding: var(--i2-pad);
}
.v2-community__head {
  margin-bottom: 3rem;
}
.v2-community__head h2 {
  font-family: var(--i2-font-d);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--i2-text);
  margin: 0;
}

.v2-community__mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 270px 270px;
  gap: 10px;
}

.v2-community__photo {
  overflow: hidden;
  background: var(--i2-bg2);
  position: relative;
}
.v2-community__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s ease, filter 0.35s ease;
  filter: brightness(0.82) saturate(0.85);
}
.v2-community__img--top-focus {
  object-position: center 15%;
}
.v2-community__photo:hover img {
  transform: scale(1.05);
  filter: brightness(1) saturate(1);
}
.v2-community__photo--tall { grid-row: 1 / 3; }

.v2-community__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--i2-border);
}
.v2-community__quote {
  font-size: 0.98rem;
  color: var(--i2-muted);
  font-style: italic;
  max-width: 52ch;
  line-height: 1.6;
  margin: 0;
}

.v2-community__stats {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--i2-muted);
  flex-wrap: wrap;
}
.v2-community__stats strong {
  color: var(--i2-text);
  font-weight: 700;
}
.v2-community__dot {
  color: var(--i2-border-s);
}

/* ═══════════════════════════════════════════════════════════
   6. NUMBERS
   ═══════════════════════════════════════════════════════════ */
.v2-numbers {
  padding: 5.5rem 2rem;
  background: var(--i2-bg3);
  border-top: 1px solid var(--i2-border);
  border-bottom: 1px solid var(--i2-border);
}
.v2-numbers__grid {
  max-width: var(--i2-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.v2-numbers__card {
  text-align: center;
  padding: 2.2rem 1rem;
  border: 1px solid var(--i2-border);
  border-radius: 3px;
  background: rgba(255, 215, 0, 0.03);
  transition: border-color 0.3s, background 0.3s;
}
.v2-numbers__card:hover {
  border-color: var(--i2-border-s);
  background: rgba(255, 215, 0, 0.065);
}
.v2-numbers__val {
  font-family: var(--i2-font-d);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  color: var(--i2-gold);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.v2-numbers__lbl {
  font-size: 0.72rem;
  color: var(--i2-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════
   7. FINAL CTA
   ═══════════════════════════════════════════════════════════ */
.v2-cta {
  padding: 9rem 2rem;
  text-align: center;
  background: var(--i2-bg);
  position: relative;
  overflow: hidden;
}
.v2-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(230,57,70,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.v2-cta__inner { position: relative; z-index: 1; }

.v2-cta__title {
  font-family: var(--i2-font-d);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.93;
  letter-spacing: -0.025em;
  color: var(--i2-text);
  margin: 0.8rem 0 1.5rem;
}
.v2-cta__title strong { color: var(--i2-gold); font-weight: 700; }

.v2-cta__sub {
  font-size: 1.05rem;
  color: var(--i2-muted);
  margin-bottom: 2.8rem;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  :root { --i2-pad: 5rem 1.5rem; }

  .v2-what__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .v2-what__image img { height: 340px; }

  .v2-cases__grid {
    grid-template-columns: 1fr 1fr;
  }

  .v2-start__steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .v2-start__arrow { display: none; }
  .v2-start__step  { padding-right: 0; }

  .v2-journey__track {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .v2-journey__step {
    padding: 2rem 1.5rem 2rem 0;
  }

  .v2-community__mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 230px 230px 230px;
  }
  .v2-community__photo--tall {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .v2-numbers__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .v2-community__foot {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .v2-community__quote { max-width: none; }

  .v2-bar__inner { gap: 1.5rem; }
  .v2-bar__divider { display: none; }
}

@media (max-width: 600px) {
  .v2-hero__title { max-width: none; }
  .v2-hero__actions { flex-direction: column; }
  .v2-cases__grid { grid-template-columns: 1fr; }
  .v2-community__stats { flex-direction: column; gap: 0.3rem; text-align: center; }
  .v2-community__dot { display: none; }

  .v2-journey__track { grid-template-columns: 1fr; }
  .v2-journey__step {
    border-top: none;
    border-left: 3px solid var(--i2-border);
    padding: 0 0 2.5rem 1.8rem;
  }
  .v2-journey__step:hover       { border-left-color: var(--i2-gold); border-top-color: transparent; }
  .v2-journey__step--elite      { border-left-color: var(--i2-gold); border-top-color: transparent; }
  .v2-journey__num              { padding-top: 0; }

  .v2-community__mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .v2-community__photo          { height: 240px; }
  .v2-community__photo--tall    { grid-column: auto; }

  .v2-numbers__grid { grid-template-columns: repeat(2, 1fr); }
}
