@font-face {
  font-family: "InterVar";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: local("Inter"), local("InterVariable");
}

:root {
  --color-primary: #1a237e;
  --color-secondary: #b0bec5;
  --color-accent: #ff6d00;
  --color-bg: #f5f5f5;
  --color-text: #0f172a;
  --color-muted: #475569;
  --color-surface: rgba(255, 255, 255, 0.72);
  --color-surface-2: rgba(255, 255, 255, 0.58);
  --color-border: rgba(26, 35, 126, 0.12);
  --font-main: InterVar, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  --radius: 18px;
  --shadow: 0 22px 60px rgba(15, 23, 42, 0.16);
  --spacing: 20px;
  --container: 1120px;
  --header-h: 72px;
}

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

html:focus-within {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
html{
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-main);
  overflow-x: hidden;
  color: var(--color-text);
  background: radial-gradient(1200px 800px at 18% 12%, rgba(255, 109, 0, 0.12), transparent 60%),
    radial-gradient(900px 650px at 85% 18%, rgba(26, 35, 126, 0.18), transparent 62%),
    radial-gradient(900px 650px at 55% 92%, rgba(176, 190, 197, 0.45), transparent 52%),
    var(--color-bg);
}

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

a {
  color: inherit;
  text-decoration-color: rgba(26, 35, 126, 0.35);
  text-underline-offset: 3px;
}

a:hover {
  text-decoration-color: rgba(255, 109, 0, 0.55);
}

.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;
}

.skip-link {
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
  transform: translateY(-140%);
  transition: transform 180ms ease;
  z-index: 9999;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid rgba(255, 109, 0, 0.6);
  outline-offset: 2px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(to bottom, rgba(245, 245, 245, 0.9), rgba(245, 245, 245, 0.66));
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

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

.brand img {
  border-radius: 12px;
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-name {
  font-weight: 820;
  letter-spacing: 0.02em;
  font-size: 14px;
}

.brand-tag {
  font-size: 12px;
  color: var(--color-muted);
}

.primary-nav {
  display: none;
}

.nav-list,
.footer-links,
.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-list a {
  display: inline-flex;
  padding: 10px 10px;
  border-radius: 999px;
  text-decoration: none;
  color: rgba(15, 23, 42, 0.86);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.10);
  transform: translateY(-1px);
  outline: none;
}

.burger {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.10);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.burger:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.14);
}

.burger:focus-visible {
  outline: 2px solid rgba(255, 109, 0, 0.6);
  outline-offset: 2px;
}

.burger-lines {
  width: 20px;
  height: 14px;
  position: relative;
}

.burger-lines::before,
.burger-lines::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 99px;
  background: rgba(15, 23, 42, 0.85);
  transition: transform 200ms ease, top 200ms ease, opacity 200ms ease;
}

.burger-lines::before {
  top: 3px;
}

.burger-lines::after {
  top: 11px;
}

.site-main {
  flex: 1;
}

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

.hero {
  position: relative;
  padding-top: clamp(42px, 6vw, 88px);
  padding-bottom: clamp(42px, 6vw, 88px);
  overflow: clip;
}

