:root {
  --bg: #fbfbff;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --surface-soft: rgba(246, 241, 255, 0.88);
  --border: rgba(113, 78, 201, 0.12);
  --border-strong: rgba(113, 78, 201, 0.18);
  --text: #162458;
  --muted: #5d6891;
  --accent: #6d34ff;
  --accent-2: #ae27ff;
  --accent-soft: rgba(109, 52, 255, 0.1);
  --success: #2bc35f;
  --shadow: 0 28px 70px rgba(92, 62, 170, 0.1);
  --shadow-soft: 0 18px 40px rgba(93, 67, 176, 0.08);
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1428px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Segoe UI", "Trebuchet MS", Arial, sans-serif;
  background:
    radial-gradient(circle at 12% 24%, rgba(146, 112, 255, 0.17), transparent 30%),
    radial-gradient(circle at 78% 36%, rgba(180, 125, 255, 0.15), transparent 26%),
    radial-gradient(circle at 66% 92%, rgba(124, 94, 255, 0.08), transparent 26%),
    var(--bg);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.page-container {
  max-width: var(--container);
  padding-left: clamp(20px, 3vw, 44px);
  padding-right: clamp(20px, 3vw, 44px);
}

.site-logo {
  display: inline-flex;
  align-items: center;
}

.site-header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(111, 82, 190, 0.08);
}

.navbar {
  min-height: 88px;
  padding-top: 0;
  padding-bottom: 0;
}

.site-logo img,
.mobile-menu__logo,
.site-logo--footer img {
  height: auto;
}

.site-logo img {
  width: clamp(116px, 8.5vw, 148px);
}

.desktop-nav {
  margin-left: 2.4rem;
}

.desktop-nav .navbar-nav {
  width: 100%;
  justify-content: center;
}

.nav-links {
  gap: clamp(1rem, 1.7vw, 2.05rem);
}

