@import url("https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700&family=Geist+Mono:wght@400;500&family=Instrument+Serif:ital@0;1&display=swap");

:root {
  --ink-950: #0a0e1a;
  --ink-900: #111827;
  --ink-800: #1a2333;
  --ink-700: #243043;
  --slate-700: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --paper-50: #fafaf7;
  --paper-100: #f4f1ea;
  --paper-200: #e8e2d2;
  --cobalt-700: #1e3bcb;
  --cobalt-600: #2547f0;
  --cobalt-500: #3b5bff;
  --cobalt-100: #e0e7ff;
  --saffron-500: #e8a33d;
  --bg: var(--paper-50);
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --surface-dark: var(--ink-950);
  --text: var(--ink-950);
  --muted: var(--slate-700);
  --line: rgba(71, 85, 105, 0.16);
  --accent: var(--cobalt-600);
  --accent-soft: rgba(37, 71, 240, 0.1);
  --steel: var(--slate-700);
  --shadow: 0 24px 72px rgba(10, 14, 26, 0.08);
  --shadow-sm: 0 10px 30px rgba(10, 14, 26, 0.06);
  --radius-lg: 2rem;
  --radius-md: 1.25rem;
  --container: 1180px;
  --font-body: "Geist", "Segoe UI Variable", "Segoe UI", sans-serif;
  --font-display: "Instrument Serif", "Times New Roman", Georgia, serif;
  --font-mono: "Geist Mono", "SFMono-Regular", Consolas, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(148, 163, 184, 0.1) 0, rgba(148, 163, 184, 0.1) 1px, transparent 1px, transparent 72px),
    radial-gradient(circle at top left, rgba(37, 71, 240, 0.1), transparent 30%),
    radial-gradient(circle at top right, rgba(59, 91, 255, 0.08), transparent 22%),
    linear-gradient(180deg, #f8fafc 0%, #f2f5fb 38%, #f4f1ea 100%);
  background-size: 72px 72px, auto, auto, auto;
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  display: block;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: #fff;
  padding: 0.75rem 1rem;
  z-index: 100;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(248, 250, 252, 0.88);
  border-bottom: 1px solid rgba(148, 163, 184, 0.24);
  box-shadow: 0 10px 28px rgba(10, 14, 26, 0.04);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.95rem;
  background: linear-gradient(145deg, var(--ink-950), var(--ink-700));
  color: #f8fafc;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.brand-mark-zago {
  background:
    linear-gradient(145deg, var(--ink-950), var(--ink-700));
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.brand-copy {
  display: grid;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.brand-copy span:last-child {
  font-size: 0.8rem;
  color: var(--muted);
}

.brand-logo-img {
  height: 2.8rem;
  width: auto;
  display: block;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink-950);
  letter-spacing: -0.02em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.primary-nav a:not(.nav-cta) {
  padding: 0.6rem 1.1rem;
  color: var(--muted);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  border: 1px solid transparent;
  background: transparent;
  transition: all 0.25s ease;
}

.primary-nav a:not(.nav-cta):hover {
  background: rgba(255, 255, 255, 0.6);
  color: var(--accent);
  border-color: rgba(203, 213, 225, 0.5);
  box-shadow: 0 4px 12px rgba(10, 14, 26, 0.04);
  transform: translateY(-1px);
}

.primary-nav a:not(.nav-cta)[aria-current="page"] {
  color: var(--text);
  background: #ffffff;
  border-color: rgba(203, 213, 225, 0.8);
  box-shadow: 0 4px 12px rgba(10, 14, 26, 0.05);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.nav-cta {
  background: linear-gradient(135deg, var(--cobalt-700), var(--cobalt-500));
  color: #f8fafc;
  padding: 0.65rem 1.4rem;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid transparent;
  box-shadow: 0 4px 14px rgba(37, 71, 240, 0.25);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 71, 240, 0.35);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  font: inherit;
  color: var(--text);
}

.hero,
.page-hero {
  padding: 5.5rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 2rem;
  align-items: stretch;
  position: relative;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: 2rem;
  align-items: center;
}

.page-hero-copy {
  max-width: 46rem;
}

.hero-copy h1,
.page-hero h1,
.section-head h2,
.split-grid h2,
.cta-grid h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.9rem, 5vw, 5.75rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.page-hero h1,
.section-head h2,
.split-grid h2,
.cta-grid h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.lede {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 58ch;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
}

.hero-copy {
  position: relative;
  padding: 1.2rem 0 0 1.6rem;
}

.hero-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 4px;
  height: 10rem;
  background: linear-gradient(180deg, var(--accent), rgba(232, 163, 61, 0.66));
  border-radius: 999px;
}

.button {
  min-height: 3.25rem;
  padding: 0 1.4rem;
  border: 1px solid transparent;
  letter-spacing: -0.01em;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--cobalt-700), var(--cobalt-500));
  color: #f8fafc;
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.84);
}

