/* ============================================================
   THE WOLF OF FOREX — style.css
   Dark premium trading education design system
   ============================================================ */

/* === 1. DESIGN TOKENS === */
:root {
  --gold: #C5A059;
  --gold-dark: #A88546;
  --gold-light: #F0D080;
  --gold-glow: rgba(197, 160, 89, 0.35);
  --green: #22c55e;
  --green-dim: rgba(34, 197, 94, 0.15);
  --text: #EDEDED;
  --text-2: #909090;
  --text-3: #555555;
  --bg: #050505;
  --bg2: #0A0A0A;
  --bg3: #030303;
  --card: rgba(255, 255, 255, 0.035);
  --card-hover: rgba(255, 255, 255, 0.055);
  --surface: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(197, 160, 89, 0.25);
  --mono: 'JetBrains Mono', 'Courier New', monospace;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --display: 'Montserrat', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --shadow-gold: 0 0 40px rgba(197, 160, 89, 0.15);
  --mouse-x: 0;
  --mouse-y: 0;
}

/* === 2. BASE RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-width: 320px;
  overflow-x: hidden;
  line-height: 1.6;
}

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

/* === 3. LAYOUT === */
.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 32px;
  position: relative;
}

/* === 4. SKIP LINK === */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #080808;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 14px;
  z-index: 99999;
  border-radius: 0 0 10px 10px;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* === 5. HEADER === */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
header[data-scroll="top"] {
  background: transparent;
  backdrop-filter: none;
}
header[data-scroll="mid"] {
  background: rgba(5, 5, 5, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
header[data-scroll="deep"] {
  background: rgba(5, 5, 5, 0.93);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: rgba(197, 160, 89, 0.12);
}

.h-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.h-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.h-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-name {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(13px, 2vw, 18px);
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1;
}

/* === 6. DESKTOP NAV === */
.desk {
  display: flex;
  align-items: center;
  gap: 4px;
}
.desk a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
  position: relative;
  white-space: nowrap;
}
.desk a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}
.desk a[href="#audit"] {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
  border-radius: 6px;
}
.desk a[href="#audit"]:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(197, 160, 89, 0.06);
}

/* === 7. BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  height: 48px;
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-gold {
  background: var(--gold);
  color: #080808;
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(197, 160, 89, 0.3);
}
.btn-gold:active { transform: translateY(0); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.04);
}
.btn-lg {
  height: 56px;
  font-size: 15px;
  padding: 0 40px;
}
.desk-cta {
  height: 42px;
  min-width: 140px;
  padding: 0 20px;
  font-size: 13px;
}
.desk-cta--telegram {
  background: #0088cc;
  color: #fff;
}
.desk-cta--telegram:hover { filter: brightness(1.15); }

/* btn-glow-bleed: hero primary CTA */
.btn-glow-bleed {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: #080808;
  font-size: 16px;
  font-weight: 800;
  height: 56px;
  padding: 0 48px;
  border-radius: 10px;
  box-shadow: 0 4px 32px rgba(197, 160, 89, 0.4), 0 0 0 1px rgba(197,160,89,0.3);
  transition: all 0.3s ease;
  letter-spacing: 0.08em;
}
.btn-glow-bleed:hover {
  box-shadow: 0 8px 48px rgba(197, 160, 89, 0.55), 0 0 0 1px rgba(197,160,89,0.5);
  transform: translateY(-2px);
}

/* btn-magnetic: tilt interaction target (JS applies transform) */
.btn-magnetic { transform-origin: center center; }

/* btn-primary-hero: hero CTA centering */
.btn-primary-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* btn-text: inner label inside btn-primary-hero */
.btn-text {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

/* btn-prem-new: premium package CTA */
.btn-prem-new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 24px;
  background: var(--gold);
  color: #080808;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  margin-top: auto;
}
.btn-prem-new:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(197, 160, 89, 0.35);
}

/* btn-submit: form submit */
.btn-submit {
  width: 100%;
  height: 52px;
  font-size: 15px;
  position: relative;
  overflow: hidden;
}
.btn-submit-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: opacity 0.2s;
}
.btn-loader {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(8,8,8,0.3);
  border-top-color: #080808;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  position: absolute;
}
.btn-submit.loading .btn-loader { display: block; }
.btn-submit.loading .btn-submit-content { opacity: 0; }
.btn-submit.success { background: var(--green); }
@keyframes spin { to { transform: rotate(360deg); } }

