/* =====================================================
   ZLICZACZ.COM — Main Stylesheet
   ===================================================== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:        #FF5A00;
  --orange-dark:   #D94B00;
  --orange-muted:  #FF7A30;
  --orange-light:  #FFF3EC;
  --orange-alpha:  rgba(255, 90, 0, 0.12);

  --dark:          #111117;
  --dark-2:        #1A1A24;
  --dark-3:        #22222E;

  --gray-1:        #888898;
  --gray-2:        #BBBBC8;
  --gray-3:        #E4E4EF;
  --gray-4:        #F4F4F9;

  --white:         #FFFFFF;

  --radius-sm:     6px;
  --radius:        12px;
  --radius-lg:     20px;
  --radius-xl:     28px;

  --shadow-sm:     0 2px 8px rgba(0,0,0,0.06);
  --shadow:        0 8px 32px rgba(0,0,0,0.09);
  --shadow-lg:     0 20px 60px rgba(0,0,0,0.14);
  --shadow-orange: 0 8px 32px rgba(255,90,0,0.28);

  --transition:    0.2s ease;
  --transition-md: 0.35s cubic-bezier(0.4,0,0.2,1);
}

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

body {
  font-family: 'Quicksand', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}


/* ===================================================
   BUTTONS
   =================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,90,0,0.38);
}

.btn-ghost {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.btn-outline {
  color: var(--dark);
  background: transparent;
  border-color: var(--gray-3);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-lg {
  padding: 15px 30px;
  font-size: 1rem;
  border-radius: var(--radius);
}

.btn-block {
  display: flex;
  justify-content: center;
  width: 100%;
}

.btn-nav {
  padding: 8px 18px;
  font-size: 0.82rem;
  border-radius: var(--radius-sm);
  box-shadow: none;
}


/* ===================================================
   NAV
   =================================================== */
.nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(228,228,239,0.7);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 64px;
}

.logo {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--dark);
  flex-shrink: 0;
}
.logo-name { color: var(--orange); font-weight: 700; }
.logo-dot { color: var(--muted); font-weight: 500; font-size: 1.1rem; }

.nav-links {
  display: flex;
  gap: 4px;
  flex: 1;
}
.nav-links a {
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-1);
  transition: all var(--transition);
}
.nav-links a:hover {
  color: var(--dark);
  background: var(--gray-4);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-mobile {
  display: none;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--gray-3);
  background: var(--white);
}
.nav-mobile ul { display: flex; flex-direction: column; gap: 4px; }
.nav-mobile a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
}
.nav-mobile a:hover { background: var(--gray-4); }
.nav-mobile .btn-primary { margin-top: 8px; justify-content: center; }
.nav-mobile.open { display: block; }


/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative;
  background: var(--dark);
  overflow: hidden;
  padding-bottom: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.hero-glow.g1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #FF5A00, transparent 70%);
  top: -200px; left: -100px;
}
.hero-glow.g2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #FF9A4D, transparent 70%);
  bottom: 0; right: 0;
  opacity: 0.15;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 96px;
  padding-bottom: 0;
}

.hero-content { padding-bottom: 80px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,90,0,0.15);
  border: 1px solid rgba(255,90,0,0.3);
  color: #FF9A60;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: 0.2px;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--white);
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--orange), #FFB380);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--gray-2);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-footnote {
  font-size: 0.8rem;
  color: var(--gray-1);
  letter-spacing: 0.1px;
  margin-top: 24px;
}

