/* NovaCode — fioletowo-czarny, akcenty magenta / fiolet, animacje */
:root {
  --bg: #06040c;
  --bg-elevated: #0e0a16;
  --surface: #140f1f;
  --surface-modal: #1a1426;
  --border: rgba(168, 85, 247, 0.14);
  --border-bright: rgba(192, 132, 252, 0.45);
  --text: #f5f3ff;
  --text-muted: #a89ec4;
  --accent: #9333ea;
  --accent-bright: #d8b4fe;
  --accent-deep: #6d28d9;
  --accent-glow: rgba(168, 85, 247, 0.42);
  --accent-soft: rgba(147, 51, 234, 0.14);
  --accent-hot: #e879f9;
  --accent-hot-glow: rgba(232, 121, 249, 0.35);
  --violet: #a78bfa;
  --radius-xl: 1.35rem;
  --radius-lg: 1rem;
  --radius-md: 0.75rem;
  --radius-sm: 0.5rem;
  --radius-pill: 9999px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --max-width: 62rem;
  --prose-width: 40rem;
  --header-h: 4rem;
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --tap-time: 0.12s;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-mega-accent,
  .offer-card,
  .hero-grid-bg,
  .modal-panel.border-glow,
  .hero-float,
  .hero-pulse,
  .hero-orb,
  .hero-stats li,
  .logo-accent,
  .tech-pulse,
  .cyber-grid,
  .cyber-scan,
  .cyber-glow,
  .cyber-hex,
  .faq-item,
  .quote-result,
  .quote-cap-dot,
  .process {
    animation: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
}

main {
  position: relative;
  z-index: 1;
}

body.modal-open {
  overflow: hidden;
}

/* Tło „hacker / cyber” — animowana siatka, skan, bloby (bez szumu statycznego) */
.cyber-bg {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.cyber-grid {
  position: absolute;
  inset: -50%;
  background-image:
    linear-gradient(rgba(167, 139, 250, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(147, 51, 234, 0.09) 1px, transparent 1px);
  background-size: 56px 56px;
  transform-origin: center;
  animation: cyberGridMove 28s linear infinite;
}

.cyber-grid--slow {
  animation-duration: 38s;
  opacity: 0.85;
}

@keyframes cyberGridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(56px, 56px);
  }
}

.cyber-hex {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(232, 121, 249, 0.09) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(147, 51, 234, 0.11) 0%, transparent 40%);
  animation: hexPulse 10s ease-in-out infinite alternate;
}

@keyframes hexPulse {
  from {
    opacity: 0.6;
    transform: scale(1);
  }
  to {
    opacity: 1;
    transform: scale(1.05);
  }
}

.cyber-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(192, 132, 252, 0.55),
    rgba(232, 121, 249, 0.65),
    transparent
  );
  box-shadow: 0 0 28px var(--accent-hot-glow);
  animation: cyberScanLine 6.5s ease-in-out infinite;
  opacity: 0.8;
}

@keyframes cyberScanLine {
  0%,
  100% {
    top: 5%;
    opacity: 0;
  }
  10% {
    opacity: 0.85;
  }
  50% {
    top: 92%;
  }
  55% {
    opacity: 0.5;
  }
  60% {
    opacity: 0;
  }
}

.cyber-glow {
  position: absolute;
  width: 55vmax;
  height: 55vmax;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: orbFloat 16s ease-in-out infinite;
}

.cyber-glow--a {
  top: -20%;
  left: -15%;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.38), transparent 70%);
}

.cyber-glow--b {
  bottom: -25%;
  right: -20%;
  background: radial-gradient(circle, rgba(232, 121, 249, 0.22), transparent 70%);
  animation-delay: -8s;
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(4%, -3%) scale(1.08);
  }
}

a {
  color: var(--accent-bright);
  text-decoration: none;
  transition: color 0.2s var(--ease-out);
}

a:hover {
  color: var(--accent-hot);
  text-decoration: underline;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.55rem 1.1rem;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  z-index: 300;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
}

.skip-link:focus {
  top: 0.75rem;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2rem);
}

.container--center {
  text-align: center;
}

.container--center .prose,
.container--center .section-intro,
.container--center .faq-list {
  margin-inline: auto;
}

.section-kicker {
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-hot);
  margin: 0 0 1.25rem;
  opacity: 0.95;
}

