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

:root {
  --purple: #00FFA3;
  --purple-light: #102A20;
  --purple-mid: #00E691;
  --purple-dark: #00B371;
  --pink-light: #2A141A;
  --pink-dark: #FF4A7A;
  --blue-light: #142035;
  --blue-dark: #4A9FFF;
  --bg: #0A0A0C;
  --bg-secondary: #111115;
  --bg-tertiary: #16161C;
  --text: #F5F5F7;
  --text-muted: #A1A1AA;
  --text-faint: #71717A;
  --border: rgba(255,255,255,0.06);
  --border-strong: rgba(255,255,255,0.15);
  --radius: 8px;
  --radius-lg: 12px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Privacy Banner Styles */
.privacy-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 800px;
    background: #0b0f19; /* Głęboki granat pasujący do tła GT.png */
    border: 1px solid #1e293b;
    border-radius: 12px;
    padding: 16px 24px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    font-family: 'Inter', sans-serif;
    animation: slideUp 0.4s ease-out;
}

.privacy-banner-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.privacy-banner-text {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.privacy-banner-text strong {
    color: #ffffff;
}

.privacy-banner-dot {
    width: 8px;
    height: 8px;
    background-color: #00FFA3; /* Twój neonowy zielony z GT.png */
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    margin-top: 6px;
    box-shadow: 0 0 8px #00FFA3;
}

.privacy-banner-btn {
    background: #1e293b;
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.privacy-banner-btn:hover {
    background: #334155;
}

@keyframes slideUp {
    from { transform: translate(-50%, 100px); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

/* Responsywność dla telefonów */
@media (max-width: 600px) {
    .privacy-banner-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .privacy-banner-btn {
        width: 100%;
        text-align: center;
    }
}

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,12,0.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 2.5rem; height: 64px;
  display: flex; align-items: center;
}
.nav-inner {
  width: 100%; max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  display: flex; align-items: center; gap: 9px;
  font-size: 18px; font-weight: 600; letter-spacing: -0.4px;
  text-decoration: none; color: var(--text);
  font-family: 'JetBrains Mono', monospace;
}
.logo-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--purple); box-shadow: 0 0 10px var(--purple); flex-shrink: 0;
}
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { font-size: 14px; color: var(--text-muted); text-decoration: none; transition: color .15s; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  font-size: 14px; font-weight: 600; padding: 8px 20px;
  background: var(--purple); color: #0A0A0C;
  border: none; border-radius: var(--radius);
  cursor: pointer; text-decoration: none; transition: opacity .15s; white-space: nowrap;
}
.nav-cta:hover { opacity: .88; }

/* ── HERO ── */
.hero {
  max-width: 1160px; margin: 0 auto;
  padding: 6rem 2.5rem 5rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 500; letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--purple);
  margin-bottom: 1.5rem; background: var(--purple-light);
  padding: 5px 12px; border-radius: 20px;
  font-family: 'JetBrains Mono', monospace;
}
.eyebrow::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--purple); flex-shrink:0; }
h1 { font-size: 52px; font-weight: 600; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 1.5rem; }
h1 em { font-style: normal; color: var(--purple); text-shadow: 0 0 20px rgba(0,255,163,.2); }
.hero-sub { font-size: 17px; color: var(--text-muted); line-height: 1.75; margin-bottom: 2.5rem; max-width: 480px; }
.hero-btns { display: flex; gap: 12px; align-items: center; }
.btn-primary {
  background: var(--purple); color: #0A0A0C; border: none;
  padding: 14px 28px; border-radius: var(--radius);
  font-size: 15px; font-weight: 600; cursor: pointer;
  text-decoration: none; display: inline-block; transition: opacity .15s, transform .1s;
}
.btn-primary:hover { opacity: .88; transform: translateY(-1px); }
.btn-secondary {
  background: transparent; color: var(--text); border: 1px solid var(--border-strong);
  padding: 14px 28px; border-radius: var(--radius);
  font-size: 15px; font-weight: 500; cursor: pointer;
  text-decoration: none; display: inline-block; transition: background .15s;
}
.btn-secondary:hover { background: var(--bg-secondary); }

