:root {
  --bg: #06080f;
  --bg-2: #0a0f1a;
  --bg-3: #111827;
  --card: rgba(14, 20, 34, 0.78);
  --card-solid: #121a2b;
  --line: rgba(226, 232, 240, 0.1);
  --line-strong: rgba(226, 232, 240, 0.18);
  --text: #f3f6fb;
  --muted: #9aa8bb;
  --accent: #3b82f6;
  --accent-2: #8bb7ff;
  --accent-warm: #e4b56a;
  --accent-soft: rgba(59, 130, 246, 0.16);
  --ok: #34d399;
  --danger: #f87171;
  --radius: 22px;
  --radius-sm: 14px;
  --radius-lg: 28px;
  --header: 4.5rem;
  --max: 76rem;
  --font: "Segoe UI", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
  --shadow-soft: 0 12px 32px rgba(0, 0, 0, 0.22);
  --glow: 0 0 40px rgba(59, 130, 246, 0.2);
  --space: 1.15rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 0.6rem);
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font);
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(920px 480px at 12% -8%, rgba(59, 130, 246, 0.16), transparent 52%),
    radial-gradient(720px 380px at 92% 4%, rgba(228, 181, 106, 0.06), transparent 46%),
    var(--bg);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: url("../images/texture-grid.webp") center / cover no-repeat;
  opacity: 0.14;
  mix-blend-mode: screen;
}

body > *:not(.site-header):not(.cookie):not(.skip):not(.whatsapp-fab) {
  position: relative;
  z-index: 1;
}

body.nav-locked { overflow: hidden; }

img,
svg { max-width: 100%; height: auto; display: block; }
svg { fill: currentColor; }
a { color: var(--accent-2); text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: #fff; }
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
}

.sr-only,
.skip {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 80;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  padding: 0.7rem 1rem;
  background: #fff;
  color: #0b1220;
  border-radius: 10px;
}