/* === 8. HAMBURGER BUTTON === */
.hbg {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.2s;
}
.hbg:hover { border-color: var(--gold); }
.hbg-bar {
  width: 18px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s ease;
  display: block;
}

/* === 9. MOBILE NAV === */
.mob-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9998;
  backdrop-filter: blur(4px);
}
.mob-overlay.open { display: block; }

.mob-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(340px, 88vw);
  height: 100vh;
  height: 100dvh;
  background: #0D0D0D;
  border-left: 1px solid rgba(197, 160, 89, 0.12);
  padding: 28px 28px 40px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transition: right 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.mob-nav.open { right: 0; }

.nav-link {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-2);
  padding: 14px 12px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.03em;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.mob-footer {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* === 10. HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('tło_do_sekcji_hero.webp');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(5, 5, 5, 0.92) 0%,
    rgba(5, 5, 5, 0.75) 45%,
    rgba(5, 5, 5, 0.25) 100%
  );
}
.grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(197,160,89,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197,160,89,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
  pointer-events: none;
  opacity: 0.5;
}
.hero-center-layout {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-top: 0 !important;
  padding-left: 8vw;
  padding-right: 20px;
  padding-bottom: 80px;
  justify-content: center !important;
  gap: 0;
}

@media (max-width: 768px) {
  .hero-center-layout {
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 40px;
    justify-content: flex-end !important;
    padding-top: 0 !important;
  }
}

/* Hero Typography */
.premium-hero-h1, .unified-hero-h1 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 20px;
}
.kont-fundowanych-accent {
  color: var(--gold);
  background: linear-gradient(120deg, var(--gold-dark), var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.premium-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--text-2);
  line-height: 1.75;
  max-width: 580px;
  margin-top: 16px;
  margin-bottom: 0;
}
.institutional-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
  margin-bottom: 0;
}

/* === 11. KICKER (section label) === */
.kicker {
  display: inline-flex;
  align-items: center;
  width: auto;
  max-width: fit-content;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(197, 160, 89, 0.35);
  border-radius: 100px;
  background: rgba(197, 160, 89, 0.08);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(197, 160, 89, 0.9);
  margin-bottom: 20px;
}

.hero-eyebrow,
.institutional-kicker {
  display: inline-flex;
  width: auto;
  max-width: fit-content;
}

/* === 12. SECTION HEADINGS SHARED PATTERNS === */
.sec-head {
  text-align: left;
  margin-bottom: 48px;
}
.sec-head h2 {
  text-align: left !important;
  font-family: 'Outfit', var(--display), sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #EAE0D5;
  margin: 14px 0 0 0;
  max-width: 720px;
}
.sec-head h2 span { text-align: left; }
.sec-head p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
}

/* === 13. TEASER BANNER === */
.teaser-banner {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}
.teaser-banner .wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.teaser-banner h2 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(26px, 4vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
  max-width: 620px;
  margin-top: 12px;
}

/* === 14. BENTO GRID === */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(180px, auto);
  gap: 24px;
  margin-top: 48px;
  width: 100%;
  align-items: stretch;
}
.bento-item {
  position: relative;
  background: linear-gradient(145deg, rgba(12,11,9,0.85) 0%, rgba(6,5,3,0.92) 100%);
  border: 1px solid rgba(197,160,89,0.12);
  border-radius: 16px;
  padding: 32px;
  overflow: hidden;
  transition: border-color 0.4s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.4s cubic-bezier(0.16,1,0.3,1),
              transform 0.5s cubic-bezier(0.16,1,0.3,1);
  will-change: transform;
}
.bento-item:hover {
  border-color: rgba(197,160,89,0.35);
  box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 50px rgba(197,160,89,0.08);
}
.bento-col-span-2 { grid-column: span 2; }
.bento-col-span-3 { grid-column: span 3; }
.bento-col-span-4 { grid-column: span 4; }
.bento-row-span-2 { grid-row: span 2; }

@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bento-col-span-4, .bento-col-span-3, .bento-col-span-2 { grid-column: span 2; }
  .bento-row-span-2 { grid-row: auto; }
}
@media (max-width: 640px) {
  .bento-grid { grid-template-columns: 1fr; gap: 16px; }
  .bento-col-span-2, .bento-col-span-3, .bento-col-span-4 { grid-column: 1 / -1; }
}

