:root {
  --bg: #0b0f14;
  --bg-deep: #070a0f;
  --bg-soft: #111827;
  --surface: #151c26;
  --surface-light: #1f2937;
  --surface-soft: rgb(21 28 38 / 86%);
  --text: #f8fafc;
  --text-muted: #cbd5e1;
  --text-soft: #94a3b8;
  --accent: #38bdf8;
  --accent-strong: #0ea5e9;
  --accent-dark: #0284c7;
  --accent-soft: rgb(56 189 248 / 12%);
  --accent-secondary: #a3e635;
  --accent-secondary-soft: rgb(163 230 53 / 10%);
  --border: rgb(148 163 184 / 18%);
  --border-strong: rgb(56 189 248 / 42%);
  --button-text-dark: #020617;
  --shadow: 0 24px 80px rgb(0 0 0 / 38%);
  --shadow-soft: 0 18px 60px rgb(0 0 0 / 28%);
  --shadow-premium: 0 28px 90px rgb(0 0 0 / 44%), inset 0 1px 0 rgb(255 255 255 / 8%);
  --glass: rgb(15 23 42 / 58%);
  --glass-strong: rgb(15 23 42 / 74%);
  --shine: linear-gradient(135deg, rgb(255 255 255 / 12%), transparent 34%);
  --radius-sm: 0.85rem;
  --radius-md: 1.25rem;
  --radius-lg: 2rem;
  --radius-xl: 2.6rem;
  --container: 1160px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 16% -8%, rgb(56 189 248 / 18%), transparent 32rem),
    radial-gradient(circle at 84% 6%, rgb(163 230 53 / 8%), transparent 30rem),
    radial-gradient(circle at 50% 48%, rgb(56 189 248 / 5%), transparent 44rem),
    linear-gradient(180deg, #080b10 0%, #0f172a 42%, #090d14 100%);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  min-width: 320px;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgb(248 250 252 / 2.2%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(248 250 252 / 2.2%) 1px, transparent 1px),
    radial-gradient(circle at 50% 0, rgb(255 255 255 / 5%), transparent 26rem);
  background-size: 56px 56px, 56px 56px, auto;
  mask-image: linear-gradient(to bottom, rgb(0 0 0 / 54%), transparent 76%);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

p,
ul,
ol,
h1,
h2,
h3,
h4 {
  margin-top: 0;
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentcolor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(100% - 2rem, 980px);
}

.section {
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
  scroll-margin-top: 6rem;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: var(--button-text-dark);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgb(7 10 15 / 78%), rgb(7 10 15 / 58%));
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  backdrop-filter: blur(22px) saturate(150%);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgb(255 255 255 / 8%);
  background: rgb(7 10 15 / 82%);
  box-shadow: 0 14px 50px rgb(0 0 0 / 22%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.75rem;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.3rem;
  height: 2.3rem;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 0.85rem;
  background:
    linear-gradient(135deg, rgb(255 255 255 / 14%), transparent 36%),
    linear-gradient(135deg, rgb(56 189 248 / 28%), rgb(163 230 53 / 10%));
  color: #e0f2fe;
  box-shadow: 0 12px 34px rgb(56 189 248 / 18%), inset 0 1px 0 rgb(255 255 255 / 16%);
}

.brand-name {
  font-size: 1.05rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav a {
  padding: 0.65rem 0.85rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 0.94rem;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.site-nav a:hover {
  border-color: rgb(255 255 255 / 8%);
  background: rgb(255 255 255 / 6%);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 8%);
}

.nav-toggle {
  display: none;
  width: 2.65rem;
  height: 2.65rem;
  padding: 0.65rem;
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  background: rgb(248 250 252 / 4%);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin-block: 4px;
  border-radius: 999px;
  background: currentcolor;
}

.hero {
  position: relative;
  min-height: min(800px, calc(100vh - 4.75rem));
  display: grid;
  align-items: center;
  padding-top: clamp(3rem, 5vw, 5rem);
  overflow: hidden;
}

.hero::before,
.hero::after {
  position: absolute;
  pointer-events: none;
  content: "";
  border-radius: 999px;
  filter: blur(12px);
}

.hero::before {
  inset: 8% auto auto 50%;
  width: min(44vw, 34rem);
  height: min(44vw, 34rem);
  background: radial-gradient(circle, rgb(56 189 248 / 14%), transparent 64%);
  transform: translateX(-10%);
}

.hero::after {
  right: 6%;
  bottom: 10%;
  width: 20rem;
  height: 20rem;
  background: radial-gradient(circle, rgb(163 230 53 / 8%), transparent 66%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.7fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.eyebrow span {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent-secondary);
  box-shadow: 0 0 18px rgb(163 230 53 / 45%);
}

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 780px;
  margin-bottom: 1.25rem;
  font-size: clamp(2.45rem, 5vw, 4.65rem);
  line-height: 1.02;
  text-wrap: balance;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.08;
  text-wrap: balance;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.16rem, 1.65vw, 1.42rem);
}

h4 {
  margin-bottom: 0.6rem;
  color: var(--text);
  font-size: 0.92rem;
}

.hero-lead {
  max-width: 700px;
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: clamp(1.05rem, 1.55vw, 1.24rem);
}

.hero-note,
.section-heading p,
.text-columns p,
.about-copy p,
.contact-copy p,
.contact-form p,
.highlight-box p,
.card p,
.process-list p {
  color: var(--text-muted);
}

.hero-note {
  max-width: 720px;
  margin-bottom: 1.6rem;
}

.hero-microcopy {
  max-width: 620px;
  margin: 0.85rem 0 1.2rem;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-pills li {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  padding: 0.35rem 0.7rem;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 999px;
  background: linear-gradient(180deg, rgb(255 255 255 / 7%), rgb(255 255 255 / 3%));
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 8%);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.82rem 1.2rem;
  overflow: hidden;
  border-radius: 1rem;
  font-weight: 750;
  letter-spacing: -0.01em;
  line-height: 1;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  border: 1px solid rgb(125 211 252 / 36%);
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  color: #03131f;
  box-shadow: 0 12px 30px rgb(14 165 233 / 22%);
}

.btn-primary:hover {
  border-color: rgb(186 230 253 / 48%);
  color: #03131f;
  box-shadow: 0 16px 38px rgb(14 165 233 / 28%);
}

.btn-secondary {
  border: 1px solid rgb(255 255 255 / 12%);
  background: rgb(255 255 255 / 5%);
  color: var(--text);
  box-shadow: none;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.btn-secondary:hover {
  border-color: rgb(56 189 248 / 28%);
  background: rgb(255 255 255 / 7%);
  box-shadow: 0 12px 30px rgb(0 0 0 / 18%);
}

.hero-panel,
.card,
.highlight-box,
.contact-form,
.contact-copy {
  border: 1px solid rgb(255 255 255 / 10%);
  background:
    linear-gradient(135deg, rgb(255 255 255 / 9%), transparent 34%),
    linear-gradient(180deg, rgb(21 28 38 / 76%), rgb(15 23 42 / 66%));
  box-shadow: var(--shadow-premium);
  -webkit-backdrop-filter: blur(22px) saturate(130%);
  backdrop-filter: blur(22px) saturate(130%);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(1.25rem, 3vw, 1.8rem);
  border-radius: var(--radius-xl);
  transform: translateZ(0);
}

.hero-panel::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, transparent, rgb(255 255 255 / 8%), transparent),
    radial-gradient(circle at 18% 0, rgb(255 255 255 / 12%), transparent 28%);
  opacity: 0.8;
}

