:root {
  --color-ink: #0f172a;
  --color-muted: #475569;
  --color-surface: #ffffff;
  --color-surface-2: #f7fafc;
  --color-brand: #81A6C6;
  --color-brand-2: #AACDDC;
  --color-accent: #F3E3D0;
  --color-accent-2: #D2C4B4;
  --color-border: rgba(15, 23, 42, .14);
  --color-danger: #b42318;
  --font-sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  --font-size-0: .875rem;
  --font-size-1: 1rem;
  --font-size-2: 1.125rem;
  --font-size-3: 1.5rem;
  --font-size-4: 2.25rem;
  --line-compact: 1.25;
  --line-normal: 1.55;
  --shadow-1: 0 10px 30px rgba(15, 23, 42, .10);
  --shadow-2: 0 16px 40px rgba(15, 23, 42, .14);
  --radius-1: 10px;
  --radius-2: 16px;
  --radius-pill: 999px;
  --space-1: .375rem;
  --space-2: .75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --container: 1100px;
  --focus: 0 0 0 4px rgba(129, 166, 198, .35);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-ink);
  background: linear-gradient(180deg, var(--color-brand-2) 0%, var(--color-accent) 32%, var(--color-surface) 65%);
  line-height: var(--line-normal);
}

img {
  max-width: 100%;
  display: block
}

a {
  color: inherit
}

.skip-link {
  position: absolute;
  left: -999px;
  top: var(--space-2);
  background: var(--color-surface);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-1);
  border: 1px solid var(--color-border);
}

.skip-link:focus {
  left: var(--space-2);
  outline: none;
  box-shadow: var(--shadow-1), var(--focus)
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-4)
}

.topbar {
  background: rgba(255, 255, 255, .55);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.topbar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  font-size: var(--font-size-0);
  color: var(--color-muted);
}

.topbar__row a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease, transform .2s ease;
}

.topbar__row a:hover {
  color: var(--color-ink);
  border-color: rgba(15, 23, 42, .35);
  transform: translateY(-1px)
}

.topbar__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3)
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .78);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-3) 0;
}

.brand {
  display: block;
}

.brand img {
  width: 4rem;
  position: relative;
  z-index: 20;
}

.brand img {
  display: inline-block;
  transform: rotate(-5deg);
  transition: transform var(--transition-normal);
}

.brand:hover img {
  transform: rotate(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .brand img {
    width: 3rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 768px) {
  .brand img {
    width: 3rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 576px) {
  .brand img {
    width: 2rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 400px) {
  .brand img {
    width: 2rem;
    position: relative;
    z-index: 20;
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-pill);
  text-decoration: none;
  color: var(--color-ink);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.nav__link:hover {
  background: rgba(129, 166, 198, .22);
  transform: translateY(-1px)
}

.nav__link:focus {
  outline: none;
  box-shadow: var(--focus)
}

.nav__icon {
  width: 18px;
  height: 18px
}

.menu {
  position: relative;
}

.menu__button {
  display: none;
  align-items: center;
  gap: .5rem;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.menu__button:hover {
  transform: translateY(-1px)
}

.menu__button:focus {
  outline: none;
  box-shadow: var(--focus)
}

.hero {
  padding: var(--space-6) 0 var(--space-5)
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: var(--space-5);
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .75rem;
  border-radius: var(--radius-pill);
  background: rgba(243, 227, 208, .9);
  border: 1px solid rgba(210, 196, 180, .7);
  font-size: var(--font-size-0);
  color: rgba(15, 23, 42, .82);
}

.h1 {
  margin: var(--space-3) 0 var(--space-3);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: var(--line-compact);
  letter-spacing: -.02em;
}

.lead {
  margin: 0 0 var(--space-4);
  color: var(--color-muted);
  font-size: var(--font-size-2)
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin: 0 0 var(--space-4);
  padding: 0;
  list-style: none
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem .75rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, .85);
  box-shadow: var(--shadow-1);
  font-size: var(--font-size-0);
}

.price {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  margin: 0 0 var(--space-4);
}

.price__now {
  font-size: var(--font-size-4);
  font-weight: 800;
  letter-spacing: -.02em
}

.price__was {
  color: var(--color-muted);
  text-decoration: line-through
}

.hero-card {
  padding: var(--space-4);
  border-radius: var(--radius-2);
  background: rgba(255, 255, 255, .88);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-2);
  transform: translateZ(0);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.hero-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2), 0 22px 60px rgba(15, 23, 42, .10);
  border-color: rgba(129, 166, 198, .55);
}

.product-figure {
  margin: 0;
  border-radius: var(--radius-2);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: linear-gradient(135deg, rgba(129, 166, 198, .25), rgba(243, 227, 208, .35));
}

.product-figure img {
  width: 100%;
  height: auto
}

.product-figure__cap {
  padding: var(--space-2) var(--space-3);
  font-size: var(--font-size-0);
  color: var(--color-muted)
}

.section {
  padding: var(--space-6) 0
}

.section--tight {
  padding: var(--space-5) 0
}

.section__title {
  font-size: var(--font-size-3);
  margin: 0 0 var(--space-2);
  letter-spacing: -.01em;
}

.section__subtitle {
  margin: 0 0 var(--space-4);
  color: var(--color-muted);
  max-width: 70ch
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
}

.card {
  padding: var(--space-4);
  border-radius: var(--radius-2);
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow-1);
  transition: transform .2s ease, box-shadow .2s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2)
}

.card h3 {
  margin: 0 0 var(--space-2);
  font-size: var(--font-size-2)
}

.card p {
  margin: 0;
  color: var(--color-muted)
}

.content {
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, .9);
  border-radius: var(--radius-2);
  box-shadow: var(--shadow-1);
  padding: var(--space-5);
}