.wrap {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  border-bottom: 1px solid transparent;
  background: rgba(6, 8, 15, 0.78);
  backdrop-filter: blur(20px);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.is-home .site-header {
  position: fixed;
  left: 0;
  right: 0;
  background: transparent;
  backdrop-filter: none;
}

.is-home .site-header.is-scrolled,
.is-home.nav-locked .site-header {
  background: rgba(6, 8, 15, 0.88);
  backdrop-filter: blur(20px);
}

.header-inner {
  height: var(--header);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand { flex: 0 0 auto; color: inherit; }
.brand img {
  width: auto;
  height: 2.85rem;
  max-width: min(15.5rem, 58vw);
}

.nav { margin-left: auto; }
.nav ul {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav a {
  color: rgba(243, 246, 251, 0.72);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.nav a[aria-current="page"],
.nav a:hover { color: #fff; }

.btn.header-cta { display: none; }
.btn.nav-cta-mobile { display: none; }

.nav-toggle {
  margin-left: auto;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(17, 24, 39, 0.7);
  color: #fff;
  display: grid;
  place-items: center;
}
.nav-toggle svg { width: 1.25rem; height: 1.25rem; }

@media (max-width: 1023px) {
  .nav {
    position: fixed;
    inset: var(--header) 0 auto 0;
    z-index: 55;
    background: rgba(6, 8, 15, 0.97);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1rem 1.2rem;
    visibility: hidden;
    transform: translateY(-0.6rem);
    opacity: 0;
    pointer-events: none;
  }
  .nav.is-open {
    visibility: visible;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .nav.is-open .btn.nav-cta-mobile { display: inline-flex; margin-top: 0.9rem; }
  .nav ul { display: grid; gap: 0.15rem; }
  .nav a {
    display: block;
    padding: 0.85rem 0.4rem;
    border-bottom: 1px solid var(--line);
  }
}

@media (min-width: 1024px) {
  .nav-toggle { display: none; }
  .nav ul { display: flex; gap: 1.1rem; }
  .nav a { font-size: 0.88rem; }
  .btn.header-cta { display: inline-flex; margin-left: 0.85rem; min-height: 2.5rem; padding-inline: 1rem; }
  .nav { margin-left: auto; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.75rem;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: #fff;
  text-decoration: none;
  background: transparent;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 560;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), filter 0.2s var(--ease);
}
.btn:hover { border-color: var(--accent-2); color: #fff; }
.btn-primary {
  background: linear-gradient(180deg, #5b94f7, #2563eb);
  border-color: transparent;
  box-shadow: var(--glow);
}
.btn-primary:hover { filter: brightness(1.07); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }
.btn-lg { min-height: 3.15rem; padding-inline: 1.4rem; }
.btn svg { width: 1rem; height: 1rem; }
.btn-whatsapp {
  background: linear-gradient(180deg, #2ee06a, #1fad4e);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.22);
}
.btn-whatsapp:hover { color: #fff; filter: brightness(1.06); }

.hero,
.page-hero,
.section { padding: 3.6rem 0; }

.hero { padding-top: 2.4rem; }

.hero-grid,
.split,
.split-visual,
.cta-inner,
.feature-grid,
.card-grid,
.process-grid,
.tech-grid,
.footer-grid,
.blog-layout,
.contact-layout,
.work-grid,
.trust {
  display: grid;
  gap: 1.5rem;
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--accent-2);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 700;
}

h1, h2, h3, h4 {
  line-height: 1.14;
  letter-spacing: -0.035em;
  margin: 0 0 0.8rem;
}

h1 { font-size: clamp(1.9rem, 5.4vw, 3.45rem); max-width: 18ch; }
h2 { font-size: clamp(1.55rem, 3.6vw, 2.3rem); }
h3 { font-size: 1.1rem; letter-spacing: -0.02em; }
.lede,
.hero .lede {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 46ch;
}

.hero-copy p { color: var(--muted); }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ratio-16x9 { aspect-ratio: 16 / 9; }
.ratio-4x3 { aspect-ratio: 4 / 3; }
.ratio-3x2 { aspect-ratio: 3 / 2; }
.ratio-wide { aspect-ratio: 16 / 10; }

.overlay,
.overlay-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.overlay-scrim {
  background:
    linear-gradient(180deg, rgba(6, 8, 15, 0.28) 0%, rgba(6, 8, 15, 0.18) 38%, rgba(6, 8, 15, 0.88) 100%),
    linear-gradient(90deg, rgba(6, 8, 15, 0.72) 0%, rgba(6, 8, 15, 0.28) 58%, rgba(6, 8, 15, 0.18) 100%);
}

.overlay-scrim--cta {
  background:
    linear-gradient(90deg, rgba(6, 8, 15, 0.82) 0%, rgba(6, 8, 15, 0.55) 55%, rgba(6, 8, 15, 0.42) 100%),
    linear-gradient(180deg, rgba(6, 8, 15, 0.2), rgba(6, 8, 15, 0.55));
}

.overlay-bottom {
  background: linear-gradient(180deg, transparent 20%, rgba(6, 8, 15, 0.88) 100%);
}

.overlay-left {
  background: linear-gradient(90deg, rgba(6, 8, 15, 0.78) 0%, rgba(6, 8, 15, 0.2) 70%, transparent 100%);
}

.hero-visual {
  position: relative;
  isolation: isolate;
  min-height: min(92svh, 48rem);
  display: grid;
  align-items: end;
  padding: calc(var(--header) + 2.6rem) 0 3.4rem;
  overflow: hidden;
}

.hero-visual__media,
.page-hero-media,
.cta-visual__media,
.band-visual__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-visual__media picture,
.hero-visual__media img,
.page-hero-media picture,
.page-hero-media img,
.cta-visual__media picture,
.cta-visual__media img,
.band-visual__media picture,
.band-visual__media img,
.visual-frame picture,
.media-card__image picture,
.work-card__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-visual__content,
.page-hero-content,
.cta-visual .cta-inner,
.band-visual .wrap {
  position: relative;
  z-index: 1;
}

.hero-visual h1 {
  max-width: 14ch;
  text-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.hero-visual .lede,
.hero-visual .hero-copy > p {
  color: #c9d4e4;
  max-width: 44ch;
}

.hero-visual .eyebrow { color: var(--accent-warm); }

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.page-hero.has-visual {
  min-height: 22rem;
  display: grid;
  align-items: end;
  padding: calc(var(--header) + 2.2rem) 0 3rem;
}

.page-hero.has-visual .lede { color: #c9d4e4; }

.visual-frame,
.hero-media,
.media,
.card-media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card-solid);
  box-shadow: var(--shadow);
}

.visual-frame--lg { border-radius: var(--radius-lg); }

.hero-media img,
.media img,
.card-media img,
.visual-frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.visual-frame .img-cover,
.card-media .img-cover,
.media .img-cover {
  height: 100%;
}

.media-card,
.visual-card,
.work-card {
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-soft);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.media-card:hover,
.visual-card:hover,
.work-card:hover {
  border-color: rgba(139, 183, 255, 0.4);
  color: inherit;
}

.motion-ok .media-card:hover,
.motion-ok .visual-card:hover,
.motion-ok .work-card:hover {
  transform: translateY(-4px);
}

.media-card__image,
.visual-card__image,
.work-card__media {
  position: relative;
  overflow: hidden;
  background: #0b1220;
}

.media-card__image { aspect-ratio: 4 / 3; }
.work-card__media { aspect-ratio: 16 / 10; }

.media-card__image img,
.visual-card__image img,
.work-card__media img,
.media-card__image picture,
.work-card__media picture {
  width: 100%;
  height: 100%;
}

.media-card__body,
.visual-card__body,
.work-card__caption {
  display: grid;
  gap: 0.55rem;
  align-content: start;
  padding: 1.2rem 1.25rem 1.35rem;
}

.media-card__body p,
.visual-card__body p,
.work-card__caption p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.work-card--lg .work-card__media { min-height: 18rem; }

.hero-media,
.media,
.card,
.panel,
.faq-item,
.form,
.stat {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
}

.trust article {
  padding: 1.15rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(15, 23, 42, 0.45);
}

.trust h2,
.trust h3 { font-size: 1.02rem; margin-bottom: 0.3rem; }
.trust p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.section-head { margin-bottom: 1.8rem; max-width: 46rem; }
.section-head p { color: var(--muted); margin: 0; }

.card {
  padding: 1.25rem;
  display: grid;
  gap: 0.7rem;
  align-content: start;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.card:hover { border-color: rgba(96, 165, 250, 0.45); }
.motion-ok .card:hover { transform: translateY(-3px); }
.card.card-flush { padding: 0; overflow: hidden; }
.card .icon,
.icon-box {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent-2);
}
.icon-box svg,
.card .icon svg { width: 1.2rem; height: 1.2rem; }
.card p { margin: 0; color: var(--muted); }

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
}

.process-grid article,
.process-rail article {
  padding: 1.15rem 1.2rem;
  border-left: 2px solid var(--accent);
  background: rgba(15, 23, 42, 0.4);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.process-grid span,
.process-rail span {
  display: block;
  color: var(--accent-warm);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.process-grid p,
.process-rail p { margin: 0; color: var(--muted); }

.process {
  border-block: 1px solid var(--line);
  background:
    radial-gradient(720px 340px at 8% 0%, rgba(59, 130, 246, 0.14), transparent 55%),
    linear-gradient(180deg, rgba(59, 130, 246, 0.05), transparent 42%);
}
.process-layout {
  display: grid;
  gap: 2.4rem;
}
.process-intro .lede { margin-bottom: 0.85rem; }
.process-intro p { color: var(--muted); }
.process-count {
  margin: 1.4rem 0 0;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.55);
  font-size: 0.88rem;
  color: var(--muted);
}
.process-count strong {
  color: var(--accent-2);
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}
.process-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  display: grid;
  gap: 0;
}
.process-timeline::before {
  content: "";
  position: absolute;
  left: 1.25rem;
  top: 0.35rem;
  bottom: 1.5rem;
  width: 2px;
  background: linear-gradient(180deg, #60a5fa, rgba(59, 130, 246, 0.12));
}
.process-timeline li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  align-items: start;
  padding-bottom: 1.15rem;
  position: relative;
}
.process-timeline li:last-child { padding-bottom: 0; }
.process-num {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #0b1324;
  border: 1.5px solid var(--accent);
  color: var(--accent-2);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px rgba(6, 8, 15, 0.92), 0 0 18px rgba(59, 130, 246, 0.28);
}
.process-card {
  padding: 1.1rem 1.15rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(12, 18, 32, 0.78);
  box-shadow: var(--shadow-soft);
}
.process-card__head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.45rem;
}
.process-card__head .icon-box {
  width: 2.15rem;
  height: 2.15rem;
  flex: 0 0 auto;
}
.process-card h3 { margin: 0; font-size: 1.06rem; }
.process-card p { margin: 0; color: var(--muted); }
.process-out {
  margin-top: 0.8rem !important;
  display: inline-flex;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(228, 181, 106, 0.28);
  background: rgba(228, 181, 106, 0.08);
  color: var(--accent-warm) !important;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.02em;
}
.motion-ok .process-card {
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.motion-ok .process-timeline li:hover .process-card {
  border-color: rgba(139, 183, 255, 0.38);
  transform: translateX(4px);
}
.motion-ok .process-timeline li:hover .process-num {
  border-color: #93c5fd;
  color: #fff;
}

.contact-channels {
  list-style: none;
  margin: 1.1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}
.contact-channels li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: center;
}
.contact-channels .eyebrow { margin-bottom: 0.15rem; }
.contact-channels a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.contact-channels a:hover { color: var(--accent-2); }

.whatsapp-fab {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 46;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.38);
  text-decoration: none;
}
.whatsapp-fab:hover { color: #fff; filter: brightness(1.08); }
.whatsapp-fab svg { width: 1.75rem; height: 1.75rem; }

.tech-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.tech-grid span {
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-align: center;
  background: rgba(15, 23, 42, 0.45);
  font-size: 0.92rem;
}

.band {
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.07), transparent);
}

.band-visual,
.cta-visual {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-block: 1px solid var(--line);
}

.cta-visual { padding: 5rem 0; }
.cta-band { padding: 3rem 0; }
.cta-inner { align-items: center; }
.cta-visual .lede,
.cta-visual p { color: #c9d4e4; }
.cta-visual h2 { max-width: 18ch; }

.about-teaser .media { margin-top: 0.4rem; }

.split-visual .visual-frame { min-height: 18rem; }

.faq-list { display: grid; gap: 0.75rem; }
.faq-item { overflow: hidden; }
.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  font-weight: 650;
  padding: 1rem 1.15rem;
  cursor: pointer;
}
.faq-item button[aria-expanded="true"] { color: var(--accent-2); }
.faq-item .faq-panel {
  padding: 0 1.15rem 1.1rem;
  color: var(--muted);
}
.faq-item .faq-panel[hidden] { display: none; }

.crumbs { margin: 0 0 1.1rem; }
.crumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}
.crumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.35rem;
  color: #64748b;
}
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: #fff; }

.prose { max-width: 46rem; }
.prose p,
.prose li { color: var(--muted); }
.prose ul { padding-left: 1.15rem; }
.prose a { color: var(--accent-2); }

.page-hero h1 { max-width: 18ch; }

.list-check {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}
.list-check li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--muted);
}
.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.form { padding: 1.25rem; }
.field { display: grid; gap: 0.35rem; margin-bottom: 0.95rem; }
.field label { font-size: 0.92rem; }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 2.8rem;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: #0a1020;
  color: #fff;
  font: inherit;
  padding: 0.65rem 0.8rem;
}
.field textarea { min-height: 9rem; resize: vertical; }
.field-error { color: var(--danger); font-size: 0.86rem; min-height: 1.1em; }
.hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}
.alert {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  border: 1px solid var(--line);
}
.alert-ok { border-color: rgba(52, 211, 153, 0.4); color: var(--ok); }
.alert-err { border-color: rgba(248, 113, 113, 0.4); color: var(--danger); }