.panel-glow {
  position: absolute;
  top: -30%;
  right: -35%;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: rgb(56 189 248 / 18%);
  filter: blur(18px);
}

.panel-kicker {
  position: relative;
  margin-bottom: 1rem;
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.capability-list {
  position: relative;
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.capability-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem;
  border: 1px solid rgb(255 255 255 / 9%);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgb(255 255 255 / 6%), rgb(2 6 23 / 26%));
  color: var(--text-muted);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 6%);
}

.icon {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  padding: 0.45rem;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 0.85rem;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 15%), transparent 42%),
    linear-gradient(135deg, rgb(56 189 248 / 22%), rgb(14 165 233 / 8%));
  color: #7dd3fc;
  box-shadow: 0 10px 28px rgb(56 189 248 / 12%), inset 0 1px 0 rgb(255 255 255 / 14%);
}

.icon.large {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.2rem;
  padding: 0.7rem;
}

.panel-note {
  position: relative;
  margin: 1rem 0 0;
  color: var(--text-soft);
  font-size: 0.94rem;
}

.panel-footer {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.panel-footer span,
.tags span {
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  padding: 0.35rem 0.65rem;
  border: 1px solid rgb(56 189 248 / 20%);
  border-radius: 999px;
  background: linear-gradient(180deg, rgb(56 189 248 / 12%), rgb(56 189 248 / 6%));
  color: #bae6fd;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 7%);
}

.text-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 4vw, 3rem);
  margin-top: 1.5rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.cards,
.portfolio-grid {
  display: grid;
  gap: 1rem;
}

.services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(1.1rem, 2.4vw, 1.55rem);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle at 18% 0, rgb(255 255 255 / 10%), transparent 30%);
  opacity: 0.7;
}

.card > * {
  position: relative;
}

.card:hover {
  border-color: rgb(56 189 248 / 26%);
  transform: translateY(-4px);
  box-shadow: 0 30px 90px rgb(0 0 0 / 38%), 0 0 50px rgb(56 189 248 / 8%), inset 0 1px 0 rgb(255 255 255 / 10%);
}

.service-label {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.28rem 0.55rem;
  border: 1px solid rgb(163 230 53 / 18%);
  border-radius: 999px;
  background: var(--accent-secondary-soft);
  color: #d9f99d;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-card ul {
  padding-left: 1.1rem;
  margin-bottom: 0;
  color: var(--text-soft);
}

.service-card li::marker {
  color: var(--accent);
}

.solutions {
  position: relative;
  overflow: hidden;
}

.solutions::before {
  position: absolute;
  top: 4rem;
  right: -8rem;
  width: 28rem;
  height: 28rem;
  pointer-events: none;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgb(56 189 248 / 10%), transparent 66%);
  filter: blur(10px);
}

.solutions .container {
  position: relative;
  z-index: 1;
}

.solutions-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  grid-auto-flow: dense;
  gap: 1rem;
  align-items: stretch;
}

.solution-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.solution-card::after {
  position: absolute;
  inset: auto 1.2rem 1.2rem auto;
  z-index: -1;
  width: 8rem;
  height: 8rem;
  pointer-events: none;
  content: "";
  border-radius: 50%;
  background: rgb(56 189 248 / 8%);
  filter: blur(28px);
}

.solution-featured {
  min-height: 100%;
  padding: clamp(1.15rem, 2.5vw, 1.55rem);
  border-color: rgb(56 189 248 / 30%);
  background:
    radial-gradient(circle at 86% 8%, rgb(56 189 248 / 15%), transparent 30%),
    radial-gradient(circle at 0 100%, rgb(163 230 53 / 8%), transparent 34%),
    linear-gradient(135deg, rgb(255 255 255 / 10%), transparent 34%),
    linear-gradient(180deg, rgb(21 28 38 / 82%), rgb(15 23 42 / 72%));
}

.solution-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.solution-status {
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  padding: 0.32rem 0.65rem;
  border: 1px solid rgb(56 189 248 / 20%);
  border-radius: 999px;
  background: rgb(56 189 248 / 8%);
  color: #bae6fd;
  font-size: 0.78rem;
  font-weight: 800;
}

.solution-featured h3 {
  font-size: clamp(1.22rem, 1.8vw, 1.5rem);
}

.solution-secondary {
  min-height: 100%;
  padding: clamp(1.15rem, 2.5vw, 1.55rem);
}

@media (min-width: 1120px) {
  .solution-media {
    grid-column: span 2;
  }

  .solution-media .solution-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1rem;
  }
}

@media (min-width: 760px) and (max-width: 1119px) {
  .solutions-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-media {
    grid-column: span 2;
  }
}

.solution-secondary h3 {
  margin-bottom: 0.35rem;
}

.solution-mini-visual {
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  display: grid;
  gap: 0.35rem;
  width: 4.2rem;
  padding: 0.55rem;
  border: 1px solid rgb(255 255 255 / 9%);
  border-radius: 1rem;
  background: rgb(2 6 23 / 26%);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 7%);
}

.solution-mini-visual span {
  display: block;
  height: 0.42rem;
  border-radius: 999px;
  background: rgb(56 189 248 / 58%);
}

.solution-mini-visual.offer span {
  background: rgb(56 189 248 / 62%);
}

.solution-mini-visual.offer span:nth-child(2) {
  background: rgb(163 230 53 / 56%);
}

.solution-mini-visual span:nth-child(2) {
  width: 72%;
  background: rgb(163 230 53 / 58%);
}

.solution-mini-visual span:nth-child(3) {
  width: 48%;
  background: rgb(148 163 184 / 42%);
}

.solution-mini-visual.media span {
  background: rgb(163 230 53 / 58%);
}

.solution-mini-visual.media span:nth-child(2) {
  background: rgb(56 189 248 / 58%);
}

.solution-mini-visual.catalog span {
  background: rgb(251 191 36 / 62%);
}

.solution-mini-visual.catalog span:nth-child(2) {
  background: rgb(56 189 248 / 54%);
}

.solution-mini-visual.language span {
  background: rgb(216 180 254 / 62%);
}

.solution-mini-visual.language span:nth-child(2) {
  background: rgb(163 230 53 / 54%);
}

.solution-content {
  display: contents;
}

.solution-list {
  display: grid;
  gap: 0.45rem;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.solution-list li {
  position: relative;
  padding-left: 1.25rem;
}

.solution-list li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  content: "";
  border-radius: 50%;
  background: var(--accent-secondary);
  box-shadow: 0 0 18px rgb(163 230 53 / 32%);
}

.solution-list.compact {
  gap: 0.45rem;
}

.solutions-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding: clamp(1.1rem, 3vw, 1.5rem);
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 86% 20%, rgb(56 189 248 / 12%), transparent 32%),
    linear-gradient(135deg, rgb(255 255 255 / 8%), transparent 34%),
    rgb(15 23 42 / 58%);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgb(255 255 255 / 7%);
}

.solutions-cta::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 6%), transparent);
  opacity: 0.7;
}

.solutions-cta > * {
  position: relative;
}