.tech-brackets::before {
  content: "[ ";
  opacity: 0.65;
}

.tech-brackets::after {
  content: " ]";
  opacity: 0.65;
}

.hero-pulse {
  color: var(--accent-hot);
  margin-right: 0.35rem;
  animation: pulseDot 2s ease-in-out infinite;
}

.tech-pulse {
  color: var(--accent-hot);
  margin-right: 0.35rem;
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

/* ——— Animacje globalne ——— */
@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes gridDrift {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(48px);
  }
}

@keyframes cardBorderGlow {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(167, 139, 250, 0.35),
      0 0 28px rgba(109, 40, 217, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.04);
  }
  50% {
    box-shadow:
      0 0 0 2px rgba(192, 132, 252, 0.5),
      0 0 48px rgba(147, 51, 234, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(6, 4, 12, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 720px) {
  .header-inner {
    justify-content: space-between;
  }

  .nav-list {
    justify-content: flex-end;
  }
}

.header-switches {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.lang-switch,
.currency-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.lang-btn {
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  background: transparent;
  color: var(--text-muted);
  transition: background 0.2s var(--ease-out), color 0.2s;
}

.lang-btn:hover {
  color: var(--text);
  background: var(--accent-soft);
}

.lang-btn.is-active {
  background: linear-gradient(135deg, var(--accent-deep), var(--accent));
  color: #fff;
  box-shadow: 0 0 16px var(--accent-soft);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  color: var(--text);
  text-decoration: none;
  padding: 0.35rem 0;
  border-radius: var(--radius-md);
  transition: transform var(--tap-time) var(--ease-out);
}

.logo-img {
  height: 2.35rem;
  width: auto;
  max-width: min(11rem, 42vw);
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.logo--footer .logo-img {
  height: 1.85rem;
  max-width: 9rem;
}

.logo-text {
  white-space: nowrap;
}

.logo:hover {
  color: var(--text);
  text-decoration: none;
}

.logo:active {
  transform: scale(0.97);
}

.logo-accent {
  background: linear-gradient(100deg, var(--accent-bright), var(--accent-hot));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

@media (prefers-reduced-motion: no-preference) {
  .logo-accent {
    background-size: 200% auto;
    animation: gradientShift 6s ease infinite;
  }
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.65rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a,
.nav-quote {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-pill);
  transition:
    color 0.2s var(--ease-out),
    background 0.2s var(--ease-out),
    transform var(--tap-time) var(--ease-spring),
    box-shadow 0.2s var(--ease-out);
  border: none;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
}

.nav-list a:hover,
.nav-quote:hover {
  color: var(--text);
  background: var(--accent-soft);
  text-decoration: none;
  box-shadow: 0 0 22px var(--accent-glow);
}

.nav-list a:active,
.nav-quote:active {
  transform: scale(0.96);
}

@media (max-width: 520px) {
  .nav-list {
    gap: 0.08rem 0.1rem;
  }

  .nav-list a,
  .nav-quote {
    font-size: 0.78rem;
    padding: 0.38rem 0.5rem;
  }
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(1.5rem, 4vw, 2.5rem) 0 clamp(3rem, 8vw, 5rem);
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(147, 51, 234, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(167, 139, 250, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 85%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 85%);
  pointer-events: none;
  animation: gridDrift 20s linear infinite;
}

.hero-floaters {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(0.5px);
  opacity: 0.55;
}

.hero-orb--1 {
  width: min(18rem, 42vw);
  height: min(18rem, 42vw);
  top: 8%;
  left: -5%;
  background: radial-gradient(circle at 30% 30%, rgba(232, 121, 249, 0.45), transparent 65%);
  animation: orbDriftA 14s ease-in-out infinite;
}

.hero-orb--2 {
  width: min(14rem, 36vw);
  height: min(14rem, 36vw);
  bottom: 12%;
  right: -3%;
  background: radial-gradient(circle at 60% 40%, rgba(147, 51, 234, 0.5), transparent 68%);
  animation: orbDriftB 18s ease-in-out infinite;
}

.hero-orb--3 {
  width: min(8rem, 22vw);
  height: min(8rem, 22vw);
  top: 42%;
  right: 18%;
  background: radial-gradient(circle, rgba(192, 132, 252, 0.35), transparent 70%);
  animation: orbDriftC 11s ease-in-out infinite;
}

@keyframes orbDriftA {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(12px, -18px) scale(1.06);
  }
  66% {
    transform: translate(-8px, 10px) scale(0.98);
  }
}

@keyframes orbDriftB {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-16px, -12px) rotate(8deg) scale(1.05);
  }
}

@keyframes orbDriftC {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.45;
  }
  50% {
    transform: translateY(-24px);
    opacity: 0.75;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-grid-bg {
    animation: none;
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  order: -1;
}

.hero-mega {
  margin: 0 0 1.5rem;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.88;
  font-size: clamp(3.75rem, 15vw, 11rem);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-float {
    animation: floatY 7s ease-in-out infinite;
  }

  .hero-float-delay {
    animation-delay: -2.5s;
  }
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-mega-line {
  display: block;
}

.hero-mega-type-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0.14em;
  min-height: 0.92em;
}

.hero-mega-type-row .hero-mega-line {
  display: inline-block;
  min-width: 0.2ch;
  text-align: center;
}

#hero-typewriter {
  min-width: 3.25ch;
  text-align: left;
}

.hero-typewriter-caret {
  display: inline-block;
  width: 0.085em;
  height: 0.72em;
  margin-left: 0.06em;
  align-self: center;
  background: linear-gradient(
    180deg,
    var(--accent-bright) 0%,
    var(--accent-hot) 45%,
    var(--violet) 100%
  );
  border-radius: 1px;
  box-shadow: 0 0 12px var(--accent-hot-glow);
  vertical-align: middle;
  animation: heroCaretBlink 0.78s step-end infinite;
}

.hero-typewriter-caret.is-hidden {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-typewriter-caret {
    animation: none;
    opacity: 0;
  }
}

@keyframes heroCaretBlink {
  50% {
    opacity: 0;
  }
}

.hero-mega-accent {
  background: linear-gradient(
    100deg,
    var(--accent-bright) 0%,
    var(--accent-hot) 28%,
    var(--accent) 52%,
    var(--violet) 78%,
    var(--accent-bright) 100%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 9s ease infinite;
  filter: drop-shadow(0 0 44px var(--accent-glow)) drop-shadow(0 0 28px var(--accent-hot-glow));
}

.hero-eyebrow {
  margin: 0 0 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-bright);
  max-width: 36rem;
  line-height: 1.6;
}

.hero-lead {
  margin: 0 0 2.5rem;
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 34rem;
  line-height: 1.75;
}

.hero-lead strong {
  color: var(--text);
  font-weight: 600;
}

.hero-stats {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.75rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.hero-stats li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.65rem 1rem;
  min-width: 6.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(147, 51, 234, 0.08);
  box-shadow: 0 0 24px var(--accent-soft);
  transition: transform 0.25s var(--ease-out), border-color 0.25s, box-shadow 0.25s;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-stats li {
    animation: statCardBob 5s ease-in-out infinite;
  }

  .hero-stats li:nth-child(2) {
    animation-delay: -1.6s;
  }

  .hero-stats li:nth-child(3) {
    animation-delay: -3.2s;
  }

  .hero-stats li:nth-child(4) {
    animation-delay: -4.8s;
  }
}

@keyframes statCardBob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.hero-stats li:hover {
  animation: none;
  transform: translateY(-5px);
  border-color: rgba(192, 132, 252, 0.45);
  box-shadow: 0 0 32px rgba(147, 51, 234, 0.2);
}

.hero-stat-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-hot);
  letter-spacing: -0.02em;
}

.hero-stat-label {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.62rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.45rem;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition:
    background 0.22s var(--ease-out),
    color 0.22s var(--ease-out),
    border-color 0.22s var(--ease-out),
    box-shadow 0.22s var(--ease-out),
    transform var(--tap-time) var(--ease-spring);
}

.btn:hover {
  text-decoration: none;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-deep) 0%, var(--accent) 45%, #7e22ce 100%);
  color: #fff;
  border-color: rgba(192, 132, 252, 0.4);
  box-shadow: 0 0 26px var(--accent-glow);
}