/* ── HERO VISUAL ── */
.hero-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.phone-card {
  background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.25rem;
  box-shadow: 0 4px 30px rgba(0,0,0,.4);
}
.phone-card:first-child { grid-column: span 2; display: flex; gap: 1rem; align-items: flex-start; }
.phone-icon { width:52px; height:52px; border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:24px; flex-shrink:0; }
.phone-icon.dating { background: var(--pink-light); }
.phone-icon.work   { background: var(--blue-light); }
.phone-icon.ghost  { background: var(--purple-light); }
.phone-card-text h4 { font-size:14px; font-weight:500; margin-bottom:4px; }
.phone-card-text p  { font-size:12px; color:var(--text-muted); line-height:1.5; }
.tag { display:inline-block; font-size:10px; font-weight:600; padding:2px 8px; border-radius:4px; margin-bottom:6px; text-transform:uppercase; letter-spacing:.5px; }
.tag.dating  { background:var(--pink-light);   color:var(--pink-dark); }
.tag.work    { background:var(--blue-light);   color:var(--blue-dark); }
.tag.privacy { background:var(--purple-light); color:var(--purple); }
.result-bar { width:100%; height:4px; background:var(--bg-tertiary); border-radius:2px; margin-top:10px; overflow:hidden; }
.result-bar-fill { height:100%; background:var(--purple); border-radius:2px; animation:loading 2s ease-in-out infinite; box-shadow:0 0 8px var(--purple); }
@keyframes loading { 0%{width:0%} 60%{width:85%} 100%{width:85%} }

/* ── TRUST BAR ── */
.trust-bar { background:var(--bg-secondary); border-top:1px solid var(--border); border-bottom:1px solid var(--border); padding:1.2rem 2.5rem; }
.trust-bar-inner { max-width:1160px; margin:0 auto; display:flex; justify-content:center; gap:2.5rem; align-items:center; flex-wrap:wrap; }
.trust-item { display:flex; align-items:center; gap:8px; font-size:13px; color:var(--text-muted); }
.trust-icon { width:18px; height:18px; color:var(--purple); }

/* ── MODERN USE CASES ── */
.use-cases-section { max-width: 1160px; margin: 0 auto; padding: 7rem 2.5rem; display: flex; flex-direction: column; gap: 7rem; }
.showcase-row { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 5rem; align-items: center; }
.showcase-row.reverse { grid-template-columns: 0.9fr 1.1fr; }
.showcase-row.reverse .showcase-text { grid-column: 2; }
.showcase-row.reverse .showcase-visual { grid-column: 1; grid-row: 1; }
.showcase-text { max-width: 520px; }
.case-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; padding: 5px 12px; border-radius: 20px; margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 0.5px; }
.case-badge.dating { background: var(--pink-light); color: var(--pink-dark); }
.case-badge.work { background: var(--blue-light); color: var(--blue-dark); }
.showcase-text h3 { font-size: 32px; font-weight: 600; line-height: 1.25; letter-spacing: -0.8px; margin-bottom: 1.25rem; color: var(--text); }
.showcase-text h3 em { font-style: normal; color: var(--purple); }
.showcase-text .desc { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 2rem; }
.showcase-quote { padding: 1.25rem; background: var(--bg-secondary); border-radius: var(--radius-lg); border-left: 3px solid var(--purple); font-size: 13.5px; color: var(--text-muted); font-style: italic; line-height: 1.65; margin-bottom: 2rem; box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.showcase-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--purple); text-decoration: none; transition: gap .15s; }
.showcase-link:hover { gap: 10px; }
.showcase-link::after { content: '→'; }
.showcase-visual { display: flex; justify-content: center; align-items: center; }
.screenshot-panel { position: relative; border-radius: 40px; overflow: hidden; background: transparent }
.screenshot-img { width: 100%; height: auto; display: block; border-radius: 40px; object-fit: cover;}