.content p {
  max-width: 80ch
}

.content ul {
  max-width: 80ch
}

.content li {
  margin: .4rem 0
}

.faq details {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2);
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow-1);
  padding: var(--space-3) var(--space-4);
}

.faq details+details {
  margin-top: var(--space-2)
}

.faq summary {
  cursor: pointer;
  font-weight: 650;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none
}

.faq summary:focus {
  outline: none;
  box-shadow: var(--focus);
  border-radius: var(--radius-1)
}

.faq p {
  margin: var(--space-2) 0 0;
  color: var(--color-muted)
}

.form {
  display: grid;
  gap: var(--space-3);
}

.field {
  display: grid;
  gap: var(--space-1);
}

.label {
  font-weight: 650
}

.input,
.textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-1);
  padding: var(--space-2) var(--space-3);
  font: inherit;
  background: rgba(255, 255, 255, .96);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.textarea {
  min-height: 120px;
  resize: vertical
}

.input:focus,
.textarea:focus {
  outline: none;
  box-shadow: var(--focus);
  border-color: rgba(129, 166, 198, .7)
}

.help {
  font-size: var(--font-size-0);
  color: var(--color-muted)
}

.error {
  font-size: var(--font-size-0);
  color: var(--color-danger);
  min-height: 1.1em
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2);
  padding: var(--space-3);
  background: rgba(255, 255, 255, .9);
}

.checkbox input {
  margin-top: .2rem
}

.checkbox a {
  color: rgba(15, 23, 42, .86)
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.05rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(15, 23, 42, .12);
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  user-select: none;
}

.btn:focus {
  outline: none;
  box-shadow: var(--focus)
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-1)
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-brand), var(--color-brand-2));
  color: #0b1220;
  border-color: rgba(129, 166, 198, .55)
}

.btn--ghost {
  background: rgba(255, 255, 255, .85)
}

.btn--danger {
  background: rgba(180, 35, 24, .08);
  border-color: rgba(180, 35, 24, .25)
}

.cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-5);
  border-radius: var(--radius-2);
  border: 1px solid rgba(129, 166, 198, .45);
  background: linear-gradient(135deg, rgba(129, 166, 198, .28), rgba(243, 227, 208, .55));
  box-shadow: var(--shadow-2);
}

.cta__row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: center
}

.disclaimer {
  font-size: var(--font-size-0);
  color: rgba(15, 23, 42, .75);
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-3);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin: 0 0 var(--space-3);
}

.tab {
  appearance: none;
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, .9);
  color: rgba(15, 23, 42, .9);
  border-radius: var(--radius-pill);
  padding: .55rem .9rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.tab:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-1)
}

.tab:focus {
  outline: none;
  box-shadow: var(--focus)
}