.hero-compact {
  padding-top: clamp(36px, 5vw, 72px);
  padding-bottom: clamp(36px, 5vw, 72px);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.hero-bg {
  position: absolute;
  inset: -120px -140px -160px -140px;
  background:
    radial-gradient(420px 420px at 30% 30%, rgba(255, 109, 0, 0.26), transparent 62%),
    radial-gradient(520px 520px at 68% 26%, rgba(26, 35, 126, 0.22), transparent 64%),
    radial-gradient(520px 520px at 55% 78%, rgba(176, 190, 197, 0.44), transparent 62%);
  filter: blur(12px);
  z-index: 0;
  pointer-events: none;
}

.hero-copy,
.order {
  position: relative;
  z-index: 1;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 640;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(26, 35, 126, 0.78);
  font-size: 12px;
  margin: 0 0 10px;
}

h1 {
  margin: 0 0 10px;
  font-weight: 860;
  letter-spacing: 0.06em;
  text-transform: none;
  font-size: clamp(34px, 5.3vw, 62px);
  line-height: 1.02;
}

h2 {
  margin: 0;
  font-weight: 830;
  letter-spacing: 0.05em;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.1;
}

h3 {
  margin: 0;
  font-weight: 780;
  letter-spacing: 0.03em;
  font-size: 18px;
  line-height: 1.2;
}

p {
  margin: 0;
}

.lead {
  margin-top: 10px;
  font-size: clamp(16px, 2.1vw, 20px);
  line-height: 1.65;
  color: rgba(15, 23, 42, 0.86);
  max-width: 64ch;
}

.trust-row {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--color-border);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.10);
  width: fit-content;
}

.badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 30%, #ffd9b8, var(--color-accent));
  box-shadow: 0 0 0 6px rgba(255, 109, 0, 0.14);
}

.rating {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  color: rgba(15, 23, 42, 0.82);
}

.stars {
  letter-spacing: 0.14em;
  color: rgba(255, 109, 0, 0.92);
  text-shadow: 0 10px 26px rgba(255, 109, 0, 0.18);
}

.price-card {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.58));
  border: 1px solid var(--color-border);
  box-shadow: 0 24px 62px rgba(15, 23, 42, 0.12);
  width: fit-content;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.price-now {
  font-size: 34px;
  font-weight: 880;
  color: rgba(26, 35, 126, 0.94);
}

.price-was {
  font-size: 16px;
  color: rgba(71, 85, 105, 0.9);
  text-decoration: line-through;
}

.price-note {
  margin-top: 8px;
  font-size: 12px;
  color: rgba(71, 85, 105, 0.9);
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
  max-width: 82ch;
}

.section-head p {
  color: rgba(71, 85, 105, 0.92);
  line-height: 1.7;
}

.grid {
  display: grid;
  gap: 14px;
}

.cards-2 {
  grid-template-columns: 1fr;
}

.cards-3 {
  grid-template-columns: 1fr;
}

.card {
  position: relative;
  border-radius: var(--radius);
  padding: 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: 0 22px 56px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(14px);
  transform: translateZ(0);
  transition: transform 180ms ease, box-shadow 180ms ease;
  overflow: clip;
}

.card-liquid::before {
  content: "";
  position: absolute;
  inset: -40px -50px -60px -50px;
  background:
    radial-gradient(240px 240px at 20% 25%, rgba(255, 109, 0, 0.18), transparent 62%),
    radial-gradient(280px 280px at 74% 22%, rgba(26, 35, 126, 0.20), transparent 64%),
    radial-gradient(300px 300px at 55% 80%, rgba(176, 190, 197, 0.40), transparent 60%);
  filter: blur(14px);
  opacity: 0.9;
  pointer-events: none;
}

.card > * {
  position: relative;
  z-index: 1;
}

.card:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 28px 76px rgba(15, 23, 42, 0.16);
}

.card p {
  margin-top: 8px;
  color: rgba(71, 85, 105, 0.92);
  line-height: 1.7;
}

.fineprint {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(71, 85, 105, 0.92);
  line-height: 1.7;
}

.disclaimer {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgba(26, 35, 126, 0.06);
  border: 1px solid rgba(26, 35, 126, 0.14);
}

.disclaimer-hero {
  margin-top: 16px;
  max-width: 72ch;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 54px rgba(15, 23, 42, 0.10);
}

.disclaimer p + p {
  margin-top: 6px;
}

.order .card {
  padding: 18px;
}

.card-header {
  margin-bottom: 14px;
}

.card-title {
  font-size: 22px;
  letter-spacing: 0.04em;
}

.card-subtitle {
  margin-top: 8px;
  color: rgba(71, 85, 105, 0.92);
  line-height: 1.6;
}