.btn-primary:hover {
  box-shadow: 0 0 40px var(--accent-glow), 0 0 24px var(--accent-hot-glow);
  color: #fff;
}

@media (prefers-reduced-motion: no-preference) {
  .btn-primary {
    position: relative;
    overflow: hidden;
  }

  .btn-primary::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.22) 50%, transparent 60%);
    transform: translateX(-120%);
    transition: transform 0.6s var(--ease-out);
  }

  .btn-primary:hover::after {
    transform: translateX(120%);
  }
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: var(--border-bright);
}

.btn-ghost:hover {
  background: var(--accent-soft);
  border-color: var(--accent-bright);
  color: var(--text);
}

.offer-card-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: auto;
  padding-top: 1.35rem;
}

.btn-offer-quote {
  width: 100%;
  max-width: 15.5rem;
  margin-left: auto;
  margin-right: auto;
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section:nth-of-type(even) {
  background: rgba(12, 14, 20, 0.65);
  border-block: 1px solid var(--border);
}

.section h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.45rem, 2.8vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.section-intro {
  margin: 0 0 2.25rem;
  color: var(--text-muted);
  max-width: var(--prose-width);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-inline: auto;
}

.prose p {
  margin: 0 auto 1.35rem;
  color: var(--text-muted);
  max-width: var(--prose-width);
  font-size: 1.02rem;
  line-height: 1.75;
  text-wrap: balance;
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose strong {
  color: var(--text);
  font-weight: 600;
}

/* Dlaczego my */
.why-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 0.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.why-card {
  padding: 1.75rem 1.25rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: rgba(17, 20, 28, 0.85);
  transition:
    border-color 0.3s,
    box-shadow 0.3s,
    transform 0.3s var(--ease-out);
}

@media (prefers-reduced-motion: no-preference) {
  .why-card:hover {
    transform: translateY(-4px);
    border-color: rgba(192, 132, 252, 0.4);
    box-shadow: 0 0 36px rgba(147, 51, 234, 0.12);
  }
}

.why-ico {
  display: block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent-hot);
  margin-bottom: 0.75rem;
  letter-spacing: 0.08em;
}

.why-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.why-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Statystyki — liczniki */
.section-stats .section-intro--narrow {
  max-width: 36rem;
}

.stats-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 0.35rem;
  text-align: center;
}

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.stat-card {
  padding: 1.65rem 1.15rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: rgba(17, 20, 28, 0.88);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}

