/* LuviQode — Outfit + IBM Plex Mono */
:root {
  --bg: #020203;
  --bg-elevated: #08080a;
  --surface: #0c0c0f;
  --surface-modal: #121216;
  --border: rgba(255, 255, 255, 0.055);
  --border-bright: rgba(255, 165, 40, 0.45);
  --text: #f4f4f5;
  --text-muted: #9b9ba3;
  --accent: #e89400;
  --accent-bright: #ffb300;
  --accent-deep: #a06400;
  --accent-glow: rgba(255, 165, 0, 0.32);
  --accent-soft: rgba(255, 165, 0, 0.11);
  --accent-hot: #ffcc1a;
  --accent-hot-glow: rgba(255, 153, 0, 0.35);
  --violet: #ffae00;
  --radius-xl: 1.125rem;
  --radius-lg: 0.875rem;
  --radius-md: 0.5rem;
  --radius-sm: 0.375rem;
  --radius-pill: 9999px;
  --font: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --max-width: 72rem;
  --prose-width: 44rem;
  --header-h: 4.75rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.2, 0.64, 1);
  --tap-time: 0.1s;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-mega-accent,
  .offer-card,
  .modal-panel.border-glow,
  .hero-float,
  .hero-pulse,
  .hero-bulb-filaments,
  .hero-bulb-wrap,
  .hero-stats li,
  .logo-accent,
  .tech-pulse,
  .faq-item,
  .quote-result,
  .quote-cap-dot,
  .process {
    animation: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .header-inner .nav {
    transition: none !important;
  }

  .nav-toggle-line {
    transition: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 120% 70% at 50% -35%, rgba(201, 162, 39, 0.09), transparent 52%),
    radial-gradient(ellipse 55% 40% at 105% 90%, rgba(60, 45, 20, 0.14), transparent 48%),
    radial-gradient(ellipse 45% 35% at -5% 55%, rgba(255, 255, 255, 0.02), transparent 45%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
}

main {
  position: relative;
  z-index: 1;
}

body.modal-open {
  overflow: hidden;
}

/* Stałe tło warstwowe (bez animacji „cyber”) */
.cyber-bg {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.ambient-mesh {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background:
    radial-gradient(circle at 14% 22%, rgba(201, 162, 39, 0.055) 0%, transparent 42%),
    radial-gradient(circle at 90% 6%, rgba(255, 255, 255, 0.035) 0%, transparent 38%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.018) 0%, transparent 40%, rgba(0, 0, 0, 0.35) 100%);
}

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: #0a0a0a;
  font-weight: 600;
  z-index: 300;
  border-radius: var(--radius-md);
  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-mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin: 0 0 1.1rem;
  padding: 0.4rem 1rem 0.42rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(212, 168, 83, 0.28);
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.12), rgba(255, 255, 255, 0.03));
  text-align: center;
  display: inline-block;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2) inset;
}

.container--center .section-kicker {
  margin-left: auto;
  margin-right: auto;
}

.tech-brackets::before {
  content: "[ ";
  opacity: 0.65;
}

.tech-brackets::after {
  content: " ]";
  opacity: 0.65;
}

.hero-pulse {
  color: var(--accent-bright);
  margin-right: 0.35rem;
  opacity: 0.85;
}

.tech-pulse {
  color: var(--accent-bright);
  margin-right: 0.35rem;
  opacity: 0.85;
}

