/* =========================================================
   Hoverview.de — Design System
   Dark cockpit theme, navy base, teal primary, blue secondary.
   ========================================================= */

/* Self-hosted fonts (latin + latin-ext subsets) */

/* Geist — body */
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('fonts/geist-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('fonts/geist-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Space Grotesk — display */
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/spacegrotesk-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/spacegrotesk-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* JetBrains Mono — mono */
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('fonts/jetbrainsmono-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('fonts/jetbrainsmono-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  /* Brand */
  --navy-900: #060f1c;
  --navy-800: #0a1628;
  --navy-700: #0f1f38;
  --navy-600: #15294a;
  --navy-500: #1c3760;
  --border:   #1f3a5f;
  --border-strong: #2c4e7a;

  --teal:        #14a99c;
  --teal-bright: #1ec9bb;
  --teal-dim:    #0d6f66;
  --blue:        #2189d8;
  --blue-bright: #3aa0ec;

  --text:        #e8eef5;
  --text-strong: #ffffff;
  --text-dim:    #95a6bf;
  --text-mute:   #5c7494;

  --warn: #f0b54a;
  --ok:   #14a99c;

  /* Type */
  --f-display: 'Space Grotesk', 'Helvetica Neue', sans-serif;
  --f-body:    'Geist', 'Helvetica Neue', sans-serif;
  --f-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* Layout */
  --maxw: 1280px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 4px;
  --radius-lg: 8px;

  /* Motion */
  --ease: cubic-bezier(.4,.0,.2,1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--navy-800);
  background-image:
    linear-gradient(to right, rgba(44, 78, 122, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(44, 78, 122, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: -1px -1px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: var(--teal-bright); text-decoration: none; }
a:hover { color: var(--text-strong); }
input, textarea, select, button { font: inherit; }

/* Focus */
:focus-visible {
  outline: 2px solid var(--teal-bright);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 8px;
  background: var(--teal); color: var(--navy-900);
  padding: 10px 16px; font-weight: 600;
  border-radius: var(--radius); z-index: 1000;
}
.skip-link:focus { left: 8px; }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 500;
  color: var(--text-strong);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); font-weight: 500; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); font-weight: 500; }
h4 { font-size: 1rem; font-weight: 600; }

p { color: var(--text-dim); }
p.lead { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--text); line-height: 1.55; }

::selection { background: var(--teal); color: var(--navy-900); }

/* Container */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* HUD labels (technical mono accents) */
.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--teal-bright);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--teal-bright);
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(30, 201, 187, 0.18);
}
.mono { font-family: var(--f-mono); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  transition: background .15s var(--ease), color .15s var(--ease), border-color .15s var(--ease), transform .15s var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--teal);
  color: var(--navy-900);
  font-weight: 600;
}
.btn-primary:hover { background: var(--teal-bright); color: var(--navy-900); }
.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-secondary:hover { border-color: var(--teal-bright); color: var(--text-strong); }
.btn-ghost { color: var(--text-dim); padding: 8px 0; }
.btn-ghost:hover { color: var(--teal-bright); }
.btn .arrow { transition: transform .2s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ============== HEADER / NAV ============== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  color: var(--text-strong);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}
.nav-brand:hover { color: var(--text-strong); }
.nav-brand img { width: 34px; height: 34px; }
.nav-brand .tld { color: var(--teal-bright); font-weight: 500; }

.nav-links {
  display: flex; gap: 4px;
  list-style: none; padding: 0;
}
.nav-links > li { position: relative; }
.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  color: var(--text-dim);
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius);
  transition: color .15s var(--ease), background .15s var(--ease);
}
.nav-links a:hover { color: var(--text-strong); background: var(--navy-700); }
.nav-links a[aria-current="page"] { color: var(--teal-bright); }