/* ── PRICING ── */
.pricing-section { background:var(--bg-tertiary); padding:5rem 2.5rem; border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.pricing-inner { max-width:1160px; margin:0 auto; }
.plans-grid { display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; max-width:800px; margin:0 auto; }
.plan { background:var(--bg-secondary); border:1px solid var(--border); border-radius:var(--radius-lg); padding:2rem; display:flex; flex-direction:column; }
.plan.featured { border:1.5px solid var(--purple); position:relative; box-shadow:0 4px 30px rgba(0,255,163,.05); }
.popular-badge { position:absolute; top:-12px; left:50%; transform:translateX(-50%); background:var(--purple); color:#0A0A0C; font-size:11px; font-weight:600; padding:3px 14px; border-radius:20px; white-space:nowrap; text-transform:uppercase; letter-spacing:.5px; }
.plan-tag { display:inline-block; font-size:11px; font-weight:600; padding:3px 10px; border-radius:5px; margin-bottom:1rem; text-transform:uppercase; letter-spacing:.5px; }
.tag-search  { background:var(--purple-light); color:var(--purple); }
.tag-removal { background:var(--blue-light);   color:var(--blue-dark); }
.plan h3 { font-size:20px; font-weight:600; letter-spacing:-.3px; margin-bottom:.4rem; }
.plan-desc { font-size:13px; color:var(--text-muted); line-height:1.65; margin-bottom:1.5rem; }
.plan-price { display:flex; align-items:baseline; gap:4px; margin-bottom:1.5rem; }
.price-from { font-size:13px; color:var(--text-faint); }
.price-num  { font-size:40px; font-weight:600; letter-spacing:-1.5px; font-family:'JetBrains Mono',monospace; }
.price-per  { font-size:13px; color:var(--text-faint); }
.plan-features { list-style:none; display:flex; flex-direction:column; gap:10px; margin-bottom:2rem; flex:1; }
.plan-features li { display:flex; align-items:center; gap:10px; font-size:13px; color:var(--text-muted); }
.check-icon { width:18px; height:18px; border-radius:50%; background:var(--purple-light); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.check-icon svg { width:10px; height:10px; stroke:var(--purple); stroke-width:2.5; fill:none; }
.plan-btn { width:100%; padding:12px; border-radius:var(--radius); font-size:14px; font-weight:600; cursor:pointer; transition:opacity .15s,transform .1s; text-align:center; text-decoration:none; display:block; }
.plan-btn:hover { opacity:.85; transform:translateY(-1px); }
.plan-btn-primary { background:var(--purple); color:#0A0A0C; border:none; }
.plan-btn-outline { background:transparent; color:var(--text); border:1px solid var(--border-strong); }
.plan-btn-outline:hover { background:var(--bg-tertiary); }
.stripe-note { text-align:center; margin-top:2rem; font-size:13px; color:var(--text-faint); display:flex; align-items:center; justify-content:center; gap:6px; flex-wrap:wrap; }
.stripe-note svg { width:14px; height:14px; stroke:var(--text-faint); stroke-width:2; fill:none; flex-shrink:0; }

/* ── ABOUT ── */
.about-section { max-width:1160px; margin:0 auto; padding:5rem 2.5rem; display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:start; }
.about-left h2 { font-size:36px; font-weight:600; letter-spacing:-.8px; margin-bottom:1.25rem; line-height:1.15; }
.about-left p  { font-size:15px; color:var(--text-muted); line-height:1.8; margin-bottom:1rem; }
.stats-row { display:flex; gap:2rem; margin-top:2rem; padding-top:2rem; border-top:1px solid var(--border); }
.stat-num   { font-size:28px; font-weight:600; letter-spacing:-.8px; color:var(--purple); font-family:'JetBrains Mono',monospace; }
.stat-label { font-size:12px; color:var(--text-faint); margin-top:2px; }
.team-card { background:var(--bg-secondary); border:1px solid var(--border); border-radius:var(--radius-lg); padding:1.75rem; margin-bottom:1rem; }
.team-card-top { display:flex; align-items:center; gap:14px; margin-bottom:1rem; }
.avatar { width:52px; height:52px; border-radius:50%; background:var(--purple-light); display:flex; align-items:center; justify-content:center; font-size:15px; font-weight:600; color:var(--purple); font-family:'JetBrains Mono',monospace; flex-shrink:0; }
.team-name  { font-size:15px; font-weight:500; }
.team-title { font-size:12px; color:var(--text-faint); margin-top:2px; }
.team-bio   { font-size:13px; color:var(--text-muted); line-height:1.7; }
.values-grid { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.value-item  { background:var(--bg-secondary); border:1px solid var(--border); border-radius:var(--radius); padding:1rem; }
.value-icon  { font-size:20px; margin-bottom:6px; }
.value-title { font-size:13px; font-weight:500; margin-bottom:3px; }
.value-desc  { font-size:12px; color:var(--text-faint); line-height:1.5; }

/* ── FOOTER ── */
footer { background:var(--bg-secondary); border-top:1px solid var(--border); padding:2rem 2.5rem; }
.footer-inner { max-width:1160px; margin:0 auto; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:1rem; }
.footer-logo { display:flex; align-items:center; gap:8px; font-size:15px; font-weight:500; color:var(--text); text-decoration:none; font-family:'JetBrains Mono',monospace; }
.footer-links { display:flex; gap:1.75rem; }
.footer-links a { font-size:13px; color:var(--text-faint); text-decoration:none; transition:color .15s; }
.footer-links a:hover { color:var(--text); }
.footer-copy { font-size:13px; color:var(--text-faint); }

/* ── SECTION HEADER ── */
.section-header { text-align:center; margin-bottom:4rem; padding: 0 1.25rem; }
.section-eyebrow { font-size:11px; font-weight:500; letter-spacing:1.4px; text-transform:uppercase; color:var(--text-faint); margin-bottom:.75rem; font-family:'JetBrains Mono',monospace; }
.section-header h2 { font-size:36px; font-weight:600; letter-spacing:-.8px; margin-bottom:.75rem; }
.section-header p { font-size:16px; color:var(--text-muted); max-width:520px; margin:0 auto; }

/* ── REGUŁY RESPONSYWNE (Gdy ekran ma 700px lub mniej - np. smartfon) ── */
@media (max-width: 700px) {
  nav { padding: 0 1.25rem; height: 56px; }
  .nav-links { display: none; }
  .logo { font-size: 16px; }
  .nav-cta { padding: 7px 16px; font-size: 13px; }

  .hero { grid-template-columns:1fr; gap:0; padding:2.5rem 1.25rem 0; }
  .hero-left { padding-bottom: 2.5rem; }
  h1 { font-size: 34px; letter-spacing: -1px; margin-bottom: 1rem; }
  .hero-sub { font-size: 15px; margin-bottom: 2rem; max-width: 100%; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .btn-primary, .btn-secondary { text-align:center; padding:13px 20px; font-size:15px; width:100%; }

  .hero-visual { display:flex; flex-direction:row; overflow-x:auto; -webkit-overflow-scrolling:touch; scrollbar-width:none; padding:0 1.25rem 2rem; margin:0 -1.25rem; grid-template-columns:unset; gap:10px; }
  .hero-visual::-webkit-scrollbar { display:none; }
  .phone-card { flex-shrink:0; width:220px; padding:1rem; }
  .phone-card:first-child { grid-column:unset; flex-direction:column; gap:.75rem; width:240px; }

  .trust-bar { padding: 1.25rem; }
  .trust-bar-inner { gap:.85rem 1.5rem; justify-content:flex-start; }
  .trust-item { font-size: 12px; }

  .use-cases-section { padding: 4rem 1.25rem; gap: 4rem; }
  .section-header h2 { font-size: 28px; }
  .showcase-row, .showcase-row.reverse { grid-template-columns: 1fr; gap: 2.5rem; }
  .showcase-row.reverse .showcase-text { grid-column: unset; }
  .showcase-row.reverse .showcase-visual { grid-column: unset; grid-row: unset; }
  .showcase-text h3 { font-size: 24px; }
  .screenshot-panel { max-width: 280px; }

  .pricing-section { padding: 3.5rem 1.25rem; }
  .plans-grid { grid-template-columns:1fr; max-width:100%; gap:1.25rem; }
  .plan { padding: 1.5rem; }
  .plan.featured { margin-top: 1rem; }
  .price-num { font-size: 36px; }

  .about-section { grid-template-columns:1fr; gap:2.5rem; padding:3.5rem 1.25rem; }
  .about-left h2 { font-size: 26px; }
  .about-left p  { font-size: 14px; }
  .stats-row { flex-wrap:wrap; gap:1.5rem; }
  .stat-num  { font-size: 24px; }
  .values-grid { gap: 8px; }

  footer { padding: 1.75rem 1.25rem; }
  .footer-inner { flex-direction:column; align-items:flex-start; gap:1.25rem; }
  .footer-links { flex-wrap:wrap; gap:.85rem 1.5rem; }
}

/* Reguły dla tabletów */
@media (min-width:701px) and (max-width:900px) {
  .nav-links { display: none; }
  .hero { grid-template-columns:1fr; padding:4rem 2rem 3rem; gap:3rem; }
  h1 { font-size: 42px; }
  .hero-visual { grid-template-columns: 1fr 1fr; }
  .use-cases-section, .pricing-section, .about-section { padding: 4rem 2rem; }
  .showcase-row, .showcase-row.reverse { gap: 3rem; }
  .about-section { grid-template-columns:1fr; gap:3rem; }
  .plans-grid { max-width: 100%; }
}

/* Pełnoekranowe tło */
.modal {
  display: none; 
  position: fixed; 
  z-index: 9999; 
  left: 0; top: 0;
  width: 100%; height: 100%; 
  background-color: rgba(5, 5, 8, 0.95);
  backdrop-filter: blur(8px);
  overflow-y: auto;
}

/* Duży, elegancki kontener na środku */
.modal-content-full {
  background-color: #0A0A0C;
  margin: 5% auto; 
  padding: 3rem;
  border: 1px solid #1F1F24;
  border-radius: 12px;
  width: 90%;
  max-width: 650px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.7);
}

/* Okienko z regulaminem do skrolowania */
.scrollable-terms-box {
  background: #141417;
  border: 1px solid #1F1F24;
  border-radius: 8px;
  padding: 1.5rem;
  max-height: 250px; /* Wysokość okna skrolowania */
  overflow-y: scroll;
  margin-top: 1.5rem;
}

.scrollable-terms-box h3 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: #00FFA3;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.scrollable-terms-box p {
  font-size: 13px;
  color: #8F8F94;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Zarządzanie krokami */
.order-step {
  display: none;
}
.order-step.active-step {
  display: block;
}

/* Reszta pomocniczych styli */
.close-modal { position: absolute; right: 25px; top: 20px; color: #8F8F94; font-size: 30px; cursor: pointer; }
.close-modal:hover { color: #00FFA3; }
.modal-subtitle { color: #8F8F94; font-size: 14px; margin-top: 0.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 13px; color: #F5F5F7; margin-bottom: 0.5rem; }
.form-group input, .form-group textarea { width: 100%; padding: 0.75rem; background: #141417; border: 1px solid #1F1F24; border-radius: 6px; color: #FFF; font-family: inherit; box-sizing: border-box; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: #00FFA3; }

button:disabled { opacity: 0.3; cursor: not-allowed; background: #1F1F24 !important; color: #8F8F94 !important; }