.signal-list,
.faq-list,
.sector-list,
.narrative-block,
.footer-grid p {
  color: var(--muted);
}

.signal-list {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.signal-list li {
  padding-left: 1.2rem;
  position: relative;
}

.signal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
}

.hero-panel {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(59, 91, 255, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(10, 14, 26, 0.98) 0%, rgba(17, 24, 39, 0.98) 44%, rgba(26, 35, 51, 0.96) 100%);
  color: #f8fafc;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-visual,
.page-hero-visual {
  position: relative;
  z-index: 1;
}

.hero-visual {
  margin-top: 0.25rem;
  border-radius: calc(var(--radius-lg) - 0.35rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-motion {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0.9;
  mix-blend-mode: screen;
}

.hero-visual img,
.page-hero-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-visual img {
  position: relative;
  z-index: 1;
}

.hero-motion-badges {
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  pointer-events: none;
}

.hero-motion-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 14, 26, 0.42);
  color: rgba(248, 250, 252, 0.88);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(10, 14, 26, 0.18);
}

.page-hero-visual {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(59, 91, 255, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 245, 249, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.26);
  box-shadow: 0 24px 64px rgba(10, 14, 26, 0.08);
}

.page-hero-visual::before,
.page-hero-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.page-hero-visual::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(148, 163, 184, 0.08) 0, rgba(148, 163, 184, 0.08) 1px, transparent 1px, transparent 52px),
    linear-gradient(180deg, rgba(148, 163, 184, 0.08) 0, rgba(148, 163, 184, 0.08) 1px, transparent 1px, transparent 52px);
  background-size: 52px 52px;
  opacity: 0.45;
  animation: heroGridDrift 18s linear infinite;
}

.page-hero-visual::after {
  right: 1.2rem;
  bottom: 1.2rem;
  width: 7.2rem;
  height: 2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(37, 71, 240, 0.95), rgba(110, 134, 255, 0.9));
  box-shadow: 0 12px 30px rgba(37, 71, 240, 0.2);
  animation: heroBadgePulse 4.8s ease-in-out infinite;
}

.page-hero-visual img {
  animation: heroFloat 14s ease-in-out infinite;
  transform-origin: center center;
}

.page-hero-visual-soluciones::after {
  width: 8.6rem;
  background: linear-gradient(135deg, rgba(37, 71, 240, 0.98), rgba(148, 163, 184, 0.92));
}

.page-hero-visual-sectores::after {
  width: 6.2rem;
  background: linear-gradient(135deg, rgba(232, 163, 61, 0.94), rgba(59, 91, 255, 0.88));
}

.page-hero-visual-preservacion::after {
  width: 9.2rem;
  background: linear-gradient(135deg, rgba(232, 163, 61, 0.96), rgba(110, 134, 255, 0.88));
}

.page-hero-visual-nosotros::after {
  width: 7.4rem;
}

.page-hero-visual-contacto::after {
  width: 7.8rem;
  background: linear-gradient(135deg, rgba(37, 71, 240, 0.95), rgba(232, 163, 61, 0.88));
}

.page-hero-visual-soluciones img {
  animation-duration: 12s;
}

