/* ============================================================
   File: assets/css/style.css
   DELTAX Software — Design System
   ============================================================ */

:root {
  --bg: #FFFFFF;
  --bg-alt: #F4F6F9;
  --navy: #1E3A5F;
  --navy-dark: #162B47;
  --navy-light: #E8EEF5;
  --crimson: #C0392B;
  --crimson-dark: #9E2E23;
  --crimson-light: #FDECEA;
  --silver: #8C9AAB;
  --text: #1A202C;
  --text-muted: #718096;
  --border: #DDE3EC;
  --gold: #D4A853;
  --gold-dark: #A8852F;

  --radius: 6px;
  --radius-lg: 10px;
  --shadow-sm: 0 1px 2px rgba(30,58,95,.06), 0 1px 3px rgba(30,58,95,.05);
  --shadow: 0 4px 14px rgba(30,58,95,.08), 0 2px 4px rgba(30,58,95,.05);
  --shadow-lg: 0 20px 48px rgba(30,58,95,.14), 0 6px 14px rgba(30,58,95,.08);
  --ease: cubic-bezier(.2,.8,.2,1);
  --header-h: 72px;
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Noto Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--crimson); }
button { font-family: inherit; cursor: pointer; }
h1,h2,h3,h4,h5 {
  font-family: "Raleway", "Noto Sans", sans-serif;
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.375rem; font-weight: 700; }
h4 { font-size: 1.0625rem; font-weight: 700; letter-spacing: .02em; text-transform: uppercase; }
p  { margin: 0 0 1rem; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(1.2) blur(8px);
  -webkit-backdrop-filter: saturate(1.2) blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 2rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-weight: 700;
}
.brand-mark {
  width: 40px; height: 40px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  position: relative;
  overflow: hidden;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: var(--gold);
}
.brand-mark-d { font-size: 1.25rem; line-height: 1; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--navy);
  font-size: 1.05rem;
}
.brand-sub {
  font-size: .72rem;
  color: var(--text-muted);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-link {
  font-size: .95rem;
  font-weight: 500;
  color: var(--text);
  padding: .25rem 0;
  border-bottom: 2px solid transparent;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.nav-link:hover { color: var(--navy); border-bottom-color: var(--gold); }
.nav-link.active { color: var(--navy); border-bottom-color: var(--crimson); }

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding-left: 1.25rem;
  border-left: 1px solid var(--border);
  margin-left: .5rem;
}
.lang {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--text-muted);
}
.lang.is-current { color: var(--navy); }
.lang-sep { color: var(--border); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: .5rem;
  width: 40px; height: 40px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: absolute;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem 1.5rem;
    transform: translateY(-120%);
    transition: transform .3s var(--ease);
    box-shadow: var(--shadow);
  }
  .primary-nav.open { transform: translateY(0); }
  .nav-link { width: 100%; padding: .75rem 0; border-bottom: 1px solid var(--border); }
  .lang-switch { border-left: 0; padding-left: 0; margin: .5rem 0 0; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.5rem;
  font-size: .95rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  transition: all .2s var(--ease);
  cursor: pointer;
  letter-spacing: .01em;
  line-height: 1.2;
}
.btn-primary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover {
  background: var(--navy);
  color: #fff;
}
.btn-crimson {
  background: var(--crimson);
  color: #fff;
  border-color: var(--crimson);
}
.btn-crimson:hover {
  background: var(--crimson-dark);
  border-color: var(--crimson-dark);
  color: #fff;
}
.btn-sm { padding: .5rem .95rem; font-size: .85rem; }
.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--navy-light) 0%, #fff 85%);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(3.5rem, 7vw, 6rem);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,58,95,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,58,95,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 3rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .9rem;
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(212,168,83,.08);
  margin-bottom: 1.25rem;
}
.hero-badge::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.hero h1 { margin-bottom: 1.25rem; }
.hero-sub {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 34em;
  margin-bottom: 2rem;
}
.hero-ctas { display: flex; gap: .85rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.trust-row {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  color: var(--text);
  font-weight: 500;
}
.trust-item::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--navy);
  border-radius: 2px;
  display: inline-block;
}
.trust-sep { color: var(--border); }