.order-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
}

.product-figure {
  border-radius: calc(var(--radius) + 6px);
  overflow: clip;
  border: 1px solid rgba(26, 35, 126, 0.10);
  background: linear-gradient(135deg, rgba(26, 35, 126, 0.06), rgba(255, 109, 0, 0.06));
}

.product-figure img {
  width: 100%;
  height: auto;
}

.order-form {
  display: grid;
  gap: 12px;
}

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

label {
  font-size: 13px;
  color: rgba(15, 23, 42, 0.84);
}

input,
textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(26, 35, 126, 0.18);
  padding: 12px 12px;
  background: rgba(255, 255, 255, 0.8);
  font: inherit;
  color: var(--color-text);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

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

input:focus,
textarea:focus {
  border-color: rgba(255, 109, 0, 0.52);
  box-shadow: 0 0 0 4px rgba(255, 109, 0, 0.18);
}

.req {
  color: rgba(255, 109, 0, 0.92);
}

.field-hint {
  font-size: 12px;
  color: rgba(71, 85, 105, 0.92);
}

.field-hint.is-error {
  color: rgba(190, 18, 60, 0.94);
}

.field.checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.field.checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.btn {
  border: 1px solid rgba(26, 35, 126, 0.14);
  background: rgba(255, 255, 255, 0.82);
  color: rgba(15, 23, 42, 0.92);
  border-radius: 16px;
  padding: 12px 14px;
  font-weight: 760;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.14);
  border-color: rgba(26, 35, 126, 0.22);
}

.btn:focus-visible {
  outline: 2px solid rgba(255, 109, 0, 0.6);
  outline-offset: 2px;
}

.btn-accent {
  position: relative;
  border-color: rgba(255, 109, 0, 0.42);
  color: rgba(15, 23, 42, 0.96);
  overflow: clip;
}

.btn-label {
  position: relative;
  z-index: 2;
}

.btn-fill {
  position: absolute;
  inset: 0;
  background: radial-gradient(120px 120px at var(--x, 50%) var(--y, 50%), rgba(255, 109, 0, 0.85), rgba(255, 109, 0, 0.35));
  transform: scale(0);
  transform-origin: center;
  transition: transform 220ms ease;
  z-index: 1;
}

.btn-accent.is-pressed .btn-fill {
  transform: scale(1.2);
}

.form-meta {
  margin-top: 2px;
  font-size: 12px;
  color: rgba(71, 85, 105, 0.92);
  line-height: 1.6;
}

.faq {
  margin-top: 16px;
}

.faq-head {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.accordion-trigger {
  width: 100%;
  text-align: left;
  border-radius: 16px;
  border: 1px solid rgba(26, 35, 126, 0.14);
  background: rgba(255, 255, 255, 0.72);
  padding: 12px 12px;
  font: inherit;
  font-weight: 740;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.accordion-trigger:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.12);
}

.accordion-trigger:focus-visible {
  outline: 2px solid rgba(255, 109, 0, 0.6);
  outline-offset: 2px;
}

.accordion-panel {
  padding: 10px 2px 14px;
}

.contact-link {
  font-weight: 780;
  letter-spacing: 0.02em;
}

.map-wrap {
  margin-top: 12px;
  border-radius: calc(var(--radius) + 4px);
  overflow: clip;
  border: 1px solid rgba(26, 35, 126, 0.14);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.12);
}

.map-wrap iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
}

.site-footer {
  border-top: 1px solid var(--color-border);
  background: linear-gradient(to top, rgba(245, 245, 245, 0.92), rgba(245, 245, 245, 0.70));
  backdrop-filter: blur(12px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 22px 0;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  text-decoration: none;
  color: rgba(15, 23, 42, 0.86);
  display: inline-flex;
  width: fit-content;
  padding: 8px 10px;
  border-radius: 999px;
  transition: background 160ms ease, transform 160ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  background: rgba(255, 255, 255, 0.75);
  transform: translateY(-1px);
  outline: none;
}

.brand-footer img {
  border-radius: 12px;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.42);
  backdrop-filter: blur(4px);
  z-index: 80;
  opacity: 0;
  transition: opacity 180ms ease;
}