.tab[aria-selected="true"] {
  background: linear-gradient(135deg, rgba(129, 166, 198, .35), rgba(243, 227, 208, .55));
  border-color: rgba(129, 166, 198, .55);
}

.tabpanes {
  display: grid;
  gap: var(--space-2)
}

.tabpane {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2);
  background: rgba(247, 250, 252, .75);
  padding: var(--space-4);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .6s ease, transform .6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto
  }

  * {
    transition: none !important;
    animation: none !important
  }

  [data-reveal] {
    opacity: 1;
    transform: none
  }
}

.footer {
  padding: var(--space-6) 0 var(--space-4);
  border-top: 1px solid var(--color-border);
  background: rgba(255, 255, 255, .65);
  backdrop-filter: saturate(140%) blur(10px);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: var(--space-5);
  align-items: start;
}

.footer__links {
  display: grid;
  gap: var(--space-2);
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__links a {
  text-decoration: none;
  color: rgba(15, 23, 42, .82);
  transition: color .2s ease, transform .2s ease;
}

.footer__links a:hover {
  color: var(--color-ink);
  transform: translateX(2px)
}

.footer__meta {
  margin-top: var(--space-3);
  color: var(--color-muted);
  font-size: var(--font-size-0)
}

.cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  padding: var(--space-3) var(--space-4);
  background: rgba(255, 255, 255, .92);
  border-top: 1px solid var(--color-border);
  backdrop-filter: saturate(140%) blur(10px);
  box-shadow: 0 -12px 30px rgba(15, 23, 42, .10);
}

.cookie__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3)
}

.cookie__text {
  max-width: 72ch;
  color: var(--color-muted);
  font-size: var(--font-size-0)
}

.cookie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2)
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  background: rgba(2, 6, 23, .45);
}

.modal[aria-hidden="false"] {
  display: flex
}

.modal__panel {
  width: min(720px, 100%);
  border-radius: var(--radius-2);
  background: var(--color-surface);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: var(--shadow-2);
  padding: var(--space-5);
}

.modal__title {
  margin: 0 0 var(--space-2);
  font-size: var(--font-size-3)
}

.modal__desc {
  margin: 0 0 var(--space-4);
  color: var(--color-muted)
}

.toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2);
  background: rgba(247, 250, 252, .8);
}

.toggle+.toggle {
  margin-top: var(--space-2)
}

.toggle__meta {
  display: grid;
  gap: .2rem
}

.toggle__name {
  font-weight: 700
}

.toggle__hint {
  font-size: var(--font-size-0);
  color: var(--color-muted)
}

.switch {
  appearance: none;
  width: 44px;
  height: 26px;
  border-radius: var(--radius-pill);
  background: rgba(15, 23, 42, .18);
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.switch:focus {
  box-shadow: var(--focus)
}

.switch:checked {
  background: rgba(129, 166, 198, .9)
}

.switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-surface);
  box-shadow: 0 6px 14px rgba(15, 23, 42, .14);
  transition: transform .2s ease;
}

.switch:checked::after {
  transform: translateX(18px)
}

.switch:disabled {
  opacity: .6;
  cursor: not-allowed
}

.policy {
  padding: var(--space-6) 0;
}

.policy h1 {
  margin: 0 0 var(--space-2);
  font-size: var(--font-size-4);
  line-height: var(--line-compact)
}

.policy h2 {
  margin: var(--space-5) 0 var(--space-2);
  font-size: var(--font-size-3)
}

.policy p,
.policy li {
  color: rgba(15, 23, 42, .82)
}

.policy a {
  color: rgba(15, 23, 42, .86)
}

@media (max-width:920px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: var(--space-4)
  }

  .cards {
    grid-template-columns: 1fr
  }

  .footer__grid {
    grid-template-columns: 1fr
  }
}

@media (max-width:720px) {
  .nav__list {
    display: none
  }

  .menu__button {
    display: inline-flex
  }

  .nav {
    gap: var(--space-2)
  }

  .menu[data-open="true"] .nav__list {
    display: grid;
    position: absolute;
    right: 0;
    top: calc(100% + var(--space-2));
    background: rgba(255, 255, 255, .96);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-2);
    box-shadow: var(--shadow-2);
    padding: var(--space-2);
    min-width: 240px;
  }

  .menu[data-open="true"] .nav__link {
    justify-content: flex-start
  }
}