.nav-caret {
  font-size: 10px;
  line-height: 1;
  transition: transform .2s var(--ease);
}
.nav-item--has-children:hover > a .nav-caret,
.nav-item--has-children:focus-within > a .nav-caret {
  transform: rotate(180deg);
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--navy-700);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 6px;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 24px 48px -16px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .15s var(--ease), transform .15s var(--ease), visibility 0s linear .15s;
  z-index: 60;
}
.nav-item--has-children:hover > .nav-dropdown,
.nav-item--has-children:focus-within > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity .15s var(--ease), transform .15s var(--ease), visibility 0s;
}
/* Invisible bridge so the dropdown doesn't close when crossing the gap */
.nav-item--has-children > a::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 8px;
}
.nav-dropdown a {
  display: flex;
  padding: 10px 14px;
  color: var(--text-dim);
  font-size: 14px;
  border-radius: var(--radius);
  width: 100%;
}
.nav-dropdown a:hover {
  background: var(--navy-600);
  color: var(--text-strong);
}
.nav-dropdown a[aria-current="page"] {
  color: var(--teal-bright);
  background: rgba(20, 169, 156, 0.08);
}
.nav-dropdown li + li { border-top: 1px solid var(--border); padding-top: 2px; margin-top: 2px; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--text);
  white-space: nowrap;
}
.nav-phone:hover { color: var(--teal-bright); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  align-items: center; justify-content: center;
  color: var(--text);
}
.nav-toggle svg { width: 18px; height: 18px; }

@media (max-width: 960px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-phone { display: none; }
  .nav.is-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--navy-800);
    border-bottom: 1px solid var(--border);
    padding: 12px var(--gutter) 20px;
    gap: 0;
  }
  .nav.is-open .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 16px;
  }
  .nav.is-open .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0 0 8px 16px;
    margin-bottom: 8px;
  }
  .nav.is-open .nav-dropdown a {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
  }
  .nav.is-open .nav-dropdown li:last-child a { border-bottom: 0; }
  .nav.is-open .nav-dropdown li + li {
    border-top: 0;
    padding-top: 0;
    margin-top: 0;
  }
  .nav-caret { display: none; }
  .nav.is-open .nav-cta .btn { display: inline-flex; margin-top: 12px; }
}

/* ============== HERO ============== */
.hero {
  position: relative;
  padding: clamp(48px, 8vw, 96px) 0 clamp(64px, 9vw, 120px);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 80% 30%, rgba(20, 169, 156, 0.10), transparent 60%),
    radial-gradient(ellipse 500px 350px at 10% 80%, rgba(33, 137, 216, 0.06), transparent 70%);
  pointer-events: none;
}
.hero > .wrap { position: relative; }

/* Hero variant A: text + sidebar */
.hero--a .hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 64px);
  align-items: end;
}
@media (min-width: 900px) {
  .hero--a .hero-grid {
    grid-template-columns: 1fr 340px;
  }
}