/* Extension Mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 0;
}

.extension-mockup {
  background: #1E1E2A;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  width: 380px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.ext-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #17171F;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ext-dots { display: flex; gap: 6px; }
.dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.dot.red    { background: #FF5F57; }
.dot.yellow { background: #FFBD2E; }
.dot.green  { background: #28C840; }
.ext-title {
  font-size: 0.78rem;
  color: var(--gray-1);
  font-weight: 500;
}

.ext-body { padding: 16px; }

.ext-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.ext-stat {
  background: rgba(255,90,0,0.1);
  border: 1px solid rgba(255,90,0,0.2);
  border-radius: 8px;
  padding: 10px 8px;
  text-align: center;
}
.ext-stat-num {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.ext-stat-label {
  font-size: 0.65rem;
  color: var(--gray-1);
  margin-top: 3px;
  display: block;
}

.ext-table {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 14px;
}
.ext-table-head {
  display: flex;
  justify-content: space-between;
  padding: 8px 12px;
  background: rgba(255,255,255,0.04);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gray-1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ext-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 12px;
  font-size: 0.78rem;
  color: #CCC;
  border-top: 1px solid rgba(255,255,255,0.04);
  transition: background var(--transition);
}
.ext-row:hover { background: rgba(255,255,255,0.03); }
.ext-row .qty {
  font-weight: 700;
  color: var(--orange);
  background: var(--orange-alpha);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
}
.ext-row-more {
  color: var(--gray-1);
  font-style: italic;
  font-size: 0.74rem;
}

.ext-actions {
  display: flex;
  gap: 8px;
}
.ext-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 6px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(255,255,255,0.06);
  color: #CCC;
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: all var(--transition);
}
.ext-btn:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.ext-btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: transparent;
  flex: 1.2;
}
.ext-btn-primary:hover { background: var(--orange-dark); }

.mockup-shadow {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 340px;
  height: 40px;
  background: radial-gradient(ellipse, rgba(255,90,0,0.2), transparent 70%);
  filter: blur(10px);
}

.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--dark);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: 40px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  white-space: nowrap;
  z-index: 3;
}
.floating-badge svg { color: var(--orange); flex-shrink: 0; }
.fb1 {
  top: 30px;
  right: -20px;
  animation: float1 4s ease-in-out infinite;
}
.fb2 {
  bottom: 120px;
  left: -30px;
  animation: float2 4s ease-in-out infinite 1.5s;
}
@keyframes float1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* Stats strip */
.stats-strip {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 64px;
}
.stats-inner {
  display: flex;
  align-items: center;
  padding: 24px 0;
  gap: 0;
}
.stat-item {
  flex: 1;
  text-align: center;
}
.stat-item strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0;
}
.stat-item span { color: var(--orange); }
.stat-item em {
  display: block;
  font-size: 0.78rem;
  color: var(--gray-1);
  font-style: normal;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}


/* ===================================================
   SECTIONS
   =================================================== */
.section { padding: 96px 0; }

.section-dark {
  background: var(--dark);
}
.section-dark .section-label { color: var(--orange-muted); }
.section-dark .section-title { color: var(--white); }
.section-dark .section-sub { color: var(--gray-1); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1rem;
  color: var(--gray-1);
  line-height: 1.7;
}


/* ===================================================
   HERO BROWSER ALTS
   =================================================== */
.hero-browser-alts {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.hero-browser-alts-label {
  font-size: 0.78rem;
  color: var(--gray-1);
}
.alt-browser-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  text-decoration: none;
  transition: all var(--transition);
}
.alt-browser-btn:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.1);
}
.browser-icon-inline {
  width: 18px; height: 18px;
  display: inline-block;
  flex-shrink: 0;
}
.browser-icon-inline svg { display: block; }


/* ===================================================
   INSTALACJA — store buttons
   =================================================== */
.store-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  background: var(--white);
  border: 1.5px solid var(--gray-3);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--dark);
  transition: all var(--transition-md);
  position: relative;
  min-width: 240px;
  box-shadow: var(--shadow-sm);
}
.store-btn:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 32px rgba(255,90,0,0.1);
  transform: translateY(-3px);
}
.store-logo {
  width: 36px; height: 36px;
  flex-shrink: 0;
}
.store-btn-text {
  display: flex;
  flex-direction: column;
}
.store-btn-sub {
  font-size: 0.72rem;
  color: var(--gray-1);
  font-weight: 500;
}
.store-btn-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
}
.store-badge {
  position: absolute;
  top: -10px; right: 14px;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.2px;
}
.store-badge-primary {
  background: var(--orange);
  color: var(--white);
}

