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

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--orange); color: #fff;
  padding: 8px 16px; text-decoration: none; font-weight: 700;
  z-index: 9999; border-radius: 0 0 8px 8px; transition: top 0.1s;
}
.skip-link:focus { top: 0; }

/* ===== ACCESSIBILITY ===== */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}
*:focus-visible { outline: 2px solid #E8571B; outline-offset: 2px; }

:root {
  --bg: #08080e;
  --bg2: #0f0f18;
  --card: #111119;
  --card2: #17171f;
  --border: rgba(255,255,255,0.07);
  --border-orange: rgba(232,87,27,0.3);
  --orange: #E8571B;
  --orange-dark: #c94a17;
  --orange-dim: rgba(232,87,27,0.12);
  --orange-glow: rgba(232,87,27,0.2);
  --text: #f0f0f8;
  --text2: #9898b8;
  --text3: #505070;
  --green: #22c55e;
  --green-dim: rgba(34,197,94,0.1);
  --radius: 16px;
}

html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 24px;
  background: rgba(8,8,14,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo { display:flex; align-items:center; gap:10px; text-decoration:none; }
.nav-logo svg { flex-shrink:0; }
.nav-logo .logo-text { display:flex; flex-direction:column; }
.nav-logo .logo-main { font-family:Inter,system-ui,sans-serif; font-size:14px; font-weight:700; letter-spacing:3px; color:var(--text); line-height:1.15; }
.nav-logo .logo-sub { font-family:Inter,system-ui,sans-serif; font-size:7px; font-weight:400; letter-spacing:3px; color:var(--text3); line-height:1.15; }
.nav-links {
  display: flex; align-items: center; gap: 28px; list-style: none;
}
.nav-links a {
  color: var(--text2); text-decoration: none; font-size: 14px;
  font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active { border-bottom: 2px solid var(--orange); padding-bottom: 2px; }
.nav-cta {
  background: var(--orange); color: #fff;
  border: none; border-radius: 8px;
  padding: 10px 20px; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all 0.2s; text-decoration: none;
}
.nav-cta:hover { background: var(--orange-dark); transform: translateY(-1px); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 14px 10px;
}
.hamburger span { width: 24px; height: 2px; background: var(--text); transition: all 0.3s; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; padding: 100px 24px 60px; overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0; pointer-events: none;
  opacity: 0.45;
  filter: grayscale(0.3) contrast(1.05);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7,7,16,0.92) 0%, rgba(7,7,16,0.65) 55%, rgba(7,7,16,0.45) 100%),
    radial-gradient(ellipse at center, transparent 0%, rgba(7,7,16,0.55) 100%);
}
.hero::before {
  content: ''; position: absolute; top: -20%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
  border-radius: 50%; animation: pulse 6s ease-in-out infinite;
  z-index: 1;
}
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}
@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
}
.hero-inner {
  max-width: 1100px; margin: 0 auto; width: 100%;
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-left { display: flex; flex-direction: column; }

/* ===== PHONE MOCKUP (hero) ===== */
.hero-right { display: flex; justify-content: center; }
.phone-mockup {
  background: #0c0c16;
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: 44px;
  width: 100%; max-width: 320px;
  min-height: 680px;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(232,87,27,0.08), 0 24px 60px rgba(0,0,0,0.5);
  display: flex; flex-direction: column;
}
.phone-notch {
  width: 100px; height: 24px;
  background: var(--bg);
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
}
.phone-header {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}
.phone-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: #000;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; overflow: hidden;
}
.phone-avatar img {
  width: 70%; height: 70%; object-fit: contain; display: block;
}
.phone-name { font-size: 13px; font-weight: 700; color: var(--text); }
.phone-live {
  font-size: 11px; color: var(--green);
  display: flex; align-items: center; gap: 5px; margin-top: 2px;
}
.phone-live-dot {
  width: 6px; height: 6px; background: var(--green);
  border-radius: 50%; animation: blink 2s infinite;
}
.phone-chat {
  padding: 24px 20px 12px;
  display: flex; flex-direction: column; gap: 14px;
  flex: 1;
}
.phone-home-indicator {
  width: 120px; height: 4px;
  background: rgba(255,255,255,0.18);
  border-radius: 2px;
  margin: 12px auto 18px;
}
.chat-bubble {
  padding: 12px 16px;
  font-size: 13px; line-height: 1.5;
  opacity: 0; transform: translateY(10px);
  animation: chatIn 0.5s ease forwards;
}
.chat-bubble.bot {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text2);
  align-self: flex-start;
  max-width: 88%;
  border-radius: 18px 18px 18px 4px;
}
.chat-bubble.user {
  background: var(--orange);
  color: #fff;
  align-self: flex-end;
  max-width: 80%;
  border-radius: 18px 18px 4px 18px;
}
.cb-1 { animation-delay: 0.8s; }
.cb-2 { animation-delay: 2.8s; }
.cb-3 { animation-delay: 4.5s; }
.cb-4 { animation-delay: 6.2s; }
.cb-5 { animation-delay: 6.5s; }
.cb-6 { animation-delay: 7.2s; }
@keyframes chatIn {
  to { opacity: 1; transform: translateY(0); }
}
.phone-confirms {
  display: flex; gap: 8px;
  padding: 8px 20px 16px;
}
.phone-confirm {
  flex: 1;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 10px;
  padding: 10px 8px;
  font-size: 11px; font-weight: 600;
  color: var(--green);
  text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 5px;
  opacity: 0; transform: translateY(10px);
  animation: chatIn 0.5s ease forwards;
}
.phone-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: calc(100% - 40px);
  margin: 0 20px 20px;
  background: var(--orange); color: #fff;
  border: none; border-radius: 12px;
  padding: 14px; font-size: 14px; font-weight: 700;
  cursor: pointer; transition: all 0.2s;
  font-family: inherit;
  opacity: 0; transform: translateY(10px);
  animation: chatIn 0.5s ease forwards;
}
.phone-cta:hover { background: var(--orange-dark); transform: translateY(-1px); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
  background: var(--orange-dim); border: 1px solid var(--border-orange);
  padding: 6px 16px; border-radius: 50px;
  font-size: 13px; color: var(--orange); font-weight: 600;
  margin-bottom: 24px; animation: fadeUp 0.8s ease;
}
.hero-badge::before {
  content: ''; width: 8px; height: 8px;
  background: var(--green); border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0.3; } }