.bento-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
}
.bento-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 12px;
}
.bento-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
}
.bento-counter {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(32px, 4vw, 52px);
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

/* === 15. METHODOLOGY === */
.meth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  padding: 100px 0;
}
.meth-l {
  position: sticky;
  top: 100px;
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.step:last-child { border-bottom: none; }
.snum {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  opacity: 0.7;
  padding-top: 3px;
  flex-shrink: 0;
  width: 28px;
}
.stit {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.4;
}
.sdesc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.8;
}

/* === 16. TESTIMONIALS / DISCORD CARDS === */
.discord-cards-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 860px;
  margin: 40px auto;
  padding: 0 24px;
}
.discord-card {
  background: #1a1a1f;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  max-width: 420px;
  width: 100%;
  transition: border-color 0.25s;
}
.discord-card:hover { border-color: rgba(255, 255, 255, 0.14); }
.discord-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  flex-shrink: 0;
}
.discord-content { flex: 1; min-width: 0; }
.discord-user {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.discord-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.discord-time {
  font-size: 11px;
  color: var(--text-3);
  font-family: var(--mono);
}
.discord-msg {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}

/* Opinions section */
.op-header {
  text-align: center;
  padding: 0 24px;
  margin-bottom: 8px;
}
.op-header h2 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(26px, 4vw, 48px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 12px;
}
.op-gold { color: var(--gold); }
.op-sub {
  font-size: 16px;
  color: var(--text-2);
}
.op-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.25s, background 0.25s;
}
.op-card:hover {
  border-color: var(--border-gold);
  background: var(--card-hover);
}
.op-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.op-stars { color: var(--gold); font-size: 14px; }
.op-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  color: #22c55e; background: rgba(34,197,94,0.1);
  padding: 4px 10px; border-radius: 100px;
}
.op-badge svg { width:12px; height:12px; fill: #22c55e; stroke: none; }
.op-text { font-size: 14px; color: var(--text-2); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.op-author { display: flex; align-items: center; gap: 12px; }
.op-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: #fff; flex-shrink: 0;
}
.op-avatar.a0 { background: #5865f2; }
.op-avatar.a1 { background: #ed4245; }
.op-avatar.a2 { background: #3ba55c; }
.op-avatar.a3 { background: #faa61a; color:#080808; }
.op-name { font-size: 14px; font-weight: 700; color: #fff; }
.op-role { font-size: 12px; color: var(--text-3); font-family: var(--mono); margin-top: 2px; }

/* === 17. VAULT / PROOF SECTION === */
.vault-grid-container {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-top: 48px;
}
.vault-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.25s, transform 0.3s ease;
}
.vault-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}
.vc-proof {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
  position: relative;
}
.vc-proof img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s;
}
.vc-proof img.loaded { opacity: 1; }
.vc-proof-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
}
.vault-caption {
  padding: 16px 20px;
}
.vault-caption-amount {
  font-family: var(--display);
  font-weight: 900;
  font-size: 22px;
  color: var(--gold);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.vault-caption-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 4px;
}
.vault-caption-date {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-3);
}

/* === 18. PRICING SECTION === */
.pricing-header-new {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
  padding-top: 96px;
}
.header-badge-new {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(197, 160, 89, 0.08);
  border: 1px solid rgba(197, 160, 89, 0.2);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.header-h2-new {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 16px;
}
.header-sub-new {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
}

.pricing-cards-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
  padding-bottom: 60px;
}

/* pricing card animation */
.pricing-card-anim {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.pricing-card-anim.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* BASE (Standard) card */
.base-card-redesign {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: border-color 0.3s, background 0.3s;
}
.base-card-redesign:hover {
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.045);
}
.base-overline {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 12px;
}
.base-title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 16px;
}
.base-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 28px;
}
.base-price-block {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.base-price {
  font-family: var(--display);
  font-weight: 900;
  font-size: 44px;
  color: var(--gold);
  letter-spacing: -0.04em;
  line-height: 1;
}
.base-per {
  font-size: 14px;
  color: var(--text-2);
  margin-left: 4px;
}
.base-sub {
  font-size: 12px;
  color: var(--text-3);
  font-family: var(--mono);
  margin-top: 8px;
}
.base-feat-container { flex: 1; margin-bottom: 24px; }
.base-feat-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.base-feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.55;
}
.base-feat-list li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.base-feat-txt { color: var(--text-2); }
.base-feat-txt.primary { color: var(--text); font-weight: 500; }
.base-spacer { flex: 1; min-height: 16px; }
.base-btn {
  display: block;
  width: 100%;
  padding: 14px 20px;
  background: transparent;
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s;
  margin-bottom: 16px;
}
.base-btn:hover {
  background: rgba(197,160,89,0.08);
  border-color: var(--gold);
}
.base-disclaimer-box {
  font-size: 11px;
  color: var(--text-3);
  line-height: 1.6;
  padding: 12px 14px;
  background: rgba(255,255,255,0.025);
  border-radius: 6px;
  border: 1px solid var(--border);
}

