/* ===================================================
   BAZA Beach — style (kolory + nowe sekcje)
   Ładowany po style.css wyłącznie na beach.html
   =================================================== */

/* ─── Token colors ─────────────────────────────────── */
:root, .theme-dark {
  --c-primary:       #c8950a;
  --c-number:        #f0c929;
  --c-tab-default:   #f5e0a0;
  --c-tabbar-bg:     #5a4200;
  --c-tabbar-border: #7a5a00;
  --c-cta-bg:        #f0c929;
  --c-border:        #7a5a00;
  --c-h-text:        #f5e0a0;
  --c-bold:          #f5d980;
  --c-calendar-day:  #f5e0a0;
  --c-dayname:       #e8c547;
  --c-dayname-2:     #f0c929;
  --c-link:          #c8950a;
  --c-inner-tile:    #5a4200;
  --c-active:        #c8950a;
  --c-left-icon:     #7a5a00;
  --c-toast:         #5a4200;
  --c-toast-text:    #f5e0a0;
  --c-settings-border: #f0c929;
  --c-settings-switch: #7a5a00;
  --c-modal-border:  #7a5a00;
  --c-highlight-active: #f5d980;

  --gold:  #f0c929;
  --gold2: #c8950a;
  --gold3: #7a5a00;
  --dark1: #0e0a00;
  --dark2: #1a1200;
  --dark3: #241900;

  --tone-hero:
    radial-gradient(1200px 800px at -10% -10%, rgba(240,201,41,.09), transparent 60%),
    radial-gradient(900px 700px at 110% 10%,  rgba(212,160,23,.11), transparent 60%),
    var(--c-bg);
}

/* ─── Body ──────────────────────────────────────────── */
body {
  background:
    radial-gradient(1200px 800px at -10% -6%, rgba(240,201,41,.08), transparent 62%),
    radial-gradient(900px 700px at 110% 8%, rgba(212,160,23,.09), transparent 62%),
    linear-gradient(
      180deg,
      #151718 0%,
      #171717 18%,
      #1a1710 34%,
      #171615 50%,
      #161819 68%,
      #18150f 84%,
      #151718 100%
    ),
    var(--c-bg);
  background-attachment: fixed, fixed, scroll, scroll;
}

/* ─── Scroll progress bar ───────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #f0c929, #c8950a, #f0c929);
  background-size: 200%;
  animation: progress-shine 2s linear infinite;
  z-index: 10000;
  transition: width .12s linear;
}
@keyframes progress-shine {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ─── Nav ───────────────────────────────────────────── */
.nav { border-bottom-color: rgba(240,201,41,.15); }
.hero-kicker {
  background: rgba(240,201,41,.06);
  border-color: rgba(240,201,41,.18);
  color: var(--c-dayname-2);
}
.btn-primary {
  background: linear-gradient(180deg, #c8950a, #a07800);
  border-color: #b08800;
  box-shadow: 0 8px 24px rgba(212,160,23,.35);
}
.btn-primary:hover { box-shadow: 0 10px 28px rgba(212,160,23,.45); }
.btn-cta {
  background: linear-gradient(180deg, #f0c929, #c8950a);
  color: #1b1b1b;
  border: 1px solid #a07800;
  box-shadow: 0 4px 14px rgba(240,201,41,.25);
}
#pobierz { color: #1b1b1b; }
#pobierz:hover { color: var(--c-dayname-2); }
.nav-back-link { opacity: .65 !important; }
.nav-back-link:hover { opacity: 1 !important; background: transparent !important; }

/* ─── Section eyebrow ───────────────────────────────── */
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold2);
  background: rgba(240,201,41,.08);
  border: 1px solid rgba(240,201,41,.18);
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 10px;
}

/* ═══════════════════════════════════════════════════════
   HERO BEACH
═══════════════════════════════════════════════════════ */
.hero-beach {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--nav-h, 64px) + 24px) 0 80px;
}

/* Particle canvas */
#particleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Animated blobs */
.hblob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hblob-1 {
  width: 700px; height: 700px;
  top: -20%; left: -15%;
  background: radial-gradient(circle, rgba(240,201,41,.12) 0%, transparent 70%);
  animation: blob-drift 18s ease-in-out infinite alternate;
}
.hblob-2 {
  width: 500px; height: 500px;
  top: 30%; right: -10%;
  background: radial-gradient(circle, rgba(200,149,10,.10) 0%, transparent 70%);
  animation: blob-drift 22s ease-in-out infinite alternate-reverse;
}
.hblob-3 {
  width: 400px; height: 400px;
  bottom: -10%; left: 40%;
  background: radial-gradient(circle, rgba(240,201,41,.07) 0%, transparent 70%);
  animation: blob-drift 15s ease-in-out infinite alternate;
}
@keyframes blob-drift {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(30px,-20px) scale(1.04); }
  66%  { transform: translate(-20px,30px) scale(0.97); }
  100% { transform: translate(15px,-10px) scale(1.02); }
}

