@font-face {
  font-family: "Work Sans";
  src: url("./fonts/work-sans/WorkSans-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --bg: #081128;
  --bg-deep: #0f1f44;
  --surface: #f6f9ff;
  --card: #ffffff;
  --text: #10203f;
  --muted: #405779;
  --line: #d9e5f4;
  --line-strong: #b4c8e4;
  --primary: #2f6df7;
  --primary-2: #2458d6;
  --primary-glow: #5a8cff;
  --ok: #0f766e;
  --danger: #b91c1c;
  --shadow-soft: 0 12px 28px rgba(11, 26, 51, 0.1);
  --shadow-card: 0 14px 34px rgba(11, 31, 66, 0.1), 0 2px 8px rgba(11, 31, 66, 0.06);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Work Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.52;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background:
    radial-gradient(1150px 620px at -12% -16%, rgba(69, 131, 255, 0.28) 0%, rgba(69, 131, 255, 0) 70%),
    radial-gradient(980px 560px at 108% -8%, rgba(242, 171, 75, 0.24) 0%, rgba(242, 171, 75, 0) 72%),
    linear-gradient(180deg, #e8f1ff 0%, var(--surface) 44%, #eef4ff 100%);
  min-height: 100%;
}

body::before {
  content: "";
  position: fixed;
  inset: -22% -14%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.6;
  background:
    radial-gradient(640px 460px at 12% 26%, rgba(79, 151, 255, 0.2) 0%, rgba(79, 151, 255, 0) 74%),
    radial-gradient(680px 460px at 86% 12%, rgba(239, 173, 79, 0.16) 0%, rgba(239, 173, 79, 0) 76%);
}

a {
  color: inherit;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  color: #f5f8ff;
  border-bottom: 1px solid rgba(182, 206, 243, 0.23);
  background: linear-gradient(122deg, rgba(8, 17, 40, 0.94) 0%, rgba(15, 31, 68, 0.95) 100%);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(4, 13, 33, 0.28);
}

.topbar-inner {
  min-height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.brand-with-logo {
  line-height: 0;
  border-radius: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(183, 206, 246, 0.26);
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.01) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 10px 24px rgba(3, 10, 24, 0.22);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.brand-with-logo:hover {
  transform: translateY(-1px);
  border-color: rgba(201, 220, 251, 0.44);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 14px 26px rgba(3, 10, 24, 0.28);
}

.brand-with-logo:focus-visible {
  outline: 3px solid rgba(112, 163, 255, 0.58);
  outline-offset: 2px;
}

.brand-logo {
  height: clamp(52px, 5.2vw, 64px);
  width: auto;
  max-width: min(72vw, 430px);
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding: 7px;
  border-radius: 16px;
  border: 1px solid rgba(183, 206, 246, 0.2);
  background: rgba(6, 15, 36, 0.38);
}

.nav-link {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 620;
  color: rgba(240, 246, 255, 0.9);
  padding: 10px 12px;
  border-radius: 11px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: #ffffff;
  background: rgba(94, 143, 238, 0.24);
}

.btn {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 11px 16px;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 740;
  line-height: 1.1;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease, border-color 0.2s ease;
}

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

.btn:focus-visible {
  outline: 3px solid rgba(100, 154, 255, 0.46);
  outline-offset: 2px;
}

.btn-primary {
  color: #f6fbff;
  background: linear-gradient(140deg, var(--primary) 0%, var(--primary-2) 100%);
  border-color: rgba(118, 164, 255, 0.48);
  box-shadow: 0 12px 24px rgba(35, 88, 213, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 14px 30px rgba(35, 88, 213, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  filter: brightness(1.03);
}

.btn-ghost {
  color: #183a73;
  border-color: var(--line-strong);
  background: linear-gradient(160deg, #ffffff 0%, #edf4ff 100%);
  box-shadow: 0 4px 12px rgba(24, 60, 110, 0.1);
}

.btn-ghost:hover {
  border-color: #99b9e7;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #f8fbff;
  background:
    radial-gradient(980px 420px at 26% -12%, rgba(84, 137, 255, 0.45) 0%, rgba(84, 137, 255, 0) 72%),
    radial-gradient(760px 420px at 88% 8%, rgba(255, 177, 82, 0.25) 0%, rgba(255, 177, 82, 0) 72%),
    linear-gradient(168deg, #142a5c 0%, #0f1f44 45%, #081128 100%);
  padding: clamp(64px, 8.4vw, 96px) 0 clamp(52px, 7vw, 72px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 64%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: clamp(20px, 3vw, 42px);
  align-items: center;
}

.hero h1 {
  margin: 0 0 18px;
  line-height: 1.06;
  letter-spacing: -0.014em;
  font-size: clamp(2.05rem, 4.15vw, 3.3rem);
  text-wrap: balance;
}

.hero p {
  margin: 0 0 16px;
  max-width: 60ch;
  color: rgba(240, 246, 255, 0.92);
  font-size: clamp(1rem, 1.22vw, 1.14rem);
  line-height: 1.62;
}

.pills {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0 0;
  width: min(100%, 430px);
}

.hero-actions {
  margin: 0;
  padding-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 430px);
}

.hero-actions .btn {
  width: 100%;
  margin: 0;
}

.pill {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(204, 225, 255, 0.36);
  background: rgba(241, 248, 255, 0.12);
  color: #f4f9ff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 640;
  letter-spacing: 0.01em;
  text-align: center;
}

.hero-side {
  display: grid;
  gap: 15px;
}

.pyramid-panel {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 14px 14px 12px;
  border: 1px solid rgba(190, 214, 248, 0.32);
  background: linear-gradient(158deg, rgba(248, 251, 255, 0.14) 0%, rgba(240, 248, 255, 0.06) 100%);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 18px 36px rgba(4, 10, 24, 0.26);
}

.pyramid-panel::before {
  content: "";
  position: absolute;
  inset: -16% -8% auto -8%;
  height: 58%;
  pointer-events: none;
  background: radial-gradient(circle at 50% 30%, rgba(115, 169, 255, 0.32), rgba(115, 169, 255, 0));
}

.dice-wrap {
  --dice: clamp(46px, 9.2vw, 68px);
  width: calc(var(--dice) * 1.6);
  height: calc(var(--dice) * 1.6);
  perspective: 800px;
  display: grid;
  place-items: center;
  cursor: pointer;
  pointer-events: auto;
  margin: 0 auto 8px;
  outline: none;
}

.dice-wrap:focus-visible {
  outline: 2px solid rgba(171, 208, 255, 0.95);
  border-radius: 10px;
  outline-offset: 4px;
}

.dice {
  width: var(--dice);
  height: var(--dice);
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(25deg) rotateY(35deg);
  transition: transform 0.2s linear;
}

.dice-face {
  position: absolute;
  width: var(--dice);
  height: var(--dice);
  background: #f2f2f2;
  border: 1px solid rgba(0, 0, 0, 0.25);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  align-items: center;
  justify-items: center;
  box-shadow: inset 0 0 14px rgba(0, 0, 0, 0.08);
}

.pip {
  width: calc(var(--dice) / 12);
  height: calc(var(--dice) / 12);
  border-radius: 50%;
  background: #111;
}

.face-1 { transform: translateZ(calc(var(--dice) / 2)); }
.face-6 { transform: rotateY(180deg) translateZ(calc(var(--dice) / 2)); }
.face-2 { transform: rotateY(90deg) translateZ(calc(var(--dice) / 2)); }
.face-5 { transform: rotateY(-90deg) translateZ(calc(var(--dice) / 2)); }
.face-3 { transform: rotateX(90deg) translateZ(calc(var(--dice) / 2)); }
.face-4 { transform: rotateX(-90deg) translateZ(calc(var(--dice) / 2)); }

.pyramid-caption {
  margin-top: 10px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 560;
  color: rgba(223, 236, 255, 0.9);
  letter-spacing: 0.02em;
}

.kpi-card {
  border: 1px solid rgba(190, 214, 248, 0.34);
  border-radius: 20px;
  padding: 18px;
  background: linear-gradient(160deg, rgba(244, 250, 255, 0.2) 0%, rgba(244, 250, 255, 0.08) 100%);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 16px 32px rgba(4, 11, 24, 0.22);
}

.kpi-card h3 {
  margin: 0 0 10px;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
}

.kpi-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.kpi-list li {
  border-radius: 13px;
  padding: 11px;
  font-size: 0.92rem;
  color: #e4efff;
  background: rgba(8, 20, 45, 0.5);
  border: 1px solid rgba(188, 214, 251, 0.24);
}

.section {
  padding: clamp(44px, 6vw, 68px) 0;
}

.section h1,
.section h2 {
  margin: 0 0 14px;
  line-height: 1.12;
  letter-spacing: -0.012em;
}

.section h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
}

.section h2 {
  font-size: clamp(1.48rem, 2.8vw, 2.2rem);
}

.section-copy {
  color: var(--muted);
  margin: 0 0 24px;
  line-height: 1.64;
  max-width: 68ch;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 18px;
}

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

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

.card {
  background: linear-gradient(176deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow-card);
  height: 100%;
}

.card h3 {
  margin: 0 0 10px;
  color: #102748;
}

.card p,
.card li {
  color: var(--muted);
  line-height: 1.6;
}

.price {
  font-size: 1.52rem;
  font-weight: 840;
  margin: 10px 0 4px;
  letter-spacing: -0.012em;
  color: #173a6f;
}

.small {
  font-size: 0.87rem;
  color: #597394;
}

.list {
  margin: 10px 0 0;
  padding-left: 18px;
}

.list li + li {
  margin-top: 6px;
}

.cta-band {
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #edf5ff;
  border: 1px solid rgba(168, 196, 239, 0.34);
  background:
    radial-gradient(420px 180px at 85% -20%, rgba(99, 166, 255, 0.34) 0%, rgba(99, 166, 255, 0) 72%),
    linear-gradient(142deg, #153066 0%, #11264f 44%, #0d1d3f 100%);
  box-shadow: 0 20px 34px rgba(8, 18, 39, 0.22);
}

.cta-band strong {
  font-size: clamp(1.06rem, 2.2vw, 1.3rem);
  letter-spacing: -0.01em;
}

.cta-band p {
  margin: 6px 0 0;
  color: rgba(227, 239, 255, 0.9);
}

.form-shell {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  background: linear-gradient(176deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: var(--shadow-soft);
}

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

.field {
  display: grid;
  gap: 7px;
}

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

label {
  font-weight: 650;
  font-size: 0.93rem;
  color: #1f3559;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c7d7eb;
  border-radius: 11px;
  min-height: 44px;
  padding: 10px 12px;
  font: inherit;
  font-size: 0.98rem;
  color: #11284a;
  background: #fdfefe;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

textarea {
  min-height: 116px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #79a8ec;
  box-shadow: 0 0 0 3px rgba(98, 156, 247, 0.24);
  background: #ffffff;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  min-height: auto;
  margin-top: 2px;
}

.notice {
  margin-top: 12px;
  border-radius: 11px;
  padding: 10px 12px;
  font-size: 0.92rem;
  display: none;
}

.notice.show {
  display: block;
}

.notice.error {
  background: #fef2f2;
  color: var(--danger);
  border: 1px solid #fecaca;
}

.notice.success {
  background: #f0fdfa;
  color: var(--ok);
  border: 1px solid #99f6e4;
}

.form-actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.section-note {
  margin-top: 16px;
}

.footer {
  margin-top: 44px;
  padding: 34px 0;
  color: rgba(235, 243, 255, 0.9);
  background:
    radial-gradient(560px 220px at 12% -30%, rgba(96, 153, 247, 0.25) 0%, rgba(96, 153, 247, 0) 72%),
    linear-gradient(164deg, #0b1734 0%, #0a142b 100%);
  border-top: 1px solid rgba(176, 203, 244, 0.14);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer a {
  color: #f6f9ff;
  text-decoration: none;
  font-weight: 560;
  opacity: 0.92;
}

.footer a:hover {
  opacity: 1;
}

.footer-link-btn {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  color: #f6f9ff;
  text-decoration: none;
  font: inherit;
  font-weight: 560;
  opacity: 0.92;
  cursor: pointer;
}

.footer-link-btn:hover {
  opacity: 1;
}

.cookie-optin {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: min(420px, calc(100vw - 24px));
  z-index: 95;
  border-radius: 16px;
  border: 1px solid rgba(177, 202, 241, 0.42);
  background: linear-gradient(156deg, #ffffff 0%, #f4f8ff 100%);
  box-shadow: 0 18px 36px rgba(8, 22, 50, 0.25);
  padding: 16px;
  transform: translateY(10px);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.cookie-optin.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-optin h2 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: #102946;
}

.cookie-optin p {
  margin: 0;
  color: #334f75;
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-optin-actions {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.cookie-optin-actions .btn {
  min-height: 40px;
}

.cookie-optin-note {
  margin-top: 10px !important;
  font-size: 0.82rem !important;
}

.cookie-optin-note a {
  color: #1d4fd4;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 1040px) {
  .topbar-inner {
    min-height: 88px;
  }

  .brand-logo {
    height: 56px;
  }

  .hero-grid {
    gap: 24px;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .grid-3,
  .grid-2,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .topbar-inner {
    align-items: stretch;
    min-height: 0;
    padding: 10px 0 12px;
    gap: 8px;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
  }

  .nav-link,
  .nav .btn {
    flex: 0 0 auto;
  }

  .hero {
    padding: 56px 0 44px;
  }

  .hero-grid > article {
    max-width: 720px;
  }

  .cta-band {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  body {
    background:
      radial-gradient(760px 460px at -14% -16%, rgba(69, 131, 255, 0.24) 0%, rgba(69, 131, 255, 0) 74%),
      radial-gradient(640px 360px at 108% -10%, rgba(242, 171, 75, 0.18) 0%, rgba(242, 171, 75, 0) 76%),
      linear-gradient(180deg, #e9f1ff 0%, #f2f7ff 44%, #eef4ff 100%);
  }

  .container {
    width: min(1140px, 92vw);
  }

  .topbar {
    top: 0;
    width: 100%;
    margin: 0;
    border-radius: 0 0 18px 18px;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid rgba(176, 202, 241, 0.3);
    background: linear-gradient(132deg, rgba(8, 18, 44, 0.95) 0%, rgba(14, 30, 66, 0.95) 100%);
    box-shadow: 0 10px 24px rgba(4, 13, 33, 0.28);
  }

  .topbar-inner {
    padding: 8px 0 10px;
    gap: 8px;
  }

  .brand-with-logo {
    width: 100%;
    justify-content: center;
    padding: 7px 10px;
    border-radius: 14px;
  }

  .brand-logo {
    height: auto;
    width: min(100%, 210px);
    max-width: 100%;
  }

  .nav {
    display: flex;
    gap: 6px;
    padding: 4px;
    border-radius: 12px;
  }

  .nav-link,
  .nav .btn {
    flex: 1 1 0;
    width: 100%;
    min-height: 40px;
    padding: 9px 6px;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 700;
    text-align: center;
    justify-content: center;
  }

  .btn {
    min-height: 44px;
  }

  .hero {
    padding: 36px 0 30px;
  }

  .hero-grid {
    gap: 14px;
  }

  .hero-grid > article {
    border-radius: 18px;
    border: 1px solid rgba(186, 213, 252, 0.26);
    padding: 16px;
    background: linear-gradient(156deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 14px 28px rgba(4, 10, 24, 0.24);
  }

  .hero h1 {
    font-size: clamp(1.78rem, 8.5vw, 2.18rem);
    margin-bottom: 12px;
  }

  .hero p {
    font-size: 0.98rem;
    line-height: 1.56;
    margin-bottom: 12px;
  }

  .pills {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 14px;
    width: 100%;
  }

  .pill {
    padding: 7px 8px;
    font-size: 0.79rem;
    text-align: center;
  }

  .hero-actions {
    margin-top: 0;
    padding-top: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 44px;
    padding: 10px 8px;
    font-size: 0.86rem;
  }

  .hero-side {
    gap: 10px;
  }

  .pyramid-panel,
  .kpi-card {
    border-radius: 16px;
    padding: 12px;
  }

  .dice-wrap {
    --dice: clamp(46px, 16vw, 58px);
  }

  .pyramid-caption {
    margin-top: 8px;
    font-size: 0.78rem;
  }

  .kpi-card h3 {
    margin-bottom: 8px;
    font-size: 1rem;
  }

  .kpi-list {
    gap: 8px;
  }

  .kpi-list li {
    font-size: 0.88rem;
    padding: 9px;
  }

  .card,
  .form-shell,
  .cta-band {
    padding: 15px;
    border-radius: 15px;
  }

  .section {
    padding: 34px 0;
  }

  .section h1 {
    font-size: clamp(1.68rem, 7.8vw, 2.04rem);
  }

  .section h2 {
    font-size: clamp(1.52rem, 6.8vw, 1.9rem);
  }

  .section-copy {
    font-size: 0.97rem;
    line-height: 1.58;
    margin-bottom: 16px;
  }

  .card h3 {
    margin-bottom: 8px;
    font-size: 1.04rem;
  }

  .card p,
  .card li {
    font-size: 0.95rem;
    line-height: 1.56;
  }

  .price {
    font-size: 1.36rem;
  }

  .small {
    font-size: 0.84rem;
  }

  .list {
    padding-left: 16px;
  }

  .service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    overflow: visible;
    padding-bottom: 0;
    margin-right: 0;
  }

  .section-note {
    margin-top: 12px;
  }

  .cta-band {
    gap: 12px;
  }

  .cta-band .btn {
    width: 100%;
  }

  .form-shell {
    padding: 14px;
  }

  .form-grid {
    gap: 12px;
  }

  .field {
    gap: 6px;
  }

  label {
    font-size: 0.9rem;
  }

  input,
  select,
  textarea {
    min-height: 46px;
    padding: 10px 11px;
    font-size: 0.97rem;
    border-radius: 10px;
  }

  textarea {
    min-height: 130px;
  }

  .checkbox-row {
    gap: 8px;
    font-size: 0.88rem;
  }

  .checkbox-row input {
    width: 17px;
    height: 17px;
  }

  .form-actions {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .form-actions .btn {
    width: 100%;
  }

  .footer {
    margin-top: 32px;
    padding: 24px 0 28px;
  }

  .footer-links {
    gap: 10px;
    font-size: 0.87rem;
  }

  .cookie-optin {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: auto;
    padding: 14px;
    border-radius: 14px;
  }

  .cookie-optin-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 400px) {
  .nav-link,
  .nav .btn {
    font-size: 0.78rem;
    padding: 8px 6px;
  }

  .pills,
  .hero-actions {
    grid-template-columns: 1fr;
  }

}

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