.page-hero-visual-sectores img {
  animation-duration: 16s;
}

.page-hero-visual-preservacion img {
  animation-duration: 18s;
}

.page-hero-visual-contacto img {
  animation-duration: 13s;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 42%, rgba(255, 255, 255, 0.05) 42% 44%, transparent 44% 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 26%),
    linear-gradient(90deg, rgba(148, 163, 184, 0.08) 0, rgba(148, 163, 184, 0.08) 1px, transparent 1px, transparent 54px);
  background-size: auto, auto, 54px 54px;
  pointer-events: none;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto 1.25rem 1.25rem auto;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  border: 1px solid rgba(110, 134, 255, 0.2);
  box-shadow:
    0 0 0 1.1rem rgba(59, 91, 255, 0.05),
    0 0 0 2.2rem rgba(59, 91, 255, 0.03);
  pointer-events: none;
}

.hero-panel-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.15rem 0.2rem 0.75rem;
}

.panel-kicker {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(248, 250, 252, 0.72);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}

.hero-tags span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0.28rem 0.65rem;
  font-size: 0.76rem;
  color: rgba(248, 250, 252, 0.82);
  background: rgba(255, 255, 255, 0.04);
}

.hero-metric {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius-lg) - 0.55rem);
  padding: 1.4rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  position: relative;
  z-index: 1;
}

.hero-metric span {
  display: block;
  color: rgba(248, 250, 252, 0.68);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-metric strong {
  display: block;
  margin-top: 0.55rem;
  font-size: 1.35rem;
  line-height: 1.2;
}

.hero-stripe {
  position: absolute;
  right: -2rem;
  bottom: 2.6rem;
  width: 10rem;
  height: 1.2rem;
  transform: rotate(-45deg);
  background: linear-gradient(90deg, rgba(59, 91, 255, 0.12), rgba(59, 91, 255, 0.9), rgba(232, 163, 61, 0.16));
  box-shadow: 0 0 30px rgba(59, 91, 255, 0.22);
}

.section {
  padding: 4.8rem 0;
}

.section-tight {
  padding-top: 1rem;
}

.section-rail {
  padding: 0 0 2.6rem;
}

.rail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(203, 213, 225, 0.9);
  border-top: 1px solid rgba(203, 213, 225, 0.95);
  border-bottom: 1px solid rgba(203, 213, 225, 0.95);
}

.rail-grid p {
  margin: 0;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.9);
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: -0.01em;
  font-size: 0.9rem;
  position: relative;
}

.rail-grid p::before {
  content: "";
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  margin-right: 0.7rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cobalt-700), var(--cobalt-500));
  box-shadow: 0 0 0 4px rgba(59, 91, 255, 0.08);
}

.rail-grid a {
  display: block;
}

.surface {
  background: rgba(248, 250, 252, 0.45);
  border-top: 1px solid rgba(203, 213, 225, 0.45);
  border-bottom: 1px solid rgba(203, 213, 225, 0.45);
}

.section-head {
  margin-bottom: 2rem;
}

.summary-grid,
.capability-grid,
.contact-grid,
.sector-detail-grid,
.stack-grid {
  display: grid;
  gap: 1rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 1rem;
  align-items: start;
}

.contact-grid-side {
  align-content: start;
}

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

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

.summary-card,
.capability-card,
.service-panel,
.sector-card,
.contact-card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.summary-card:hover,
.capability-card:hover,
.service-panel:hover,
.sector-card:hover,
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

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

.summary-card::before,
.service-panel::before,
.sector-card::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(59, 91, 255, 0.3), rgba(148, 163, 184, 0));
}

.summary-card::after {
  content: "";
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), rgba(232, 163, 61, 0.8));
}

.summary-card h3,
.capability-card h3,
.service-panel h2,
.sector-card h2,
.contact-card h2,
.faq-list h3,
.sector-list h3 {
  margin-top: 0;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.contact-form-card {
  padding: 1.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(59, 91, 255, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.82));
  box-shadow: var(--shadow);
}

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