/* Hero with photo background */
.hero--photo {
  position: relative;
  overflow: hidden;
  min-height: clamp(560px, 78vh, 760px);
  display: flex;
  align-items: center;
  background: var(--navy-800);
}
.hero--photo .hero-bg-wrap {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 28%;
  right: -5%;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 22%, #000 100%);
          mask-image: linear-gradient(to right, transparent 0%, #000 22%, #000 100%);
  pointer-events: none;
}
.hero--photo .hero-bg-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 50%;
  display: block;
}
.hero--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(95deg,
      var(--navy-800) 0%,
      rgba(6, 15, 28, 0.92) 28%,
      rgba(6, 15, 28, 0.45) 50%,
      rgba(6, 15, 28, 0.05) 70%,
      rgba(6, 15, 28, 0)    100%
    ),
    radial-gradient(ellipse 700px 500px at 80% 55%, rgba(20, 169, 156, 0.10), transparent 65%);
}
.hero--photo > .wrap { position: relative; z-index: 2; }
.hero--photo .hero-body { max-width: 560px; }
.hero--photo h1 { color: var(--text-strong); }
.hero--photo .hero-eyebrow-row {
  color: var(--text-dim);
}
.hero--photo .hero-eyebrow-row > span:not(.eyebrow) {
  background: rgba(10, 22, 40, 0.55);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
@media (max-width: 900px) {
  .hero--photo .hero-bg-wrap {
    left: 0; right: 0;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 30%, #000 100%);
            mask-image: linear-gradient(to bottom, transparent 0%, #000 30%, #000 100%);
  }
  .hero--photo .hero-bg-wrap img { object-position: 50% 35%; }
  .hero--photo::before {
    background:
      linear-gradient(180deg, rgba(6, 15, 28, 0.55) 0%, rgba(6, 15, 28, 0.90) 65%, rgba(6, 15, 28, 0.96) 100%);
  }
  .hero--photo { min-height: 560px; }
}
.hero-eyebrow-row {
  display: flex; gap: 24px; flex-wrap: wrap;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 16ch;
}
.hero h1 .accent { color: var(--teal-bright); }
.hero h1 .blue { color: var(--blue-bright); }
.hero h1 .gold { color: #f0b54a; }
.hero--photo h1 { max-width: none; }
.hero p.lead { max-width: 52ch; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-sidebar {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(15, 31, 56, 0.6), rgba(10, 22, 40, 0.3));
  padding: 24px;
  border-radius: var(--radius-lg);
}
.hero-sidebar h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-mute);
  font-weight: 500;
  margin-bottom: 16px;
}
.spec-list { list-style: none; padding: 0; display: grid; gap: 14px; }
.spec-list li {
  display: flex; justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 13px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.spec-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.spec-list .k { color: var(--text-mute); }
.spec-list .v { color: var(--text); }
.spec-list .v.ok { color: var(--teal-bright); }

/* Hero variant B: full-bleed image + overlay */
.hero--b { padding: 0; }
.hero--b .hero-frame {
  position: relative;
  min-height: clamp(560px, 78vh, 760px);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(40px, 6vw, 80px) 0;
}
.hero--b .hero-frame .placeholder-bg {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(135deg,
      rgba(33, 137, 216, 0.08) 0 2px,
      transparent 2px 16px),
    linear-gradient(180deg, rgba(6, 15, 28, 0.4) 0%, rgba(6, 15, 28, 0.85) 100%),
    linear-gradient(135deg, #15294a 0%, #0a1628 100%);
  z-index: 0;
}
.hero--b .placeholder-tag {
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(10, 22, 40, 0.8);
  border: 1px solid var(--border);
  padding: 6px 10px;
  border-radius: var(--radius);
  z-index: 2;
}
.hero--b .hero-content {
  position: relative; z-index: 2;
  display: grid; gap: clamp(28px, 4vw, 48px);
  grid-template-columns: 1fr;
  align-items: end;
}
@media (min-width: 900px) {
  .hero--b .hero-content {
    grid-template-columns: 1.4fr 1fr;
  }
}
.hero--b h1 {
  font-size: clamp(2.6rem, 6.5vw, 5.4rem);
  max-width: 14ch;
}
.hero-card {
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.hero-card h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin-bottom: 16px;
}
.hero-card .price {
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-strong);
  margin-bottom: 6px;
}
.hero-card p { font-size: 14px; margin-bottom: 20px; }

/* ============== SECTIONS ============== */
section { padding: clamp(64px, 9vw, 112px) 0; }
section + section { border-top: 1px solid var(--border); }

.section-head {
  display: flex; flex-direction: column; gap: 16px;
  margin-bottom: clamp(40px, 5vw, 64px);
  max-width: 720px;
}
.section-head h2 { letter-spacing: -0.025em; }
.section-head p { font-size: 1.05rem; }

/* ============== SERVICE CARDS ============== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (min-width: 700px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .services-grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: var(--navy-800);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
  transition: background .2s var(--ease);
}
.service-card:hover { background: var(--navy-700); }
.service-card .num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--teal-bright);
  letter-spacing: 0.15em;
}
.service-card h3 {
  font-size: 1.25rem;
  font-weight: 500;
}
.service-card p { font-size: 14px; flex: 1; }
.service-card .card-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-display);
  font-size: 14px; font-weight: 500;
  color: var(--teal-bright);
  margin-top: 8px;
}
.service-card .card-link .arrow { transition: transform .2s var(--ease); }
.service-card:hover .card-link .arrow { transform: translateX(4px); }
.service-card.coming {
  opacity: 0.6;
}
.service-card.coming .card-link { color: var(--text-mute); }
.service-card .icon {
  width: 36px; height: 36px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-bright);
  margin-bottom: 8px;
}
.service-card .icon svg { width: 18px; height: 18px; }

/* Service card with photo header */
.service-card--photo {
  padding: 0;
}
.service-card-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--navy-900);
  position: relative;
}
.service-card-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(6, 15, 28, 0.4) 100%);
  pointer-events: none;
}
.service-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease);
}
.service-card--photo:hover .service-card-photo img { transform: scale(1.04); }
.service-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.service-card-body p { flex: 1; }