/* Hero inner layout */
.hero-beach-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Hero text */
.hero-beach-text { display: flex; flex-direction: column; gap: 20px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold);
  background: rgba(240,201,41,.08);
  border: 1px solid rgba(240,201,41,.2);
  border-radius: 24px;
  padding: 6px 16px;
  width: fit-content;
}
.hero-badge-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(240,201,41,.6);
  animation: badge-pulse 2s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(240,201,41,.6); }
  50%       { box-shadow: 0 0 0 6px rgba(240,201,41,0); }
}

.hero-beach-title {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--c-h-text);
  margin: 0;
}
.title-line { display: block; }
.title-gold {
  background: linear-gradient(135deg, #f0c929 0%, #c8950a 50%, #f5d980 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-beach-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.6;
  color: rgba(245,224,160,.75);
  max-width: 52ch;
  margin: 0;
}

/* Role chips */
.hero-roles { display: flex; flex-wrap: wrap; gap: 8px; }
.role-chip {
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(240,201,41,.08);
  border: 1px solid rgba(240,201,41,.18);
  color: var(--c-h-text);
  transition: all .25s ease;
  cursor: default;
}
.role-chip:hover {
  background: rgba(240,201,41,.16);
  border-color: rgba(240,201,41,.4);
  transform: translateY(-2px);
}

/* Hero CTA */
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* ─── Scroll hint ───────────────────────────────────── */
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(240,201,41,.5);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
  animation: scroll-hint-fade 3s ease-in-out 2s both;
}
@keyframes scroll-hint-fade {
  0%   { opacity: 0; transform: translateX(-50%) translateY(10px); }
  30%  { opacity: 1; transform: translateX(-50%) translateY(0); }
  80%  { opacity: 1; }
  100% { opacity: 0; }
}
.scroll-chevron {
  width: 20px; height: 20px;
  border-right: 2px solid rgba(240,201,41,.5);
  border-bottom: 2px solid rgba(240,201,41,.5);
  transform: rotate(45deg);
  animation: chevron-bounce 1.5s ease-in-out infinite;
}
@keyframes chevron-bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(5px); }
}

/* ─── Phone mockup (hero) ───────────────────────────── */
.hero-phones-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 560px;
}

.phone-hero { position: absolute; }

.phone-hero-main {
  position: relative;
  z-index: 3;
  animation: phone-float 6s ease-in-out infinite;
}
@keyframes phone-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%       { transform: translateY(-16px) rotate(1deg); }
}

.phone-hero-side { z-index: 2; }
.phone-side-left {
  left: 0;
  transform: translateX(-10px) rotate(-14deg) scale(0.78) translateY(30px);
  opacity: 0.55;
}
.phone-side-right {
  right: 0;
  transform: translateX(10px) rotate(14deg) scale(0.78) translateY(30px);
  opacity: 0.55;
}

/* Phone body (CSS frame) */
.phone-body {
  width: 240px;
  background: linear-gradient(170deg, #1f1f1f, #111);
  border-radius: 44px;
  padding: 14px 10px 10px;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.1),
    inset 0 0 0 2px rgba(0,0,0,.9),
    0 0 0 1px rgba(255,255,255,.04),
    0 50px 100px rgba(0,0,0,.7),
    0 20px 40px rgba(0,0,0,.4);
  position: relative;
  overflow: hidden;
}
.phone-body-sm {
  width: 180px;
  border-radius: 36px;
  padding: 10px 8px 8px;
}

.phone-notch {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 26px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
}

.phone-home-bar {
  height: 4px;
  width: 80px;
  background: rgba(255,255,255,.25);
  border-radius: 3px;
  margin: 8px auto 0;
}

.phone-img {
  width: 100%;
  display: block;
  border-radius: 32px;
  margin-top: 12px;
}

.phone-glow-aura {
  position: absolute;
  inset: -20px;
  border-radius: 60px;
  background: radial-gradient(ellipse at 50% 60%, rgba(240,201,41,.18), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* ─── Hero animations (load-based) ─────────────────── */
.anim-hero {
  opacity: 0;
  animation: anim-hero-in .8s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes anim-hero-in {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-d1 { animation-delay: .1s; }
.anim-d2 { animation-delay: .25s; }
.anim-d3 { animation-delay: .4s; }
.anim-d4 { animation-delay: .55s; }
.anim-d5 { animation-delay: .7s; }
.anim-d6 { animation-delay: .85s; }
.anim-d7 { animation-delay: 1.0s; }

/* ═══════════════════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════════════════ */
.stats-bar {
  background: linear-gradient(135deg, rgba(90,66,0,.5), rgba(26,18,0,.6));
  border-top: 1px solid rgba(240,201,41,.12);
  border-bottom: 1px solid rgba(240,201,41,.12);
  padding: 28px 0;
}
.stats-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 32px;
}
.stat-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.stat-num {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  white-space: nowrap;
}
.stat-plus {
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 900;
  color: var(--gold2);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(245,224,160,.6);
  letter-spacing: .3px;
  max-width: 130px;
  line-height: 1.3;
}
.stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(240,201,41,.15);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════
   VIDEO SHOWCASE
═══════════════════════════════════════════════════════ */
.video-showcase {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 6vw, 72px) 0 clamp(42px, 6vw, 72px);
}
.video-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(900px 420px at 50% 10%, rgba(240,201,41,.08), transparent 68%),
    linear-gradient(180deg, rgba(90,66,0,.18), rgba(21,23,24,0) 30%, rgba(21,23,24,.05) 100%);
}
.video-showcase-inner {
  width: min(88vw, 1120px);
  margin: 0 auto;
}
.video-copy {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto clamp(22px, 3vw, 34px);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}
.video-copy h2 {
  margin: 0;
  color: var(--c-h-text);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
}
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  max-height: min(62vh, 630px);
  margin: 0 auto;
  border-radius: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(240,201,41,.18);
  background: rgba(0,0,0,.22);
  box-shadow:
    0 36px 90px rgba(0,0,0,.5),
    0 0 0 1px rgba(255,255,255,.04) inset;
  overflow: hidden;
  isolation: isolate;
}
.video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,.1), transparent 24%, transparent 76%, rgba(0,0,0,.16)),
    radial-gradient(900px 420px at 50% 0%, rgba(240,201,41,.12), transparent 72%);
}
.beach-promo-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  background: #050505;
}
.video-frame-glow {
  position: absolute;
  inset: auto 8% -18% 8%;
  height: 34%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(240,201,41,.22), transparent 68%);
  filter: blur(20px);
}

