:root {
  --bg: #050505;
  --bg-soft: #0b0b0b;
  --panel: rgba(18, 18, 18, 0.72);
  --panel-strong: rgba(16, 16, 16, 0.92);
  --stroke: rgba(255, 255, 255, 0.12);
  --stroke-2: rgba(255, 255, 255, 0.08);
  --text: #f4f4f4;
  --muted: rgba(244, 244, 244, 0.62);
  --muted-2: rgba(244, 244, 244, 0.42);
  --blue: #e8e8e8;
  --cyan: #f4f4f4;
  --lime: #e6e6e6;
  --orange: #d8d8d8;
  --pink: #e0e0e0;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.62);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.34);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100% - 32px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: radial-gradient(1100px 700px at 15% 0%, rgba(255, 255, 255, 0.08) 0%, transparent 55%),
    radial-gradient(900px 520px at 88% 18%, rgba(255, 255, 255, 0.06) 0%, transparent 60%),
    radial-gradient(700px 460px at 70% 92%, rgba(255, 255, 255, 0.04) 0%, transparent 58%),
    linear-gradient(180deg, #050505 0%, #070707 50%, #030303 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.page-shell {
  overflow: clip;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.vitrine {
  padding-top: 70px;
}

.vitrine-stack {
  display: grid;
  gap: 18px;
}

.vitrine-block {
  border: 1px solid var(--stroke);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(17, 28, 48, 0.66), rgba(6, 12, 22, 0.94));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.vitrine-block-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  padding: 18px 18px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.vitrine-block-head h3 {
  margin: 0;
  font-family: "Unbounded", system-ui, sans-serif;
  letter-spacing: -0.02em;
  font-size: 1.35rem;
}

.vitrine-block-head p {
  margin: 6px 0 0;
  color: var(--muted);
}

.vitrine-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(170, 205, 255, 0.18);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  font-weight: 800;
}

.vitrine-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 14px;
  padding: 14px 18px 18px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
}

.vitrine-row::-webkit-scrollbar {
  height: 10px;
}

.vitrine-row::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.vitrine-item {
  scroll-snap-align: start;
  border: 1px solid rgba(170, 205, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 22px;
  padding: 14px;
  min-height: 140px;
  display: grid;
  gap: 10px;
  align-content: start;
}

.vitrine-image {
  width: 100%;
  height: 120px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.96;
}

.vitrine-item strong {
  font-size: 1rem;
}

.vitrine-item .sub {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

.vitrine-item-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.vitrine-price {
  font-family: "Unbounded", system-ui, sans-serif;
  letter-spacing: -0.02em;
}

.eyebrow {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  margin-bottom: 36px;
}

.section-head h2,
.site-footer h2,
.hero-copy h1 {
  margin: 0;
  font-family: "Unbounded", system-ui, sans-serif;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.section-head h2,
.site-footer h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-head p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(0, 0, 0, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  color: #06111f;
  font-family: "Unbounded", system-ui, sans-serif;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(245, 245, 245, 1), rgba(175, 175, 175, 1));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
}

.brand-mark-image {
  padding: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-mark-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.35));
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy small {
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  color: var(--muted);
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #06111f;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(245, 245, 245, 1), rgba(165, 165, 165, 1));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.42);
}

.button-secondary,
.button-ghost {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.025);
}

.button-secondary:hover,
.button-ghost:hover {
  box-shadow: var(--shadow-soft);
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid var(--stroke);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.hero {
  position: relative;
  padding: 60px 0 48px;
}

.hero-compact {
  padding: 34px 0 22px;
}

.hero-compact-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: end;
}

.hero-compact-copy h1 {
  max-width: 18ch;
}

.hero-search-wide {
  margin-top: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 50%;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 72%);
  transform: translateX(-10%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(3.4rem, 7vw, 6.4rem);
}

.hero-text,
.process-copy,
.site-footer p,
.faq-list p,
.benefit-card p,
.step-card p,
.side-card p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 640px;
  margin: 22px 0 0;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 12px;
  margin-top: 30px;
  border: 1px solid rgba(170, 205, 255, 0.16);
  border-radius: 26px;
  background: rgba(5, 10, 20, 0.62);
  box-shadow: var(--shadow);
}