.form-field {
  display: grid;
  gap: 0.45rem;
}

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

.form-field-full {
  grid-column: 1 / -1;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.34);
  border-radius: 1rem;
  background: rgba(248, 250, 252, 0.94);
  color: var(--text);
  font: inherit;
  padding: 0.95rem 1rem;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 10rem;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(37, 71, 240, 0.5);
  box-shadow: 0 0 0 4px rgba(37, 71, 240, 0.1);
  background: #ffffff;
}

.contact-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 30rem;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
}

.split-grid-visual {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 0.95fr) minmax(280px, 0.7fr);
  align-items: center;
}

.split-visual-card {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.split-visual-card img {
  width: 100%;
  border-radius: calc(var(--radius-md) - 0.25rem);
  animation: heroFloat 17s ease-in-out infinite reverse;
}

.split-visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 8%, rgba(59, 91, 255, 0.14) 50%, transparent 92%);
  transform: translateY(-100%);
  animation: scanSweep 6.4s ease-in-out infinite;
  pointer-events: none;
}

.split-visual-card-preservacion::after {
  content: "";
  position: absolute;
  inset: auto 1rem 1rem auto;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  border: 1px solid rgba(232, 163, 61, 0.3);
  box-shadow:
    0 0 0 0.7rem rgba(232, 163, 61, 0.08),
    0 0 0 1.4rem rgba(59, 91, 255, 0.05);
  animation: ringPulse 5s ease-in-out infinite;
}

.capability-card {
  min-height: 15rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at top right, rgba(59, 91, 255, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.54) 0%, rgba(255, 255, 255, 0.9) 100%);
  position: relative;
  overflow: hidden;
}

.capability-card::before {
  content: none;
}

.capability-card:nth-child(1)::after,
.capability-card:nth-child(2)::after,
.capability-card:nth-child(3)::after,
.capability-card:nth-child(4)::after,
.capability-card:nth-child(5)::after,
.capability-card:nth-child(6)::after {
  content: none;
}

.sector-list {
  display: grid;
  gap: 1.2rem;
}

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

.faq-list article {
  padding: 1.4rem 1.45rem;
  border-top: 2px solid var(--accent);
  background: rgba(255, 255, 255, 0.78);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.narrative-block {
  display: grid;
  gap: 1rem;
  font-size: 1.08rem;
}

.process-band {
  position: relative;
}

.process-band::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: rgba(19, 33, 39, 0.12);
}

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

.process-step {
  padding: 1.5rem 1.4rem 1.8rem;
  background:
    radial-gradient(circle at top right, rgba(59, 91, 255, 0.22), transparent 28%),
    linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  color: #f8fafc;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

.process-step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 38%);
}

.process-step span {
  display: inline-flex;
  margin-bottom: 3.5rem;
  font-family: var(--font-display);
  font-size: 2rem;
  color: rgba(224, 231, 255, 0.34);
}

.process-step h3 {
  position: relative;
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.process-step p {
  position: relative;
  margin: 0;
  color: rgba(248, 250, 252, 0.74);
}

.cta-band {
  padding-bottom: 5.5rem;
}

.product-hero {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.36)),
    radial-gradient(circle at right top, rgba(37, 71, 240, 0.1), transparent 34%),
    radial-gradient(circle at left bottom, rgba(232, 163, 61, 0.08), transparent 30%);
}

.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 2rem;
  align-items: center;
}

.product-hero-copy {
  max-width: 42rem;
}

.product-hero-visual {
  margin: 0;
  position: relative;
}

.product-hero-visual::before {
  content: "";
  position: absolute;
  inset: auto 8% -1.5rem 8%;
  height: 2.2rem;
  background: radial-gradient(circle, rgba(19, 33, 39, 0.24), transparent 68%);
  filter: blur(18px);
}

.product-hero-visual img {
  width: 100%;
  border-radius: 2rem;
  box-shadow: 0 34px 90px rgba(10, 14, 26, 0.14);
  border: 1px solid rgba(203, 213, 225, 0.72);
}

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