/* ═══════════════════════════════════════════════════════
   FEATURES GRID (override)
═══════════════════════════════════════════════════════ */
#features {
  padding-top: clamp(42px, 6vw, 72px);
  padding-bottom: clamp(40px, 6vw, 72px);
}
#features > .container {
  width: min(96vw, 1560px);
  max-width: 1560px;
}
#features .section-head {
  width: min(90%, var(--container));
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}
#features::before,
.pain-section::before,
.gallery-section::before {
  content: "";
  position: absolute;
  inset: -1px 0;
  z-index: -1;
  pointer-events: none;
}
#features::before {
  background:
    linear-gradient(180deg, rgba(26,23,16,0), rgba(240,201,41,.035) 38%, rgba(26,23,16,0));
}
.pain-section::before {
  background:
    radial-gradient(900px 420px at 12% 0%, rgba(240,201,41,.045), transparent 68%),
    linear-gradient(180deg, rgba(21,23,24,0), rgba(255,255,255,.018) 48%, rgba(21,23,24,0));
}
.gallery-section::before {
  background: linear-gradient(180deg, rgba(21,23,24,0), rgba(22,19,13,.2) 48%, rgba(21,23,24,0));
}

.features-carousel-shell {
  position: relative;
  width: 100%;
  margin: 30px auto 0;
  padding: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
}
.features-carousel-shell::before,
.features-carousel-shell::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(42px, 7vw, 110px);
  z-index: 2;
  pointer-events: none;
}
.features-carousel-shell::before {
  left: 0;
  background: linear-gradient(90deg, rgba(23,21,16,.96), rgba(23,21,16,0));
}
.features-carousel-shell::after {
  right: 0;
  background: linear-gradient(270deg, rgba(23,21,16,.96), rgba(23,21,16,0));
}
.features-carousel {
  display: flex !important;
  grid-template-columns: none !important;
  gap: clamp(14px, 1.5vw, 22px);
  width: max-content;
  overflow: visible;
  scroll-snap-type: none;
  scrollbar-width: none;
  padding: 10px max(18px, 3vw) 20px;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  animation: features-marquee 20s linear infinite;
}
.features-carousel-shell:hover .features-carousel,
.features-carousel-shell:focus-within .features-carousel {
  animation-play-state: paused;
}
@keyframes features-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
.features-carousel::-webkit-scrollbar { display: none; }
.features-carousel .feat-card {
  flex: 0 0 clamp(260px, 22vw, 350px);
  min-height: 294px;
  scroll-snap-align: start;
}
.feat-card {
  position: relative;
  overflow: visible;
  padding: 18px 18px 16px;
}
.feat-card .icon { width: 46px; height: 46px; margin-bottom: 0; }
.feat-icon-wrap {
  position: relative;
  width: 46px; height: 46px;
  margin-bottom: 12px;
  margin-top: 2px;
}
.feat-icon-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(240,201,41,.2);
  animation: ring-spin 8s linear infinite;
}
.ring-red { border-color: rgba(255,80,80,.25); }
@keyframes ring-spin {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.05); }
  100% { transform: rotate(360deg) scale(1); }
}

.feat-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  background: rgba(240,201,41,.1);
  border: 1px solid rgba(240,201,41,.2);
  color: var(--gold);
  margin-top: 10px;
}
@media (max-width: 720px) {
  #features > .container { width: 100%; }
  .features-carousel-shell {
    mask-image: none;
    -webkit-mask-image: none;
  }
  .features-carousel-shell::before,
  .features-carousel-shell::after { display: none; }
  .features-carousel { padding: 8px 16px 18px; }
  .features-carousel .feat-card {
    flex-basis: min(82vw, 310px);
    min-height: 270px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .features-carousel {
    width: auto;
    overflow-x: auto;
    animation: none;
  }
}
.feat-tag-live {
  background: rgba(255,60,60,.12);
  border-color: rgba(255,60,60,.25);
  color: #ff7070;
}

.feat-card-proel {
  border-color: rgba(255,60,60,.15) !important;
  background: linear-gradient(135deg, rgba(255,40,40,.04), rgba(26,18,0,.6)) !important;
}
.feat-proel-pulse {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,60,60,.15), transparent 70%);
  animation: proel-pulse 2s ease-in-out infinite;
}
@keyframes proel-pulse {
  0%, 100% { transform: scale(1); opacity: .6; }
  50%       { transform: scale(1.15); opacity: 1; }
}