.hero h1 {
  font-size: clamp(32px, 6vw, 56px); font-weight: 900;
  line-height: 1.1; letter-spacing: -2px; margin-bottom: 20px;
  animation: fadeUp 0.8s ease 0.1s both;
}
.hero h1 .highlight { color: var(--orange); }
.hero-sub {
  font-size: 20px; color: var(--text2); max-width: 580px;
  line-height: 1.6; margin-bottom: 36px;
  animation: fadeUp 0.8s ease 0.2s both;
}
.hero-bullets {
  list-style: none; padding: 0; margin: 0 0 36px;
  max-width: 580px;
  display: flex; flex-direction: column; gap: 10px;
  animation: fadeUp 0.8s ease 0.2s both;
}
.hero-bullets li {
  font-size: 17px; line-height: 1.55; color: var(--text);
  padding-left: 20px; position: relative;
}
.hero-bullets li::before {
  content: '-'; position: absolute; left: 0; top: 0;
  color: var(--orange); font-weight: 700;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: #fff;
  padding: 16px 32px; border-radius: 12px;
  text-decoration: none; font-weight: 700; font-size: 16px;
  transition: all 0.2s; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 30px var(--orange-glow); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--orange);
  border: 1.5px solid var(--border-orange);
  padding: 16px 32px; border-radius: 12px;
  text-decoration: none; font-weight: 700; font-size: 16px;
  transition: all 0.2s; cursor: pointer;
}
.btn-secondary:hover { border-color: var(--orange); background: rgba(232,87,27,0.06); transform: translateY(-2px); }
.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  width: 100%; max-width: 580px;
  animation: fadeUp 0.8s ease 0.3s both;
}
.hero-ctas { justify-content: center; }
.hero-ctas .btn-primary { justify-content: center; }

/* ===== STATS ===== */
.stats-bar {
  background: var(--bg2); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 32px 24px;
}
.stats-inner {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; text-align: center;
}
.stat-num { font-size: 32px; font-weight: 900; color: var(--orange); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 13px; color: var(--text2); }