/* ============== BENEFITS / NUMBERS ============== */
.benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 700px) { .benefits { grid-template-columns: repeat(3, 1fr); } }
.benefit {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.benefit .num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--teal-bright);
  letter-spacing: 0.15em;
  margin-bottom: 32px;
}
.benefit h3 { margin-bottom: 12px; }
.benefit p { font-size: 15px; }

/* Stat row */
.stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 600px) { .stats { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat {
  border-left: 1px solid var(--border);
  padding-left: 20px;
}
.stat .v {
  font-family: var(--f-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: var(--text-strong);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat .v sup { font-size: 0.5em; color: var(--teal-bright); margin-left: 2px; vertical-align: super; }
.stat .k {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-mute);
}

/* ============== PROCESS STEPS ============== */
.process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (min-width: 800px) { .process { grid-template-columns: repeat(4, 1fr); } }
.step {
  background: var(--navy-800);
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.step .step-num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--teal-bright);
  letter-spacing: 0.15em;
}
.step h3 { font-size: 1.05rem; }
.step p { font-size: 14px; }

/* ============== TWO-COL CONTENT ============== */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
@media (min-width: 900px) {
  .two-col { grid-template-columns: 1fr 1fr; }
  .two-col.sticky-left > div:first-child { position: sticky; top: 100px; }
}
.two-col h2 { margin-bottom: 16px; }
.two-col p { margin-bottom: 16px; max-width: 56ch; }
.two-col ul.checklist {
  list-style: none; padding: 0;
  display: grid; gap: 14px;
}
.two-col ul.checklist li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
  align-items: start;
}
.two-col ul.checklist li::before {
  content: '';
  width: 16px; height: 16px;
  margin-top: 4px;
  border: 1px solid var(--teal-bright);
  position: relative;
  background:
    linear-gradient(45deg, transparent 47%, var(--teal-bright) 47%, var(--teal-bright) 53%, transparent 53%),
    linear-gradient(-45deg, transparent 47%, var(--teal-bright) 47%, var(--teal-bright) 53%, transparent 53%);
  background-size: 60% 60%;
  background-position: center;
  background-repeat: no-repeat;
}

/* ============== IMAGE PLACEHOLDER ============== */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(135deg,
      rgba(33, 137, 216, 0.08) 0 2px,
      transparent 2px 14px),
    linear-gradient(135deg, #15294a 0%, #0a1628 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.ph::after {
  content: attr(data-label);
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(10, 22, 40, 0.8);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: var(--radius);
}
.ph.wide { aspect-ratio: 16 / 9; }
.ph.tall { aspect-ratio: 3 / 4; }
.ph.square { aspect-ratio: 1 / 1; }
.ph-photo { background: var(--navy-900); }
.ph-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.ph-photo::after {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 2;
}
.ph-photo .corner { z-index: 2; }
.ph .corner {
  position: absolute;
  width: 14px; height: 14px;
  border: 1px solid var(--teal-bright);
}
.ph .corner.tl { top: 12px; left: 12px; border-right: 0; border-bottom: 0; }
.ph .corner.tr { top: 12px; right: 12px; border-left: 0; border-bottom: 0; }
.ph .corner.bl { bottom: 12px; left: 12px; border-right: 0; border-top: 0; }
.ph .corner.br { bottom: 12px; right: 12px; border-left: 0; border-top: 0; }

/* ============== TECH DATA TABLE ============== */
.tech-data {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-700);
}
.tech-data-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--navy-600);
}
.tech-data-head h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--teal-bright);
  font-weight: 500;
}
.tech-data-head .meta {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--text-mute);
}
.tech-data table { width: 100%; border-collapse: collapse; font-family: var(--f-mono); font-size: 13px; }
.tech-data tr { border-bottom: 1px solid var(--border); }
.tech-data tr:last-child { border-bottom: 0; }
.tech-data td { padding: 14px 24px; vertical-align: top; }
.tech-data td:first-child { color: var(--text-mute); width: 45%; }
.tech-data td:last-child { color: var(--text); }
.tech-data .badge {
  display: inline-block;
  font-size: 10px;
  padding: 2px 8px;
  background: rgba(20, 169, 156, 0.15);
  color: var(--teal-bright);
  border-radius: 2px;
  margin-left: 6px;
  letter-spacing: 0.1em;
}