.nav-link {
  padding: 0.25rem 0;
  font-size: 0.98rem;
  font-weight: 600;
  color: rgba(22, 36, 88, 0.76);
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.btn-gradient {
  --bs-btn-padding-x: 1.75rem;
  --bs-btn-padding-y: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border: 0;
  border-radius: 18px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%);
  box-shadow: 0 18px 34px rgba(124, 45, 255, 0.26);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.btn-gradient:hover,
.btn-gradient:focus-visible {
  color: #fff;
  transform: translateY(-1px);
  filter: saturate(1.06);
  box-shadow: 0 22px 42px rgba(124, 45, 255, 0.34);
}

.btn-header {
  min-width: 240px;
  min-height: 58px;
  padding-inline: 1.6rem;
  border-radius: 18px;
  font-size: 0.96rem;
}

.navbar-toggler {
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  border-radius: 16px;
  color: var(--accent);
  background: transparent;
  font-size: 2rem;
  box-shadow: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.queries-strip {
  overflow: hidden;
  border-top: 1px solid rgba(111, 82, 190, 0.06);
  border-bottom: 1px solid rgba(111, 82, 190, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.queries-marquee {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.queries-track {
  display: flex;
  align-items: center;
  gap: clamp(2.1rem, 4.2vw, 4.6rem);
  padding: 0.95rem clamp(1.25rem, 2vw, 2rem);
  white-space: nowrap;
}

.queries-track a {
  color: #3418b8;
  font-weight: 600;
  font-size: 0.96rem;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.hero-section {
  position: relative;
  overflow-x: clip;
  padding: clamp(1.05rem, 2.4vw, 1.6rem) 0 clamp(2rem, 5vw, 3.2rem);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: auto auto 5% 12%;
  width: clamp(180px, 22vw, 320px);
  height: clamp(180px, 22vw, 320px);
  background: radial-gradient(circle, rgba(111, 70, 255, 0.12), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}

.hero-grid {
  row-gap: 2rem;
}

.hero-copy {
  max-width: 640px;
}

.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.05rem;
  border-radius: 999px;
  margin-bottom: 2rem;
  color: #2d2e84;
  font-size: 0.95rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.availability-badge span::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 0.55rem;
  vertical-align: -3px;
  border-radius: 50%;
  background:
    linear-gradient(180deg, #ffffff 0 33%, #3366ff 33% 66%, #ef4444 66% 100%);
  box-shadow: inset 0 0 0 1px rgba(22, 36, 88, 0.08);
}

.availability-badge i {
  color: #22c55e;
  font-size: 1.35rem;
}

.availability-badge strong {
  font-weight: 800;
}

.hero-title {
  margin: 0 0 1.55rem;
  font-size: clamp(3.35rem, 5.4vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 900;
  color: #18255d;
}

.hero-title span {
  color: var(--accent);
}

.hero-lead {
  max-width: 660px;
  margin: 0 0 2.1rem;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.35vw, 1.18rem);
  line-height: 1.65;
}

.hero-lead strong {
  color: var(--accent);
}

.trust-row {
  --bs-gutter-x: 0.75rem;
  --bs-gutter-y: 0.9rem;
  max-width: 680px;
  margin-bottom: 1.8rem;
}

.trust-row > .col {
  display: flex;
  min-width: 0;
}

.trust-card,
.benefit-card {
  height: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.trust-card {
  display: flex;
  align-items: flex-start;
  gap: 0.72rem;
  width: 100%;
  min-width: 0;
  padding: 0.88rem 0.82rem 0.84rem;
  border-radius: 16px;
}

.trust-card__icon,
.benefit-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--accent);
  background: rgba(129, 85, 255, 0.1);
}

.trust-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  font-size: 1.25rem;
}

.trust-card__copy {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
  overflow: hidden;
}

.trust-card__copy b {
  font-size: 0.83rem;
  line-height: 1.18;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.trust-card__copy span {
  color: var(--muted);
  font-size: 0.77rem;
  line-height: 1.24;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.hero-button {
  min-width: min(100%, 370px);
  min-height: 66px;
  padding-inline: 1.8rem;
  border-radius: 18px;
  font-size: 1rem;
  box-shadow: 0 24px 46px rgba(124, 45, 255, 0.28);
}

.hero-visual {
  position: relative;
  isolation: isolate;
  padding: 0.7rem 0 0;
}

.hero-visual__orbit {
  position: absolute;
  inset: -2% auto auto 54%;
  width: min(100%, 440px);
  aspect-ratio: 1 / 1;
  border: 1.5px dashed rgba(175, 113, 255, 0.34);
  border-radius: 50%;
  transform: translate(0, 0);
  z-index: -2;
}

.hero-visual__spark {
  position: absolute;
  color: rgba(186, 123, 255, 0.9);
  font-size: 1.55rem;
  z-index: -1;
}

.hero-visual__spark--top {
  top: 3%;
  right: 3%;
}

.hero-visual__spark--side {
  display: none;
}

.hero-visual__label {
  display: none;
}

.hero-slider {
  max-width: 654px;
  margin-left: auto;
  overflow: visible;
}

.hero-slider .carousel-inner {
  overflow: hidden;
}

.hero-slider .carousel-item {
  overflow: hidden;
}

.hero-slide-card {
  position: relative;
  margin: 0;
  padding-bottom: clamp(4.4rem, 7vw, 5.1rem);
}

.hero-slide-card::after {
  content: "";
  display: block;
  clear: both;
}

.hero-slide-media,
.hero-slide-image {
  display: block;
  width: 100%;
}

.hero-slide-media {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
}

.hero-slide-image {
  margin: 0;
  box-shadow: 0 22px 56px rgba(77, 46, 151, 0.18);
}

.hero-slide-image--warm {
  filter: saturate(1.02) contrast(1.02);
}

.hero-slide-image--dream {
  filter: hue-rotate(12deg) saturate(1.08) brightness(1.03);
}

.hero-slide-image--cool {
  filter: hue-rotate(-10deg) saturate(0.96) contrast(1.04);
}

.hero-prompt-card {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 2;
  width: 80%;
  transform: translateX(-50%);
  padding: 1.05rem 1.2rem 1.15rem;
  border-radius: 22px;
  border: 1px solid rgba(125, 90, 202, 0.14);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}

.hero-prompt-card__label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--accent);
  font-size: 1rem;
  font-weight: 800;
}

.hero-prompt-card p {
  margin: 0;
  color: #1d2555;
  font-size: 0.95rem;
  line-height: 1.45;
}

.hero-slider__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.9rem;
}

.hero-slider__indicators {
  position: static;
  margin: 0;
  justify-content: flex-start;
  gap: 0.45rem;
}

.hero-slider__indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  margin: 0;
  border: 0;
  border-radius: 999px;
  opacity: 1;
  background: rgba(109, 52, 255, 0.22);
}

.hero-slider__indicators .active {
  width: 28px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%);
}

.hero-slider__controls {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.hero-slider__control {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(125, 90, 202, 0.16);
  border-radius: 16px;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.hero-slider__control:hover,
.hero-slider__control:focus-visible {
  transform: translateY(-1px);
  background: #fff;
  box-shadow: 0 18px 36px rgba(93, 67, 176, 0.14);
}

.hero-slider__control i {
  font-size: 1.05rem;
}

.benefits-section {
  padding-bottom: clamp(2.2rem, 5vw, 3.6rem);
}

.benefits-panel {
  padding: clamp(1.6rem, 3vw, 2.35rem);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(130, 98, 220, 0.08);
  box-shadow: var(--shadow-soft);
}

.benefit-card {
  padding: 0.9rem 0.85rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.benefit-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  margin-bottom: 0.95rem;
  font-size: 1.15rem;
}

.benefit-card h2 {
  margin: 0 0 0.55rem;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.2;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.site-footer {
  padding: clamp(1.8rem, 4vw, 2.6rem) 0 1.15rem;
  border-top: 1px solid rgba(111, 82, 190, 0.08);
}

.footer-main {
  row-gap: 1.5rem;
  align-items: center;
}

.site-logo--footer img {
  width: 90px;
  margin-bottom: 1.2rem;
}

.footer-copy {
  max-width: 350px;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.65;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2.8rem;
  min-height: 100%;
  padding-top: 0;
  color: rgba(22, 36, 88, 0.72);
  font-size: 0.84rem;
  font-weight: 600;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.45rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(111, 82, 190, 0.08);
  color: rgba(91, 101, 144, 0.92);
  font-size: 0.82rem;
}

.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-status .bi-dot {
  color: var(--success);
  font-size: 1.4rem;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 22px;
  z-index: 1100;
  padding-inline: clamp(16px, 2.4vw, 28px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
}

.cookie-banner[hidden] {
  display: block;
}

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

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  max-width: 1220px;
  margin: 0 auto;
  padding: 1rem 1.2rem 1rem 1.35rem;
  border: 1px solid rgba(164, 135, 255, 0.28);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 48px rgba(96, 74, 168, 0.14);
  backdrop-filter: blur(16px);
}

.cookie-banner__text {
  margin: 0;
  color: #657096;
  font-size: 0.98rem;
  line-height: 1.45;
}

.cookie-banner__text a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.cookie-banner__button {
  flex: 0 0 auto;
  min-width: 136px;
  min-height: 56px;
  padding: 0.9rem 1.5rem;
  border: 1px solid rgba(164, 135, 255, 0.35);
  border-radius: 20px;
  color: #262e60;
  font-size: 0.98rem;
  font-weight: 700;
  background: #fff;
  box-shadow: 0 10px 28px rgba(96, 74, 168, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.cookie-banner__button:hover,
.cookie-banner__button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(120, 78, 255, 0.45);
  box-shadow: 0 14px 30px rgba(96, 74, 168, 0.14);
}

.error-page {
  min-height: 100vh;
}

.error-main {
  min-height: calc(100vh - 88px);
}

.error-section {
  position: relative;
  padding: clamp(2rem, 6vw, 4.5rem) 0 clamp(2.25rem, 6vw, 4rem);
  overflow: hidden;
}

.error-grid {
  row-gap: 2rem;
}

.error-copy {
  max-width: 620px;
}

.error-code {
  margin: 0 0 0.65rem;
  color: rgba(109, 52, 255, 0.12);
  font-size: clamp(5.2rem, 11vw, 9rem);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.error-title {
  margin: -2rem 0 1rem;
  color: #18255d;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.error-lead {
  max-width: 560px;
  margin: 0 0 1.85rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.65;
}

.error-lead strong {
  color: var(--accent);
}

.error-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.error-button {
  min-width: min(100%, 280px);
}

.error-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #2b3471;
  font-size: 1rem;
  font-weight: 700;
}

.error-link:hover,
.error-link:focus-visible {
  color: var(--accent);
}

.error-visual {
  position: relative;
  max-width: 620px;
  margin-left: auto;
  padding: 1.2rem 0.4rem 1.2rem;
}

.error-visual__orbit {
  position: absolute;
  top: -2%;
  right: -4%;
  width: min(100%, 520px);
  aspect-ratio: 1 / 1;
  border: 1.5px dashed rgba(175, 113, 255, 0.34);
  border-radius: 50%;
}

.error-card {
  position: relative;
  z-index: 1;
  padding: 1.25rem 1.25rem 1.2rem;
  border: 1px solid rgba(130, 98, 220, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.error-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.error-card__chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 800;
  background: rgba(109, 52, 255, 0.1);
}

.error-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: var(--accent);
  font-size: 1.15rem;
  background: rgba(109, 52, 255, 0.1);
}

.error-card__eyebrow {
  margin: 0 0 0.7rem;
  color: #18255d;
  font-size: 1.1rem;
  font-weight: 800;
}

.error-card__list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.error-card__footer {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.1rem;
  color: #5d6891;
  font-size: 0.9rem;
}

.error-card__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%);
  box-shadow: 0 0 0 6px rgba(109, 52, 255, 0.12);
}

.mobile-menu {
  width: min(90vw, 360px) !important;
  padding: 0.35rem 0.35rem 0.8rem;
  background: rgba(255, 255, 255, 0.98);
  border-left: 1px solid rgba(111, 82, 190, 0.08);
}

.mobile-menu .offcanvas-header {
  padding: 1.1rem 1.1rem 0.9rem;
}

.mobile-menu__logo {
  width: 154px;
}

.mobile-menu .btn-close {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background-size: 0.82rem;
}

.mobile-menu .offcanvas-body {
  padding: 0.6rem 1.1rem 1.3rem;
}

.mobile-nav {
  display: grid;
  gap: 0.8rem;
}

.mobile-nav a {
  padding: 0.95rem 1rem;
  border-radius: 16px;
  color: rgba(22, 36, 88, 0.82);
  font-weight: 700;
  background: rgba(245, 242, 255, 0.76);
}

.mobile-menu__cta {
  width: 100%;
  margin-top: 1rem;
  min-height: 60px;
}

@media (min-width: 992px) {
  .navbar .page-container {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr) 270px;
    align-items: center;
    gap: 1rem;
  }

  .desktop-nav {
    margin-left: 0;
    width: 100%;
  }

  .header-actions {
    margin-left: 0 !important;
    width: 270px;
    justify-content: flex-end;
  }

  .hero-slide-card {
    padding-bottom: clamp(3.5rem, 5.6vw, 4.1rem);
  }
}

@media (max-width: 1199.98px) {
  .hero-copy {
    max-width: 100%;
  }

  .hero-visual {
    padding-bottom: 0;
  }

  .hero-visual__orbit {
    inset: 2% auto auto 52%;
    width: min(88vw, 410px);
  }

  .hero-prompt-card {
    width: 80%;
  }
}

@media (max-width: 991.98px) {
  .navbar {
    min-height: 86px;
  }

  .navbar .page-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
  }

  .btn-header {
    min-width: 274px;
    min-height: 58px;
    padding-inline: 1.5rem;
    font-size: 1.05rem;
  }

  .queries-track {
    gap: 3rem;
  }

  .hero-section {
    padding-top: 1rem;
  }

  .hero-title {
    max-width: 680px;
    font-size: clamp(3.1rem, 7vw, 4.6rem);
  }

  .trust-row {
    --bs-gutter-x: 0.9rem;
  }

  .hero-button {
    width: 100%;
    min-width: 0;
    min-height: 70px;
  }

  .hero-visual {
    margin-top: 1rem;
  }

  .hero-slider {
    max-width: none;
  }

  .hero-prompt-card {
    width: 80%;
  }

  .benefit-card__icon {
    margin-inline: auto;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .error-main {
    min-height: auto;
  }

  .error-copy,
  .error-visual {
    max-width: none;
    margin-left: 0;
  }
}

@media (max-width: 767.98px) {
  .page-container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .navbar .page-container {
    gap: 0.5rem;
  }

  .navbar {
    min-height: 74px;
  }

  .site-logo img {
    width: 118px;
  }

  .header-actions {
    gap: 0.25rem;
    flex: 0 0 auto;
    justify-content: flex-end;
  }

  .btn-header {
    min-width: 0;
    width: 156px;
    max-width: 156px;
    min-height: 48px;
    padding-inline: 0.7rem;
    border-radius: 15px;
    font-size: 0.78rem;
  }

  .btn-header span {
    white-space: nowrap;
  }

  .navbar-toggler {
    width: 44px;
    height: 44px;
    margin-right: 6px;
    border-radius: 14px;
    font-size: 1.8rem;
    flex: 0 0 auto;
  }

  .queries-track {
    gap: 1.5rem;
    padding-block: 0.8rem;
  }

  .queries-track a {
    font-size: 0.88rem;
  }

  .availability-badge {
    gap: 0.45rem;
    margin-bottom: 1.4rem;
    padding: 0.8rem 0.95rem;
    font-size: 0.88rem;
  }

  .hero-title {
    font-size: clamp(2.1rem, 10vw, 3.3rem);
    line-height: 0.98;
  }

  .hero-lead {
    margin-bottom: 1.45rem;
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .trust-row {
    --bs-gutter-x: 0.45rem;
    --bs-gutter-y: 0.45rem;
    row-gap: 0.45rem;
    margin-bottom: 1.2rem;
  }

  .trust-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
    padding: 0.78rem 0.55rem;
    border-radius: 14px;
  }

  .trust-card__icon {
    width: 36px;
    height: 36px;
    align-self: center;
    border-radius: 10px;
    font-size: 1rem;
  }

  .trust-card__copy {
    width: 100%;
    gap: 0.18rem;
    justify-items: center;
    text-align: center;
  }

  .trust-card__copy b {
    font-size: 0.76rem;
    line-height: 1.15;
  }

  .trust-card__copy span {
    font-size: 0.62rem;
    line-height: 1.22;
  }

  .hero-button {
    min-height: 60px;
    font-size: 0.94rem;
  }

  .hero-visual {
    margin-top: 0.8rem;
    padding-bottom: 0;
  }

  .hero-slide-card {
    padding-bottom: 5.5rem;
  }

  .hero-slide-media,
  .hero-slide-image {
    border-radius: 20px;
  }

  .hero-prompt-card {
    width: 80%;
    padding: 0.95rem 1rem;
    border-radius: 18px;
  }

  .hero-prompt-card__label {
    font-size: 0.92rem;
  }

  .hero-prompt-card p {
    font-size: 0.84rem;
    line-height: 1.4;
  }

  .hero-slider__footer {
    margin-top: 0.5rem;
  }

  .hero-slider__control {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .benefits-panel {
    padding: 1rem 0.7rem;
    border-radius: 24px;
  }

  .benefit-card {
    padding: 0.9rem 0.35rem;
    text-align: center;
  }

  .benefit-card h2 {
    font-size: 0.9rem;
  }

  .benefit-card p {
    font-size: 0.76rem;
  }

  .site-footer {
    padding-top: 1.6rem;
  }

  .footer-main {
    align-items: flex-start;
  }

  .footer-copy {
    max-width: 260px;
    font-size: 0.86rem;
  }

  .footer-bottom {
    gap: 0.7rem;
    font-size: 0.82rem;
  }

  .footer-links {
    gap: 0.85rem 1.4rem;
    font-size: 0.82rem;
  }

  .error-section {
    padding-top: 1.35rem;
  }

  .error-title {
    margin-top: -1.4rem;
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .error-lead {
    margin-bottom: 1.35rem;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .error-actions {
    gap: 0.8rem;
  }

  .error-button {
    width: 100%;
    min-width: 0;
  }

  .error-link {
    font-size: 0.94rem;
  }

  .error-visual {
    padding: 0.5rem 0 0;
  }

  .error-card {
    padding: 1rem;
    border-radius: 22px;
  }

  .error-card__eyebrow {
    font-size: 1rem;
  }

  .error-card__list {
    font-size: 0.9rem;
  }

  .error-card__footer {
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .cookie-banner {
    bottom: 16px;
    padding-inline: 14px;
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
    padding: 1rem;
    border-radius: 20px;
  }

  .cookie-banner__text {
    font-size: 0.9rem;
  }

  .cookie-banner__button {
    width: 100%;
    min-height: 50px;
    border-radius: 16px;
    font-size: 0.92rem;
  }
}

@media (max-width: 575.98px) {
  .trust-card__copy b {
    font-size: 0.72rem;
  }

  .trust-card__copy span {
    font-size: 0.58rem;
  }

  .btn-header {
    width: 148px;
    max-width: 148px;
    min-height: 46px;
    font-size: 0.72rem;
  }

  .btn-header span {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-title {
    letter-spacing: -0.05em;
  }

  .availability-badge span::before {
    width: 16px;
    height: 16px;
    margin-right: 0.45rem;
  }

  .hero-slider__footer {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-slider__indicators {
    width: 100%;
    justify-content: center;
  }

  .error-code {
    font-size: 4.6rem;
  }

  .error-title {
    margin-top: -1rem;
  }

  .error-card__top {
    margin-bottom: 0.95rem;
  }

  .error-card__chip {
    min-height: 34px;
    font-size: 0.8rem;
  }

  .error-card__icon {
    width: 40px;
    height: 40px;
  }

  .error-visual__orbit {
    display: none;
  }

  .hero-visual__orbit,
  .hero-visual__spark,
  .hero-visual__label {
    display: none;
  }
}