/* Cards base overrides */
.card:hover { border-color: rgba(240,201,41,.28); }
.card .halo {
  background: radial-gradient(600px 120px at var(--mx,50%) var(--my,50%), rgba(240,201,41,.10), transparent 40%);
}

/* ═══════════════════════════════════════════════════════
   GALLERY — Phone strip carousel
═══════════════════════════════════════════════════════ */
.gallery-section { overflow: hidden; }

.phone-strip-outer {
  overflow: hidden;
  position: relative;
  padding: 40px 0 24px;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}
.phone-strip-outer:hover .phone-strip {
  animation-play-state: paused;
}

.phone-strip {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: strip-scroll 28s linear infinite;
}
@keyframes strip-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.strip-phone { flex-shrink: 0; }
.strip-phone-body {
  width: 165px;
  height: 350px;
  background: linear-gradient(170deg, #1f1f1f, #111);
  border-radius: 36px;
  padding: 10px 8px;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.08),
    0 20px 60px rgba(0,0,0,.5),
    0 0 30px rgba(240,201,41,.06);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.strip-phone-body:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.12),
    0 30px 80px rgba(0,0,0,.6),
    0 0 50px rgba(240,201,41,.12);
}
.strip-phone-body img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  display: block;
}

.strip-labels {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 3vw, 40px);
  flex-wrap: wrap;
  padding: 0 16px 8px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(245,224,160,.45);
  letter-spacing: .5px;
}

/* ═══════════════════════════════════════════════════════
   PAIN → SOLUTION (flip cards)
═══════════════════════════════════════════════════════ */
.pain-section { padding: 80px 0; }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.pain-grid-6 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .pain-grid-6 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .pain-grid-6 { grid-template-columns: 1fr; }
}

.pain-card {
  perspective: 1000px;
  cursor: pointer;
  min-height: 280px;
  outline: none;
}
.pain-card:focus-visible .pain-inner {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 22px;
}

.pain-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 280px;
  transition: transform .6s cubic-bezier(.4,2,.55,1);
  transform-style: preserve-3d;
}

.pain-card:hover .pain-inner,
.pain-card.is-flipped .pain-inner {
  transform: rotateY(180deg);
}

.pain-front, .pain-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pain-front {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
}
.pain-front h3 { color: var(--c-h-text); font-size: 18px; margin: 0; }
.pain-front p  { color: rgba(245,224,160,.6); font-size: 14px; line-height: 1.55; margin: 0; flex: 1; }

.pain-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, #3a2800, #241900);
  border: 1px solid rgba(240,201,41,.25);
}
.pain-back h3  { color: var(--gold); font-size: 18px; margin: 0; }
.pain-back p   { color: rgba(245,224,160,.75); font-size: 14px; line-height: 1.55; margin: 0; flex: 1; }

.pain-emoji {
  font-size: 36px;
  line-height: 1;
}
.pain-logo {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  color: #ff6060;
  background: rgba(255,60,60,.1);
  border: 1px solid rgba(255,60,60,.2);
  border-radius: 8px;
  padding: 4px 10px;
  width: fit-content;
}
.pain-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
  background: rgba(240,201,41,.15);
  border: 1px solid rgba(240,201,41,.3);
  color: var(--gold);
  margin-top: auto;
}
.pain-flip-hint {
  font-size: 11px;
  font-weight: 600;
  color: rgba(245,224,160,.3);
  margin-top: auto;
  letter-spacing: .5px;
}

/* ═══════════════════════════════════════════════════════
   PROEL SPOTLIGHT
═══════════════════════════════════════════════════════ */
.proel-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(30,10,0,.8), rgba(10,5,0,.9));
  border-top: 1px solid rgba(255,60,60,.1);
  border-bottom: 1px solid rgba(255,60,60,.1);
  position: relative;
  overflow: hidden;
}
.proel-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,60,60,.06), transparent 60%);
  pointer-events: none;
}

.proel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.proel-visual {
  display: flex;
  justify-content: center;
  position: relative;
}
.proel-phone-wrap {
  position: relative;
  animation: phone-float 7s ease-in-out infinite;
}
.proel-phone-body {
  width: 260px !important;
}
.proel-glow-ring {
  position: absolute;
  inset: -30px;
  border-radius: 60px;
  border: 1px solid rgba(255,60,60,.2);
  animation: proel-ring 3s ease-in-out infinite;
}
@keyframes proel-ring {
  0%, 100% { transform: scale(1); opacity: .5; box-shadow: 0 0 0 0 rgba(255,60,60,.15); }
  50%       { transform: scale(1.03); opacity: 1; box-shadow: 0 0 40px rgba(255,60,60,.12); }
}
.proel-badge-float {
  position: absolute;
  top: -14px; right: -20px;
  background: linear-gradient(135deg, #c00, #800);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(200,0,0,.4);
  animation: badge-pulse-red 2s ease-in-out infinite;
}
@keyframes badge-pulse-red {
  0%, 100% { box-shadow: 0 4px 16px rgba(200,0,0,.4); }
  50%       { box-shadow: 0 4px 30px rgba(200,0,0,.7); }
}
.proel-placeholder-note {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  color: rgba(255,255,255,.15);
  white-space: nowrap;
}

/* ProEl PL badge */
.proel-pl-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #c00, #800);
  border-radius: 20px;
  padding: 5px 14px;
  width: fit-content;
  box-shadow: 0 4px 16px rgba(200,0,0,.35);
}