.site-footer {
  padding: 3.4rem 0 1.4rem;
  border-top: 1px solid var(--line);
  background: #05070d;
}
.site-footer h2 {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d5deea;
}
.site-footer p,
.site-footer a { color: var(--muted); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.45rem; }
.contact-mini { margin-top: 1rem; }
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: #7c8a9e;
  font-size: 0.9rem;
}

.cookie {
  position: fixed;
  left: 1rem;
  right: 5.4rem;
  bottom: 1rem;
  z-index: 50;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(16, 24, 42, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}
.cookie[hidden] { display: none; }
@media (min-width: 760px) {
  .cookie {
    right: auto;
    max-width: 42rem;
  }
}
.cookie p { margin: 0; color: var(--muted); max-width: 46rem; }

.related { margin-top: 2.2rem; }

.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  color: var(--accent-2);
  font-weight: 600;
}
.icon-link svg { width: 1rem; height: 1rem; }

.note { color: var(--muted); font-size: 0.95rem; }
.stack-top { margin-top: 1.5rem; }
.panel-pad { padding: 1.7rem; }
.article-date { color: var(--muted); font-size: 0.92rem; }

.text-on-media { color: #fff; }
.text-on-media .lede,
.text-on-media p { color: #c9d4e4; }

@media (min-width: 700px) {
  .card-grid,
  .feature-grid,
  .trust,
  .process-grid,
  .process-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tech-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .work-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 960px) {
  .process-layout {
    grid-template-columns: minmax(16rem, 0.82fr) minmax(0, 1.18fr);
    gap: 3.6rem;
    align-items: start;
  }
  .process-intro {
    position: sticky;
    top: calc(var(--header) + 1.4rem);
  }
  .hero-grid,
  .split,
  .split-visual,
  .blog-layout,
  .contact-layout,
  .cta-inner { grid-template-columns: 1.08fr 0.92fr; align-items: center; }
  .contact-layout { align-items: start; }
  .card-grid-3,
  .feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .process-grid,
  .process-rail { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .hero,
  .section,
  .page-hero { padding: 5rem 0; }
  .page-hero.has-visual { padding: calc(var(--header) + 3rem) 0 4rem; }
  .work-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .trust { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 1200px) {
  .card-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