/* ---------- Software dashboard CSS art ---------- */
.app-art {
  position: relative;
  aspect-ratio: 5 / 4;
  max-width: 520px;
  margin-left: auto;
  padding: 0;
}
.app-art::before {
  /* soft halo behind everything */
  content: "";
  position: absolute;
  inset: 8% -4% 4% -2%;
  background: radial-gradient(60% 55% at 60% 40%, rgba(30,58,95,.18), transparent 70%),
              radial-gradient(50% 45% at 30% 80%, rgba(212,168,83,.22), transparent 75%);
  filter: blur(6px);
  z-index: 0;
  pointer-events: none;
}
.app-art::after {
  /* subtle dotted grid */
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(30,58,95,.18) 1px, transparent 1px);
  background-size: 16px 16px;
  mask-image: radial-gradient(ellipse at 55% 55%, #000 40%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 55% 55%, #000 40%, transparent 75%);
  opacity: .5;
  z-index: 0;
  pointer-events: none;
}

/* Main window ---------------------------------------------- */
.app-window {
  position: relative;
  z-index: 2;
  width: 92%;
  margin-left: auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow:
    0 30px 60px -20px rgba(30,58,95,.35),
    0 12px 24px -12px rgba(30,58,95,.2);
  overflow: hidden;
  transform: translateY(16px) scale(.96);
  opacity: 0;
  animation: app-rise 1s var(--ease) .15s forwards;
}
.app-chrome {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .75rem;
  background: linear-gradient(180deg, #F7F9FC 0%, #EEF2F7 100%);
  border-bottom: 1px solid var(--border);
}
.app-chrome .dot {
  width: 10px; height: 10px; border-radius: 50%;
  display: inline-block;
}
.app-chrome .dot.red    { background: #ED6A5E; }
.app-chrome .dot.yellow { background: #F5BF4F; }
.app-chrome .dot.green  { background: #61C554; }
.app-addr {
  flex: 1;
  margin-left: .5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: .2rem .6rem;
  font-family: "Noto Sans", monospace;
  font-size: .72rem;
  color: var(--text-muted);
  letter-spacing: .02em;
}
.app-addr::before {
  content: "\1F512";
  margin-right: .35rem;
  opacity: .55;
}
.app-body {
  display: grid;
  grid-template-columns: 42px 1fr;
  min-height: 260px;
}
.app-side {
  background: var(--navy-dark);
  padding: .75rem .4rem;
  display: flex;
  flex-direction: column;
  gap: .45rem;
  align-items: center;
}
.app-side .logo {
  width: 26px; height: 26px;
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  font-size: .75rem;
  margin-bottom: .35rem;
}
.app-side .side-item {
  width: 22px; height: 22px;
  border-radius: 4px;
  background: rgba(255,255,255,.08);
  display: block;
  position: relative;
}
.app-side .side-item::before {
  content: "";
  position: absolute;
  inset: 25%;
  border: 1.5px solid rgba(255,255,255,.45);
  border-radius: 2px;
}
.app-side .side-item.active {
  background: rgba(212,168,83,.2);
  box-shadow: inset 2px 0 0 var(--gold);
}
.app-side .side-item.active::before { border-color: var(--gold); }

.app-main { padding: .9rem 1rem 1rem; }
.app-tabs {
  display: flex;
  gap: 1.1rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: .85rem;
  font-size: .72rem;
  font-weight: 600;
  color: var(--text-muted);
}
.app-tabs .tab {
  padding: .15rem 0 .5rem;
  border-bottom: 2px solid transparent;
  letter-spacing: .04em;
}
.app-tabs .tab.active {
  color: var(--navy);
  border-bottom-color: var(--crimson);
}

/* KPI row ---------------------------------------------------- */
.kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
  margin-bottom: .9rem;
}
.kpi {
  background: var(--bg-alt);
  border-radius: 6px;
  padding: .5rem .6rem;
  opacity: 0;
  animation: fade-up .6s var(--ease) forwards;
}
.kpi:nth-child(1) { animation-delay: .55s; }
.kpi:nth-child(2) { animation-delay: .7s; }
.kpi:nth-child(3) { animation-delay: .85s; }
.kpi-label {
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  font-weight: 600;
  display: block;
}
.kpi-val {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  font-size: .95rem;
  color: var(--navy);
  display: block;
  margin: .05rem 0 .25rem;
}
.kpi-bar {
  height: 3px;
  background: rgba(30,58,95,.1);
  border-radius: 2px;
  overflow: hidden;
}
.kpi-bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--navy) 0%, var(--gold) 100%);
  width: 0;
  animation: bar-fill 1.1s var(--ease) forwards;
}
.kpi:nth-child(1) .kpi-bar i { animation-delay: .9s;  --w: 76%; }
.kpi:nth-child(2) .kpi-bar i { animation-delay: 1.0s; --w: 62%; }
.kpi:nth-child(3) .kpi-bar i { animation-delay: 1.1s; --w: 94%; }
.kpi-val .trend { font-size: .6rem; font-weight: 600; color: #2E7D32; margin-left: .2rem; }

/* Chart ------------------------------------------------------ */
.chart {
  position: relative;
  height: 72px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  padding: 0 0 .3rem;
  border-bottom: 1px dashed var(--border);
  margin-bottom: .55rem;
}
.chart .bar {
  flex: 1;
  background: linear-gradient(180deg, var(--navy) 0%, #3E6295 100%);
  border-radius: 2px 2px 0 0;
  transform: scaleY(0);
  transform-origin: bottom;
  animation: bar-grow .8s var(--ease) forwards;
  position: relative;
}
.chart .bar.alt { background: linear-gradient(180deg, var(--gold) 0%, #C0913A 100%); }
.chart .bar:nth-child(1)  { height: 42%; animation-delay: .80s; }
.chart .bar:nth-child(2)  { height: 58%; animation-delay: .88s; }
.chart .bar:nth-child(3)  { height: 35%; animation-delay: .96s; }
.chart .bar:nth-child(4)  { height: 68%; animation-delay: 1.04s; }
.chart .bar:nth-child(5)  { height: 80%; animation-delay: 1.12s; }
.chart .bar:nth-child(6)  { height: 55%; animation-delay: 1.20s; }
.chart .bar:nth-child(7)  { height: 92%; animation-delay: 1.28s; }
.chart .bar:nth-child(8)  { height: 70%; animation-delay: 1.36s; }
.chart .bar:nth-child(9)  { height: 48%; animation-delay: 1.44s; }
.chart .bar:nth-child(10) { height: 85%; animation-delay: 1.52s; }

/* Data rows -------------------------------------------------- */
.rows { display: flex; flex-direction: column; gap: 4px; }
.row {
  display: grid;
  grid-template-columns: 8px 1fr 40px 42px;
  gap: .45rem;
  align-items: center;
  padding: .28rem .35rem;
  background: #FAFBFD;
  border-radius: 4px;
  opacity: 0;
  transform: translateX(12px);
  animation: slide-in .5s var(--ease) forwards;
  font-size: .68rem;
}
.row:nth-child(1) { animation-delay: 1.2s; }
.row:nth-child(2) { animation-delay: 1.35s; }
.row:nth-child(3) { animation-delay: 1.5s; }
.row .ind {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2E7D32;
}
.row .ind.warn { background: var(--gold-dark); }
.row .ind.crit { background: var(--crimson); }
.row .label { color: var(--text); font-weight: 500; }
.row .num { font-family: "Raleway", sans-serif; font-weight: 700; color: var(--navy); font-size: .72rem; text-align: right; }
.row .tag {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-align: center;
  padding: .1rem .25rem;
  border-radius: 3px;
  background: var(--navy-light);
  color: var(--navy);
  text-transform: uppercase;
}
.row .tag.ok   { background: #E6F4EA; color: #1E6F31; }
.row .tag.warn { background: #FFF4DB; color: #8A5A00; }

/* Demo indicator --------------------------------------------- */
.live-chip {
  position: absolute;
  top: .75rem;
  right: .75rem;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: .2rem .45rem;
  border-radius: 999px;
  opacity: 0;
  animation: fade-up .6s var(--ease) 1.6s forwards;
}
.live-chip::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--silver);
  border-radius: 50%;
}

/* Demo disclaimer under the illustrative dashboard ----------- */
.app-art-note {
  margin: 1rem 0 0;
  font-size: .72rem;
  line-height: 1.4;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

/* Pricing / contract-scope disclaimer ------------------------ */
.price-note {
  margin: 2rem 0 0;
  max-width: 70ch;
  font-size: .82rem;
  line-height: 1.5;
  color: var(--text-muted);
}

/* Form-level privacy notice & optional consent --------------- */
.form-privacy {
  margin: .75rem 0 1.25rem;
  font-size: .8rem;
  line-height: 1.5;
  color: var(--text-muted);
}
.form-privacy a { color: var(--navy); text-decoration: underline; }
.consent-opt {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  margin: 1.25rem 0 0;
  font-size: .85rem;
  line-height: 1.4;
  color: var(--text-muted);
  cursor: pointer;
}
.consent-opt input { margin-top: .2rem; flex: 0 0 auto; }

/* Cookie disclosure table ------------------------------------ */
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: .85rem;
}
.cookie-table th,
.cookie-table td {
  text-align: left;
  padding: .6rem .75rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.cookie-table thead th {
  background: var(--bg-alt);
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
.cookie-table td:first-child { font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace; }

/* Terminal floater ------------------------------------------- */
.term-card {
  position: absolute;
  left: 0;
  bottom: 6%;
  width: 58%;
  background: #0F1A2B;
  color: #E4EAF5;
  border-radius: 10px;
  overflow: hidden;
  box-shadow:
    0 24px 50px -16px rgba(15,26,43,.55),
    0 8px 18px -8px rgba(15,26,43,.35);
  border: 1px solid rgba(255,255,255,.08);
  z-index: 3;
  transform: translateY(20px) rotate(-2deg);
  opacity: 0;
  animation: float-in .9s var(--ease) 1.4s forwards, tilt 8s ease-in-out 2.4s infinite;
}
.term-head {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem .6rem;
  background: #1A2740;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: .68rem;
  color: rgba(255,255,255,.5);
  font-family: "Noto Sans", monospace;
}
.term-head .dot { width: 9px; height: 9px; border-radius: 50%; }
.term-head .dot.red { background: #ED6A5E; }
.term-head .dot.yellow { background: #F5BF4F; }
.term-head .dot.green { background: #61C554; }
.term-title { margin-left: .4rem; }
.term-body {
  padding: .55rem .75rem .75rem;
  font-family: "Noto Sans", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .72rem;
  line-height: 1.6;
  min-height: 92px;
}
.term-body .line {
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  animation: type 1s steps(40) forwards;
}
.term-body .line:nth-child(1) { animation-delay: 1.7s; }
.term-body .line:nth-child(2) { animation-delay: 2.4s; color: rgba(255,255,255,.55); }
.term-body .line:nth-child(3) { animation-delay: 3.0s; color: #7FE5A1; }
.term-body .line:nth-child(4) { animation-delay: 3.6s; animation-fill-mode: forwards; }
.term-body .prompt { color: var(--gold); margin-right: .4rem; }
.term-body .cursor {
  display: inline-block;
  width: 7px; height: .9em;
  background: #E4EAF5;
  vertical-align: text-bottom;
  margin-left: .15rem;
  animation: blink 1s steps(1) infinite;
}

/* Toast floater ---------------------------------------------- */
.app-toast {
  position: absolute;
  top: 6%;
  right: -4%;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  box-shadow:
    0 18px 36px -14px rgba(30,58,95,.35),
    0 6px 14px -6px rgba(30,58,95,.2);
  padding: .55rem .7rem .55rem .6rem;
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .72rem;
  z-index: 4;
  transform: translateX(36px);
  opacity: 0;
  animation: toast-in .7s var(--ease) 2s forwards, bob 6s ease-in-out 3s infinite;
  max-width: 62%;
}
.app-toast .toast-ico {
  width: 24px; height: 24px;
  border-radius: 6px;
  background: #E6F4EA;
  color: #1E6F31;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .85rem;
  flex: 0 0 auto;
}
.app-toast strong {
  display: block;
  color: var(--navy);
  font-weight: 700;
  font-size: .76rem;
  line-height: 1.2;
}
.app-toast span {
  color: var(--text-muted);
  font-size: .66rem;
}

/* Code sticker ---------------------------------------------- */
.code-badge {
  position: absolute;
  right: -1.5%;
  bottom: 20%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: .45rem .6rem;
  font-family: "Noto Sans", ui-monospace, monospace;
  font-size: .66rem;
  color: var(--text);
  z-index: 3;
  opacity: 0;
  transform: translateY(10px) rotate(3deg);
  animation: float-in .8s var(--ease) 2.4s forwards, tilt-r 9s ease-in-out 3.4s infinite;
}
.code-badge .kw { color: var(--crimson); font-weight: 700; }
.code-badge .fn { color: var(--navy); font-weight: 700; }
.code-badge .str { color: var(--gold-dark); }
.code-badge .mute { color: var(--text-muted); }

/* Keyframes -------------------------------------------------- */
@keyframes app-rise {
  to { transform: translateY(0) scale(1); opacity: 1; }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}
@keyframes bar-grow {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}
@keyframes bar-fill {
  to { width: var(--w, 70%); }
}
@keyframes slide-in {
  to { opacity: 1; transform: none; }
}
@keyframes float-in {
  to { opacity: 1; transform: none; }
}
@keyframes toast-in {
  to { opacity: 1; transform: none; }
}
@keyframes blink {
  50% { opacity: 0; }
}
@keyframes type {
  from { width: 0; }
  to   { width: 100%; }
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(46,125,50,.6); }
  50%     { box-shadow: 0 0 0 6px rgba(46,125,50,0); }
}
@keyframes bob {
  0%,100% { transform: translateY(0) translateX(0); }
  50%     { transform: translateY(-4px) translateX(-2px); }
}
@keyframes tilt {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50%     { transform: translateY(-3px) rotate(-1.2deg); }
}
@keyframes tilt-r {
  0%,100% { transform: translateY(0) rotate(3deg); }
  50%     { transform: translateY(-3px) rotate(2.2deg); }
}

@media (prefers-reduced-motion: reduce) {
  .app-window, .kpi, .chart .bar, .row, .live-chip, .term-card, .app-toast, .code-badge, .kpi-bar i {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    width: var(--w, 100%) !important;
  }
  .chart .bar { transform: scaleY(1) !important; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .app-art { margin: 0 auto; max-width: 460px; }
}
@media (max-width: 520px) {
  .app-toast { right: 2%; max-width: 70%; }
  .term-card { width: 66%; }
  .code-badge { display: none; }
}

/* ---------- Sections ---------- */
section { padding: clamp(3rem, 5vw, 5rem) 0; }
.section-head { max-width: 56ch; margin-bottom: 2.5rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-sub { font-size: 1.05rem; color: var(--text-muted); }
.section-alt { background: var(--bg-alt); }
.eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: .75rem;
}

/* ---------- Grids ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid.cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid.cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid.cols-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
@media (max-width: 900px) {
  .grid.cols-3, .grid.cols-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 600px) {
  .grid.cols-2, .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr; }
}

/* ---------- Cards ---------- */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--navy-light);
}
.card h3 { margin-bottom: .35rem; }
.card-kicker {
  font-size: .78rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .5rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.card-body { color: var(--text-muted); flex: 1; }
.card-icon {
  width: 44px; height: 44px;
  background: var(--navy-light);
  color: var(--navy);
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  margin-bottom: 1rem;
}

/* ---------- Product cards ---------- */
.product-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--navy-light);
}
.product-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .75rem;
}
.product-category {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.version-badge {
  background: var(--navy);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: .25rem .55rem;
  border-radius: 4px;
  letter-spacing: .04em;
  font-family: "Raleway", sans-serif;
}
.product-card h3 { margin: 0 0 .75rem; }
.product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  flex: 1;
}
.product-features li {
  padding: .4rem 0 .4rem 1.5rem;
  position: relative;
  color: var(--text);
  font-size: .95rem;
  border-bottom: 1px dashed var(--border);
}
.product-features li:last-child { border-bottom: 0; }
.product-features li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 8px; height: 8px;
  background: var(--crimson);
  border-radius: 1px;
  transform: translateY(-50%) rotate(45deg);
}
.product-price {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}
.product-price .price-big {
  font-size: 1.5rem;
  color: var(--navy);
}
.product-price .price-unit {
  font-size: .85rem;
  color: var(--text-muted);
  font-weight: 500;
}
.product-ctas { display: flex; gap: .5rem; flex-wrap: wrap; }

/* ---------- Filter tabs ---------- */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
  padding: .4rem;
  background: var(--bg-alt);
  border-radius: var(--radius);
  width: max-content;
  max-width: 100%;
}
.filter-tab {
  border: 0;
  background: transparent;
  padding: .5rem 1rem;
  border-radius: 4px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all .2s var(--ease);
}
.filter-tab:hover { color: var(--navy); }
.filter-tab.active {
  background: #fff;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.is-hidden { display: none !important; }

/* ---------- Tier / enterprise ---------- */
.tier {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
}
.tier.featured {
  border-color: var(--navy);
  box-shadow: var(--shadow);
}
.tier.featured::before {
  content: attr(data-badge);
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--crimson);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 999px;
  white-space: nowrap;
}
.tier-name { font-size: 1.5rem; }
.tier-seats { color: var(--text-muted); margin-bottom: 1.25rem; font-size: .9rem; }
.tier ul { list-style: none; margin: 0 0 1.25rem; padding: 0; }
.tier ul li {
  padding: .5rem 0 .5rem 1.5rem;
  position: relative;
  font-size: .95rem;
}
.tier ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-weight: 700;
}
.tier-dl { display: grid; gap: .4rem; margin-bottom: 1.25rem; padding: 1rem; background: var(--bg-alt); border-radius: var(--radius); }
.tier-dl div { display: flex; justify-content: space-between; gap: 1rem; font-size: .88rem; }
.tier-dl dt { color: var(--text-muted); }
.tier-dl dd { margin: 0; font-weight: 600; color: var(--navy); }

/* ---------- Matrix table ---------- */
.matrix-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
}
.matrix {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}
.matrix th, .matrix td {
  padding: .95rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: .92rem;
  vertical-align: middle;
}
.matrix thead th {
  background: var(--navy);
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
  border-bottom: 0;
}
.matrix thead th:first-child { background: var(--navy-dark); }
.matrix tbody tr:nth-child(even) { background: #FAFBFD; }
.matrix tbody tr:hover { background: var(--navy-light); }
.matrix td.yes { color: var(--gold-dark); font-weight: 700; }
.matrix td.no  { color: var(--silver); }
.matrix th.row-h, .matrix td.row-h { font-weight: 600; color: var(--navy); }

/* Sticky first column on small screens */
@media (max-width: 720px) {
  .matrix th:first-child, .matrix td:first-child {
    position: sticky;
    left: 0;
    background: #fff;
    box-shadow: 1px 0 0 var(--border);
    z-index: 1;
  }
  .matrix thead th:first-child { background: var(--navy-dark); color: #fff; }
  .matrix tbody tr:nth-child(even) td:first-child { background: #FAFBFD; }
}

/* ---------- SLA table (services page) ---------- */
.sla-table { width: 100%; border-collapse: collapse; }
.sla-table th, .sla-table td {
  padding: .85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.sla-table thead th {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: "Raleway", sans-serif;
}

/* ---------- Process / steps ---------- */
.steps { counter-reset: step; display: grid; gap: 1.5rem; grid-template-columns: repeat(4, minmax(0,1fr)); }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--gold);
  display: block;
  margin-bottom: .5rem;
  letter-spacing: .04em;
}

/* ---------- Banner / CTA ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: "";
  position: absolute;
  right: -80px; top: -80px;
  width: 260px; height: 260px;
  border: 1px solid rgba(212,168,83,.35);
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner h2 { color: #fff; margin-bottom: .5rem; }
.cta-banner p { color: rgba(255,255,255,.82); margin: 0; max-width: 46ch; }
.cta-banner .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.cta-banner .btn-ghost:hover { background: #fff; color: var(--navy); }

/* ---------- About / milestones ---------- */
.timeline {
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid var(--navy-light);
  display: grid;
  gap: 1.75rem;
}
.timeline-item { position: relative; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.4rem;
  top: .5rem;
  width: 14px; height: 14px;
  background: var(--gold);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--navy-light);
  border-radius: 50%;
}
.timeline-year {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  color: var(--navy);
  font-size: 1.25rem;
  margin-bottom: .1rem;
}

/* ---------- Tabs (contact) ---------- */
.tabs-head {
  display: flex;
  border-bottom: 2px solid var(--border);
  margin-bottom: 2rem;
  gap: .25rem;
  overflow-x: auto;
}
.tab-btn {
  background: none;
  border: 0;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all .2s var(--ease);
  white-space: nowrap;
  font-family: "Raleway", sans-serif;
  letter-spacing: .02em;
}
.tab-btn:hover { color: var(--navy); }
.tab-btn.active {
  color: var(--navy);
  border-bottom-color: var(--crimson);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .35rem;
  letter-spacing: .01em;
}
.field .req { color: var(--crimson); margin-left: .15rem; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .7rem .9rem;
  font: inherit;
  color: var(--text);
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; font-family: inherit; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px var(--navy-light);
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--crimson);
  background: var(--crimson-light);
}
.hp-field { position: absolute !important; left: -10000px !important; top: auto; width: 1px; height: 1px; overflow: hidden; }

.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  border-left: 4px solid;
  font-size: .95rem;
}
.alert-success { background: #E8F4EA; border-color: #2E7D32; color: #1B5E20; }
.alert-error { background: var(--crimson-light); border-color: var(--crimson); color: var(--crimson-dark); }

/* ---------- Contact info blocks ---------- */
.info-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.info-card h4 { margin-bottom: .75rem; }
.info-card p { margin-bottom: .25rem; }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 9;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Legal pages ---------- */
.legal-content {
  max-width: 74ch;
  margin: 0 auto;
}
.legal-content h2 { margin-top: 2.25rem; }
.legal-content h3 { margin-top: 1.5rem; font-size: 1.15rem; }
.legal-content ul { padding-left: 1.25rem; }

/* ---------- Page hero (sub pages) ---------- */
.page-hero {
  background: linear-gradient(180deg, var(--navy-light) 0%, transparent 100%);
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(1.5rem, 3vw, 2.5rem);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: .75rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.7);
  padding: 3.5rem 0 0;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.site-footer h4 {
  color: #fff;
  font-size: .8rem;
  letter-spacing: .16em;
  margin-bottom: 1rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { padding: .25rem 0; }
.site-footer a { color: rgba(255,255,255,.7); font-size: .9rem; }
.site-footer a:hover { color: var(--gold); }
.footer-brand .brand-name, .footer-brand .brand-sub { color: #fff; }
.footer-brand .brand-sub { color: rgba(255,255,255,.6); }
.footer-brand-row { margin-bottom: 1rem; }
.footer-brand-row .brand-mark { background: #fff; color: var(--navy); }
.footer-tag { font-style: italic; opacity: .85; max-width: 34ch; }
.footer-addr { font-size: .88rem; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.25rem 0;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ---------- Utilities ---------- */
.text-muted { color: var(--text-muted); }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.stack > * + * { margin-top: 1rem; }
.center { text-align: center; }
.flex-end { display: flex; justify-content: flex-end; }
.hr-gold {
  height: 3px; width: 48px; background: var(--gold);
  border: 0; margin: 0 0 1.25rem;
}

/* Focus ring for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--crimson);
  outline-offset: 2px;
  border-radius: 3px;
}

/* ---------- Cookie consent popup ---------- */
.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  padding: 1rem clamp(.75rem, 3vw, 2rem) clamp(1rem, 3vw, 2rem);
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.cookie-consent[hidden] { display: none; }
.cookie-consent::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(22,43,71,0) 40%, rgba(22,43,71,.18) 100%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.cookie-consent.is-open::before { opacity: 1; }

.cookie-consent__card {
  pointer-events: auto;
  width: min(640px, 100%);
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem 1.5rem 1.25rem;
  position: relative;
  transform: translateY(140%);
  opacity: 0;
  transition:
    transform .55s var(--ease),
    opacity   .35s var(--ease);
}
.cookie-consent.is-open .cookie-consent__card {
  transform: translateY(0);
  opacity: 1;
}

.cookie-consent__close {
  position: absolute;
  top: .5rem;
  right: .5rem;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  color: var(--text-muted);
  border-radius: 50%;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.cookie-consent__close:hover {
  background: var(--bg-alt);
  color: var(--crimson);
}

.cookie-consent__head {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: .5rem;
}
.cookie-consent__icon {
  font-size: 1.4rem;
  line-height: 1;
  display: inline-block;
  animation: cc-wobble 2.8s ease-in-out infinite;
  transform-origin: 50% 70%;
}
@keyframes cc-wobble {
  0%,100% { transform: rotate(0deg) translateY(0); }
  30%     { transform: rotate(-8deg) translateY(-1px); }
  60%     { transform: rotate(6deg)  translateY(0); }
}
.cookie-consent__title {
  font-size: 1.125rem;
  margin: 0;
  color: var(--navy);
}
.cookie-consent__body {
  margin: 0 0 1rem;
  font-size: .92rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.cookie-consent__prefs {
  display: grid;
  gap: .65rem;
  padding: .85rem 1rem;
  margin: 0 0 1rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  animation: cc-slide-in .35s var(--ease);
}
@keyframes cc-slide-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0);    }
}
.cookie-consent__row {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  font-size: .88rem;
  cursor: pointer;
}
.cookie-consent__row input[type="checkbox"] {
  margin-top: .25rem;
  accent-color: var(--crimson);
}
.cookie-consent__row strong {
  display: block;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: .1rem;
}
.cookie-consent__row em {
  display: block;
  font-style: normal;
  color: var(--text-muted);
  font-size: .82rem;
  line-height: 1.45;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1rem;
  align-items: center;
  justify-content: space-between;
}
.cookie-consent__link {
  font-size: .82rem;
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: rgba(30,58,95,.25);
  text-underline-offset: 3px;
}
.cookie-consent__link:hover {
  color: var(--crimson);
  text-decoration-color: var(--crimson);
}
.cookie-consent__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.cookie-consent__buttons .btn {
  padding: .55rem 1rem;
  font-size: .85rem;
}

@media (max-width: 560px) {
  .cookie-consent {
    padding: .5rem .5rem 1rem;
  }
  .cookie-consent__card {
    padding: 1.25rem 1.1rem 1rem;
  }
  .cookie-consent__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-consent__buttons {
    justify-content: stretch;
  }
  .cookie-consent__buttons .btn {
    flex: 1 1 auto;
    min-width: 45%;
  }
  .cookie-consent__link { text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-consent__card,
  .cookie-consent__icon,
  .cookie-consent__prefs,
  .cookie-consent::before {
    transition: none !important;
    animation: none !important;
  }
  .cookie-consent__card { transform: none; opacity: 1; }
}