.stat-value-wrap {
  margin: 0 0 0.5rem;
}

.stat-value {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(2.1rem, 5vw, 2.65rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
  background: linear-gradient(120deg, var(--accent-hot), #c084fc, var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 24px rgba(192, 132, 252, 0.22));
  font-variant-numeric: tabular-nums;
}

@media (prefers-reduced-motion: no-preference) {
  .stat-value--counting {
    animation: statCountGlow 0.55s ease-out alternate infinite;
  }
}

@keyframes statCountGlow {
  from {
    filter: drop-shadow(0 0 18px rgba(192, 132, 252, 0.2));
  }
  to {
    filter: drop-shadow(0 0 32px rgba(192, 132, 252, 0.42));
  }
}

.stat-value--rating {
  letter-spacing: -0.02em;
}

.stat-label {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
  max-width: 14rem;
  margin-inline: auto;
}

/* Opinie — poziomy scroll */
.section-testimonials .section-intro--narrow {
  max-width: 40rem;
}

.testimonials-strip {
  margin-top: 0.25rem;
  outline: none;
  border-radius: var(--radius-xl);
}

.testimonials-strip:focus-visible {
  box-shadow: 0 0 0 2px var(--border-bright), 0 0 0 4px rgba(192, 132, 252, 0.35);
}

.testimonials-scroll {
  display: flex;
  gap: 1.15rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: clamp(1.25rem, 5vw, 2rem);
  padding: 0.35rem 0 0.85rem;
  margin: 0 calc(-1 * clamp(1.25rem, 5vw, 2rem));
  padding-inline: clamp(1.25rem, 5vw, 2rem);
  -webkit-overflow-scrolling: touch;
  scrollbar-color: rgba(192, 132, 252, 0.45) rgba(255, 255, 255, 0.06);
  scrollbar-width: thin;
}

.testimonials-scroll::-webkit-scrollbar {
  height: 8px;
}

.testimonials-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
}

.testimonials-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--accent-hot), var(--violet));
  border-radius: 4px;
}