.solutions-cta h3 {
  margin-bottom: 0.35rem;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.solutions-cta p {
  max-width: 760px;
  color: var(--text-muted);
}

.solutions-cta .btn {
  flex: 0 0 auto;
}

.split-grid,
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(1.25rem, 4vw, 2rem);
  align-items: start;
}

.highlight-box {
  padding: clamp(1.2rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
}

.highlight-box strong {
  color: var(--text);
}

.models-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.model-card {
  position: relative;
  overflow: hidden;
}

.model-card.featured {
  border-color: rgb(56 189 248 / 38%);
  background:
    radial-gradient(circle at 80% 0, rgb(56 189 248 / 14%), transparent 30%),
    linear-gradient(135deg, rgb(255 255 255 / 10%), transparent 34%),
    linear-gradient(180deg, rgb(21 28 38 / 82%), rgb(15 23 42 / 72%));
}

.model-number {
  display: block;
  margin-bottom: 2.5rem;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 900;
}

.portfolio-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.portfolio-grid-compact {
  grid-template-columns: 1fr;
  max-width: 1040px;
}

.portfolio-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 1.5rem);
  padding: clamp(0.8rem, 2vw, 1rem);
  align-items: stretch;
}

.portfolio-grid-compact .portfolio-card:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.95fr);
}

.portfolio-grid-compact .portfolio-card:nth-child(even) .project-preview {
  order: 2;
}

.project-preview {
  position: relative;
  display: grid;
  place-items: end start;
  min-height: 240px;
  padding: 1rem;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: calc(var(--radius-lg) - 0.45rem);
  background:
    radial-gradient(circle at 74% 20%, rgb(56 189 248 / 24%), transparent 28%),
    linear-gradient(135deg, rgb(56 189 248 / 18%), rgb(15 23 42 / 42%)),
    repeating-linear-gradient(135deg, rgb(248 250 252 / 6%) 0 1px, transparent 1px 16px),
    #0f172a;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 10%);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.project-preview::before {
  position: absolute;
  inset: 1rem 1rem auto auto;
  width: 42%;
  height: 34%;
  content: "";
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 1.2rem;
  background: linear-gradient(180deg, rgb(255 255 255 / 10%), rgb(255 255 255 / 3%));
  box-shadow: 0 18px 50px rgb(0 0 0 / 22%);
}

.project-preview-image {
  place-items: center;
  min-height: clamp(270px, 34vw, 380px);
  padding: clamp(0.7rem, 1.8vw, 1rem);
  background:
    radial-gradient(circle at 72% 18%, rgb(56 189 248 / 18%), transparent 34%),
    linear-gradient(135deg, rgb(15 23 42), rgb(2 6 23));
}

.project-preview-image::before {
  display: none;
}

.project-preview-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 0.8rem);
  box-shadow: 0 24px 70px rgb(0 0 0 / 30%);
  transform: scale(1.01);
  transition: transform 220ms ease;
}

.portfolio-card:hover .project-preview {
  border-color: rgb(56 189 248 / 26%);
}

.portfolio-card:hover .project-preview-image img {
  transform: scale(1.035);
}

.project-preview.alt {
  background:
    radial-gradient(circle at 70% 25%, rgb(56 189 248 / 25%), transparent 32%),
    linear-gradient(135deg, rgb(30 41 59), rgb(2 6 23));
}

.project-preview.lime {
  background:
    radial-gradient(circle at 70% 25%, rgb(163 230 53 / 18%), transparent 32%),
    linear-gradient(135deg, rgb(15 23 42), rgb(2 6 23));
}

.project-preview.muted {
  background:
    linear-gradient(135deg, rgb(148 163 184 / 16%), rgb(15 23 42)),
    #0f172a;
}

.project-preview span {
  position: relative;
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-shadow: 0 12px 32px rgb(0 0 0 / 40%);
}

.project-content {
  padding: 0.55rem 0.55rem 0.55rem 0;
}

.project-type {
  margin-bottom: 0.55rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
}

.project-result {
  margin-top: 0.85rem;
  padding-left: 0.8rem;
  border-left: 2px solid var(--accent-secondary);
  color: var(--text);
  font-size: 0.92rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.process-list {
  position: relative;
  display: grid;
  gap: 0.9rem;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: process;
}

.process-list::before {
  position: absolute;
  top: 1.4rem;
  bottom: 1.4rem;
  left: 2.3rem;
  width: 1px;
  content: "";
  background: linear-gradient(180deg, transparent, rgb(56 189 248 / 35%), rgb(163 230 53 / 20%), transparent);
}

.process-list li {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgb(255 255 255 / 9%);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgb(255 255 255 / 7%), transparent 32%),
    rgb(15 23 42 / 54%);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgb(255 255 255 / 7%);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.process-list span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgb(56 189 248 / 30%);
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 15%), transparent 45%),
    var(--accent-soft);
  color: var(--accent);
  font-weight: 900;
  box-shadow: 0 10px 34px rgb(56 189 248 / 14%), inset 0 1px 0 rgb(255 255 255 / 15%);
}

.process-list h3 {
  margin-bottom: 0.35rem;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.about-copy {
  font-size: 1.04rem;
}

.contact-copy,
.contact-form {
  border-radius: var(--radius-xl);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.contact-copy {
  position: sticky;
  top: 6rem;
}

.contact-copy h2 {
  max-width: 720px;
}

.contact-promise {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.contact-promise div {
  padding: 0.95rem;
  border: 1px solid rgb(255 255 255 / 9%);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgb(255 255 255 / 6%), rgb(2 6 23 / 24%));
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 6%);
}

.contact-promise strong,
.contact-promise span {
  display: block;
}

.contact-promise strong {
  margin-bottom: 0.2rem;
  color: var(--text);
}

.contact-promise span {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.direct-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 1.5rem;
}

.contact-link {
  display: inline-flex;
  color: var(--text-muted);
  font-weight: 700;
}

.form-status {
  margin-bottom: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgb(163 230 53 / 30%);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgb(163 230 53 / 13%), rgb(163 230 53 / 7%));
  color: #d9f99d;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 8%);
}

.form-status.is-success {
  position: sticky;
  top: 5.5rem;
  z-index: 5;
  border-color: rgb(163 230 53 / 48%);
  background:
    radial-gradient(circle at 12% 0, rgb(163 230 53 / 22%), transparent 34%),
    linear-gradient(180deg, rgb(22 101 52 / 86%), rgb(20 83 45 / 78%));
  color: #f0fdf4;
  box-shadow: 0 18px 50px rgb(0 0 0 / 28%), 0 0 0 4px rgb(163 230 53 / 8%), inset 0 1px 0 rgb(255 255 255 / 12%);
}

.form-status.is-error {
  border-color: rgb(248 113 113 / 38%);
  background: rgb(248 113 113 / 10%);
  color: #fecaca;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.field {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field span {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.field strong {
  color: var(--accent-secondary);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 1rem;
  background: linear-gradient(180deg, rgb(255 255 255 / 5%), rgb(2 6 23 / 34%));
  color: var(--text);
  font: inherit;
  min-height: 3.1rem;
  padding: 0.82rem 0.95rem;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 6%);
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