.brand-card {
  display: grid;
  gap: 0.8rem;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.76));
  box-shadow: 0 16px 40px rgba(10, 14, 26, 0.05);
}

.brand-logo {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-height: 4.9rem;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(203, 213, 225, 0.88);
  width: min(100%, 17rem);
  min-width: 11rem;
  background: #ffffff;
}

.brand-logo img {
  display: block;
  max-width: 100%;
  width: auto;
  max-height: 3rem;
  object-fit: contain;
}

.brand-logo-i2s img {
  max-height: 2.4rem;
}

.brand-logo-czur {
  background: #eef1f2;
}

.brand-logo-czur img {
  max-height: 3.2rem;
}

.brand-logo-contex img {
  max-height: 2.6rem;
}

.brand-logo-colortrac {
  background: #f4f1ea;
}

.brand-logo-colortrac img {
  max-height: 2.7rem;
}

.brand-logo-ricoh {
  background:
    linear-gradient(180deg, #f6f3ef, #efebe4);
}

.brand-logo-ricoh img {
  max-height: 2.7rem;
}

.brand-logo-scanpro {
  background: linear-gradient(135deg, #111e24, #294754);
}

.brand-logo-scanpro img {
  max-height: 3.6rem;
}

.brand-kicker {
  margin: 0;
  color: var(--accent);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: -0.03em;
  font-weight: 400;
}

.brand-card p {
  margin: 0;
  color: var(--muted);
}

.text-link {
  color: var(--text);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

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

.catalog-card,
.product-detail-panel,
.product-spec-list,
.product-sidebar-card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
}

.catalog-card h2,
.product-detail-copy h2,
.product-sidebar-card h2 {
  margin-top: 0;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.catalog-card p,
.catalog-card li,
.product-detail-copy p,
.product-spec-list li,
.product-sidebar-card p,
.product-sidebar-card li {
  color: var(--muted);
}

.catalog-card ul,
.product-spec-list ul,
.product-sidebar-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.catalog-card-footer {
  margin-top: 1rem;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(290px, 0.8fr);
  gap: 1rem;
}

.product-detail-copy {
  display: grid;
  gap: 1rem;
}

.product-detail-visual {
  margin: 0;
  padding: 1.4rem;
  border: 1px solid rgba(19, 33, 39, 0.08);
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at top left, rgba(41, 84, 100, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 241, 233, 0.95));
  box-shadow: 0 18px 54px rgba(16, 28, 33, 0.1);
  overflow: hidden;
}

.product-detail-visual img {
  width: 100%;
  max-height: 25rem;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
}

.product-detail-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.68));
}

.product-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.product-pill-list span {
  display: inline-flex;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(19, 33, 39, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  font-size: 0.85rem;
}

.product-spec-list h2 {
  margin-top: 0;
  font-family: var(--font-display);
}

.product-sidebar {
  display: grid;
  gap: 1rem;
}

.product-sidebar-card strong {
  display: block;
  margin-bottom: 0.4rem;
  font-family: var(--font-display);
}
}

.cta-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(15, 25, 30, 0.96), rgba(34, 58, 67, 0.92)),
    var(--surface-dark);
  color: #f7f1e7;
}

.site-footer {
  padding: 2.4rem 0 3rem;
  background: #0d171c;
  color: #ecdfd2;
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  25% {
    transform: translate3d(0.35rem, -0.5rem, 0) scale(1.01);
  }
  50% {
    transform: translate3d(-0.2rem, 0.35rem, 0) scale(1.012);
  }
  75% {
    transform: translate3d(0.3rem, 0.2rem, 0) scale(1.006);
  }
}

@keyframes heroGridDrift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(52px, 26px, 0);
  }
}