.testimonial-card {
  flex: 0 0 min(20.5rem, 82vw);
  scroll-snap-align: start;
  margin: 0;
  padding: 1.35rem 1.25rem 1.25rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: rgba(17, 20, 28, 0.92);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.testimonial-stars {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  line-height: 1;
  letter-spacing: 0.12em;
  background: linear-gradient(105deg, #fde68a, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 12px rgba(251, 191, 36, 0.35));
}

.testimonial-quote {
  margin: 0 0 1rem;
  padding: 0;
  border: none;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--text);
  flex-grow: 1;
}

.testimonial-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.65rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: auto;
  padding-top: 0.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.testimonial-name {
  font-weight: 600;
  color: var(--text);
}

.testimonial-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-bright);
}

.testimonials-hint {
  margin: 0.85rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.9;
  line-height: 1.5;
}

/* Stack */
.stack-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 36rem;
  text-align: left;
}

.stack-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.65rem 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text-muted);
}

.stack-list li:last-child {
  border-bottom: none;
}

.stack-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius-sm);
  background: rgba(147, 51, 234, 0.18);
  color: var(--accent-bright);
  border: 1px solid rgba(167, 139, 250, 0.3);
}

/* Cennik tabela */
.price-matrix {
  width: 100%;
  max-width: 36rem;
  margin: 0 auto 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  box-shadow: 0 0 30px rgba(109, 40, 217, 0.12);
}

.price-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
  color: var(--text-muted);
  align-items: center;
}

.price-row:last-child {
  border-bottom: none;
}

.price-row--head {
  background: rgba(147, 51, 234, 0.14);
  color: var(--text);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 520px) {
  .price-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .price-row--head {
    display: none;
  }

  .price-row span:first-child {
    font-weight: 700;
    color: var(--text);
  }

  .price-cell-from {
    text-align: center;
  }
}

.price-cell-cap {
  color: var(--accent-hot);
  font-weight: 700;
}

.price-cell-from {
  color: var(--accent-hot);
  font-weight: 700;
  text-align: right;
}

.price-matrix-note {
  margin: 0 auto;
  max-width: 34rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(36px) scale(0.99);
  filter: blur(4px);
  transition:
    opacity 0.85s var(--ease-out),
    transform 0.85s var(--ease-out),
    filter 0.85s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

main > section:nth-of-type(2).reveal {
  transition-delay: 0.04s;
}

main > section:nth-of-type(3).reveal {
  transition-delay: 0.08s;
}

main > section:nth-of-type(4).reveal {
  transition-delay: 0.12s;
}

main > section:nth-of-type(5).reveal {
  transition-delay: 0.16s;
}

main > section:nth-of-type(6).reveal {
  transition-delay: 0.2s;
}

main > section:nth-of-type(7).reveal {
  transition-delay: 0.24s;
}

main > section:nth-of-type(8).reveal {
  transition-delay: 0.28s;
}

.offer-card.reveal {
  transition-delay: 0.1s;
}

.offer-card.reveal:nth-child(2) {
  transition-delay: 0.2s;
}

.process.reveal {
  transition-delay: 0.14s;
}

/* Offer cards — pulsujące neonowe obramówki */
.offer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .offer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .offer-grid--four {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .offer-grid--four {
    grid-template-columns: repeat(4, 1fr);
  }
}

.offer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem 1.85rem;
  text-align: center;
  transition: transform 0.3s var(--ease-out);
}

@media (prefers-reduced-motion: no-preference) {
  .offer-card {
    animation: cardBorderGlow 5s ease-in-out infinite;
  }

  .offer-card:hover {
    transform: translateY(-4px);
  }

  .offer-card:nth-child(2) {
    animation-delay: -2.5s;
  }
}