/* Pricing-table specific styling (sits inside .tech-data) */
.tech-data thead th {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-mute);
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--navy-600);
}
.price-row-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-strong);
  margin-bottom: 6px;
}
.price-row-title a {
  color: var(--text-strong);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .15s var(--ease), color .15s var(--ease);
}
.price-row-title a:hover {
  color: var(--teal-bright);
  border-bottom-color: var(--teal-bright);
}
.price-row-desc {
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
  max-width: 56ch;
}
.price-cell {
  font-family: var(--f-display);
  font-size: 1.4rem;
  color: var(--teal-bright);
  text-align: right;
  vertical-align: middle !important;
  white-space: nowrap;
  font-weight: 500;
}
@media (max-width: 600px) {
  .price-cell { font-size: 1.2rem; }
}

/* Force "Schnell." onto its own line on narrow viewports */
.hero-br-mobile { display: none; }
@media (max-width: 600px) {
  .hero-br-mobile { display: inline; }
}

/* ============== NOTICE / CALLOUT ============== */
.notice {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: clamp(28px, 4vw, 40px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background:
    linear-gradient(135deg, rgba(240, 181, 74, 0.06) 0%, rgba(15, 31, 56, 0.4) 60%, rgba(10, 22, 40, 0.6) 100%),
    var(--navy-700);
  position: relative;
  overflow: hidden;
}
.notice::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 3px;
  background: var(--warn);
}
@media (min-width: 720px) {
  .notice {
    grid-template-columns: 56px 1fr;
    gap: 28px;
    align-items: start;
  }
}
.notice-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  background: rgba(240, 181, 74, 0.12);
  border: 1px solid rgba(240, 181, 74, 0.35);
  color: var(--warn);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.notice-icon svg { width: 26px; height: 26px; }
.notice-body { min-width: 0; }
.notice-eyebrow {
  color: var(--warn) !important;
  margin-bottom: 14px;
}
.notice-eyebrow::before { background: var(--warn) !important; box-shadow: 0 0 0 3px rgba(240, 181, 74, 0.18) !important; }
.notice-body h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-weight: 500;
  margin-bottom: 16px;
  max-width: 36ch;
  letter-spacing: -0.015em;
}
.notice-body p {
  font-size: 15px;
  margin-bottom: 14px;
  max-width: 64ch;
  color: var(--text);
}
.notice-body p:last-child { margin-bottom: 0; }
.notice-body strong { color: var(--text-strong); font-weight: 500; }
.notice-disclaimer {
  font-size: 13px !important;
  color: var(--text-mute) !important;
  font-style: italic;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 8px !important;
}

/* ============== CTA BANNER ============== */
.cta-banner {
  background: linear-gradient(135deg, #0f1f38 0%, #15294a 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 60%; height: 160%;
  background: radial-gradient(circle, rgba(20, 169, 156, 0.15), transparent 70%);
  pointer-events: none;
}
@media (min-width: 800px) {
  .cta-banner { grid-template-columns: 1.5fr auto; gap: 40px; }
}
.cta-banner h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); margin-bottom: 8px; }
.cta-banner p { color: var(--text); max-width: 50ch; }
.cta-banner .actions { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ============== FORM ============== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 64px);
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.2fr; } }