select {
  color-scheme: dark;
  appearance: none;
  padding-right: 2.75rem;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--text-muted) 50%),
    linear-gradient(135deg, var(--text-muted) 50%, transparent 50%),
    linear-gradient(180deg, rgb(255 255 255 / 5%), rgb(2 6 23 / 34%));
  background-position:
    calc(100% - 1.18rem) 50%,
    calc(100% - 0.86rem) 50%,
    0 0;
  background-size:
    0.34rem 0.34rem,
    0.34rem 0.34rem,
    100% 100%;
  background-repeat: no-repeat;
}

select option {
  background: #0f172a;
  color: var(--text);
}

select option:checked,
select option:hover {
  background: #1e3a5f;
  color: var(--text);
}

textarea {
  min-height: 9.5rem;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgb(148 163 184 / 72%);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgb(56 189 248 / 48%);
  background: linear-gradient(180deg, rgb(255 255 255 / 7%), rgb(2 6 23 / 42%));
  box-shadow: 0 0 0 4px rgb(56 189 248 / 10%), 0 14px 34px rgb(0 0 0 / 18%), inset 0 1px 0 rgb(255 255 255 / 8%);
  outline: none;
}

.field.has-error input,
.field.has-error textarea,
.field.has-error select {
  border-color: rgb(248 113 113 / 70%);
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.35rem;
}

.form-footer .btn {
  flex: 0 0 auto;
  min-height: 3.15rem;
  padding-inline: 1.25rem;
  border-radius: 0.95rem;
  font-size: 0.94rem;
}

.form-footer p {
  margin-bottom: 0;
  font-size: 0.88rem;
}

.site-footer {
  padding-block: 2rem;
  border-top: 1px solid var(--border);
  color: var(--text-soft);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-inner p {
  margin-bottom: 0;
}

.footer-inner a {
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem 1rem;
}

.form-footer a,
.legal-content a {
  color: #bae6fd;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgb(56 189 248 / 35%);
  text-underline-offset: 0.18em;
}

.legal-page {
  padding-top: clamp(3rem, 6vw, 5rem);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: start;
}

.legal-toc,
.legal-content {
  border: 1px solid rgb(255 255 255 / 10%);
  background:
    linear-gradient(135deg, rgb(255 255 255 / 9%), transparent 34%),
    linear-gradient(180deg, rgb(21 28 38 / 76%), rgb(15 23 42 / 66%));
  box-shadow: var(--shadow-premium);
  -webkit-backdrop-filter: blur(22px) saturate(130%);
  backdrop-filter: blur(22px) saturate(130%);
}

.legal-toc {
  position: sticky;
  top: 6rem;
  padding: 1.2rem;
  border-radius: var(--radius-lg);
}

.legal-toc nav {
  display: grid;
  gap: 0.35rem;
}

.legal-toc a {
  padding: 0.55rem 0.7rem;
  border-radius: 0.8rem;
  color: var(--text-muted);
  font-weight: 700;
}

.legal-toc a:hover {
  background: rgb(255 255 255 / 6%);
  color: var(--text);
}

.legal-content {
  padding: clamp(1.35rem, 4vw, 2.6rem);
  border-radius: var(--radius-xl);
}

.legal-content h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.legal-content h2 {
  margin-top: 2.2rem;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  letter-spacing: -0.035em;
}

.legal-content p,
.legal-content li,
.legal-lead {
  color: var(--text-muted);
}

.legal-content ul {
  padding-left: 1.25rem;
}

.legal-content li::marker {
  color: var(--accent);
}

.legal-notice {
  margin: 1.5rem 0 2rem;
  padding: 1rem;
  border: 1px solid rgb(163 230 53 / 24%);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgb(163 230 53 / 10%), rgb(163 230 53 / 5%));
  color: var(--text-muted);
}

.legal-notice strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #d9f99d;
}

@media (max-width: 1080px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-card,
  .portfolio-grid-compact .portfolio-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .portfolio-grid-compact .portfolio-card:nth-child(even) .project-preview {
    order: 0;
  }

  .project-preview {
    min-height: 190px;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    display: grid;
    gap: 0.25rem;
    padding: 0.75rem;
    border: 1px solid rgb(255 255 255 / 10%);
    border-radius: var(--radius-md);
    background: rgb(7 10 15 / 86%);
    box-shadow: var(--shadow-premium);
    -webkit-backdrop-filter: blur(22px) saturate(150%);
    backdrop-filter: blur(22px) saturate(150%);
    transform-origin: top;
    transform: scaleY(0.95);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
  }

  .site-nav.is-open {
    transform: scaleY(1);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    border-radius: 0.7rem;
  }

  .hero-grid,
  .solutions-layout,
  .solution-media,
  .split-grid,
  .about-grid,
  .contact-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .solution-content {
    display: contents;
  }

  .solutions-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-copy,
  .legal-toc {
    position: static;
  }

  .hero {
    min-height: auto;
  }

  .text-columns,
  .models-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .container,
  .narrow {
    width: min(100% - 1.25rem, var(--container));
  }

  .section {
    padding-block: 3.75rem;
  }

  .header-inner {
    min-height: 4.25rem;
  }

  h1 {
    font-size: clamp(2.15rem, 10.5vw, 3.35rem);
  }

  h2 {
    font-size: clamp(1.65rem, 8vw, 2.35rem);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .footer-inner,
  .footer-links,
  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .btn {
    width: 100%;
  }

  .process-list::before {
    display: none;
  }

  .process-list li {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Audio landing */
.audio-hero .hero-panel {
  border-color: rgb(163 230 53 / 20%);
}

.promo-strip {
  max-width: 720px;
  margin: 0 0 1.1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgb(163 230 53 / 26%);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 0 0, rgb(163 230 53 / 14%), transparent 36%),
    linear-gradient(180deg, rgb(163 230 53 / 10%), rgb(56 189 248 / 6%));
  color: #ecfccb;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 8%);
}

.promo-strip strong {
  color: var(--text);
  letter-spacing: 0.04em;
}

.audio-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0;
  margin: 1.6rem 0 0;
  list-style: none;
}

.audio-chip-list li {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.38rem 0.72rem;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 999px;
  background: linear-gradient(180deg, rgb(255 255 255 / 7%), rgb(255 255 255 / 3%));
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 750;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 7%);
}

.audio-services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.audio-list-card {
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.audio-two-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.25rem;
}