.hero-search input {
  min-width: 0;
  padding: 0 8px;
  color: var(--text);
  background: transparent;
  border: 0;
  outline: 0;
}

.hero-search input::placeholder {
  color: #7f91b0;
}

.hero-search button {
  min-height: 52px;
  padding: 0 20px;
  border: 0;
  border-radius: 18px;
  color: #08111f;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.hero-stats li,
.step-card,
.benefit-card,
.side-card,
.faq-list details,
.plan-card,
.product-card,
.hero-card {
  position: relative;
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(17, 28, 48, 0.72), rgba(6, 12, 22, 0.94));
  box-shadow: var(--shadow);
}

.hero-stats li {
  padding: 20px;
  border-radius: 22px;
}

.hero-stats strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 1.55rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-stage {
  position: relative;
  min-height: 620px;
}

.hero-card {
  height: 100%;
  padding: 28px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.hero-card::before,
.side-card-highlight::before,
.plan-card.featured::before {
  content: "";
  position: absolute;
  inset: auto -80px -80px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 255, 99, 0.22), transparent 70%);
}

.hero-card h2 {
  max-width: 9ch;
  margin: 18px 0 12px;
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.hero-card p {
  max-width: 48ch;
  margin: 0;
  color: var(--muted);
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.chip-lime {
  color: #06111f;
  background: var(--lime);
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.mini-product {
  min-height: 148px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.mini-product strong {
  display: block;
  margin: 38px 0 8px;
  font-size: 1.05rem;
}

.mini-product small,
.mini-tag {
  color: rgba(255, 255, 255, 0.78);
}

.mini-tag {
  display: inline-flex;
  min-height: 28px;
  padding: 0 10px;
  align-items: center;
  border-radius: 999px;
  font-size: 0.75rem;
  background: rgba(8, 18, 30, 0.4);
}

.neon-blue {
  background: linear-gradient(160deg, rgba(83, 182, 255, 0.32), rgba(19, 54, 96, 0.42));
}

.neon-orange {
  background: linear-gradient(160deg, rgba(255, 154, 60, 0.32), rgba(98, 42, 8, 0.42));
}

.neon-green {
  background: linear-gradient(160deg, rgba(198, 255, 99, 0.28), rgba(60, 89, 17, 0.4));
}

.neon-pink {
  background: linear-gradient(160deg, rgba(255, 106, 169, 0.28), rgba(112, 21, 62, 0.42));
}

.hero-float {
  position: absolute;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 16, 28, 0.8);
  box-shadow: var(--shadow);
}

.hero-float span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
}

.hero-float strong {
  display: block;
  margin-top: 4px;
}

.float-top {
  top: 24px;
  right: -18px;
}

.float-bottom {
  bottom: 26px;
  left: -16px;
}

.ticker {
  padding: 18px 0;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.ticker-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.ticker-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  white-space: nowrap;
}

.ticker-row span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 16px rgba(198, 255, 99, 0.9);
}

.filter-row,
.duration-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.filter-row-sticky {
  position: sticky;
  top: 86px;
  z-index: 10;
  padding: 10px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(5, 10, 20, 0.82);
  backdrop-filter: blur(14px);
}

.filter-pill,
.duration-pill {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
}

.filter-pill.is-active,
.duration-pill.is-active {
  color: #06111f;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
}

.catalog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 22px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  padding: 18px;
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.52);
}

.product-cover {
  position: relative;
  min-height: 220px;
  padding: 16px;
  border-radius: 20px;
  overflow: hidden;
}

.product-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.05);
}

.product-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 9, 19, 0.25) 0%, rgba(5, 9, 19, 0.72) 100%);
  pointer-events: none;
}

.product-cover::after {
  content: attr(data-symbol);
  position: absolute;
  right: 12px;
  bottom: -14px;
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 5rem;
  line-height: 1;
  opacity: 0.12;
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  background: rgba(6, 12, 22, 0.42);
  backdrop-filter: blur(8px);
}