.store-badge-soon {
  background: var(--gray-2);
  color: var(--white);
}

/* Highlight detected browser */
.store-btn.store-detected {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-alpha);
}

/* Soon / unavailable store button */
.store-btn-soon {
  opacity: 0.55;
  cursor: default;
  pointer-events: none;
}

/* Divider */
.install-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 8px 0 36px;
  color: var(--gray-1);
  font-size: 0.85rem;
}
.install-divider::before,
.install-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-3);
}

/* Manual install box */
.install-box {
  background: var(--gray-4);
  border: 1px solid var(--gray-3);
  border-radius: var(--radius-xl);
  overflow: hidden;
  max-width: 780px;
  margin: 0 auto;
}

.install-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--gray-3);
  background: var(--white);
}
.install-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-1);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}
.install-tab:hover { color: var(--dark); background: var(--gray-4); }
.install-tab.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
  background: var(--white);
}

.install-steps-panel {
  display: none;
  padding: 32px;
}
.install-steps-panel.active { display: block; }

/* GitHub download row */
.github-download {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--gray-3);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 28px;
  color: var(--dark);
}
.github-download svg { color: var(--dark); flex-shrink: 0; }
.github-download div { flex: 1; }
.github-download strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.github-download span {
  font-size: 0.8rem;
  color: var(--gray-1);
}

/* Steps list */
.install-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 20px;
}
.install-steps li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-3);
}
.install-steps li:last-child { border-bottom: none; }

.step-circle {
  width: 32px; height: 32px;
  min-width: 32px; min-height: 32px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 2px;
}
.install-steps li div:not(.step-circle) { flex: 1; }
.install-steps li strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--dark);
}
.install-steps li p {
  font-size: 0.85rem;
  color: var(--gray-1);
  line-height: 1.6;
}
.install-steps code {
  background: var(--gray-3);
  color: var(--dark);
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-family: 'Courier New', monospace;
}
.install-steps em {
  font-style: normal;
  font-weight: 600;
  color: var(--dark);
}

.install-steps p {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--orange);
  background: var(--orange-light);
  border: 1px solid rgba(255,90,0,0.2);
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.copy-btn:hover {
  background: var(--orange);
  color: var(--white);
  border-color: transparent;
}
.copy-btn.copied {
  background: #ECFDF5;
  color: #059669;
  border-color: rgba(5,150,105,0.2);
}

/* Install notes */
.install-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #FFF8F0;
  border: 1px solid rgba(255,90,0,0.15);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.82rem;
  color: var(--gray-1);
  line-height: 1.6;
}
.install-note svg { color: var(--orange); flex-shrink: 0; margin-top: 1px; }
.install-note em { font-style: normal; font-weight: 600; color: var(--dark); }
.install-note-green {
  background: #F0FFF4;
  border-color: rgba(5,150,105,0.2);
}
.install-note-green svg { color: #059669; }


/* ===================================================
   FEATURES
   =================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-3);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-md);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-muted));
  opacity: 0;
  transition: opacity var(--transition);
}
.feature-card:hover {
  border-color: rgba(255,90,0,0.2);
  box-shadow: 0 12px 48px rgba(255,90,0,0.08);
  transform: translateY(-4px);
}
.feature-card:hover::before { opacity: 1; }

.card-large {
  grid-column: span 1;
  background: linear-gradient(135deg, var(--orange-light), #FFF9F6);
  border-color: rgba(255,90,0,0.15);
}
.card-large .feature-icon-wrap {
  background: var(--orange);
  color: var(--white);
}

.card-highlight {
  background: var(--dark);
  border-color: rgba(255,255,255,0.06);
}
.card-highlight h3 { color: var(--white); }
.card-highlight p { color: var(--gray-1); }
.card-highlight .feature-icon-wrap {
  background: rgba(255,90,0,0.15);
  color: var(--orange);
}
.card-highlight:hover {
  border-color: rgba(255,90,0,0.3);
}

.feature-icon-wrap {
  width: 52px; height: 52px;
  background: var(--orange-light);
  color: var(--orange);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform var(--transition);
}
.feature-card:hover .feature-icon-wrap { transform: scale(1.08); }

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--gray-1);
  line-height: 1.7;
}


/* ===================================================
   HOW IT WORKS
   =================================================== */
.steps-wrapper { position: relative; }
.steps-line {
  display: none;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: all var(--transition-md);
}
.step-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,90,0,0.25);
  transform: translateY(-4px);
}