@keyframes heroBadgePulse {
  0%,
  100% {
    opacity: 0.92;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes scanSweep {
  0%,
  100% {
    transform: translateY(-115%);
    opacity: 0;
  }
  18% {
    opacity: 0;
  }
  45% {
    opacity: 1;
  }
  72% {
    opacity: 0.55;
  }
  88% {
    opacity: 0;
    transform: translateY(115%);
  }
}

@keyframes ringPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-grid h2 {
  margin-top: 0;
  font-size: 1rem;
}

.preservation-hero {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.22)),
    radial-gradient(circle at right top, rgba(41, 84, 100, 0.12), transparent 34%);
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-flex;
    padding: 0.7rem 0.8rem;
    border: 1px solid var(--line);
    border-radius: 999px;
  }

  .primary-nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem;
    background: rgba(248, 245, 239, 0.96);
    border: 1px solid var(--line);
    border-radius: 1rem;
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .nav-shell {
    position: relative;
  }

  .hero-grid,
  .page-hero-grid,
  .contact-layout,
  .rail-grid,
  .summary-grid,
  .capability-grid,
  .split-grid,
  .faq-list,
  .footer-grid,
  .contact-grid,
  .sector-detail-grid,
  .process-grid,
  .brand-grid,
  .catalog-grid,
  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .product-hero-grid {
    grid-template-columns: 1fr;
  }

  .split-grid-visual {
    grid-template-columns: 1fr;
  }

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

  .cta-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .hero,
  .page-hero {
    padding-top: 4.2rem;
  }

  .hero-copy h1,
  .page-hero h1,
  .section-head h2,
  .split-grid h2,
  .cta-grid h2 {
    font-size: clamp(2rem, 12vw, 3.2rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .contact-form-card {
    padding: 1.25rem;
  }

  .contact-form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-motion-badges {
    inset: auto 0.75rem 0.75rem 0.75rem;
    gap: 0.45rem;
  }

  .hero-motion-badges span {
    font-size: 0.64rem;
    letter-spacing: 0.06em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-motion {
    display: none;
  }

  .hero-motion-badges span,
  .page-hero-visual::before,
  .page-hero-visual::after,
  .page-hero-visual img,
  .split-visual-card::before,
  .split-visual-card::after,
  .split-visual-card img {
    animation: none !important;
    transform: none !important;
  }
}

/* Form Status Messages */
.form-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.form-note.is-success {
  color: #10b981; /* Emerald 500 */
  font-weight: 500;
}

.form-note.is-error {
  color: #ef4444; /* Red 500 */
  font-weight: 500;
}

/* Text Link Buttons */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  margin-top: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  color: var(--text);
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.25s ease;
}

.text-link::after {
  content: "→";
  font-family: var(--font-body);
  font-size: 1.1em;
  transition: transform 0.25s ease;
}

.text-link:hover {
  background: #ffffff;
  border-color: rgba(37, 71, 240, 0.4);
  color: var(--accent);
  box-shadow: 0 4px 12px rgba(37, 71, 240, 0.08);
  transform: translateY(-2px);
}

.text-link:hover::after {
  transform: translateX(4px);
}

/* Immersive Hero Section */
.hero-immersive {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  margin-top: -5.5rem; /* Pull up to render beneath the sticky header */
  padding: 6rem 1rem 2rem; /* Add padding to prevent content from hiding behind header */
}

@supports (min-height: 100dvh) {
  .hero-immersive {
    min-height: 100dvh;
  }
}

.hero-immersive-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero_scanning_facility.png');
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.hero-immersive-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 26, 0.65);
  z-index: -1;
}

.hero-immersive-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  color: #f8fafc;
  animation: slideUpFade 1s ease-out forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.1;
  text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  color: rgba(248, 250, 252, 0.9);
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-immersive-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.button-ghost {
  min-height: 3.25rem;
  padding: 0 1.4rem;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #f8fafc;
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.button-ghost[href^="#"] {
  animation: gentleBounce 2.5s infinite ease-in-out;
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gentleBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Service Panel Links */
a.service-panel {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}
a.service-panel:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

/* Solution Pages Hero Banner */
/* Solution Pages Hero Banner */
.solution-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 3rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  color: #fff;
}

.solution-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #000;
}

.solution-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}

.solution-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 14, 26, 0.95) 0%, rgba(10, 14, 26, 0.4) 60%, transparent 100%);
}