/* PREMIUM card */
.premium-card-new {
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, rgba(197,160,89,0.6) 0%, rgba(197,160,89,0.15) 50%, rgba(197,160,89,0.4) 100%);
  position: relative;
  display: flex;
  flex-direction: column;
}
.premium-card-new > div {
  background: #0e0e0e;
  border-radius: calc(var(--radius-lg) - 2px);
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.premium-glow-wrap {
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--gold-dark), transparent, var(--gold));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.premium-card-new:hover .premium-glow-wrap { opacity: 0.3; }

.premium-badge-new {
  display: inline-block;
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #080808;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 100px;
  white-space: nowrap;
}

.lbl-prem {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 10px;
}
.tit-prem {
  font-family: var(--display);
  font-weight: 900;
  font-size: 28px;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.desc-prem {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 24px;
}
.prc-prem {
  font-family: var(--display);
  font-weight: 900;
  font-size: 52px;
  color: var(--gold);
  letter-spacing: -0.04em;
  line-height: 1;
}
.per-prem {
  font-size: 15px;
  color: var(--text-2);
  margin-left: 4px;
}
.sep-prem {
  height: 1px;
  background: rgba(197, 160, 89, 0.2);
  margin: 24px 0;
}

.feat-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
}
.feat-list li svg { width:16px; height:16px; flex-shrink:0; margin-top:2px; }
.feat-prem-txt { color: var(--text-2); }
.feat-highlight {
  background: rgba(197,160,89,0.07);
  border: 1px solid rgba(197,160,89,0.2);
  border-radius: 8px;
  padding: 12px 14px;
}
.feat-highlight .feat-prem-txt { color: var(--gold); font-weight: 600; }

/* Scarcity indicator */
.spots-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 20px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: pulse-anim 2s ease-in-out infinite;
}
@keyframes pulse-anim {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { opacity: 0.85; box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
.spots-number { color: #fff; font-weight: 700; }
.spots-text { color: var(--text-2); }
.slots-counter { color: #fff; font-weight: 700; }

/* Trust Bar */
.trust-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 32px;
  padding: 24px 0 40px;
  border-top: 1px solid var(--border);
  margin-top: 48px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-2);
}
.trust-item svg { color: var(--green); }

/* Comparison table */
.pricing-compare {
  margin: 0 0 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.compare-row {
  display: grid;
  grid-template-columns: 1fr 120px 140px;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  gap: 12px;
}
.compare-row:last-child { border-bottom: none; }
.compare-header {
  background: rgba(255,255,255,0.03);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}
.compare-col-feature { font-size: 13px; color: var(--text-2); }
.compare-col-val { text-align: center; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-3); }
.premium-val { color: var(--gold); }
.val-icon { display: flex; align-items: center; justify-content: center; }

.pricing-guarantee {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 60px;
}

/* === 19. CONTACT / AUDIT SECTION === */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding: 100px 0;
}
.sc-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: all 0.25s;
}
.sc-item svg { width: 18px; height: 18px; flex-shrink: 0; }
.sc-item:hover {
  border-color: var(--border-gold);
  color: var(--gold);
  background: rgba(197,160,89,0.06);
}
.social-contact { display: flex; gap: 12px; flex-wrap: wrap; }