.offer-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.offer-card-lead {
  margin: 0 0 1.15rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.offer-list {
  flex: 1 1 auto;
  margin: 0 auto;
  padding-left: 1.15rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  display: inline-block;
  text-align: left;
  max-width: 22rem;
}

.offer-list li {
  margin-bottom: 0.4rem;
}

.offer-list li::marker {
  color: var(--accent-bright);
}

.process {
  background: linear-gradient(135deg, var(--accent-soft), rgba(232, 121, 249, 0.06));
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem 2.1rem;
  box-shadow: 0 0 36px rgba(109, 40, 217, 0.1);
  text-align: center;
  max-width: 38rem;
  margin-inline: auto;
}

@media (prefers-reduced-motion: no-preference) {
  .process {
    animation: processGlow 8s ease-in-out infinite;
  }
}

@keyframes processGlow {
  0%,
  100% {
    box-shadow: 0 0 28px rgba(109, 40, 217, 0.08);
  }
  50% {
    box-shadow: 0 0 44px rgba(147, 51, 234, 0.14);
  }
}

.process-title {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.process-steps {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  max-width: 26rem;
}

.process-steps li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  text-align: left;
}

.process-steps li:last-child {
  margin-bottom: 0;
}

.process-step-num {
  flex-shrink: 0;
  width: 1.65rem;
  height: 1.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  border-radius: var(--radius-pill);
  box-shadow: 0 0 14px var(--accent-glow);
}

.process-steps strong {
  color: var(--text);
}

/* FAQ */
.section-faq h2 {
  margin-bottom: 1rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 44rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    border-color 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out),
    transform 0.35s var(--ease-out);
}

@media (prefers-reduced-motion: no-preference) {
  .faq-item {
    animation: faqDrift 6s ease-in-out infinite;
  }

  .faq-item:nth-child(odd) {
    animation-delay: -2s;
  }

  .faq-item:hover {
    transform: translateX(4px);
  }
}

@keyframes faqDrift {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(147, 51, 234, 0);
  }
  50% {
    box-shadow: 0 0 24px rgba(147, 51, 234, 0.1);
  }
}

.faq-item[open] {
  border-color: var(--border-bright);
  box-shadow: 0 0 26px rgba(109, 40, 217, 0.14);
}

.faq-item summary {
  padding: 1rem 1.1rem;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  user-select: none;
  transition: background 0.18s var(--ease-out), transform var(--tap-time) var(--ease-out);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid var(--accent-bright);
  border-bottom: 2px solid var(--accent-bright);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.28s var(--ease-out);
}

.faq-item[open] summary::after {
  transform: rotate(-135deg);
}

.faq-item summary:hover {
  background: var(--accent-soft);
}

.faq-item summary:active {
  transform: scale(0.995);
}

.faq-answer {
  padding: 0 1.1rem 1rem;
  border-top: 1px solid var(--border);
}

.faq-answer p {
  margin: 0.8rem 0 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-answer p:first-child {
  margin-top: 0.7rem;
}

.faq-answer strong {
  color: var(--text);
}

/* Contact */
.contact-cta {
  margin: 0 0 1rem;
}

.contact-cta .btn-primary {
  word-break: break-all;
}

.contact-note {
  margin: 1rem auto 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 34rem;
}

/* Modal wyceny */
.modal[hidden] {
  display: none !important;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: modalFade 0.25s var(--ease-out);
}

@keyframes modalFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-panel {
  position: relative;
  width: 100%;
  max-width: 26rem;
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  padding: 1.75rem 1.5rem 1.5rem;
  border-radius: var(--radius-xl);
  border: 2px solid transparent;
  background:
    linear-gradient(var(--surface-modal), var(--surface-modal)) padding-box,
    linear-gradient(125deg, var(--accent-deep), var(--accent), var(--violet), var(--accent-bright), var(--accent)) border-box;
  box-shadow:
    0 0 0 1px rgba(167, 139, 250, 0.18),
    0 24px 64px rgba(0, 0, 0, 0.57),
    0 0 52px rgba(109, 40, 217, 0.22);
  animation: modalSlide 0.35s var(--ease-spring) both;
}

.modal-panel--wide {
  max-width: min(40rem, calc(100vw - 2rem));
  padding: 2rem 1.75rem 1.75rem;
  text-align: left;
}

.modal-kicker {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--accent-bright);
  margin: 0 0 0.5rem;
  opacity: 0.9;
}

.modal-panel--wide .modal-lead {
  margin-bottom: 1.5rem;
}

.modal-panel.border-glow {
  background-size: 100% 100%, 200% 200%;
}

@media (prefers-reduced-motion: no-preference) {
  .modal-panel.border-glow {
    animation:
      modalSlide 0.35s var(--ease-spring) both,
      modalBorderPulse 5s ease-in-out infinite;
  }
}