/* ProEl CTA pulsing */
.proel-cta-wrap {
  margin-top: 8px;
  display: flex;
  justify-content: center;
}
.proel-cta-btn {
  animation: cta-pulse 2.2s ease-in-out infinite;
}
@keyframes cta-pulse {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(212,160,23,.35), 0 0 0 0 rgba(240,201,41,.4);
  }
  50% {
    box-shadow: 0 10px 32px rgba(212,160,23,.5), 0 0 0 10px rgba(240,201,41,0);
  }
}

.proel-text { display: flex; flex-direction: column; gap: 16px; }
.proel-text h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: var(--c-h-text);
  line-height: 1.15;
  margin: 0;
}
.proel-desc {
  color: rgba(245,224,160,.7);
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}
.proel-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.proel-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(245,224,160,.8);
}
.pf-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(0,200,80,.15);
  border: 1px solid rgba(0,200,80,.3);
  color: #4dff8c;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════
   ROADMAP
═══════════════════════════════════════════════════════ */
.roadmap-section { padding: 80px 0; }

.roadmap-track {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.roadmap-spine {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(240,201,41,.5), rgba(240,201,41,.05));
}

.rm-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 48px;
}
.rm-left  { flex-direction: row; padding-right: calc(50% + 32px); }
.rm-right { flex-direction: row-reverse; padding-left: calc(50% + 32px); }