/* === 20. FORM === */
.form-container { width: 100%; }
.form-group {
  margin-bottom: 20px;
  position: relative;
}
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 8px;
}
.form-input {
  display: block;
  width: 100%;
  padding: 14px 44px 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 14px;
  font-family: var(--sans);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.form-input::placeholder { color: var(--text-3); }
.form-input:focus {
  border-color: rgba(197,160,89,0.5);
  background: rgba(255,255,255,0.06);
}
.form-input:focus-visible { box-shadow: 0 0 0 3px rgba(197,160,89,0.15); }
textarea.form-input { padding-right: 16px; }
.form-icon-status {
  position: absolute;
  right: 14px;
  top: 38px;
  width: 16px;
  height: 16px;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.icon-valid { stroke: var(--green); }
.icon-invalid { stroke: #ef4444; }
.form-group.valid .icon-valid { opacity: 1; }
.form-group.invalid .icon-invalid { opacity: 1; }
.form-group.invalid .form-input { border-color: rgba(239,68,68,0.5); }
.form-feedback {
  font-size: 12px;
  color: #ef4444;
  margin-top: 5px;
  min-height: 16px;
  opacity: 0;
  transition: opacity 0.2s;
}
.form-group.invalid .form-feedback { opacity: 1; }

/* === 21. FAQ === */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-of-type { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  text-align: left;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--sans);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  line-height: 1.4;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border);
  flex-shrink: 0;
  position: relative;
  transition: all 0.25s;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--text-2);
  border-radius: 2px;
  transition: all 0.25s;
}
.faq-icon::before { width: 10px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-icon::after { width: 1.5px; height: 10px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-item.active .faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-item.active .faq-icon { border-color: var(--gold); background: rgba(197,160,89,0.1); }
.faq-item.active .faq-icon::before { background: var(--gold); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.8;
}

/* === 22. FOOTER === */
/* === 22. SITE FOOTER === */
/* A — top separator line: transparent → gold → transparent */
.site-footer {
  position: relative;
  background:
    radial-gradient(ellipse 70% 120px at 50% 0%, rgba(197,160,89,0.06) 0%, transparent 100%),
    #020202;
}
.footer-top-line {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(197,160,89,0.4) 50%, transparent 100%);
}
.footer-c {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Main bar ── */
.footer-bar { padding: 20px 0; }
.footer-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(243,243,243,0.55);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.25s ease;
  flex-shrink: 0;
}
.footer-logo:hover { color: rgba(243,243,243,0.82); }
.footer-logo:focus-visible {
  outline: 2px solid var(--gold-b);
  outline-offset: 4px;
  border-radius: 2px;
}
/* B — "FOREX" złoty gradient identyczny jak w headerze */
.footer-logo span {
  background: linear-gradient(135deg, #EAE0D5 0%, #C6B39A 50%, #8C7A50 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* F — opacity linków ~65%, hover gold */
.footer-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}
.footer-nav-link {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(243,243,243,0.65);
  text-decoration: none;
  padding: 4px 14px;
  transition: color 0.2s;
  white-space: nowrap;
}
.footer-nav-link:hover { color: var(--gold); }
.footer-nav-link:focus-visible {
  outline: 2px solid var(--gold-b);
  outline-offset: 3px;
  border-radius: 3px;
}
.footer-email { color: rgba(197,160,89,0.72); }
.footer-email:hover { color: var(--gold-b); }

.footer-nav-sep {
  display: block;
  width: 1px;
  height: 11px;
  background: rgba(197,160,89,0.2);
  flex-shrink: 0;
}
.footer-copy {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.07em;
  color: rgba(243,243,243,0.26);
  white-space: nowrap;
  flex-shrink: 0;
}

/* E — kompaktowa sekcja prawna, bez dużych pustych przestrzeni */
.footer-legal {
  padding: 12px 32px 22px;
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.04);
  text-align: center;
}
.footer-business {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: rgba(243,243,243,0.3);
  margin: 0 0 10px;
}
/* D — lewy border 3px, bez ramki dookoła, rozjaśnione tło */
.footer-risk-box {
  display: inline-block;
  max-width: 860px;
  width: 100%;
  padding: 12px 18px 12px 17px;
  border: none;
  border-left: 3px solid rgba(197,160,89,0.5);
  border-radius: 0 6px 6px 0;
  background: rgba(197,160,89,0.03);
  text-align: left;
  box-sizing: border-box;
}
.footer-risk-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(197,160,89,0.5);
}
.footer-risk-text {
  font-size: 10.5px;
  color: rgba(243,243,243,0.3);
  line-height: 1.8;
  margin: 0;
}

/* === 24. MOBILE CTA BAR === */
/* === 25. LIGHTBOX === */
.lb {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.lb[aria-hidden="false"] {
  opacity: 1;
  pointer-events: all;
}
.lb-panel {
  position: relative;
  max-width: min(90vw, 900px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}
.lb-img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  display: block;
}
.lb-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 4px 0;
  color: var(--text-2);
  font-size: 13px;
}
.lb-close {
  flex-shrink: 0;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text);
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--sans);
  cursor: pointer;
  transition: background 0.2s;
}
.lb-close:hover { background: rgba(255,255,255,0.14); }