.info-block {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}
.info-block:first-child { border-top: 0; padding-top: 0; }
.info-block .k {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 8px;
  display: block;
}
.info-block .v {
  font-family: var(--f-display);
  font-size: 1.2rem;
  color: var(--text-strong);
  font-weight: 500;
}
.info-block .v a { color: var(--text-strong); }
.info-block .v a:hover { color: var(--teal-bright); }
.info-block .sub { font-size: 13px; color: var(--text-dim); margin-top: 6px; }

form.contact-form {
  background: var(--navy-700);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  display: grid;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 600px) {
  .form-row.cols-2 { grid-template-columns: 1fr 1fr; }
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-mute);
}
.field label .req { color: var(--teal-bright); }
.field input,
.field textarea,
.field select {
  background: var(--navy-800);
  border: 1px solid var(--border-strong);
  color: var(--text);
  padding: 12px 14px;
  border-radius: var(--radius);
  font-family: var(--f-body);
  font-size: 15px;
  width: 100%;
  transition: border-color .15s var(--ease), background .15s var(--ease);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%2395a6bf' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--teal-bright);
  outline: 0;
  background: var(--navy-600);
}
.field textarea { resize: vertical; min-height: 130px; }
.field .hint { font-size: 12px; color: var(--text-mute); }
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: #e07b6b;
}
.field .err { font-size: 12px; color: #e07b6b; min-height: 0; }
.checkbox-field { display: grid; grid-template-columns: 18px 1fr; gap: 12px; align-items: start; font-size: 13px; color: var(--text-dim); }
.checkbox-field input[type="checkbox"] {
  appearance: none;
  width: 18px; height: 18px;
  border: 1px solid var(--border-strong);
  background: var(--navy-800);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  margin-top: 2px;
}
.checkbox-field input[type="checkbox"]:checked {
  background: var(--teal);
  border-color: var(--teal);
}
.checkbox-field input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'><path d='M3 8l3.5 3.5L13 4' stroke='%23060f1c' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
}
.form-success {
  background: rgba(20, 169, 156, 0.12);
  border: 1px solid var(--teal);
  color: var(--text-strong);
  padding: 20px 24px;
  border-radius: var(--radius);
  display: none;
}
form.contact-form.submitted .form-success { display: block; }
form.contact-form.submitted .form-row,
form.contact-form.submitted .submit-row,
form.contact-form.submitted .checkbox-field { display: none; }
.form-success .mono { color: var(--teal-bright); display: block; margin-bottom: 8px; }

/* ============== FOOTER ============== */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--navy-900);
  padding: clamp(48px, 6vw, 80px) 0 32px;
  margin-top: clamp(48px, 8vw, 96px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer-brand .nav-brand { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; max-width: 36ch; }
.footer-col h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-mute);
  font-weight: 500;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 10px; }
.footer-col a { color: var(--text-dim); font-size: 14px; }
.footer-col a:hover { color: var(--teal-bright); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.1em;
}
.footer-bottom .mono-coord { display: flex; gap: 18px; flex-wrap: wrap; }

/* ============== PAGE HEAD (sub-pages) ============== */
.page-head {
  padding: clamp(48px, 7vw, 96px) 0 clamp(40px, 5vw, 64px);
  border-bottom: 1px solid var(--border);
}
.page-head .eyebrow { margin-bottom: 20px; }
.page-head h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  margin-bottom: 16px;
  max-width: 22ch;
}
.page-head p.lead { max-width: 56ch; }

.breadcrumb {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-mute);
  margin-bottom: 24px;
  display: flex; gap: 8px; flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-mute); }
.breadcrumb a:hover { color: var(--teal-bright); }
.breadcrumb .sep { color: var(--border-strong); }