/* ——— 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 1px 0 rgba(255, 255, 255, 0.04) inset,
      0 12px 40px rgba(0, 0, 0, 0.35);
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-h);
  height: auto;
  background: rgba(2, 2, 3, 0.88);
  backdrop-filter: blur(20px) saturate(1.35);
  -webkit-backdrop-filter: blur(20px) saturate(1.35);
  border-bottom: 1px solid var(--border);
}

.theme-studio .site-header {
  background: rgba(2, 2, 3, 0.78);
}

@media (min-width: 900px) {
  .theme-studio .site-header {
    background: rgba(2, 2, 3, 0.94);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(20px) saturate(1.35);
    -webkit-backdrop-filter: blur(20px) saturate(1.35);
  }

  .theme-studio .site-header .header-inner {
    margin: 0 auto;
    max-width: none;
    width: 100%;
    min-height: var(--header-h);
    padding: 0.45rem clamp(1.25rem, 4vw, 2.75rem) !important;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

.header-inner {
  min-height: var(--header-h);
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
  padding-block: 0.45rem;
  box-sizing: border-box;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  cursor: pointer;
  transition:
    background 0.2s var(--ease-out),
    border-color 0.2s var(--ease-out),
    box-shadow 0.2s var(--ease-out);
}

.nav-toggle:hover {
  background: var(--accent-soft);
  border-color: var(--accent-bright);
  box-shadow: 0 0 18px var(--accent-glow);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 3px;
}

.nav-toggle-box {
  position: relative;
  display: block;
  width: 1.35rem;
  height: 1rem;
}

.nav-toggle-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 1px;
  background: linear-gradient(90deg, var(--accent-bright), var(--accent-hot));
  transition:
    transform 0.3s var(--ease-out),
    opacity 0.25s ease;
}

.nav-toggle-line:nth-child(1) {
  top: 0;
}

.nav-toggle-line:nth-child(2) {
  top: 7px;
}

.nav-toggle-line:nth-child(3) {
  top: 14px;
}

.header-inner.nav-is-open .nav-toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header-inner.nav-is-open .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.header-inner.nav-is-open .nav-toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 719px) {
  .header-tools {
    margin-left: auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-inner {
    position: relative;
    z-index: 60;
  }

  .header-inner .nav {
    flex: 1 0 100%;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      max-height 0.38s var(--ease-out),
      opacity 0.28s ease,
      visibility 0.28s ease;
  }

  .header-inner.nav-is-open .nav {
    max-height: 24rem;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    overflow: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    padding: 0.65rem 0 0.35rem;
  }

  .nav-list a,
  .nav-quote {
    text-align: center;
    padding: 0.62rem 1rem;
    font-size: 0.9rem;
  }

  body.nav-menu-open {
    overflow: hidden;
    touch-action: none;
  }
}

@media (min-width: 720px) {
  .header-inner {
    padding-block: 0;
    justify-content: space-between;
  }

  .header-tools {
    margin-left: 0;
  }

  .nav-toggle {
    display: none !important;
  }

  .header-inner .nav {
    flex: initial;
    order: initial;
    width: auto;
    max-height: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    overflow: visible !important;
  }

  .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.8125rem;
  font-weight: 600;
  padding: 0.48rem 0.85rem;
  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: var(--accent);
  color: #0a0a0a;
  box-shadow: none;
}

.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);
  line-height: 0;
  transition: transform var(--tap-time) var(--ease-out);
}

/* Nagłówek: PNG + wordmark LuviQode */
.logo--header-lockup {
  gap: 0.5rem 0.7rem;
  align-items: center;
  padding: 0.15rem 0;
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}

.logo--header-lockup .logo-img {
  height: clamp(2.85rem, 5.2vw, 3.55rem);
  width: auto;
  max-width: min(14rem, 52vw);
  object-fit: contain;
  object-position: left center;
  display: block;
  flex-shrink: 0;
}

.logo-wordmark--header {
  isolation: isolate;
  contain: layout style;
  font-size: clamp(1rem, 2.2vw, 1.28rem);
  letter-spacing: -0.038em;
}

.logo--graphic {
  gap: 0;
}

.logo--lockup {
  gap: 0.55rem;
  align-items: center;
  flex-shrink: 0;
}