.step-num {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(255,90,0,0.18);
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.step-icon {
  width: 48px; height: 48px;
  background: rgba(255,90,0,0.12);
  color: var(--orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}
.step-card p {
  font-size: 0.9rem;
  color: var(--gray-1);
  line-height: 1.7;
}


/* ===================================================
   PRICING
   =================================================== */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.plan-card {
  background: var(--white);
  border: 1.5px solid var(--gray-3);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  position: relative;
  transition: all var(--transition-md);
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.plan-featured {
  background: linear-gradient(145deg, #FF6A00, #FF3D00);
  border-color: transparent;
  box-shadow: 0 0 0 4px rgba(255,90,0,0.25), 0 24px 64px rgba(255,60,0,0.35);
  transform: scale(1.03);
}
.plan-featured:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 0 0 4px rgba(255,90,0,0.3), 0 32px 72px rgba(255,60,0,0.45);
}

.plan-badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.3px;
  box-shadow: var(--shadow-orange);
}

.plan-header { margin-bottom: 28px; }
.plan-name {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-1);
  margin-bottom: 12px;
}
.plan-featured .plan-name { color: rgba(255,255,255,0.5); }

.plan-price-wrap { display: flex; align-items: flex-end; gap: 6px; }
.plan-price {
  display: flex;
  align-items: flex-start;
  line-height: 1;
}
.price-currency {
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 8px;
  color: var(--dark);
}
.plan-featured .price-currency { color: var(--white); }

.price-amount {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--dark);
}
.plan-featured .price-amount { color: var(--white); }

.plan-period {
  font-size: 0.85rem;
  color: var(--gray-1);
  padding-bottom: 6px;
}
.plan-featured .plan-period { color: rgba(255,255,255,0.5); }

.plan-saving {
  font-size: 0.8rem;
  color: #059669;
  font-weight: 600;
  margin-top: -20px;
  margin-bottom: 20px;
}

.plan-features {
  margin-bottom: 28px;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--gray-4);
}
.plan-featured .plan-features li {
  border-bottom-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.95);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li::before {
  content: '';
  width: 18px; height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='9' r='9' fill='%23FFF3EC'/%3E%3Cpath d='M5 9l3 3 5-5' stroke='%23FF5A00' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.plan-features li.no {
  color: var(--gray-2);
}
.plan-features li.no::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='9' r='9' fill='%23F4F4F9'/%3E%3Cpath d='M6 12l6-6M12 12L6 6' stroke='%23BBBBC8' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}
.plan-featured .plan-features li::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='9' r='9' fill='rgba(255%2C255%2C255%2C0.25)'/%3E%3Cpath d='M5 9l3 3 5-5' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.plan-featured .btn-primary {
  background: var(--white);
  color: var(--orange);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.plan-featured .btn-primary:hover {
  background: rgba(255,255,255,0.9);
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}

.trial-info {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--orange-light);
  border: 1px solid rgba(255,90,0,0.2);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-top: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.9rem;
  color: var(--dark);
  line-height: 1.6;
}
.trial-info-icon {
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 1px;
}
.trial-info strong { color: var(--orange); }


.plan-coffee-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  margin-top: 10px;
  display: block;
  font-style: italic;
}


/* ===================================================
   FAQ
   =================================================== */