.solution-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(10, 14, 26, 0.5) 70%, #0a0e1a 100%);
}

.solution-hero-content {
  position: relative;
  z-index: 1;
}

.solution-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  margin-bottom: 1.5rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.9rem;
}

.solution-back-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.solution-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  text-wrap: balance;
  margin-bottom: 1rem;
  color: #fff;
  line-height: 1.1;
}

.solution-hero-lede {
  font-size: 1.1rem;
  max-width: 700px;
  text-wrap: pretty;
  color: rgba(248, 250, 252, 0.9);
  margin-bottom: 0;
}

/* Enhanced Workflow Diagram */
.workflow-diagram {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 3rem 0;
  padding: 3rem;
  background: rgba(10, 14, 26, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(59, 91, 255, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.workflow-diagram::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59, 91, 255, 0.9), transparent);
}

@media (min-width: 992px) {
  .workflow-diagram {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
}

.workflow-step {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 2rem;
  background: rgba(17, 24, 39, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  color: #fff;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  min-width: 260px;
}

.workflow-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
  border-color: rgba(59, 91, 255, 0.6);
  background: rgba(24, 33, 53, 0.95);
}

.step-content {
  display: flex;
  flex-direction: column;
}

.step-num {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--slate-400);
  margin-bottom: 0.2rem;
}

.step-text {
  font-size: 1.15rem;
  font-weight: 600;
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(59, 91, 255, 0.15);
  color: #a5b4fc;
}

.workflow-step.highlight {
  border-color: var(--accent);
  box-shadow: 0 0 30px rgba(232, 163, 61, 0.25);
  transform: scale(1.05);
  background: rgba(25, 30, 40, 0.95);
}

.workflow-step.highlight:hover {
  transform: scale(1.05) translateY(-4px);
  box-shadow: 0 0 40px rgba(232, 163, 61, 0.35);
}

.workflow-step.highlight .step-icon {
  background: rgba(232, 163, 61, 0.2);
  color: var(--saffron-500);
}

.pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  border: 2px solid var(--accent);
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
  z-index: -1;
}

.workflow-step.success {
  border-color: rgba(16, 185, 129, 0.6);
}

.workflow-step.success .step-icon {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
}

.workflow-arrow {
  display: none;
  width: 2.5rem;
  height: 3px;
  background: linear-gradient(90deg, rgba(255,255,255,0.1), rgba(59, 91, 255, 0.6));
  position: relative;
}

.workflow-arrow::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -5px;
  border-left: 8px solid rgba(59, 91, 255, 0.6);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

@media (min-width: 992px) {
  .workflow-arrow {
    display: block;
  }
}

@keyframes ping {
  75%, 100% {
    transform: scale(1.1);
    opacity: 0;
  }
}

/* FAQ Cards */
.faq-card {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: flex-start;
  padding: 2.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.faq-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(59, 91, 255, 0.3), rgba(148, 163, 184, 0));
}

.faq-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.faq-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: rgba(59, 91, 255, 0.08);
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  box-shadow: inset 0 0 0 1px rgba(59, 91, 255, 0.15);
}

.faq-content h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--text);
  line-height: 1.1;
}

.faq-content p {
  font-size: 1.15rem;
  color: var(--slate-700);
  line-height: 1.6;
  margin-top: 0;
}

@media (max-width: 768px) {
  .faq-card {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
  }
}

/* Sector Icons */
.sector-icon {
  color: var(--accent);
  margin-bottom: 1rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.sector-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.sector-card:hover .sector-icon {
  transform: scale(1.1) translateY(-2px);
  color: var(--saffron-400);
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(59, 91, 255, 0.3);
  color: #fff;
  z-index: 9999;
  padding: 1.5rem 0;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.cookie-banner-hidden {
  transform: translateY(100%);
  opacity: 0;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--slate-300);
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 768px) {
  .cookie-content {
    flex-direction: row;
  }
  .cookie-content p {
    flex: 1;
    margin-right: 2rem;
  }
  .cookie-actions {
    flex-shrink: 0;
  }
}