.audio-discount-box {
  max-width: 980px;
  margin-inline: auto;
  border-color: rgb(163 230 53 / 24%);
  background:
    radial-gradient(circle at 82% 8%, rgb(163 230 53 / 16%), transparent 32%),
    radial-gradient(circle at 0 100%, rgb(56 189 248 / 12%), transparent 34%),
    linear-gradient(135deg, rgb(255 255 255 / 10%), transparent 34%),
    linear-gradient(180deg, rgb(21 28 38 / 82%), rgb(15 23 42 / 72%));
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details.card {
  padding: 0;
}

.faq-list summary {
  position: relative;
  padding: 1.1rem 3rem 1.1rem 1.25rem;
  color: var(--text);
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  content: "+";
  color: var(--accent);
  font-size: 1.35rem;
  font-weight: 900;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  padding: 0 1.25rem 1.2rem;
  color: var(--text-muted);
}

@media (max-width: 1080px) {
  .audio-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .audio-two-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .audio-services-grid {
    grid-template-columns: 1fr;
  }
}

/* Audio landing rhythm */
.audio-hero {
  background:
    radial-gradient(circle at 18% 12%, rgb(56 189 248 / 16%), transparent 28rem),
    radial-gradient(circle at 72% 18%, rgb(163 230 53 / 10%), transparent 24rem),
    linear-gradient(180deg, rgb(2 6 23 / 0%), rgb(2 6 23 / 18%));
}

.audio-hero::before {
  inset: 4% auto auto 44%;
  width: min(50vw, 40rem);
  height: min(50vw, 40rem);
  background:
    repeating-radial-gradient(circle, rgb(56 189 248 / 18%) 0 1px, transparent 1px 18px),
    radial-gradient(circle, rgb(56 189 248 / 12%), transparent 66%);
  opacity: 0.72;
}

.audio-hero::after {
  right: 4%;
  bottom: 6%;
  width: 24rem;
  height: 24rem;
  background:
    repeating-radial-gradient(circle, rgb(163 230 53 / 12%) 0 1px, transparent 1px 22px),
    radial-gradient(circle, rgb(163 230 53 / 9%), transparent 66%);
}

.audio-hero .hero-content {
  position: relative;
}

.audio-hero .hero-content::before {
  position: absolute;
  top: -2.2rem;
  left: -1.3rem;
  width: min(42vw, 22rem);
  height: min(42vw, 22rem);
  pointer-events: none;
  content: "";
  border: 1px solid rgb(56 189 248 / 10%);
  border-radius: 50%;
  background: repeating-radial-gradient(circle, transparent 0 1.35rem, rgb(255 255 255 / 4%) 1.38rem 1.45rem);
  opacity: 0.42;
  transform: translateZ(0);
}

.audio-cta-deck {
  position: relative;
  max-width: 820px;
  margin-top: 1.2rem;
  padding: 1.05rem;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 9%);
  border-radius: 1.65rem;
  background:
    linear-gradient(135deg, rgb(255 255 255 / 8%), transparent 34%),
    linear-gradient(180deg, rgb(15 23 42 / 70%), rgb(2 6 23 / 38%));
  box-shadow: 0 22px 70px rgb(0 0 0 / 24%), inset 0 1px 0 rgb(255 255 255 / 8%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  backdrop-filter: blur(18px) saturate(130%);
}

.audio-cta-deck::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgb(56 189 248 / 13%) 0 1px, transparent 1px 5.6rem),
    linear-gradient(0deg, rgb(255 255 255 / 4%) 0 1px, transparent 1px 3.2rem);
  mask-image: linear-gradient(90deg, rgb(0 0 0 / 78%), transparent 86%);
}

.audio-cta-deck > * {
  position: relative;
}

.audio-waveform {
  display: flex;
  align-items: center;
  gap: 0.38rem;
  height: 2rem;
  margin: -0.15rem 0 0.75rem;
  color: var(--accent);
}

.audio-waveform span {
  display: block;
  width: 0.34rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent-secondary), var(--accent));
  box-shadow: 0 0 22px rgb(56 189 248 / 28%);
}

.audio-waveform span:nth-child(1) { height: 0.55rem; opacity: 0.45; }
.audio-waveform span:nth-child(2) { height: 1.25rem; opacity: 0.72; }
.audio-waveform span:nth-child(3) { height: 0.85rem; opacity: 0.55; }
.audio-waveform span:nth-child(4) { height: 1.8rem; opacity: 0.95; }
.audio-waveform span:nth-child(5) { height: 1.05rem; opacity: 0.68; }
.audio-waveform span:nth-child(6) { height: 1.55rem; opacity: 0.82; }
.audio-waveform span:nth-child(7) { height: 0.75rem; opacity: 0.52; }
.audio-waveform span:nth-child(8) { height: 1.25rem; opacity: 0.7; }

.audio-actions {
  gap: clamp(0.75rem, 2vw, 1rem);
}

.audio-actions .btn {
  min-height: 4.1rem;
  padding: 1.05rem 1.75rem;
  border-radius: 1.45rem;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  font-weight: 900;
  letter-spacing: -0.035em;
}

.audio-btn-primary {
  background:
    radial-gradient(circle at 24% 0, rgb(255 255 255 / 32%), transparent 34%),
    linear-gradient(135deg, #7dd3fc, #0ea5e9 56%, #0284c7);
  box-shadow: 0 18px 48px rgb(14 165 233 / 32%), inset 0 1px 0 rgb(255 255 255 / 22%);
}

.audio-btn-secondary {
  border-color: rgb(255 255 255 / 15%);
  background:
    radial-gradient(circle at 20% 0, rgb(255 255 255 / 11%), transparent 34%),
    linear-gradient(180deg, rgb(30 41 59 / 78%), rgb(15 23 42 / 78%));
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 10%);
}

.audio-pills {
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.audio-pills li {
  min-height: 2.45rem;
  padding: 0.48rem 0.9rem;
  border-color: rgb(255 255 255 / 13%);
  background:
    linear-gradient(135deg, rgb(255 255 255 / 8%), transparent 38%),
    linear-gradient(180deg, rgb(30 41 59 / 82%), rgb(15 23 42 / 66%));
  color: #dbeafe;
  font-size: clamp(0.86rem, 1.1vw, 0.98rem);
  font-weight: 850;
  box-shadow: 0 10px 28px rgb(0 0 0 / 18%), inset 0 1px 0 rgb(255 255 255 / 9%);
}

.audio-pills li span {
  width: 0.55rem;
  height: 0.55rem;
  margin-right: 0.5rem;
  border-radius: 50%;
  background: var(--accent-secondary);
  box-shadow: 0 0 16px rgb(163 230 53 / 45%);
}


.audio-hero .hero-panel {
  background:
    radial-gradient(circle at 72% 2%, rgb(163 230 53 / 13%), transparent 30%),
    radial-gradient(circle at 0 100%, rgb(56 189 248 / 14%), transparent 34%),
    linear-gradient(135deg, rgb(255 255 255 / 10%), transparent 34%),
    linear-gradient(180deg, rgb(21 28 38 / 80%), rgb(2 6 23 / 70%));
}

.audio-hero .capability-list li {
  border-color: rgb(255 255 255 / 10%);
  background:
    linear-gradient(90deg, rgb(56 189 248 / 11%), transparent 44%),
    linear-gradient(180deg, rgb(255 255 255 / 6%), rgb(2 6 23 / 28%));
}

@media (max-width: 620px) {
  .audio-cta-deck {
    padding: 0.85rem;
    border-radius: 1.25rem;
  }

  .audio-actions .btn {
    min-height: 3.55rem;
    border-radius: 1.1rem;
  }

  .audio-pills li {
    width: 100%;
    justify-content: center;
  }

  .audio-waveform {
    justify-content: center;
  }
}

/* Pro audio visual layer */
.audio-hero {
  isolation: isolate;
}

.audio-hero .hero-grid::before {
  position: absolute;
  inset: -3rem -2rem auto auto;
  z-index: -1;
  width: min(46vw, 34rem);
  height: min(46vw, 34rem);
  pointer-events: none;
  content: "";
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 29%, rgb(56 189 248 / 10%) 29.4% 30%, transparent 30.5% 43%, rgb(163 230 53 / 9%) 43.4% 44%, transparent 44.5% 58%, rgb(56 189 248 / 7%) 58.4% 59%, transparent 59.5%),
    radial-gradient(circle at 50% 50%, rgb(15 23 42 / 32%), transparent 62%);
  opacity: 0.62;
  filter: drop-shadow(0 0 42px rgb(56 189 248 / 8%));
}