.section-faq { background: var(--gray-4); }

.faq-list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item.open { border-color: rgba(255,90,0,0.25); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  gap: 16px;
}
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--gray-4);
  flex-shrink: 0;
  position: relative;
  transition: all var(--transition);
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--gray-1);
  border-radius: 2px;
  transition: all var(--transition);
}
.faq-icon::before { width: 10px; height: 2px; transform: translate(-50%, -50%); }
.faq-icon::after  { width: 2px; height: 10px; transform: translate(-50%, -50%); }

.faq-item.open .faq-icon { background: var(--orange); }
.faq-item.open .faq-icon::before { background: var(--white); }
.faq-item.open .faq-icon::after  { background: var(--white); transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
}
.faq-a p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--gray-1);
  line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 600px; }

.faq-more {
  text-align: center;
  margin-top: 36px;
}
.faq-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--orange);
  transition: gap var(--transition);
}
.faq-more-link:hover { gap: 12px; }



/* ===================================================
   NAV ACTIVE LINK
   =================================================== */
.nav-link-active {
  color: var(--dark) !important;
  font-weight: 700 !important;
}

/* ===================================================
   LANGUAGE SWITCHER
   =================================================== */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.lang-sep {
  color: var(--gray-3);
  font-size: 0.75rem;
  line-height: 1;
  user-select: none;
}
.lang-btn {
  padding: 4px 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--gray-1);
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
  line-height: 1;
}
.lang-btn:hover {
  color: var(--dark);
  background: var(--gray-4);
}
.lang-btn.active {
  color: var(--orange);
  background: var(--orange-light);
  border-color: rgba(255,90,0,0.2);
}
.lang-switcher-mobile {
  padding: 6px 12px;
  justify-content: flex-start;
}
.lang-switcher-mobile .lang-btn {
  font-size: 0.85rem;
  padding: 6px 12px;
}

@media (max-width: 768px) {
  .lang-switcher:not(.lang-switcher-mobile) { display: none; }
}


/* ===================================================
   FAQ DEDICATED PAGE
   =================================================== */
.faq-page-hero {
  background: var(--dark);
  padding: 72px 0 56px;
  position: relative;
  overflow: hidden;
}
.faq-page-hero::before {
  content: '';
  position: absolute;
  top: -120px; left: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,90,0,0.18), transparent 65%);
  pointer-events: none;
}
.faq-page-hero-inner {
  position: relative;
}
.faq-page-hero .section-label {
  color: var(--orange-muted);
  margin-bottom: 12px;
}
.faq-page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
  margin-bottom: 14px;
  line-height: 1.2;
}
.faq-page-hero p {
  font-size: 1rem;
  color: var(--gray-2);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.faq-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--orange);
  background: rgba(255,90,0,0.12);
  border: 1px solid rgba(255,90,0,0.25);
  padding: 8px 18px;
  border-radius: 20px;
  transition: all var(--transition);
}
.faq-contact-link:hover {
  background: rgba(255,90,0,0.2);
  border-color: rgba(255,90,0,0.4);
}

.faq-page-main {
  background: var(--gray-4);
  min-height: 60vh;
  padding-bottom: 0;
}

.faq-page-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  padding-top: 56px;
  padding-bottom: 64px;
  align-items: start;
}

.faq-sidebar {
  position: sticky;
  top: 84px;
}
.faq-sidebar-nav {
  background: var(--white);
  border: 1px solid var(--gray-3);
  border-radius: var(--radius-lg);
  padding: 8px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.faq-sidebar-link {
  display: block;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-1);
  transition: all var(--transition);
}
.faq-sidebar-link:hover {
  color: var(--dark);
  background: var(--gray-4);
}
.faq-sidebar-link.active {
  color: var(--orange);
  background: var(--orange-light);
  font-weight: 600;
}
.faq-sidebar-cta {
  background: var(--white);
  border: 1px solid var(--gray-3);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  text-align: center;
}
.faq-sidebar-cta p {
  font-size: 0.82rem;
  color: var(--gray-1);
  margin-bottom: 12px;
  line-height: 1.5;
}