/* ============== LEGAL PAGES ============== */
.legal-content {
  max-width: 720px;
}
.legal-content h2 {
  font-size: 1.4rem;
  margin: 40px 0 16px;
  font-weight: 500;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-size: 1.1rem;
  margin: 24px 0 12px;
}
.legal-content p, .legal-content li { font-size: 15px; color: var(--text); margin-bottom: 12px; }
.legal-content p, .legal-content li { color: var(--text-dim); }
.legal-content strong { color: var(--text); font-weight: 500; }
.legal-content ul { padding-left: 20px; margin-bottom: 16px; }
.legal-content a { color: var(--teal-bright); text-decoration: underline; text-underline-offset: 3px; }

/* ============== COOKIE BANNER ============== */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  z-index: 100;
  background: var(--navy-700);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 24px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
  display: none;
}
.cookie-banner.is-open { display: block; }
.cookie-banner h3 { font-size: 1.1rem; margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.cookie-banner h3::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--teal-bright);
  box-shadow: 0 0 0 3px rgba(30, 201, 187, 0.18);
}
.cookie-banner p { font-size: 14px; margin-bottom: 18px; }
.cookie-banner .cookie-actions {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.cookie-banner .cookie-actions .btn { padding: 12px 18px; font-size: 14px; }

.cookie-banner.is-expanded .cookie-summary { display: none; }
.cookie-banner:not(.is-expanded) .cookie-detail { display: none; }

.cookie-detail .cookie-service {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid var(--border);
}
.cookie-detail .cookie-service:first-child { border-top: 0; }
.cookie-detail .svc-name {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 15px;
  color: var(--text-strong);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 4px;
}
.cookie-detail .svc-tag {
  font-family: var(--f-mono);
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 2px;
  background: var(--navy-600);
  color: var(--text-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cookie-detail .svc-tag.required { background: rgba(20,169,156,.15); color: var(--teal-bright); }
.cookie-detail .svc-desc { font-size: 13px; color: var(--text-dim); }

/* Toggle switch */
.switch { position: relative; display: inline-block; width: 40px; height: 22px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .track {
  position: absolute; inset: 0;
  background: var(--navy-600);
  border: 1px solid var(--border-strong);
  border-radius: 22px;
  transition: background .2s var(--ease);
  cursor: pointer;
}
.switch .track::before {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 16px; height: 16px;
  background: var(--text-mute);
  border-radius: 50%;
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.switch input:checked + .track { background: var(--teal); border-color: var(--teal); }
.switch input:checked + .track::before { transform: translateX(18px); background: var(--navy-900); }
.switch input:disabled + .track { opacity: 0.5; cursor: not-allowed; }
.switch input:focus-visible + .track { outline: 2px solid var(--teal-bright); outline-offset: 2px; }

/* ============== TWEAKS PANEL ============== */
.tweaks-panel {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 280px;
  background: var(--navy-700);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 20px;
  z-index: 90;
  display: none;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
}
.tweaks-panel.is-open { display: block; }
.tweaks-panel .tw-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.tweaks-panel .tw-head h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--teal-bright);
  font-weight: 500;
}
.tweaks-panel .tw-close {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  color: var(--text-dim);
}
.tweaks-panel .tw-close:hover { color: var(--text-strong); border-color: var(--teal-bright); }
.tweaks-panel .tw-group { margin-bottom: 16px; }
.tweaks-panel .tw-group:last-child { margin-bottom: 0; }
.tweaks-panel .tw-label {
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-mute);
  margin-bottom: 8px;
  display: block;
}
.tweaks-panel .tw-radio {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
  background: var(--navy-800);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3px;
}
.tweaks-panel .tw-radio button {
  padding: 8px 10px;
  font-family: var(--f-body);
  font-size: 12px;
  color: var(--text-dim);
  border-radius: 3px;
  transition: background .15s, color .15s;
}
.tweaks-panel .tw-radio button[aria-pressed="true"] {
  background: var(--teal);
  color: var(--navy-900);
  font-weight: 500;
}
.tweaks-panel .tw-toggle {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.tweaks-panel .tw-toggle span { font-size: 13px; color: var(--text); }

/* ============== UTILITIES ============== */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.muted { color: var(--text-mute); }
.text-center { text-align: center; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