/* === 26. COOKIE BANNER === */
#premium-cookie-banner {
  position: fixed;
  bottom: 36px;
  left: 0;
  right: 0;
  z-index: 8000;
  padding: 20px 24px;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(197,160,89,0.2);
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
#premium-cookie-banner.show { transform: translateY(0); }
#premium-cookie-banner.hide { transform: translateY(120%); }
.cookie-banner-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner-text {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
  min-width: 280px;
}
.cookie-banner-text p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.65;
}
.cookie-banner-text a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.cookie-icon { font-size: 22px; flex-shrink: 0; margin-top: 1px; }
.cookie-banner-buttons { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-family: var(--sans);
  letter-spacing: 0.04em;
  transition: all 0.2s;
}
.cookie-btn-gold { background: var(--gold); color: #080808; }
.cookie-btn-gold:hover { background: var(--gold-light); }
.cookie-btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-2);
}
.cookie-btn-ghost:hover { border-color: rgba(255,255,255,0.25); color: var(--text); }

/* === 27. GSAP ANIMATION TARGETS === */
.gsap-fade-up { will-change: opacity, transform; }
.gsap-scale-in { will-change: opacity, transform; }
.gsap-stagger-item { will-change: opacity, transform; }
.gsap-counter { display: inline; }

/* Glow border SVG overlay */
.glow-border-wrap { position: relative; }
.glow-border-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
  overflow: visible;
}

/* Swiper / Cert Slider */
.certSwiper { width: 100%; padding: 20px 0 48px !important; }
.certSwiper .swiper-slide { width: 280px; }
.swiper-pagination-bullet { background: var(--text-3) !important; opacity: 1 !important; }
.swiper-pagination-bullet-active { background: var(--gold) !important; }
.swiper-scrollbar { background: var(--border) !important; }
.swiper-scrollbar-drag { background: var(--gold) !important; }

/* cert-card (inside swiper) */
.cert-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.25s;
}
.cert-card:hover { border-color: var(--border-gold); }

/* payout-gallery-item */
.payout-gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.payout-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.4s;
}
.payout-gallery-item img.loaded { opacity: 1; }

/* funded-card */
.funded-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

/* === 28. SECTION DIVIDERS (reusable class) === */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197,160,89,0.35), transparent);
  position: relative;
  z-index: 2;
}

/* === 29. RESPONSIVE === */
@media (max-width: 1024px) {
  .pricing-cards-new { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .meth-grid { grid-template-columns: 1fr; gap: 40px; }
  .meth-l { position: static; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .wrap { padding: 80px 20px; }
  /* Stack the 2-column section header so its heading/paragraph get the full width
     instead of being squeezed into a ~136px column (which forced mid-word breaks).
     Uses #portfolio for specificity — the base .sec-row rule is defined later in the file. */
  #portfolio .sec-row { grid-template-columns: 1fr; gap: 24px; }
  .desk { display: none; }
  .desk-cta { display: none; }
  .hbg { display: flex; }
  .hero-center-layout { padding: 60px 0; }
  .discord-cards-wrap { padding: 0; }
  .pricing-cards-new { grid-template-columns: 1fr; }
  .trust-bar { padding-bottom: 70px; }
  .faq-accordion { padding-bottom: 100px; }
  .compare-row { grid-template-columns: 1fr 80px 100px; }
  .cookie-banner-wrap { flex-direction: column; }
  .teaser-banner .wrap { flex-direction: column; }
  .contact-wrapper { padding: 60px 0; }
  .meth-grid { padding: 60px 0; }
  .pricing-header-new { padding-top: 60px; }
  .footer-bar-inner {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
  }
  .footer-nav { gap: 0; }
  .footer-c { padding: 0 20px; }
  .footer-legal { padding: 16px 20px 28px; }
}

@media (max-width: 480px) {
  .h-inner { height: 60px; }
  .premium-hero-h1, .unified-hero-h1 { font-size: clamp(28px, 9vw, 40px); }
  .logo-name { font-size: 13px; }
  .pricing-compare { overflow-x: auto; }
  .compare-row { min-width: 420px; }
}

/* === 30. UTILITIES === */
.sec-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.premium-val { color: var(--gold) !important; }

/* cinematic intro video overlay */
#cinematic-intro {
  transition: opacity 0.6s ease;
}
#cinematic-intro.fade-out {
  opacity: 0;
  pointer-events: none;
}