.menu-overlay.is-open {
  opacity: 1;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(420px, 92vw);
  background: rgba(245, 245, 245, 0.92);
  border-left: 1px solid var(--color-border);
  box-shadow: -30px 0 80px rgba(15, 23, 42, 0.22);
  backdrop-filter: blur(16px);
  z-index: 90;
  transform: translateX(110%);
  transition: transform 220ms ease;
  display: grid;
  grid-template-rows: auto 1fr;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px;
  border-bottom: 1px solid var(--color-border);
}

.mobile-menu-title {
  font-weight: 860;
  letter-spacing: 0.06em;
}

.menu-close {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  display: inline-grid;
  place-items: center;
}

.mobile-nav-list {
  padding: 12px 12px 18px;
  display: grid;
  gap: 6px;
}

.mobile-nav-list a {
  text-decoration: none;
  display: flex;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid transparent;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
  color: rgba(15, 23, 42, 0.90);
}

.mobile-nav-list a:hover,
.mobile-nav-list a:focus-visible {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(26, 35, 126, 0.14);
  transform: translateX(2px);
  outline: none;
}

.mobile-nav-divider {
  height: 1px;
  background: rgba(26, 35, 126, 0.12);
  margin: 6px 6px;
}

.cookie-consent {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: end center;
  padding: 14px;
  background: rgba(15, 23, 42, 0.26);
  backdrop-filter: blur(2px);
}

.cookie-card {
  width: min(920px, 100%);
  border-radius: calc(var(--radius) + 4px);
  background: rgba(245, 245, 245, 0.94);
  border: 1px solid rgba(26, 35, 126, 0.14);
  box-shadow: var(--shadow);
  padding: 16px;
}

.cookie-head {
  display: grid;
  gap: 8px;
}

.cookie-head h2 {
  font-size: 20px;
  letter-spacing: 0.04em;
}

.cookie-head p {
  color: rgba(71, 85, 105, 0.92);
  line-height: 1.6;
}

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

.cookie-settings {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.cookie-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(26, 35, 126, 0.12);
}

.cookie-label {
  margin: 0;
  font-weight: 820;
  letter-spacing: 0.02em;
}

.pill {
  border-radius: 999px;
  padding: 8px 10px;
  font-weight: 860;
  letter-spacing: 0.06em;
  font-size: 12px;
  border: 1px solid rgba(26, 35, 126, 0.14);
  background: rgba(26, 35, 126, 0.06);
}

.pill-on {
  border-color: rgba(255, 109, 0, 0.34);
  background: rgba(255, 109, 0, 0.12);
}

.toggle {
  position: relative;
  width: 56px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.toggle input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.toggle-ui {
  width: 56px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(26, 35, 126, 0.18);
  background: rgba(176, 190, 197, 0.28);
  position: relative;
  transition: background 160ms ease, border-color 160ms ease;
}

.toggle-ui::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 4px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-50%);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.16);
  transition: left 160ms ease;
}

.toggle input:checked + .toggle-ui {
  background: rgba(255, 109, 0, 0.20);
  border-color: rgba(255, 109, 0, 0.44);
}

.toggle input:checked + .toggle-ui::after {
  left: 26px;
}

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

[data-reveal] {
  opacity: 0;
  transform: translateY(10px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
}

@media (min-width: 720px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 22px;
    align-items: center;
  }

  .order-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 16px;
  }

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

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

  .trust-row {
    grid-auto-flow: column;
    align-items: center;
    justify-content: start;
    width: fit-content;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 1fr;
    align-items: start;
  }

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

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

@media (min-width: 1024px) {
  .primary-nav {
    display: block;
  }

  .burger {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