.rm-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 2;
  box-shadow: 0 0 0 4px var(--c-bg, #0e0a00);
}
.rm-dot-done    { background: linear-gradient(135deg, #1e6e34, #0d4a1e); border: 1px solid #3ddc67; }
.rm-dot-soon    { background: linear-gradient(135deg, #1e3a6e, #0d2a4e); border: 1px solid #4d88ff; }
.rm-dot-planned { background: linear-gradient(135deg, #5a4200, #3a2800); border: 1px solid #c8950a; }
.rm-dot-dream   { background: linear-gradient(135deg, #3a1a5a, #1a0a3a); border: 1px solid #c080ff; }

.rm-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(240,201,41,.12);
  border-radius: 16px;
  padding: 20px;
  flex: 1;
  transition: transform .3s ease, border-color .3s ease;
}
.rm-card:hover {
  transform: translateY(-3px);
  border-color: rgba(240,201,41,.25);
}
.rm-card h3 { color: var(--c-h-text); font-size: 17px; margin: 6px 0 8px; }
.rm-card p  { color: rgba(245,224,160,.6); font-size: 14px; line-height: 1.55; margin: 0; }

.rm-card-dream {
  background: linear-gradient(135deg, rgba(80,20,120,.15), rgba(20,5,40,.2));
  border-color: rgba(200,120,255,.2);
}
.rm-card-dream h3 { color: #e0b0ff; }

.rm-status {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.rm-done    { color: #4dff8c; }
.rm-soon    { color: #4d88ff; }
.rm-planned { color: var(--gold); }
.rm-dream   { color: #c080ff; }

/* ═══════════════════════════════════════════════════════
   DOWNLOAD — atrakcyjny
═══════════════════════════════════════════════════════ */
.download-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.download-section::before {
  content: '';
  position: absolute;
  bottom: -100px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(240,201,41,.06), transparent 70%);
  pointer-events: none;
}

/* Store buttons */
.store-buttons-wrap {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 44px;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 28px;
  border-radius: 18px;
  text-decoration: none;
  background: linear-gradient(135deg, rgba(26,18,0,.8), rgba(40,28,0,.9));
  border: 1px solid rgba(240,201,41,.25);
  transition: all .35s cubic-bezier(.2,.8,.2,1);
  position: relative;
  overflow: hidden;
  min-width: 220px;
}
.store-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(240,201,41,.04), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.store-btn:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(240,201,41,.55);
  box-shadow: 0 16px 48px rgba(0,0,0,.4), 0 0 40px rgba(240,201,41,.12);
}
.store-btn:hover::before { opacity: 1; }

.store-btn-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.store-icon-android {
  background: linear-gradient(135deg, #1e4a20, #0a2e0c);
  border: 1px solid rgba(100,200,100,.2);
}
.store-icon-ios {
  background: linear-gradient(135deg, #1a2a4a, #0a1832);
  border: 1px solid rgba(100,150,255,.2);
}
.store-os-img {
  width: 34px; height: 34px;
  object-fit: contain;
}
.store-btn-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.store-btn-sub {
  font-size: 11px;
  font-weight: 600;
  color: rgba(245,224,160,.45);
  letter-spacing: .5px;
}
.store-btn-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
}
.store-btn-arrow {
  font-size: 18px;
  color: rgba(240,201,41,.4);
  transition: transform .3s ease, color .3s;
}
.store-btn:hover .store-btn-arrow {
  transform: translateX(4px);
  color: var(--gold);
}

/* Download phones preview (dekoracja) */
.download-phones-preview {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 16px;
  margin-top: 52px;
}
.dl-phone-mini {
  transform: rotate(-5deg) translateY(10px);
  opacity: 0.55;
  transition: all .4s ease;
}
.dl-phone-mini:hover {
  transform: rotate(-2deg) translateY(0px);
  opacity: 0.85;
}
.dl-phone-center {
  transform: rotate(0deg) translateY(0px) scale(1.08);
  opacity: 0.8;
  z-index: 2;
}
.dl-phone-center:hover {
  transform: rotate(0deg) translateY(-8px) scale(1.12);
  opacity: 1;
}
.dl-phone-mini:last-child {
  transform: rotate(5deg) translateY(10px);
}

/* ─── Patronite wyśrodkowany ────────────────────────── */
.support-text-col {
  display: flex;
  flex-direction: column;
}
.support-patronite-center {
  display: flex;
  justify-content: center;
  width: min(100%, 60ch);
  margin-top: 16px;
}

/* ─── Fixed download button ─────────────────────────── */
.download-btn {
  background: linear-gradient(180deg, #8a6200, #5a4000);
  border-color: #a07200;
}

/* ─── Old modal overrides (kept for fallback) ──────── */
.modal h3 { color: #7a5a00; }
.modal-close { color: #7a5a00; }
#terms-content h3, #privacy-content h3 { color: #7a5a00; }

/* ═══════════════════════════════════════════════════════
   LEGAL SECTION V2 — dramatic cards
═══════════════════════════════════════════════════════ */
.legal-section-v2 { padding: 80px 0; }

.lcn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 700px) { .lcn-grid { grid-template-columns: 1fr; } }

.lcn-card {
  position: relative;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(230,204,178,.12);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.lcn-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
  border-color: rgba(230,204,178,.28);
}

.lcn-accent-bar {
  height: 4px;
  background: linear-gradient(90deg, #f0c929, #e8a000, #f0c929);
  background-size: 200% 100%;
  animation: shimmer-bar 3s linear infinite;
}
.lcn-accent-shield {
  background: linear-gradient(90deg, #3ecf8e, #22a876, #3ecf8e);
  background-size: 200% 100%;
}
@keyframes shimmer-bar {
  0%   { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

.lcn-body {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 28px 28px 28px;
}
@media (max-width: 500px) { .lcn-body { flex-direction: column; gap: 16px; } }

.lcn-icon-wrap {
  position: relative;
  flex-shrink: 0;
  width: 72px; height: 72px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(240,201,41,.15), rgba(240,201,41,.04));
  border: 1px solid rgba(240,201,41,.2);
  display: flex; align-items: center; justify-content: center;
}
.lcn-icon-wrap img { width: 44px; height: 44px; object-fit: contain; }
.lcn-icon-glow {
  position: absolute; inset: -8px;
  border-radius: 26px;
  background: radial-gradient(circle, rgba(240,201,41,.18) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
}
.lcn-card:hover .lcn-icon-glow { opacity: 1; }

.lcn-icon-shield {
  background: linear-gradient(145deg, rgba(62,207,142,.15), rgba(62,207,142,.04));
  border-color: rgba(62,207,142,.2);
}
.lcn-glow-shield {
  background: radial-gradient(circle, rgba(62,207,142,.18) 0%, transparent 70%);
}

.lcn-content { flex: 1; min-width: 0; }

.lcn-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.lcn-tag {
  font-size: 11px; font-weight: 800; letter-spacing: .6px;
  padding: 3px 10px; border-radius: 20px;
  background: rgba(240,201,41,.15);
  color: #f0c929;
  border: 1px solid rgba(240,201,41,.25);
}
.lcn-tag-shield {
  background: rgba(62,207,142,.12);
  color: #3ecf8e;
  border-color: rgba(62,207,142,.25);
}
.lcn-chip {
  font-size: 11px; font-weight: 600;
  padding: 2px 8px; border-radius: 20px;
  background: rgba(255,255,255,.06);
  color: rgba(230,204,178,.6);
  border: 1px solid rgba(230,204,178,.1);
}

.lcn-title {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 800;
  color: #f0e6c8;
  margin: 0 0 8px;
  line-height: 1.2;
}
.lcn-desc {
  font-size: 14px;
  color: rgba(230,204,178,.7);
  line-height: 1.6;
  margin: 0 0 18px;
}

.lcn-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 13px; font-weight: 700;
  background: linear-gradient(135deg, rgba(240,201,41,.18), rgba(240,201,41,.08));
  color: #f0c929;
  border: 1px solid rgba(240,201,41,.3);
  text-decoration: none;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.lcn-btn:hover {
  background: linear-gradient(135deg, rgba(240,201,41,.3), rgba(240,201,41,.14));
  transform: translateX(3px);
  box-shadow: 0 4px 16px rgba(240,201,41,.15);
}
.lcn-btn-arrow { transition: transform .2s ease; }
.lcn-btn:hover .lcn-btn-arrow { transform: translateX(4px); }

.lcn-btn-shield {
  background: linear-gradient(135deg, rgba(62,207,142,.15), rgba(62,207,142,.06));
  color: #3ecf8e;
  border-color: rgba(62,207,142,.28);
}
.lcn-btn-shield:hover {
  background: linear-gradient(135deg, rgba(62,207,142,.28), rgba(62,207,142,.12));
  box-shadow: 0 4px 16px rgba(62,207,142,.15);
}

/* ═══════════════════════════════════════════════════════
   MODAL V2 — dark premium document viewer
═══════════════════════════════════════════════════════ */
.modal .modal-panel-v2 {
  padding: 0;
  overflow: hidden;
  background: #16130f;
  border-radius: 20px;
  width: min(780px, 92vw);
  max-height: 88vh;
  transform: translateY(16px) scale(.97);
  opacity: 0;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), opacity .3s ease;
  border: 1px solid rgba(230,204,178,.12);
  box-shadow: 0 32px 80px rgba(0,0,0,.7), 0 0 0 1px rgba(240,201,41,.06);
}
.modal.active .modal-panel-v2 {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.modal-panel-v2 {
  width: min(780px, 92vw);
  max-height: 88vh;
  background: #16130f;
  border: 1px solid rgba(230,204,178,.12);
  border-radius: 20px;
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 32px 80px rgba(0,0,0,.7), 0 0 0 1px rgba(240,201,41,.06);
  transform: translateY(16px) scale(.97);
  opacity: 0;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), opacity .3s ease;
}
.modal.active .modal-panel-v2 {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Header */
.mpv2-header {
  position: relative;
  flex-shrink: 0;
  padding: 0;
  overflow: hidden;
}
.mpv2-header-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(240,201,41,.22) 0%, rgba(180,120,0,.12) 50%, transparent 100%);
  pointer-events: none;
}
.mpv2-header-shield .mpv2-header-bg {
  background: linear-gradient(135deg, rgba(62,207,142,.2) 0%, rgba(22,140,90,.1) 50%, transparent 100%);
}
.mpv2-header-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 56px 22px 24px;
  border-bottom: 1px solid rgba(240,201,41,.15);
}
.mpv2-header-shield .mpv2-header-inner {
  border-bottom-color: rgba(62,207,142,.15);
}

.mpv2-icon-wrap {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(240,201,41,.12);
  border: 1px solid rgba(240,201,41,.25);
  display: flex; align-items: center; justify-content: center;
}
.mpv2-icon-wrap img { width: 32px; height: 32px; object-fit: contain; }
.mpv2-icon-shield {
  background: rgba(62,207,142,.1);
  border-color: rgba(62,207,142,.25);
}

.mpv2-header-text { flex: 1; min-width: 0; }
.mpv2-eyebrow {
  display: block;
  font-size: 11px; font-weight: 600; letter-spacing: .8px;
  color: rgba(240,201,41,.7);
  text-transform: uppercase;
  margin-bottom: 3px;
}
.mpv2-header-shield .mpv2-eyebrow { color: rgba(62,207,142,.7); }
.mpv2-title {
  font-size: clamp(16px, 2.4vw, 20px);
  font-weight: 800;
  color: #f0e6c8;
  margin: 0; line-height: 1.2;
}

.mpv2-chips {
  display: flex; gap: 6px; flex-wrap: wrap;
  flex-shrink: 0;
}
@media (max-width: 520px) { .mpv2-chips { display: none; } }
.mpv2-chip {
  font-size: 10px; font-weight: 700;
  padding: 3px 9px; border-radius: 20px;
  background: rgba(240,201,41,.1);
  color: rgba(240,201,41,.8);
  border: 1px solid rgba(240,201,41,.2);
}
.mpv2-chip-shield {
  background: rgba(62,207,142,.1);
  color: rgba(62,207,142,.8);
  border-color: rgba(62,207,142,.2);
}

.mpv2-close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(230,204,178,.2);
  background: rgba(255,255,255,.06);
  color: rgba(230,204,178,.7);
  font-size: 14px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.mpv2-close:hover {
  background: rgba(230,204,178,.12);
  color: #f0e6c8;
  transform: rotate(90deg);
}

/* Body / scrollable content */
.mpv2-body {
  flex: 1; overflow-y: auto;
  padding: 28px 28px 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(240,201,41,.2) transparent;
}
.mpv2-body::-webkit-scrollbar { width: 4px; }
.mpv2-body::-webkit-scrollbar-thumb { background: rgba(240,201,41,.25); border-radius: 4px; }

/* Sections */
.mpv2-section {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(230,204,178,.07);
}
.mpv2-section:last-of-type { border-bottom: none; }

.mpv2-section-num {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(240,201,41,.22), rgba(240,201,41,.08));
  border: 1px solid rgba(240,201,41,.3);
  color: #f0c929;
  font-size: 13px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.mpv2-num-shield {
  background: linear-gradient(135deg, rgba(62,207,142,.2), rgba(62,207,142,.06));
  border-color: rgba(62,207,142,.3);
  color: #3ecf8e;
}

.mpv2-section-content { flex: 1; min-width: 0; }
.mpv2-section-title {
  font-size: 15px; font-weight: 800;
  color: #f0e6c8;
  margin: 0 0 10px;
  letter-spacing: .2px;
}
.mpv2-section-content p,
.mpv2-section-content li {
  font-size: 14px;
  color: rgba(230,204,178,.72);
  line-height: 1.7;
  margin: 0 0 8px;
}
.mpv2-section-content p:last-child { margin-bottom: 0; }
.mpv2-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.mpv2-list li {
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(230,204,178,.08);
}
.mpv2-list li strong { color: #f0e6c8; }

.mpv2-link {
  color: #f0c929;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.mpv2-link-shield { color: #3ecf8e; }

/* Footer */
.mpv2-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 0 20px;
  font-size: 12px;
  color: rgba(230,204,178,.3);
  font-weight: 600;
  letter-spacing: .3px;
  border-top: 1px solid rgba(230,204,178,.07);
  margin-top: 4px;
}

@media (max-width: 520px) {
  .mpv2-header-inner { padding: 16px 48px 16px 16px; gap: 12px; }
  .mpv2-body { padding: 20px 16px 0; }
  .mpv2-section { gap: 12px; }
  .modal-panel-v2 { border-radius: 14px; }
}

/* ═══════════════════════════════════════════════════════
   ANIMATIONS — reveal variants
═══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s cubic-bezier(.2,.8,.2,1), transform .65s cubic-bezier(.2,.8,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }

/* ─── Card hover/tilt ───────────────────────────────── */
.card { transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-beach-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-beach-text { align-items: center; }
  .hero-beach-sub { max-width: 100%; }
  .hero-phones-wrap {
    height: 370px;
    order: -1;
  }
  .phone-body { width: 200px !important; }
  .phone-body-sm { width: 148px !important; border-radius: 30px; }
  .phone-side-left,
  .phone-side-right {
    display: block;
    z-index: 1;
    opacity: .72;
    filter: saturate(1.05) brightness(.96);
  }
  .phone-side-left {
    left: 50%;
    right: auto;
    transform: translateX(-208px) rotate(-14deg) scale(.86) translateY(56px);
  }
  .phone-side-right {
    left: 50%;
    right: auto;
    transform: translateX(58px) rotate(14deg) scale(.86) translateY(56px);
  }
  .phone-hero-main { animation: phone-float-mobile 6s ease-in-out infinite; }
  @keyframes phone-float-mobile {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
  }

  .proel-grid { grid-template-columns: 1fr; gap: 40px; }
  .proel-visual { order: -1; }

  .rm-left, .rm-right {
    flex-direction: column;
    padding-left: 64px;
    padding-right: 0;
  }
  .rm-dot { left: 20px; transform: none; }
  .roadmap-spine { left: 40px; }

  .stats-inner { flex-wrap: wrap; justify-content: center; gap: 16px 24px; }
  .stat-sep { display: none; }
  .stat-item { gap: 8px; }
}

@media (max-width: 600px) {
  .hero-beach-title { font-size: clamp(32px, 10vw, 52px); }
  .phone-strip-outer { mask-image: none; -webkit-mask-image: none; }
  .hero-roles { justify-content: center; }
  .hero-cta { justify-content: center; }
  .strip-phone-body { width: 140px; height: 296px; border-radius: 28px; }
  .download-phones-preview { display: none; }
  .store-btn { min-width: unset; width: 100%; max-width: 340px; }
  .store-buttons-wrap { flex-direction: column; align-items: center; }
  .video-showcase {
    padding: 44px 0 56px;
  }
  .video-showcase-inner {
    width: min(92vw, 640px);
  }
  .video-copy {
    width: 90%;
    display: block;
    margin-bottom: 20px;
  }
  .video-copy h2 {
    margin-top: 8px;
    font-size: clamp(28px, 9vw, 42px);
  }
  .video-frame {
    width: 100%;
    border-radius: 18px;
  }
  .beach-promo-video {
    height: 100%;
  }
  .stats-bar {
    overflow: hidden;
    padding: 26px 0;
  }
  .stats-bar .container {
    width: 100%;
    max-width: none;
    overflow-x: auto;
    scrollbar-width: none;
    mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  }
  .stats-bar .container::-webkit-scrollbar { display: none; }
  .stats-inner {
    width: max-content;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 26px;
    padding: 0 12vw;
    animation: stats-mobile-pan 4.8s cubic-bezier(.45, 0, .55, 1) infinite alternate;
    will-change: transform;
  }
  .stats-bar:hover .stats-inner,
  .stats-bar:focus-within .stats-inner,
  .stats-bar.is-user-scrolling .stats-inner {
    animation-play-state: paused;
  }
  .stat-item {
    flex: 0 0 auto;
    min-width: 190px;
    justify-content: center;
  }
  @keyframes stats-mobile-pan {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(calc(-100% + 100vw), 0, 0); }
  }
}