.audio-hero .hero-grid::after {
  position: absolute;
  right: 1rem;
  bottom: -1.4rem;
  z-index: -1;
  width: min(44vw, 32rem);
  height: 10rem;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, transparent, rgb(56 189 248 / 14%), transparent),
    repeating-linear-gradient(90deg, rgb(255 255 255 / 0%) 0 0.9rem, rgb(255 255 255 / 6%) 0.92rem 0.98rem, transparent 1rem 1.85rem);
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
  opacity: 0.5;
}

.audio-signal-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, auto));
  gap: 0.45rem;
  max-width: 720px;
  margin: 0 0 1rem;
}

.audio-signal-row span {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.15rem;
  padding: 0.42rem 0.65rem;
  overflow: hidden;
  border: 1px solid rgb(56 189 248 / 16%);
  border-radius: 0.82rem;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 7%), rgb(2 6 23 / 30%));
  color: #cbd5e1;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 7%);
}

.audio-signal-row span::before {
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.45rem;
  content: "";
  border-radius: 50%;
  background: var(--accent-secondary);
  box-shadow: 0 0 14px rgb(163 230 53 / 55%);
}

.audio-console {
  position: relative;
  z-index: 1;
  margin: -0.2rem 0 1.1rem;
  padding: 0.85rem;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 1.25rem;
  background:
    linear-gradient(135deg, rgb(255 255 255 / 8%), transparent 34%),
    linear-gradient(180deg, rgb(15 23 42 / 78%), rgb(2 6 23 / 58%));
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 9%), 0 16px 45px rgb(0 0 0 / 20%);
}

.audio-console::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 16% 0, rgb(163 230 53 / 14%), transparent 30%),
    linear-gradient(90deg, transparent, rgb(255 255 255 / 6%), transparent);
  opacity: 0.8;
}

.audio-console > * {
  position: relative;
}

.audio-console-top {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.audio-console-top span {
  display: inline-flex;
  align-items: center;
  min-height: 1.55rem;
  padding: 0.25rem 0.5rem;
  border: 1px solid rgb(56 189 248 / 18%);
  border-radius: 999px;
  background: rgb(56 189 248 / 8%);
  color: #bae6fd;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.audio-spectrum {
  display: flex;
  align-items: end;
  gap: 0.28rem;
  height: 4.4rem;
  padding: 0.55rem;
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 0.9rem;
  background:
    linear-gradient(180deg, rgb(2 6 23 / 18%), rgb(2 6 23 / 42%)),
    repeating-linear-gradient(0deg, rgb(255 255 255 / 4%) 0 1px, transparent 1px 1.1rem);
}

.audio-spectrum span {
  flex: 1;
  min-width: 0.22rem;
  border-radius: 999px 999px 0.35rem 0.35rem;
  background: linear-gradient(180deg, #d9f99d 0%, #38bdf8 62%, #0ea5e9 100%);
  box-shadow: 0 0 18px rgb(56 189 248 / 24%);
}

.audio-spectrum span:nth-child(1) { height: 22%; opacity: 0.45; }
.audio-spectrum span:nth-child(2) { height: 46%; opacity: 0.68; }
.audio-spectrum span:nth-child(3) { height: 72%; opacity: 0.88; }
.audio-spectrum span:nth-child(4) { height: 38%; opacity: 0.62; }
.audio-spectrum span:nth-child(5) { height: 84%; opacity: 0.94; }
.audio-spectrum span:nth-child(6) { height: 56%; opacity: 0.74; }
.audio-spectrum span:nth-child(7) { height: 92%; opacity: 1; }
.audio-spectrum span:nth-child(8) { height: 64%; opacity: 0.82; }
.audio-spectrum span:nth-child(9) { height: 42%; opacity: 0.64; }
.audio-spectrum span:nth-child(10) { height: 78%; opacity: 0.9; }
.audio-spectrum span:nth-child(11) { height: 34%; opacity: 0.58; }
.audio-spectrum span:nth-child(12) { height: 52%; opacity: 0.72; }

.audio-knobs {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.audio-knobs span {
  position: relative;
  display: block;
  width: 3.2rem;
  height: 3.2rem;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgb(15 23 42) 0 35%, transparent 36%),
    conic-gradient(from 42deg, rgb(56 189 248 / 22%), rgb(163 230 53 / 60%), rgb(56 189 248 / 18%), rgb(255 255 255 / 8%), rgb(56 189 248 / 22%));
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 14%), 0 12px 30px rgb(0 0 0 / 22%);
}

.audio-knobs span::after {
  position: absolute;
  top: 0.38rem;
  left: 50%;
  width: 0.16rem;
  height: 0.75rem;
  content: "";
  border-radius: 999px;
  background: #e0f2fe;
  transform: translateX(-50%) rotate(28deg);
  transform-origin: 50% 1.2rem;
  box-shadow: 0 0 12px rgb(224 242 254 / 38%);
}

.audio-knobs span:nth-child(2)::after {
  transform: translateX(-50%) rotate(-36deg);
}

.audio-knobs span:nth-child(3)::after {
  transform: translateX(-50%) rotate(64deg);
}

@media (max-width: 860px) {
  .audio-signal-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audio-hero .hero-grid::before,
  .audio-hero .hero-grid::after {
    opacity: 0.35;
  }
}

@media (max-width: 620px) {
  .audio-signal-row {
    grid-template-columns: 1fr;
  }

  .audio-console-top {
    flex-wrap: wrap;
  }

  .audio-knobs span {
    width: 2.7rem;
    height: 2.7rem;
  }
}

/* Audio landing spacing refinement */
.audio-page main > .section {
  position: relative;
  padding-block: clamp(5.25rem, 8.8vw, 8.4rem);
}

.audio-page main > .section + .section {
  margin-top: 0;
}

.audio-page main > .section:not(.hero)::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(100% - 2rem, var(--container));
  height: 1px;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, transparent, rgb(56 189 248 / 16%), rgb(163 230 53 / 10%), transparent);
  transform: translateX(-50%);
}

.audio-page .hero {
  padding-bottom: clamp(5rem, 8vw, 7rem);
}

.audio-page .section-heading {
  margin-bottom: clamp(2.4rem, 5.2vw, 3.8rem);
}

.audio-page .text-columns {
  margin-top: clamp(1.6rem, 3vw, 2.25rem);
  row-gap: 1.25rem;
}

.audio-page .cards,
.audio-page .portfolio-grid,
.audio-page .faq-list,
.audio-page .process-list {
  gap: clamp(1rem, 2vw, 1.35rem);
}

.audio-page .audio-services-grid {
  gap: clamp(1rem, 2.2vw, 1.45rem);
}

.audio-page .audio-chip-list {
  margin-top: clamp(1.9rem, 4vw, 2.7rem);
  row-gap: 0.7rem;
}

.audio-page .split-grid,
.audio-page .contact-layout {
  gap: clamp(2rem, 5vw, 4.5rem);
}