.badge.discount {
  color: #06111f;
  background: linear-gradient(135deg, rgba(245, 245, 245, 1), rgba(170, 170, 170, 1));
}

.product-meta {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.product-title {
  margin: 0;
  font-size: 1.12rem;
}

.product-subtitle {
  color: var(--muted);
  font-size: 0.95rem;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 12px;
  margin-top: 14px;
}

.price {
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 1.6rem;
}

.ghost-link {
  color: var(--cyan);
  font-weight: 700;
  border: 0;
  background: transparent;
  padding: 0;
}

.ghost-link:hover {
  text-decoration: underline;
}

.catalog-side {
  display: grid;
  gap: 18px;
  align-self: start;
}

.side-card {
  padding: 22px;
  border-radius: 24px;
}

.side-card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.side-card-highlight a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--lime);
  font-weight: 700;
}

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

.simple-list li {
  padding-bottom: 12px;
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.plan-card {
  padding: 28px;
  border-radius: 28px;
}

.plan-card.featured {
  border-color: rgba(198, 255, 99, 0.24);
}

.plan-tier {
  display: inline-flex;
  padding: 0 12px;
  min-height: 32px;
  align-items: center;
  border-radius: 999px;
  color: #06111f;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
}

.plan-card h3 {
  margin: 18px 0 10px;
  font-size: 1.5rem;
}

.plan-card p {
  margin: 0;
  color: var(--muted);
}

.plan-price {
  margin: 24px 0 18px;
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 2.4rem;
}

.drops-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.drop-card {
  grid-column: span 4;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(17, 35, 58, 0.78), rgba(8, 18, 30, 0.94));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.drop-card.wide {
  grid-column: span 8;
}

.drop-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.drop-head h3 {
  margin: 0;
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}

.drop-head .hint {
  color: var(--muted);
  font-size: 0.95rem;
}

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

.drop-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.drop-item strong {
  display: block;
  font-size: 1rem;
}

.drop-item small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.drop-pill {
  display: inline-flex;
  min-height: 30px;
  padding: 0 12px;
  align-items: center;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  color: #06111f;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .drop-card,
  .drop-card.wide {
    grid-column: span 6;
  }
}

@media (max-width: 840px) {
  .drop-card,
  .drop-card.wide {
    grid-column: span 12;
  }
}

.plan-features {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.plan-features li {
  color: var(--muted);
}

.plan-features li::before {
  content: "•";
  margin-right: 8px;
  color: var(--lime);
}

.process-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 24px;
}

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

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

.step-card,
.benefit-card {
  padding: 24px;
  border-radius: 24px;
}

.step-card span {
  display: inline-flex;
  min-height: 42px;
  padding: 0 14px;
  align-items: center;
  border-radius: 14px;
  color: #06111f;
  font-weight: 800;
  background: linear-gradient(135deg, var(--orange), #ffd28d);
}

.step-card h3,
.benefit-card h3 {
  margin: 18px 0 12px;
  font-size: 1.3rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 24px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 20px 22px;
  border-radius: 22px;
}

.faq-list summary {
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 14px 0 0;
}

.site-footer {
  padding: 28px 0 42px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--stroke);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(17, 35, 58, 0.84), rgba(8, 18, 30, 0.96));
}

.footer-links {
  display: grid;
  align-content: start;
  justify-items: end;
  gap: 10px;
}

.footer-links a {
  color: var(--cyan);
}

.footer-note {
  color: var(--muted);
  font-weight: 700;
}

.cart-open {
  gap: 10px;
}

.cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 26px;
  height: 26px;
  padding: 0 8px;
  border-radius: 999px;
  font-weight: 800;
  color: #06111f;
  background: linear-gradient(135deg, rgba(245, 245, 245, 1), rgba(170, 170, 170, 1));
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 50;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(520px, calc(100vw - 24px));
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(5, 10, 20, 0.92);
  backdrop-filter: blur(18px);
  transform: translateX(105%);
  transition: transform 0.24s ease;
  z-index: 60;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 18px;
  gap: 14px;
}

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

.drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
  padding: 14px;
  border: 1px solid rgba(170, 205, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.02);
}

.drawer-title {
  margin: 0;
  font-family: "Unbounded", system-ui, sans-serif;
  letter-spacing: -0.03em;
  font-size: 1.5rem;
  line-height: 1;
}

.drawer-close {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.drawer-body {
  overflow: auto;
  padding: 4px;
  display: grid;
  gap: 12px;
  align-content: start;
}

.cart-empty {
  padding: 16px;
  border-radius: 22px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
}

.cart-list {
  display: grid;
  gap: 12px;
}

.cart-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid rgba(170, 205, 255, 0.13);
  background: rgba(255, 255, 255, 0.02);
}

.cart-row h4 {
  margin: 0;
  font-size: 1rem;
}

.cart-row .meta {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.cart-controls {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.qty {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.2);
}

.qty button {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.qty span {
  min-width: 28px;
  text-align: center;
  font-weight: 800;
}

.icon-link {
  border: 0;
  background: transparent;
  color: var(--cyan);
  font-weight: 800;
}

.cart-auto-note {
  padding: 14px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  line-height: 1.5;
}

.drawer-footer {
  display: grid;
  gap: 12px;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.03);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  color: var(--muted);
}

.cart-total strong {
  color: var(--text);
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 1.6rem;
}

.checkout {
  width: min(720px, calc(100vw - 22px));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: rgba(5, 10, 20, 0.96);
  color: var(--text);
  padding: 0;
}

.checkout::backdrop {
  background: rgba(0, 0, 0, 0.55);
}

.checkout-card {
  padding: 18px;
  display: grid;
  gap: 14px;
}

.checkout-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.03);
}

.checkout-body {
  padding: 14px;
  border-radius: 22px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.02);
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-weight: 700;
}

.field input {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.22);
  color: var(--text);
  outline: none;
}

.checkout-info {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.checkout-info strong {
  color: var(--text);
}

.checkout-info .muted {
  margin-top: 8px;
  color: #7f91b0;
}

.checkout-footer {
  display: flex;
  gap: 12px;
  justify-content: end;
}

@media (max-width: 640px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-copy,
.hero-stage,
.section-head,
.product-card,
.plan-card,
.step-card,
.benefit-card {
  animation: rise-in 0.7s ease both;
}

@media (max-width: 1100px) {
  .hero-grid,
  .catalog-layout,
  .process-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-compact-row {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: auto;
  }

  .float-top,
  .float-bottom {
    display: none;
  }

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

@media (max-width: 840px) {
  .header-row {
    flex-wrap: wrap;
    min-height: 74px;
    padding: 10px 0;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav.is-open {
    display: grid;
    width: 100%;
    order: 4;
    padding: 12px;
    border: 1px solid var(--stroke);
    border-radius: 20px;
    background: rgba(6, 12, 22, 0.9);
  }

  .site-nav.is-open a {
    padding: 10px 6px;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-mini-grid,
  .steps,
  .ticker-row,
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .steps-compact {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 80px 0;
  }

  .vitrine-row {
    grid-auto-columns: minmax(240px, 1fr);
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100% - 20px, 100%);
  }

  .section-head {
    align-items: start;
  }

  .section-head,
  .footer-row {
    display: grid;
  }

  .hero {
    padding-top: 32px;
  }

  .hero-card,
  .plan-card,
  .product-card,
  .side-card,
  .step-card,
  .benefit-card,
  .faq-list details {
    border-radius: 22px;
  }

  .hero-actions,
  .hero-search,
  .hero-stats,
  .hero-mini-grid,
  .product-grid,
  .plan-grid,
  .benefit-grid,
  .steps,
  .ticker-row {
    grid-template-columns: 1fr;
  }

  .hero-search button,
  .button {
    width: 100%;
  }

  .product-footer,
  .footer-links {
    justify-items: start;
  }

  .footer-links {
    align-items: start;
  }
}