/* ===== SECTIONS ===== */
.section-wrap { max-width: 1100px; margin: 0 auto; padding: 80px 24px; }
.section-label {
  font-size: 12px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--orange); margin-bottom: 14px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px); font-weight: 800;
  letter-spacing: -1px; line-height: 1.15; margin-bottom: 16px;
}
.section-sub { font-size: 18px; color: var(--text2); max-width: 580px; line-height: 1.6; }

/* ===== OFFERINGS ===== */
.offerings-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-top: 48px;
}
.offering-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px 36px;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.offering-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--orange); opacity: 0; transition: opacity 0.3s;
}
.offering-card:hover { border-color: var(--border-orange); transform: translateY(-4px); }
.offering-card:hover::before { opacity: 1; }
.offering-icon { font-size: 40px; margin-bottom: 20px; display: block; }
.offering-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--orange); margin-bottom: 8px;
}
.offering-card h3 { font-size: 24px; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.5px; }
.offering-card p { font-size: 15px; color: var(--text2); line-height: 1.6; margin-bottom: 20px; }
.offering-features {
  list-style: none; margin-bottom: 24px;
}
.offering-features li {
  font-size: 14px; color: var(--text2); padding: 5px 0;
  display: flex; align-items: center; gap: 8px;
}
.offering-features li::before { content: '\2713'; color: var(--green); font-weight: 700; }
.offering-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 700; color: var(--orange);
  text-decoration: none; padding: 12px 24px;
  border: 1.5px solid var(--border-orange); border-radius: 10px;
  transition: all 0.2s; align-self: flex-start;
}
.offering-link:hover { background: rgba(232,87,27,0.06); border-color: var(--orange); transform: translateY(-2px); }

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 40px;
}
.step-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 28px;
  text-align: center; transition: border-color 0.2s;
}
.step-card:hover { border-color: var(--border-orange); }
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--orange-dim); border: 1px solid var(--border-orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800; color: var(--orange);
  margin: 0 auto 16px;
}
.step-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--text2); line-height: 1.5; }

/* ===== VSL PLACEHOLDER ===== */
.vsl-section { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.vsl-container {
  max-width: 720px; margin: 0 auto;
  aspect-ratio: 16/9; border-radius: var(--radius);
  background: var(--card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px; cursor: pointer;
  transition: border-color 0.3s;
}
.vsl-container:hover { border-color: var(--border-orange); }
.vsl-play {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--orange); display: flex; align-items: center;
  justify-content: center; font-size: 24px; color: #fff;
  box-shadow: 0 0 40px var(--orange-glow);
}
.vsl-label { font-size: 14px; color: var(--text2); }

/* ===== CTA ===== */
.cta-section { background: var(--bg2); border-top: 1px solid var(--border); }
.cta-box {
  max-width: 720px; margin: 0 auto; text-align: center; padding: 80px 24px;
}
.cta-box .section-title { font-size: clamp(28px, 4vw, 44px); }
.cta-box .section-sub { margin: 16px auto 40px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25d366; color: #fff; border-radius: 12px;
  padding: 16px 28px; text-decoration: none; font-weight: 700;
  font-size: 16px; transition: all 0.2s;
}
.btn-wa:hover { background: #1fb855; transform: translateY(-2px); }

/* ===== TRUST ===== */
.trust-strip {
  background: var(--green-dim); border-top: 1px solid rgba(34,197,94,0.2);
  border-bottom: 1px solid rgba(34,197,94,0.2);
  padding: 18px 24px;
}
.trust-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--green);
}