.audio-page .highlight-box,
.audio-page .audio-list-card,
.audio-page .audio-discount-box {
  padding: clamp(1.45rem, 3.4vw, 2.35rem);
}

.audio-page .audio-discount {
  padding-block: clamp(4.75rem, 7.5vw, 7rem);
}

.audio-page .audio-discount + .section,
.audio-page #faq,
.audio-page #kontakt {
  padding-top: clamp(5.5rem, 8.5vw, 8rem);
}

.audio-page .contact {
  padding-bottom: clamp(5.75rem, 9vw, 8.5rem);
}

.audio-page .contact-promise {
  gap: 1rem;
  margin-top: clamp(1.6rem, 3vw, 2.1rem);
}

.audio-page .form-grid {
  gap: 1rem;
}

.audio-page .field {
  margin-bottom: 1.05rem;
}

@media (max-width: 1080px) {
  .audio-page main > .section {
    padding-block: clamp(4.75rem, 8vw, 7rem);
  }

  .audio-page .hero-grid {
    gap: clamp(2.4rem, 6vw, 4rem);
  }
}

@media (max-width: 860px) {
  .audio-page main > .section {
    padding-block: clamp(4.25rem, 9vw, 6.25rem);
  }

  .audio-page .hero-grid,
  .audio-page .split-grid,
  .audio-page .contact-layout {
    gap: clamp(2rem, 7vw, 3.2rem);
  }

  .audio-page .section-heading {
    margin-bottom: clamp(2rem, 6vw, 3rem);
  }
}

@media (max-width: 620px) {
  .audio-page main > .section {
    padding-block: 4.2rem;
  }

  .audio-page .hero {
    padding-top: 3.2rem;
    padding-bottom: 4.6rem;
  }

  .audio-page .audio-cta-deck,
  .audio-page .hero-panel,
  .audio-page .contact-copy,
  .audio-page .contact-form {
    margin-top: 0.2rem;
  }

  .audio-page .cards,
  .audio-page .audio-services-grid,
  .audio-page .faq-list,
  .audio-page .process-list {
    gap: 1rem;
  }
}

/* Audio hero repair / final visual pass
   Przywraca klimat pro audio w hero bez usuniętego wcześniej elementu .audio-panel-meter. */
.audio-page .audio-hero {
  position: relative;
  isolation: isolate;
  min-height: min(860px, calc(100vh - 4.75rem));
  background:
    radial-gradient(circle at 18% 10%, rgb(56 189 248 / 18%), transparent 28rem),
    radial-gradient(circle at 72% 12%, rgb(163 230 53 / 11%), transparent 26rem),
    radial-gradient(circle at 52% 68%, rgb(56 189 248 / 7%), transparent 38rem),
    linear-gradient(180deg, #070a0f 0%, #0b1220 58%, #090d14 100%);
}

.audio-page .audio-hero .hero-grid {
  position: relative;
  z-index: 1;
}

.audio-page .audio-hero .hero-grid::before {
  position: absolute;
  inset: -4rem -2rem auto auto;
  z-index: -1;
  width: min(48vw, 36rem);
  height: min(48vw, 36rem);
  pointer-events: none;
  content: "";
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 28%, rgb(56 189 248 / 12%) 28.5% 29.2%, transparent 29.8% 43%, rgb(163 230 53 / 10%) 43.5% 44.2%, transparent 44.8% 58%, rgb(56 189 248 / 8%) 58.5% 59.2%, transparent 59.8%),
    radial-gradient(circle at 50% 50%, rgb(15 23 42 / 44%), transparent 64%);
  opacity: 0.72;
  filter: drop-shadow(0 0 52px rgb(56 189 248 / 10%));
}

.audio-page .audio-hero .hero-grid::after {
  position: absolute;
  right: 0;
  bottom: -2rem;
  z-index: -1;
  width: min(46vw, 34rem);
  height: 11rem;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, transparent, rgb(56 189 248 / 16%), transparent),
    repeating-linear-gradient(90deg, transparent 0 0.9rem, rgb(255 255 255 / 7%) 0.92rem 0.98rem, transparent 1rem 1.85rem);
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
  opacity: 0.58;
}

.audio-page .audio-hero .hero-content::before {
  z-index: -1;
  border-color: rgb(56 189 248 / 13%);
  background:
    repeating-radial-gradient(circle, transparent 0 1.35rem, rgb(56 189 248 / 7%) 1.38rem 1.45rem),
    radial-gradient(circle, rgb(56 189 248 / 7%), transparent 64%);
  opacity: 0.55;
}

.audio-page .audio-signal-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, auto));
  gap: 0.5rem;
  max-width: 760px;
  margin: 0 0 1.05rem;
}

.audio-page .promo-strip {
  margin-bottom: 1.1rem;
  border-color: rgb(163 230 53 / 34%);
  background:
    radial-gradient(circle at 0 0, rgb(163 230 53 / 20%), transparent 36%),
    linear-gradient(90deg, rgb(163 230 53 / 13%), rgb(56 189 248 / 8%));
  box-shadow: 0 14px 38px rgb(0 0 0 / 18%), inset 0 1px 0 rgb(255 255 255 / 10%);
}

.audio-page .audio-cta-deck {
  display: block;
  max-width: 860px;
  margin-top: 1.25rem;
  padding: clamp(0.95rem, 2vw, 1.2rem);
  border-color: rgb(255 255 255 / 12%);
  border-radius: 1.75rem;
  background:
    radial-gradient(circle at 16% 0, rgb(56 189 248 / 14%), transparent 34%),
    radial-gradient(circle at 100% 100%, rgb(163 230 53 / 9%), transparent 34%),
    linear-gradient(135deg, rgb(255 255 255 / 9%), transparent 34%),
    linear-gradient(180deg, rgb(15 23 42 / 82%), rgb(2 6 23 / 52%));
  box-shadow: 0 24px 76px rgb(0 0 0 / 28%), inset 0 1px 0 rgb(255 255 255 / 10%);
}

.audio-page .audio-waveform {
  display: flex;
  align-items: center;
  gap: 0.38rem;
  height: 2.05rem;
  margin: -0.1rem 0 0.82rem;
}

.audio-page .audio-waveform span {
  display: block;
  width: 0.35rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #d9f99d, #38bdf8);
  box-shadow: 0 0 22px rgb(56 189 248 / 34%);
}

.audio-page .audio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.audio-page .audio-actions .btn {
  min-height: 4.1rem;
  padding: 1.05rem 1.8rem;
  border-radius: 1.45rem;
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  font-weight: 900;
}

.audio-page .audio-btn-primary {
  border-color: rgb(125 211 252 / 46%);
  background:
    radial-gradient(circle at 24% 0, rgb(255 255 255 / 34%), transparent 34%),
    linear-gradient(135deg, #7dd3fc, #0ea5e9 56%, #0284c7);
  box-shadow: 0 18px 50px rgb(14 165 233 / 34%), inset 0 1px 0 rgb(255 255 255 / 24%);
}

.audio-page .audio-btn-secondary {
  border-color: rgb(255 255 255 / 16%);
  background:
    radial-gradient(circle at 20% 0, rgb(255 255 255 / 12%), transparent 34%),
    linear-gradient(180deg, rgb(30 41 59 / 84%), rgb(15 23 42 / 82%));
}

.audio-page .audio-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.9rem;
}