.faq-categories {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.faq-category-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gray-3);
}
.faq-category-icon {
  width: 44px; height: 44px;
  background: var(--orange-light);
  color: var(--orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.faq-category-header h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.2px;
}

.faq-category .faq-list {
  max-width: 100%;
  margin: 0;
}

/* FAQ bottom CTA */
.faq-bottom-cta {
  background: var(--dark);
  padding: 48px 0;
  margin-top: 0;
}
.faq-bottom-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.faq-bottom-cta h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.faq-bottom-cta p {
  font-size: 0.9rem;
  color: var(--gray-1);
}

@media (max-width: 900px) {
  .faq-page-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .faq-sidebar {
    position: static;
  }
  .faq-sidebar-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
  }
}

@media (max-width: 600px) {
  .faq-page-hero { padding: 48px 0 40px; }
  .faq-sidebar-nav { flex-direction: column; }
  .faq-bottom-cta-inner { flex-direction: column; align-items: flex-start; }
}


/* ===================================================
   CTA SECTION
   =================================================== */
.section-cta {
  padding: 80px 0;
  background: var(--dark);
}

.cta-box {
  background: linear-gradient(135deg, #1E1830, #1A1A24);
  border: 1px solid rgba(255,90,0,0.2);
  border-radius: var(--radius-xl);
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(255,90,0,0.2), transparent 70%);
  pointer-events: none;
}
.cta-box h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
  margin-bottom: 12px;
  position: relative;
}
.cta-box p {
  font-size: 1rem;
  color: var(--gray-1);
  max-width: 480px;
  margin: 0 auto 28px;
  position: relative;
}
.cta-box .btn {
  position: relative;
}
.cta-note {
  margin-top: 24px;
  font-size: 0.8rem;
  color: var(--gray-1);
  position: relative;
}


/* ===================================================
   LEGAL PAGES (regulamin, polityka prywatnosci)
   =================================================== */
.legal-page {
  padding: 80px 0 60px;
  min-height: 70vh;
}

.legal-header {
  margin-bottom: 48px;
}

.legal-header .section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.legal-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.legal-header p {
  color: var(--muted);
  font-size: 1rem;
}

.legal-content {
  max-width: 740px;
}

.legal-content h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 36px 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content p {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.75;
  margin-bottom: 8px;
}

.legal-content ul {
  margin: 8px 0 8px 20px;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.75;
}

.legal-content ul li { margin-bottom: 4px; }

.legal-content a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content strong { color: var(--dark); }


/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: #0D0D12;
  padding-top: 64px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo { margin-bottom: 14px; }
.footer-brand p {
  font-size: 0.85rem;
  color: var(--gray-1);
  max-width: 260px;
  line-height: 1.7;
}

.footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links-group strong {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
.footer-links-group a {
  font-size: 0.875rem;
  color: var(--gray-1);
  transition: color var(--transition);
}
.footer-links-group a:hover { color: var(--orange); }

.footer-bottom {
  padding: 20px 0;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: #555568;
  text-align: center;
}


/* ===================================================
   REVEAL ANIMATION
   =================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s cubic-bezier(0.4,0,0.2,1), transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}


/* ===================================================
   RESPONSIVE
   =================================================== */

/* ---- Tablet (≤1024px) ---- */
@media (max-width: 1024px) {
  .section { padding: 72px 0; }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
    padding-top: 72px;
  }
  .hero-content { padding-bottom: 0; }
  .hero-badge { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-browser-alts { justify-content: center; }
  .hero-footnote { text-align: center; }
  .hero-visual { padding-bottom: 48px; justify-content: center; }
  .fb1, .fb2 { display: none; }

  /* Features */
  .features-grid { grid-template-columns: repeat(2, 1fr); }

  /* Steps */
  .steps-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .plan-featured { transform: none; }
  .plan-featured:hover { transform: translateY(-4px); }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

/* ---- Large phone (≤768px) ---- */
@media (max-width: 768px) {
  .section { padding: 60px 0; }

  /* Nav */
  .nav-links, .btn-nav { display: none; }
  .nav-burger { display: flex; }

  /* Hero */
  .hero-inner { padding-top: 56px; gap: 40px; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }

  /* Stats */
  .stats-inner { flex-wrap: wrap; justify-content: center; gap: 0; padding: 0; }
  .stat-divider { display: none; }
  .stat-item { flex: 0 1 50%; padding: 18px 12px; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .stat-item strong { font-size: 1.3rem; }

  /* Store */
  .store-buttons { flex-direction: column; align-items: stretch; }
  .store-btn { min-width: unset; }

  /* CTA */
  .cta-box { padding: 48px 24px; }

  /* Footer */
  .footer { padding-top: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; padding-bottom: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { max-width: 100%; }

  /* Legal */
  .legal-page { padding: 48px 0 40px; }
  .legal-header h1 { font-size: 1.6rem; }
  .legal-content { max-width: 100%; }

  /* FAQ page */
  .faq-page-layout { padding-top: 40px; padding-bottom: 48px; }
}

/* ---- Small phone (≤600px) ---- */
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .section { padding: 52px 0; }

  /* Hero */
  .hero-inner { padding-top: 48px; gap: 36px; }
  .hero-title { font-size: clamp(1.8rem, 8vw, 2.6rem); }
  .hero-desc { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; align-items: center; gap: 10px; }
  .hero-actions .btn-lg { width: 100%; justify-content: center; }
  .hero-footnote { font-size: 0.75rem; }

  /* Extension mockup */
  .extension-mockup { width: min(340px, 100%); }

  /* Section headers */
  .section-header { margin-bottom: 40px; }
  .section-title { font-size: clamp(1.5rem, 6vw, 2rem); }

  /* Stats */
  .stat-item strong { font-size: 1.2rem; }
  .stat-item em { font-size: 0.72rem; }

  /* Feature cards */
  .feature-card { padding: 24px 20px; }

  /* Steps */
  .step-card { padding: 28px 20px; }
  .step-num { font-size: 2.8rem; }

  /* Store */
  .store-badge { font-size: 0.62rem; padding: 3px 8px; }

  /* Pricing */
  .pricing-grid { max-width: 100%; }
  .plan-card { padding: 28px 20px; }
  .price-amount { font-size: 2.6rem; }
  .trial-info { flex-direction: column; gap: 10px; padding: 16px 18px; }

  /* FAQ */
  .faq-q { padding: 16px 18px; font-size: 0.9rem; }
  .faq-a p { padding: 0 18px 16px; }
  .faq-more { margin-top: 28px; }

  /* CTA */
  .cta-box { padding: 40px 20px; border-radius: var(--radius-lg); }
  .cta-box h2 { font-size: clamp(1.4rem, 6vw, 2rem); }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer { padding-top: 40px; }

  /* FAQ page */
  .faq-page-hero { padding: 40px 0 32px; }
  .faq-page-hero h1 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .faq-page-hero p { font-size: 0.9rem; }
  .faq-page-layout { gap: 24px; padding-top: 32px; padding-bottom: 40px; }
  .faq-sidebar-nav { flex-direction: column; }
  .faq-categories { gap: 36px; }
  .faq-bottom-cta { padding: 36px 0; }
  .faq-bottom-cta-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* ---- Extra small (≤380px) ---- */
@media (max-width: 380px) {
  .container { padding: 0 16px; }
  .hero-actions .btn-lg { font-size: 0.9rem; padding: 13px 20px; }
  .extension-mockup { width: 100%; }
  .stat-item { flex: 0 1 100%; border-right: none; }
  .plan-card { padding: 24px 16px; }
  .store-btn { padding: 14px 16px; gap: 10px; }
  .store-logo { width: 28px; height: 28px; }
}