@keyframes modalBorderPulse {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(192, 132, 252, 0.22),
      0 24px 64px rgba(0, 0, 0, 0.55),
      0 0 44px rgba(147, 51, 234, 0.2);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(232, 121, 249, 0.35),
      0 28px 72px rgba(0, 0, 0, 0.55),
      0 0 68px rgba(109, 40, 217, 0.32);
  }
}

@keyframes modalSlide {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(12px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    color 0.2s,
    background 0.2s,
    transform var(--tap-time);
}

.modal-close:hover {
  color: var(--text);
  background: var(--accent-soft);
}

.modal-close:active {
  transform: scale(0.95);
}

.modal-panel h2 {
  margin: 0 2rem 0.5rem 0;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.modal-lead {
  margin: 0 0 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.modal-lead strong {
  color: var(--text);
}

.quote-cap-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  margin: 0 0 1.25rem;
}

.quote-cap-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.4rem 0.65rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(167, 139, 250, 0.4);
  background: rgba(147, 51, 234, 0.1);
  color: var(--accent-bright);
}

.quote-cap-chip--www {
  border-color: rgba(232, 121, 249, 0.45);
  background: rgba(232, 121, 249, 0.08);
  color: var(--accent-hot);
}

.quote-cap-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 12px var(--accent-glow);
  animation: capDot 1.8s ease-in-out infinite;
}

.quote-cap-dot--www {
  background: var(--accent-bright);
  box-shadow: 0 0 10px var(--accent-bright);
}

@keyframes capDot {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.85);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.quote-block--panel {
  padding: 1.25rem 1.2rem 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.quote-block-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent-bright);
  margin: 0 0 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border);
}

.quote-block-intro {
  margin: -0.35rem 0 1.1rem;
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.55;
  text-align: left;
}

.quote-help {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.45;
  text-align: left;
  opacity: 0.92;
}

.quote-help--tight {
  margin-bottom: 0.45rem;
}

.quote-options--grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

@media (min-width: 520px) {
  .quote-options--grid {
    grid-template-columns: 1fr 1fr;
  }

  .quote-options--4 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .quote-options--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.modal--lock-bot .quote-cap-chip:not(.quote-cap-chip--bot),
.modal--lock-web .quote-cap-chip:not(.quote-cap-chip--web),
.modal--lock-minecraft .quote-cap-chip:not(.quote-cap-chip--minecraft),
.modal--lock-fivem .quote-cap-chip:not(.quote-cap-chip--fivem) {
  display: none !important;
}

.quote-cap-chip--minecraft {
  border-color: rgba(52, 211, 153, 0.35) !important;
  background: rgba(16, 185, 129, 0.08) !important;
  color: #6ee7b7 !important;
}

.quote-cap-dot--mc {
  background: #34d399 !important;
  box-shadow: 0 0 10px rgba(52, 211, 153, 0.5) !important;
}

.quote-cap-chip--fivem {
  border-color: rgba(251, 113, 133, 0.4) !important;
  background: rgba(244, 63, 94, 0.08) !important;
  color: #fecdd3 !important;
}

.quote-cap-dot--fm {
  background: #fb7185 !important;
  box-shadow: 0 0 10px rgba(251, 113, 133, 0.45) !important;
}

.quote-fieldset--rush {
  padding: 1rem 1.05rem;
  border-radius: var(--radius-md);
  border: 1px dashed var(--border-bright);
  background: rgba(147, 51, 234, 0.08);
}

.quote-check--highlight {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0;
}

.quote-result-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.quote-result-eta {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent-hot);
}

.quote-breakdown {
  margin: 0.85rem 0 0;
  padding: 0.65rem 0 0 1rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.55;
  text-align: left;
  max-height: 10rem;
  overflow-y: auto;
}

.quote-block--panel .quote-label + select {
  margin-bottom: 0.85rem;
}

.quote-fieldset {
  margin: 0;
  padding: 0;
  border: none;
}

.quote-fieldset legend {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-bright);
  margin-bottom: 0.5rem;
}

.quote-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.quote-radio {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  align-items: start;
  column-gap: 0.75rem;
  row-gap: 0.15rem;
  padding: 0.85rem 1rem;
  min-height: 4.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s,
    box-shadow 0.2s,
    transform 0.2s var(--ease-out);
}