.logo-wordmark {
  display: inline-flex;
  align-items: baseline;
  font-size: clamp(0.95rem, 1.65vw, 1.2rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  white-space: nowrap;
}

.logo-wordmark-accent {
  background: linear-gradient(108deg, #ffbf14 0%, #ff9500 42%, #e87800 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.logo-wordmark-plain {
  color: var(--text);
}

.logo-img {
  height: 2.35rem;
  width: auto;
  max-width: min(11rem, 42vw);
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.logo--graphic .logo-img {
  height: 2.65rem;
  max-width: min(13.5rem, 58vw);
}

.logo--lockup .logo-img {
  height: 3.05rem;
  max-width: min(15rem, 46vw);
}

.logo--footer .logo-img {
  height: 1.85rem;
  max-width: 9rem;
}

.logo--footer.logo--graphic .logo-img {
  height: 2.1rem;
  max-width: 11rem;
}

.logo--footer.logo--lockup {
  gap: 0.45rem;
}

.logo--footer.logo--lockup .logo-img {
  height: 2.15rem;
  max-width: 10rem;
}

.logo--footer .logo-wordmark {
  font-size: clamp(0.82rem, 2vw, 0.98rem);
}

.logo-text {
  white-space: nowrap;
}

.logo:hover {
  color: var(--text);
  text-decoration: none;
}

.logo:active {
  transform: scale(0.97);
}

.logo-accent {
  color: var(--accent-bright);
  font-weight: 700;
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.2rem 0.45rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a,
.nav-quote {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.52rem 0.95rem;
  border-radius: var(--radius-md);
  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);
}

.nav-list a[aria-current="page"] {
  color: var(--text);
  background: rgba(201, 162, 39, 0.22);
  box-shadow: 0 0 18px rgba(201, 162, 39, 0.18);
  text-decoration: none;
  cursor: default;
}

.nav-list a[aria-current="page"]:hover {
  color: var(--text);
  background: rgba(201, 162, 39, 0.26);
  text-decoration: none;
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(2.75rem, 7vw, 5rem) 0 clamp(4rem, 11vw, 6.5rem);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.theme-studio .hero {
  display: flex;
  align-items: center;
  padding-top: clamp(2.5rem, 7vw, 4.5rem);
  padding-bottom: clamp(3.75rem, 11vw, 7rem);
  background:
    radial-gradient(ellipse 100% 60% at 50% -10%, rgba(255, 160, 40, 0.09), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0%, transparent 32%);
  border-bottom-color: rgba(255, 255, 255, 0.04);
}

@media (min-width: 980px) {
  .theme-studio .hero {
    min-height: min(82vh, 52rem);
    padding-top: clamp(3rem, 6vw, 4.75rem);
    padding-bottom: clamp(4.75rem, 12vw, 8.5rem);
  }
}

.theme-studio .hero::after {
  content: "";
  position: absolute;
  right: -18%;
  top: 5%;
  width: min(56vw, 32rem);
  height: min(56vw, 32rem);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.08) 0%, transparent 70%);
  filter: blur(2px);
  pointer-events: none;
  z-index: 0;
}

.hero-badge {
  order: -1;
  margin-bottom: 0.65rem;
}

.hero-badge .hero-tag {
  margin: 0;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 162, 39, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220, 188, 70, 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(240, 208, 100, 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(201, 162, 39, 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(228, 190, 75, 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.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1rem 0.48rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

.hero-mega {
  margin: 0 0 1.35rem;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.02;
  font-size: clamp(2.85rem, 7.5vw, 4.95rem);
  max-width: 100%;
  padding-inline: 0;
  box-sizing: border-box;
}

.hero-mega--with-bulb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.15em 0.32em;
  line-height: 1.05;
  font-size: clamp(3.2rem, 11vw, 7.1rem);
  letter-spacing: -0.045em;
  margin-bottom: 1.5rem;
}

.theme-studio .hero-main .hero-mega--with-bulb {
  justify-content: center;
}

.hero-mega-words {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
}

.hero-bulb-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  vertical-align: middle;
  margin-top: 0.06em;
  animation: heroBulbWrapDim 4.2s linear infinite;
}

.hero-bulb-svg {
  display: block;
  width: 0.52em;
  height: 0.92em;
  overflow: visible;
}

.hero-bulb-filaments {
  animation: heroBulbFlicker 4.2s linear infinite;
  filter: drop-shadow(0 0 4px #ff8800) drop-shadow(0 0 12px rgba(255, 130, 0, 0.8));
}

/* Hero bulb: short amber "flicker" keyframes, no white flashes */
@keyframes heroBulbFlicker {
  0%,
  4%,
  7%,
  11%,
  16%,
  22%,
  30%,
  38%,
  48%,
  58%,
  72%,
  88%,
  100% {
    opacity: 1;
    filter: drop-shadow(0 0 4px #ff8800) drop-shadow(0 0 14px rgba(255, 120, 0, 0.82));
  }
  5%,
  5.35% {
    opacity: 0.18;
    filter: drop-shadow(0 0 1px #663300);
  }
  5.5% {
    opacity: 0.95;
    filter: drop-shadow(0 0 5px #ff9100) drop-shadow(0 0 12px rgba(255, 130, 0, 0.75));
  }
  31%,
  31.25% {
    opacity: 0.12;
    filter: drop-shadow(0 0 1px #552200);
  }
  31.45%,
  31.65% {
    opacity: 0.55;
    filter: drop-shadow(0 0 3px #cc6600);
  }
  50%,
  50.12% {
    opacity: 0.08;
    filter: drop-shadow(0 0 0 #000);
  }
  50.28% {
    opacity: 1;
    filter: drop-shadow(0 0 4px #ff8800) drop-shadow(0 0 14px rgba(255, 120, 0, 0.82));
  }
  76%,
  76.2% {
    opacity: 0.35;
    filter: drop-shadow(0 0 2px #994400);
  }
  76.45% {
    opacity: 0.92;
    filter: drop-shadow(0 0 5px #ff9500) drop-shadow(0 0 12px rgba(255, 130, 0, 0.78));
  }
}

@keyframes heroBulbWrapDim {
  0%,
  4%,
  7%,
  11%,
  16%,
  22%,
  30%,
  38%,
  48%,
  58%,
  72%,
  88%,
  100% {
    opacity: 1;
  }
  5%,
  5.35% {
    opacity: 0.88;
  }
  31%,
  31.25% {
    opacity: 0.85;
  }
  50%,
  50.12% {
    opacity: 0.82;
  }
  76%,
  76.2% {
    opacity: 0.9;
  }
}

.hero-float,
.hero-float-delay {
  animation: none !important;
}

.hero-mega-line {
  display: block;
}

.hero-mega-type-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.14em;
  min-height: 0.92em;
  max-width: 100%;
}

.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(105deg, #ffcc1f 0%, #ff9a00 38%, #e87000 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: none;
  filter: none;
}

.hero-mega-words .hero-mega-accent {
  display: inline;
}

.hero-mega-line--plain {
  color: var(--text);
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: var(--text);
}

.hero-mega-words .hero-mega-line--plain {
  display: inline;
}

.hero-eyebrow {
  margin: 0 0 1.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-bright);
  max-width: 40rem;
  line-height: 1.65;
}

.hero-lead {
  margin: 0 0 2.5rem;
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 42rem;
  line-height: 1.78;
}

.hero-lead strong {
  color: var(--text);
  font-weight: 600;
}

.btn-portfolio {
  background: transparent;
  color: var(--text);
  border-color: var(--border-bright);
  box-shadow: none;
}

.btn-portfolio:hover {
  background: var(--accent-soft);
  border-color: var(--accent-bright);
  color: var(--text);
  box-shadow: none;
}

.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(201, 162, 39, 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(228, 190, 75, 0.45);
  box-shadow: 0 0 32px rgba(201, 162, 39, 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;
  width: 100%;
  max-width: min(22rem, 100%);
  margin-inline: auto;
  box-sizing: border-box;
}

.hero-actions--pro {
  max-width: 100%;
  gap: 0.75rem 0.85rem;
  margin-top: 0.35rem;
}

.theme-studio .hero-actions--pro .btn {
  min-height: 3rem;
  padding: 0.7rem 1.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  border-radius: var(--radius-pill);
}

.theme-studio .hero-actions--pro .btn-primary {
  background: linear-gradient(175deg, #ffb814 0%, #e88900 55%, #d47a00 100%);
  color: #1a0f00;
  border: 1px solid rgba(120, 70, 0, 0.35);
  box-shadow:
    0 1px 0 rgba(255, 220, 120, 0.35) inset,
    0 8px 24px rgba(255, 140, 0, 0.22);
}

.theme-studio .hero-actions--pro .btn-primary:hover {
  background: linear-gradient(175deg, #ffc82e 0%, #f09800 55%, #e08000 100%);
  color: #1a0f00;
  box-shadow:
    0 1px 0 rgba(255, 230, 150, 0.4) inset,
    0 10px 28px rgba(255, 150, 0, 0.28);
}

.theme-studio .hero-actions--pro .btn-portfolio {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.theme-studio .hero-actions--pro .btn-portfolio:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 180, 60, 0.35);
  color: var(--text);
}

.theme-studio .hero-actions--pro .btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.theme-studio .hero-actions--pro .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 160, 50, 0.32);
  color: var(--text);
}

@media (max-width: 520px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.68rem 1.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius-md);
  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: var(--accent);
  color: #0a0a0a;
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset;
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--accent-bright);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25) inset;
  color: #0a0a0a;
}

.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: flex-start;
  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(255, 255, 255, 0.018);
  border-block: 1px solid var(--border);
}

.section h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.65rem, 3.2vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.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.25rem;
  margin-top: 0.5rem;
  text-align: left;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.why-card {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  text-align: left;
  transition:
    border-color 0.3s,
    box-shadow 0.3s,
    transform 0.3s var(--ease-out);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03) inset;
}

@media (prefers-reduced-motion: no-preference) {
  .why-card:hover {
    transform: translateY(-4px);
    border-color: rgba(228, 190, 75, 0.4);
    box-shadow: 0 0 36px rgba(201, 162, 39, 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.5rem 1.15rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03) inset;
}

.stat-value-wrap {
  margin: 0 0 0.5rem;
}

.stat-value {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 2.5rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--accent-bright);
  filter: none;
  font-variant-numeric: tabular-nums;
}

@media (prefers-reduced-motion: no-preference) {
  .stat-value--counting {
    animation: statCountPulse 0.9s ease-in-out infinite alternate;
  }
}

@keyframes statCountPulse {
  from {
    opacity: 0.92;
  }
  to {
    opacity: 1;
  }
}

.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(228, 190, 75, 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(228, 190, 75, 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(14, 14, 14, 0.94);
  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(201, 162, 39, 0.18);
  color: var(--accent-bright);
  border: 1px solid rgba(220, 188, 70, 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(100, 80, 22, 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(201, 162, 39, 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: linear-gradient(165deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 48%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem 1.65rem;
  text-align: left;
  transition:
    transform 0.3s var(--ease-out),
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

@media (prefers-reduced-motion: no-preference) {
  .offer-card:hover {
    transform: translateY(-3px);
  }
}

.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;
  padding-left: 1.15rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
  display: block;
  text-align: left;
  max-width: none;
}

.offer-list li {
  margin-bottom: 0.4rem;
}

.offer-list li::marker {
  color: var(--accent-bright);
}

.process {
  background: linear-gradient(135deg, var(--accent-soft), rgba(240, 208, 100, 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(100, 80, 22, 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(100, 80, 22, 0.08);
  }
  50% {
    box-shadow: 0 0 44px rgba(201, 162, 39, 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:hover {
    transform: translateY(-1px);
  }
}

.faq-item[open] {
  border-color: var(--border-bright);
  box-shadow: 0 0 26px rgba(100, 80, 22, 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-actions {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.contact-cta .btn-primary {
  word-break: break-all;
}

.btn-discord {
  min-width: 12rem;
}

.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(220, 188, 70, 0.18),
    0 24px 64px rgba(0, 0, 0, 0.57),
    0 0 52px rgba(100, 80, 22, 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(228, 190, 75, 0.22),
      0 24px 64px rgba(0, 0, 0, 0.55),
      0 0 44px rgba(201, 162, 39, 0.2);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(240, 208, 100, 0.35),
      0 28px 72px rgba(0, 0, 0, 0.55),
      0 0 68px rgba(100, 80, 22, 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(220, 188, 70, 0.4);
  background: rgba(201, 162, 39, 0.1);
  color: var(--accent-bright);
}

.quote-cap-chip--www {
  border-color: rgba(240, 208, 100, 0.45);
  background: rgba(240, 208, 100, 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(201, 162, 39, 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(220, 188, 70, 0.28);
  background: #0c0c0e;
  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(100, 80, 22, 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: var(--accent-bright);
  text-shadow: none;
}

.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(201, 162, 39, 0);
  }
  50% {
    box-shadow: 0 0 32px rgba(201, 162, 39, 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: 3rem 0 2rem;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
}

.footer-inner {
  display: grid;
  gap: 1.75rem;
  text-align: left;
  align-items: start;
}

@media (min-width: 720px) {
  .footer-inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    align-items: start;
  }

  .footer-copy {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 0.5rem;
  }
}

@media (min-width: 960px) {
  .footer-inner {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) auto;
  }
}

.footer-tagline {
  margin: 0.45rem 0 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 22rem;
  line-height: 1.5;
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: flex-start;
}

.social-list a {
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.35rem 0.55rem;
  border-radius: var(--radius-sm);
  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);
}

.social-list--chips {
  gap: 0.5rem 0.65rem;
}

.theme-studio .social-list--chips a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.45rem 1.1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-pill);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset;
}

.theme-studio .social-list--chips a:hover {
  color: var(--text);
  border-color: rgba(255, 170, 50, 0.4);
  background: linear-gradient(165deg, rgba(255, 165, 0, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
  text-decoration: none;
  box-shadow: 0 0 20px rgba(255, 140, 0, 0.12);
}

.theme-studio .social-list--chips a[data-social="discord"]:hover {
  border-color: rgba(88, 101, 242, 0.55);
  box-shadow: 0 0 22px rgba(88, 101, 242, 0.18);
}

.footer-copy {
  margin: 0;
  width: 100%;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* Portfolio */
.section-portfolio h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.65rem, 3.2vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.portfolio-grid {
  display: grid;
  gap: 2rem;
  max-width: 40rem;
  width: 100%;
  margin: 0 auto;
  text-align: left;
  min-width: 0;
  box-sizing: border-box;
}

.portfolio-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  max-width: 100%;
  min-width: 0;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  transition:
    border-color 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out),
    transform 0.3s var(--ease-out);
}

@media (prefers-reduced-motion: no-preference) {
  .portfolio-card:hover {
    border-color: rgba(228, 190, 75, 0.4);
    box-shadow: 0 0 40px rgba(100, 80, 22, 0.16);
    transform: translateY(-3px);
  }
}

.portfolio-card-preview {
  display: block;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(145deg, rgba(14, 14, 14, 0.96), rgba(100, 80, 22, 0.1));
  border-bottom: 1px solid var(--border);
}

.portfolio-card-preview:hover {
  text-decoration: none;
  color: inherit;
}

.portfolio-card-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.85rem;
  background: rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  min-width: 0;
  flex-wrap: nowrap;
}

.portfolio-card-dots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.portfolio-card-dot {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: none;
}

.portfolio-card-dot--r {
  background: #ef4444;
}

.portfolio-card-dot--y {
  background: #eab308;
}

.portfolio-card-dot--m {
  background: var(--accent-hot);
}

.portfolio-card-url {
  flex: 1 1 0;
  min-width: 0;
  margin-left: 0.35rem;
  padding-left: 0.15rem;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: var(--accent-bright);
}

@media (max-width: 480px) {
  .portfolio-card-bar {
    flex-wrap: wrap;
    align-items: flex-start;
    row-gap: 0.4rem;
  }

  .portfolio-card-dots {
    padding-top: 0.15rem;
  }

  .portfolio-card-url {
    flex: 1 1 100%;
    margin-left: 0;
    padding-left: 0;
  }
}

.portfolio-card-viewport {
  display: block;
  min-height: 10rem;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.4), rgba(8, 8, 8, 0.78));
}

.portfolio-card-shot {
  display: block;
  width: 100%;
  height: auto;
  min-height: 10rem;
  max-height: 16rem;
  object-fit: cover;
  object-position: center top;
}

.portfolio-card-body {
  padding: 1.5rem 1.5rem 1.65rem;
}

.portfolio-card-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-hot);
  margin-bottom: 0.65rem;
}

.portfolio-card-title {
  margin: 0 0 0.85rem;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  overflow-wrap: anywhere;
  hyphens: auto;
}

.portfolio-card-desc {
  margin: 0 0 1.35rem;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.portfolio-card-cta {
  width: 100%;
  max-width: 16rem;
  box-sizing: border-box;
}

.portfolio-back {
  margin: 2.5rem auto 0;
  width: 100%;
  max-width: 22rem;
  box-sizing: border-box;
}

.portfolio-back .btn {
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .portfolio-card-cta {
    max-width: none;
  }
}

/* Layout upgrade: cleaner, more corporate composition */
@media (min-width: 980px) {
  .header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.85rem 1.15rem;
  }

  .header-inner .nav {
    justify-self: center;
  }

  .header-tools {
    justify-self: end;
  }
}

.hero-shell {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: clamp(1.5rem, 5vw, 3.75rem);
  padding-block: clamp(0.35rem, 2vw, 1rem);
  box-sizing: border-box;
}

.hero-inner--split {
  max-width: 72rem;
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

.theme-studio .hero-inner--split {
  max-width: none;
  gap: clamp(1.35rem, 3.2vw, 2.25rem);
  align-items: center;
}

.hero-main {
  border: 1px solid var(--border);
  background:
    linear-gradient(145deg, rgba(201, 162, 39, 0.08) 0%, transparent 44%),
    var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3.5vw, 2.75rem);
  position: relative;
  overflow: hidden;
}

.theme-studio .hero-main {
  border: none;
  border-radius: 0;
  padding: clamp(0.5rem, 2vw, 1.25rem) 0 clamp(1.25rem, 3vw, 2rem);
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.theme-studio .hero-main::before {
  display: none;
}

.hero-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-bright), var(--accent-deep));
  opacity: 0.85;
  pointer-events: none;
}

.hero-main > * {
  position: relative;
  z-index: 1;
}

.hero-aside {
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  padding: clamp(1.1rem, 2vw, 1.5rem);
  text-align: left;
}

.theme-studio .hero-aside {
  border-radius: var(--radius-xl);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.035) 0%, var(--bg-elevated) 48%);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.42);
}

.hero-aside-kicker {
  margin: 0 0 0.85rem;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.hero-aside-list {
  display: grid;
  gap: 0.65rem;
}

.hero-aside-item {
  padding: 0.85rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.2s ease;
}

.hero-aside-item:hover {
  border-color: rgba(212, 175, 98, 0.25);
}

.hero-aside-item h2 {
  margin: 0 0 0.35rem;
  font-size: 0.92rem;
}

.hero-aside-item p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

@media (min-width: 980px) {
  .hero-inner--split {
    grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
  }

  .hero-inner--split .hero-main {
    text-align: left;
  }

  .hero-inner--split .hero-main .hero-actions {
    justify-content: flex-start;
    margin-inline: 0;
    max-width: none;
  }

  .hero-inner--split .hero-main .hero-mega-type-row {
    justify-content: flex-start;
  }
}

.section {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
}

.section-intro {
  max-width: 46rem;
}

.offer-grid {
  gap: 1.3rem;
}

@media (min-width: 1100px) {
  .offer-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 64rem;
    margin-inline: auto;
  }
}

@media (min-width: 1200px) {
  .testimonials-scroll {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin: 0;
    padding: 0;
    overflow: visible;
  }

  .testimonial-card {
    flex: initial;
  }
}

.section-contact .container {
  max-width: 50rem;
}

.portfolio-layout {
  max-width: 68rem;
}

.section-intro--portfolio {
  max-width: 42rem;
}

.portfolio-grid {
  max-width: 56rem;
}