/* ===== FOOTER ===== */
footer {
  background: var(--bg); border-top: 1px solid var(--border);
  padding: 40px 24px;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
}
.footer-logo { display:flex; align-items:center; gap:8px; }
.footer-logo .logo-text { display:flex; flex-direction:column; }
.footer-logo .logo-main { font-family:Inter,system-ui,sans-serif; font-size:12px; font-weight:700; letter-spacing:3px; color:var(--text); line-height:1.15; }
.footer-logo .logo-sub { font-family:Inter,system-ui,sans-serif; font-size:6px; font-weight:400; letter-spacing:3px; color:var(--text3); line-height:1.15; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: #8c8cb4; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--text2); }
.footer-legal { font-size: 12px; color: var(--text3); }

/* ===== ARROW HOVER ===== */
.arrow { display: inline-block; transition: transform 0.2s ease; }
a:hover .arrow, button:hover .arrow { transform: translateX(4px); }

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes pulse-cta {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,87,27,0.5); }
  50% { box-shadow: 0 0 0 12px rgba(232,87,27,0); }
}
.btn-pulse { animation: pulse-cta 2.4s ease-in-out infinite; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(8,8,14,0.98); padding: 24px;
    gap: 20px; border-bottom: 1px solid var(--border);
  }
  .hero { padding: 90px 16px 50px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 0; }
  .hero-right { display: none; }
  .hero h1 { letter-spacing: -1px; }
  .hero-sub { font-size: 16px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .offerings-grid { grid-template-columns: 1fr; }
  .offering-card { padding: 28px 24px; }
  .steps-grid { grid-template-columns: 1fr; }
  .section-wrap { padding: 60px 16px; }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-buttons .btn-primary, .cta-buttons .btn-wa { justify-content: center; }
  .footer-inner { flex-direction: column; text-align: center; gap: 16px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .trust-inner { gap: 12px; }
  .trust-item { font-size: 12px; }
}

@media (max-width: 480px) {
  .hero h1 br { display: none; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-num { font-size: 26px; }
}

/* ===== ZOSIA SECTION ===== */
.zosia-section { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.zosia-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center; margin-top: 40px;
}
.zosia-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px;
}
.zosia-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 16px;
}
.zosia-name { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.zosia-role { font-size: 14px; color: var(--text2); margin-bottom: 20px; }
.zosia-features { list-style: none; }
.zosia-features li {
  font-size: 14px; color: var(--text2); padding: 6px 0;
  display: flex; align-items: center; gap: 10px;
}
.zosia-features li::before { content: '\2713'; color: var(--green); font-weight: 700; font-size: 13px; }
.zosia-right {
  display: flex; flex-direction: column; gap: 20px;
}
.zosia-stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.zosia-stat {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px 16px; text-align: center;
}
.zosia-stat-val { font-size: 24px; font-weight: 900; color: var(--orange); margin-bottom: 4px; }
.zosia-stat-label { font-size: 12px; color: var(--text2); }
.zosia-cta-box {
  background: var(--card); border: 1px solid var(--border-orange);
  border-radius: var(--radius); padding: 32px; text-align: center;
}
.zosia-cta-box h3 { font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.zosia-cta-box p { font-size: 14px; color: var(--text2); margin-bottom: 20px; }
.zosia-pulse {
  display: inline-block; width: 10px; height: 10px;
  background: var(--green); border-radius: 50%;
  animation: blink 2s infinite; margin-right: 6px;
}

/* ===== ABOUT SECTION ===== */
.about-section { background: var(--bg); }
.about-grid {
  display: grid; grid-template-columns: 300px 1fr;
  gap: 48px; align-items: start; margin-top: 40px;
}
.about-photo-wrap {
  position: relative;
}
.about-photo {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  border-radius: var(--radius); border: 1px solid var(--border);
  filter: brightness(0.95) contrast(1.05);
}
.about-photo-label {
  position: absolute; bottom: -12px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff; font-size: 12px;
  font-weight: 700; letter-spacing: 1px; padding: 6px 16px;
  border-radius: 20px; white-space: nowrap;
}
.about-text h3 {
  font-size: 28px; font-weight: 800; letter-spacing: -0.5px;
  margin-bottom: 20px; line-height: 1.2;
}
.about-text h3 span { color: var(--orange); }
.about-text p {
  font-size: 16px; color: var(--text2); line-height: 1.7;
  margin-bottom: 16px;
}
.about-text p strong { color: var(--text); font-weight: 600; }
.about-signature {
  margin-top: 28px; padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 20px;
}
.about-sig-name { font-size: 18px; font-weight: 800; }
.about-sig-title { font-size: 13px; color: var(--text2); }

@media (max-width: 768px) {
  .zosia-grid { grid-template-columns: 1fr; gap: 24px; }
  .zosia-stat-row { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .zosia-stat { padding: 14px 10px; }
  .zosia-stat-val { font-size: 20px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-photo-wrap { max-width: 260px; margin: 0 auto; }
  .about-text h3 { font-size: 24px; }
}

/* ===== EARLY ACCESS POPUP ===== */
#ea-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.78); align-items: center; justify-content: center;
  padding: 20px; backdrop-filter: blur(4px);
}
#ea-overlay.open { display: flex; }
#ea-card {
  background: #111119; border: 1px solid rgba(232,87,27,0.35);
  border-radius: 20px; padding: 36px 28px;
  max-width: 460px; width: 100%; position: relative;
  max-height: 90vh; overflow-y: auto;
  animation: ea-slide 0.3s ease;
}
@keyframes ea-slide {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
#ea-close {
  position: absolute; top: 8px; right: 10px;
  background: none; border: none; color: #505070;
  font-size: 22px; cursor: pointer; line-height: 1; transition: color 0.2s;
  padding: 11px; border-radius: 8px;
}
#ea-close:hover { color: #f0f0f8; }
.ea-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,87,27,0.12); border: 1px solid rgba(232,87,27,0.3);
  padding: 5px 14px; border-radius: 50px;
  font-size: 13px; color: #E8571B; font-weight: 600; margin-bottom: 16px;
}
.ea-badge-dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; animation: blink 2s infinite; }
#ea-card h2 { font-size: 21px; font-weight: 800; letter-spacing: -0.5px; line-height: 1.3; margin-bottom: 8px; }
#ea-card h2 em { color: #E8571B; font-style: normal; }
.ea-sub { color: #9898b8; font-size: 14px; line-height: 1.6; margin-bottom: 22px; }
.ea-field { margin-bottom: 10px; }
.ea-field input {
  width: 100%; background: #17171f; border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px; padding: 13px 16px; color: #f0f0f8;
  font-size: 15px; outline: none; transition: border-color 0.2s;
  font-family: inherit;
}
.ea-field input:focus { border-color: rgba(232,87,27,0.5); }
.ea-field input::placeholder { color: #505070; }
.ea-field select {
  width: 100%; background: #17171f; border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px; padding: 13px 16px; color: #f0f0f8;
  font-size: 15px; outline: none; transition: border-color 0.2s;
  font-family: inherit; appearance: none; cursor: pointer;
}
.ea-field select:focus { border-color: rgba(232,87,27,0.5); }
.ea-field select option { background: #17171f; color: #f0f0f8; }
.ea-field select option:disabled { color: #505070; }
.ea-phone-row { display: flex; gap: 8px; }
.ea-prefix {
  background: #17171f; border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px; padding: 13px 14px;
  color: #9898b8; font-size: 15px; white-space: nowrap; flex-shrink: 0;
}
.ea-recaptcha { margin-bottom: 10px; }
.ea-consent { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 20px; cursor: pointer; }
.ea-consent input { margin-top: 3px; accent-color: #E8571B; width: 16px; height: 16px; flex-shrink: 0; cursor: pointer; }
.ea-consent span { font-size: 12px; color: #9898b8; line-height: 1.5; }
.ea-consent a { color: #E8571B; text-decoration: none; }
.ea-consent a:hover { text-decoration: underline; }
#ea-submit {
  width: 100%; background: #E8571B; color: #fff; border: none;
  border-radius: 12px; padding: 15px 24px; font-size: 15px;
  font-weight: 700; cursor: pointer; transition: all 0.2s; font-family: inherit;
}
#ea-submit:hover:not(:disabled) { background: #c94a17; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(232,87,27,0.3); }
#ea-submit:disabled { opacity: 0.6; cursor: default; transform: none; }
#ea-error { display: none; color: #ef4444; font-size: 13px; margin-top: 10px; text-align: center; }
.ea-commitment-note { font-size: 12px; color: #505070; text-align: center; margin-top: 8px; }
#ea-success { display: none; text-align: center; padding: 12px 0; }
#ea-success .ea-emoji { font-size: 44px; margin-bottom: 16px; }
#ea-success h3 { font-size: 21px; font-weight: 800; margin-bottom: 10px; }
#ea-success p { color: #9898b8; font-size: 14px; line-height: 1.6; }
.ea-green-box {
  margin-top: 20px; background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.25); border-radius: 10px; padding: 14px;
}
.ea-green-box span { color: #22c55e; font-size: 13px; font-weight: 600; }
@media (max-width: 480px) {
  #ea-card { padding: 28px 20px; }
  #ea-card h2 { font-size: 19px; }
}