/* ── HERO H1 SIZE FIX ── */
.premium-hero-h1,
.institutional-h1,
.unified-hero-h1 {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem) !important;
  line-height: 1.06 !important;
  letter-spacing: -0.03em !important;
  margin-bottom: 18px !important;
}

/* ── PRICING CARD THEMES ── */

/* Standard — cool steel: barely-there blue tint */
#pricing-cards-grid .card--standard {
  background: linear-gradient(160deg, #07090D 0%, #04060B 100%) !important;
}
.card--standard .card-eyebrow {
  color: rgba(185, 200, 222, 0.42) !important;
}

/* Pro — gold dominant: warm amber depths, inner body reinforced */
.card--pro .card-body {
  background: linear-gradient(165deg, #0E0B07 0%, #080602 60%, #0B0900 100%) !important;
}

/* VIP — deep graphite: barely-there violet/indigo tint */
#pricing-cards-grid .card--vip {
  background: linear-gradient(160deg, #09080D 0%, #06050B 100%) !important;
}
.card--vip .card-eyebrow {
  color: rgba(200, 210, 228, 0.5) !important;
}
.card--vip .card-price {
  color: rgba(205, 218, 238, 0.95) !important;
}
.card--vip::before {
  background: linear-gradient(90deg, transparent, rgba(195, 205, 225, 0.32), transparent) !important;
}

/* ── GLOBAL CARD REFINEMENTS ── */
.card-desc {
  font-size: 13px !important;
  line-height: 1.68 !important;
}
.card-footnote {
  color: rgba(243, 243, 243, 0.18) !important;
}
.card-ribbon {
  background: linear-gradient(135deg, #DDB26A 0%, #C5A059 100%) !important;
}

/* ============================================================
   31. MOBILE READABILITY (<768px)
   Targeted & design-safe: keeps long strings (emails, URLs, long
   Polish words) from overflowing and gives running text a comfier
   rhythm — WITHOUT flattening the type hierarchy, the brand
   letter-spacing, or component line-heights. No `*`, no blanket
   !important, no font-size override on headings.
   ============================================================ */
@media (max-width: 767px) {
  /* Let long unbreakable strings wrap instead of pushing the layout */
  p, li, a, h1, h2, h3, h4, h5, h6,
  blockquote, figcaption, dt, dd, td, th {
    overflow-wrap: break-word;
  }

  /* A touch more breathing room for body copy only — headings keep their tight tracking */
  p, li {
    line-height: 1.7;
  }
}

/* ============================================================
   32. MOBILE HERO REDESIGN (<768px)
   Aggressive mobile-only restyle of #hero: drop the candlestick
   chart for a calm gold gradient, simplify to a single full-width
   CTA, enlarge the trust metrics, and open up vertical rhythm.
   Every rule is scoped under #hero so it wins over the later
   embedded <style> blocks in index.html (id+class > class).
   Desktop (>=768px) is untouched — nothing here runs above 767px.
   ============================================================ */
@media (max-width: 767px) {
  /* Drop the cinematic candlestick chart — too busy on a small screen */
  #hero svg {
    display: none;
  }

  /* Calm gold gradient glow rising behind the text, replacing the chart */
  #hero .hero-center-layout {
    background-image: radial-gradient(
      120% 80% at 50% 100%,
      rgba(197, 160, 89, 0.16) 0%,
      rgba(197, 160, 89, 0.06) 38%,
      transparent 72%
    );
  }

  /* One clear action: hide the secondary "Poznaj naszą historię" link */
  #hero .btn-secondary-hero {
    display: none;
  }

  /* Open up the vertical rhythm between headline → description → CTA */
  #hero .institutional-sub,
  #hero .premium-sub {
    margin-top: 36px;
  }
  #hero .institutional-ctas {
    margin-top: 36px;
    width: 100%;
  }

  /* Full-width primary CTA */
  #hero .btn-primary-hero {
    width: 100%;
    max-width: none;
    padding-left: 24px;
    padding-right: 24px;
  }

  /* Bigger, more legible trust metrics (20px → 22px) */
  #hero .hero-trust-num {
    font-size: 22px;
  }
}