.audio-page .audio-pills li {
  display: inline-flex;
  align-items: center;
  width: auto;
  min-height: 2.5rem;
  padding: 0.5rem 0.92rem;
  border-color: rgb(255 255 255 / 14%);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgb(255 255 255 / 9%), transparent 38%),
    linear-gradient(180deg, rgb(30 41 59 / 88%), rgb(15 23 42 / 70%));
  color: #dbeafe;
  font-size: clamp(0.86rem, 1.1vw, 1rem);
  font-weight: 850;
  box-shadow: 0 10px 30px rgb(0 0 0 / 20%), inset 0 1px 0 rgb(255 255 255 / 10%);
}

.audio-page .audio-pills li span {
  flex: 0 0 auto;
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  margin-right: 0.5rem;
  border-radius: 50%;
  background: var(--accent-secondary);
  box-shadow: 0 0 16px rgb(163 230 53 / 50%);
}

.audio-page .audio-hero .hero-panel {
  border-color: rgb(56 189 248 / 18%);
  background:
    radial-gradient(circle at 72% 2%, rgb(163 230 53 / 13%), transparent 30%),
    radial-gradient(circle at 0 100%, rgb(56 189 248 / 15%), transparent 34%),
    linear-gradient(135deg, rgb(255 255 255 / 10%), transparent 34%),
    linear-gradient(180deg, rgb(21 28 38 / 84%), rgb(2 6 23 / 72%));
}

.audio-page .audio-console {
  display: block;
  margin: 0 0 1.15rem;
}

.audio-page .audio-spectrum {
  display: flex;
}

.audio-page .audio-knobs {
  display: flex;
}

/* Celowo nie przywracamy .audio-panel-meter — to był usunięty element z półokrągłymi słupkami. */
@media (max-width: 860px) {
  .audio-page .audio-signal-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audio-page .audio-hero .hero-grid::before,
  .audio-page .audio-hero .hero-grid::after {
    opacity: 0.38;
  }
}

@media (max-width: 620px) {
  .audio-page .audio-signal-row {
    grid-template-columns: 1fr;
  }

  .audio-page .audio-actions {
    display: grid;
  }

  .audio-page .audio-pills li {
    justify-content: center;
    width: 100%;
  }
}

/* Service landing: strony internetowe dla firm */
.service-page main > .section {
  position: relative;
  padding-block: clamp(5rem, 8vw, 8rem);
}

.service-page main > .section:not(.hero)::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(100% - 2rem, var(--container));
  height: 1px;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, transparent, rgb(56 189 248 / 15%), rgb(163 230 53 / 9%), transparent);
  transform: translateX(-50%);
}

.service-hero {
  background:
    radial-gradient(circle at 18% 8%, rgb(56 189 248 / 14%), transparent 30rem),
    radial-gradient(circle at 78% 12%, rgb(163 230 53 / 8%), transparent 28rem),
    linear-gradient(180deg, rgb(2 6 23 / 0%), rgb(2 6 23 / 18%));
}

.service-check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0;
  margin: clamp(1.6rem, 4vw, 2.5rem) 0 0;
  list-style: none;
}

.service-check-list li {
  position: relative;
  padding: 0.95rem 1rem 0.95rem 2.35rem;
  border: 1px solid rgb(255 255 255 / 9%);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgb(255 255 255 / 6%), rgb(2 6 23 / 24%));
  color: var(--text-muted);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 6%);
}

.service-check-list li::before {
  position: absolute;
  top: 1.18rem;
  left: 1rem;
  width: 0.58rem;
  height: 0.58rem;
  content: "";
  border-radius: 50%;
  background: var(--accent-secondary);
  box-shadow: 0 0 18px rgb(163 230 53 / 36%);
}

.service-feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.compare-card.featured {
  border-color: rgb(56 189 248 / 34%);
  background:
    radial-gradient(circle at 86% 0, rgb(56 189 248 / 14%), transparent 30%),
    linear-gradient(135deg, rgb(255 255 255 / 10%), transparent 34%),
    linear-gradient(180deg, rgb(21 28 38 / 82%), rgb(15 23 42 / 72%));
}

.service-models-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.related-card {
  display: block;
  min-height: 100%;
}

.related-card h3 {
  font-size: 1.08rem;
}

@media (max-width: 1080px) {
  .service-feature-grid,
  .service-models-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .service-check-list,
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .service-page main > .section {
    padding-block: clamp(4.25rem, 8vw, 6.25rem);
  }
}

@media (max-width: 620px) {
  .service-feature-grid,
  .service-models-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .service-page main > .section {
    padding-block: 4rem;
  }
}

/* Readable footer sitemap */
.site-footer {
  padding-block: clamp(2.5rem, 5vw, 4rem) 1.4rem;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(circle at 16% 0, rgb(56 189 248 / 8%), transparent 30rem),
    linear-gradient(180deg, rgb(2 6 23 / 0%), rgb(2 6 23 / 28%));
  color: var(--text-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(230px, 0.8fr) minmax(0, 1.45fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.footer-brand-block p {
  max-width: 340px;
  margin: 1rem 0 0;
  color: var(--text-muted);
}

.footer-brand {
  width: fit-content;
}

.footer-sitemap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
}

.footer-sitemap h2 {
  margin-bottom: 0.8rem;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-sitemap ul {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-sitemap a,
.footer-bottom a {
  color: var(--text-muted);
  font-weight: 750;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-sitemap a:hover,
.footer-bottom a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: 1.15rem;
  border-top: 1px solid rgb(255 255 255 / 8%);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 860px) {
  .footer-grid,
  .footer-sitemap {
    grid-template-columns: 1fr;
  }

  .footer-sitemap {
    gap: 1.4rem;
  }
}

@media (max-width: 620px) {
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Oferter demo CTA */
.solution-demo-note {
  padding: 0.85rem 1rem;
  border: 1px solid rgb(163 230 53 / 24%);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgb(163 230 53 / 10%), rgb(56 189 248 / 5%));
  color: #d9f99d !important;
  font-weight: 800;
}

.solution-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.solution-actions .btn {
  min-height: 2.75rem;
  padding: 0.72rem 1rem;
  border-radius: 0.9rem;
  font-size: 0.92rem;
}

@media (max-width: 620px) {
  .solution-actions {
    display: grid;
  }
}

/* Solutions layout refinement after Oferter demo expansion */
@media (min-width: 1120px) {
  .solutions-layout {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: start;
  }

  .solution-featured {
    grid-column: span 8;
  }

  .solution-kataloger {
    grid-column: span 4;
  }

  .solution-media {
    grid-column: span 6;
  }

  .solution-kontakter,
  .solution-jezyker {
    grid-column: span 3;
  }

  .solution-media .solution-list {
    grid-template-columns: 1fr;
  }
}

.solutions-layout {
  align-items: start;
}

.solution-card,
.solution-featured,
.solution-secondary {
  min-height: 0;
}

.solution-featured .solution-content {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: clamp(1rem, 2.2vw, 1.5rem);
  align-items: start;
}

.solution-featured .solution-actions {
  margin-top: 0;
}

.solution-featured .tags {
  margin-top: 0.1rem;
}

@media (max-width: 1119px) {
  .solution-featured .solution-content {
    grid-template-columns: 1fr;
  }
}