.quote-radio input {
  grid-row: 1 / span 2;
  margin-top: 0.35rem;
  accent-color: var(--accent);
}

.quote-radio-title {
  grid-column: 2;
  grid-row: 1;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.quote-radio-desc {
  grid-column: 2;
  grid-row: 2;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.quote-radio:hover {
  border-color: var(--border-bright);
  background: var(--accent-soft);
  transform: translateY(-2px);
}

.quote-radio:has(:checked) {
  border-color: var(--accent-bright);
  box-shadow: 0 0 24px var(--accent-glow);
}

.quote-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.quote-form select {
  width: 100%;
  padding: 0.65rem 0.8rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  font-family: inherit;
  font-size: 0.88rem;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.quote-form select:focus {
  outline: none;
  border-color: var(--accent-bright);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.quote-form select:hover:not(:disabled) {
  border-color: var(--border-bright);
}

.quote-fieldset-inline {
  margin-top: 0.25rem;
}

.quote-fieldset-inline legend {
  margin-bottom: 0.45rem;
}

.quote-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  cursor: pointer;
}

.quote-check:last-child {
  margin-bottom: 0;
}

.quote-check input {
  accent-color: var(--accent);
}

.quote-result {
  display: block;
  margin: 0.25rem 0 0;
  padding: 0;
  border-radius: var(--radius-md);
  border: 1px solid rgba(167, 139, 250, 0.28);
  background: #0a0710;
  font-size: 0.92rem;
  font-style: normal;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35), inset 0 0 48px rgba(109, 40, 217, 0.06);
}

.quote-result--terminal {
  text-align: left;
}

.quote-result-bar {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid var(--border);
}

.quote-result-dots {
  display: flex;
  gap: 5px;
}

.quote-result-dots i {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #64748b;
}

.quote-result-dots i:first-child {
  background: #ef4444;
}

.quote-result-dots i:nth-child(2) {
  background: #eab308;
}

.quote-result-dots i:nth-child(3) {
  background: var(--accent-hot);
}

.quote-result-title {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.quote-result .quote-result-header {
  padding: 0.75rem 1rem 0;
}

.quote-result .quote-result-value {
  padding: 0.35rem 1rem 0.85rem;
  font-family: var(--font-mono);
  color: #e9d5ff;
  text-shadow: 0 0 24px rgba(192, 132, 252, 0.35);
}

.quote-meter-block {
  padding: 0 1rem 1rem;
}

.quote-meter-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.35rem;
}

.quote-meter-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.quote-meter-pct {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--accent-bright);
}

.quote-meter {
  height: 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  overflow: hidden;
}

.quote-meter-fill {
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-deep), var(--accent-hot), var(--accent-bright));
  box-shadow: 0 0 16px var(--accent-glow);
  transition: width 0.35s var(--ease-out);
}

.quote-result .quote-breakdown {
  margin: 0;
  padding: 0.5rem 1rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  max-height: 9rem;
}

.quote-cap-note {
  margin: 0;
  padding: 0 1rem 0.85rem;
  font-size: 0.72rem;
  color: #fbbf24;
  line-height: 1.4;
}

.quote-result-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-bright);
  margin-bottom: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .quote-result {
    animation: resultGlow 4s ease-in-out infinite;
  }
}

@keyframes resultGlow {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(147, 51, 234, 0);
  }
  50% {
    box-shadow: 0 0 32px rgba(147, 51, 234, 0.14);
  }
}

.quote-disclaimer {
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.45;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--border);
}

/* Footer */
.site-footer {
  padding: 2.25rem 0 1.75rem;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.35rem;
  text-align: center;
}

@media (min-width: 600px) {
  .footer-inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
}

.footer-tagline {
  margin: 0.3rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.social-list a {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-pill);
  transition:
    background 0.2s var(--ease-out),
    transform var(--tap-time) var(--ease-spring);
}

.social-list a:hover {
  background: var(--accent-soft);
  text-decoration: none;
}

.social-list a:active {
  transform: scale(0.96);
}

.footer-copy {
  margin: 0;
  width: 100%;
  font-size: 0.75rem;
  color: var(--text-muted);
}

@media (min-width: 600px) {
  .footer-copy {
    width: 100%;
    flex-basis: 100%;
    margin-top: 0.35rem;
    text-align: center;
  }
}
