:root {
  --color-bg: #0c1018;
  --color-surface: #161d2a;
  --color-surface-elevated: #1e2738;
  --color-accent: #4a7ab8;
  --color-accent-hover: #3d6699;
  --color-accent-muted: rgba(74, 122, 184, 0.2);
  --color-text: #e6ebf2;
  --color-text-muted: #94a3b8;
  --color-border: rgba(230, 235, 242, 0.1);
  --color-warning: #b8955c;
  --color-error: #c45c5c;
  --color-success: #5a9a7a;
  --font-heading: "Segoe UI", system-ui, sans-serif;
  --font-body: "Segoe UI", system-ui, sans-serif;
  --fs-xs: clamp(0.7rem, 1.5vw, 0.8rem);
  --fs-sm: clamp(0.8rem, 1.8vw, 0.9rem);
  --fs-base: clamp(0.95rem, 2vw, 1.05rem);
  --fs-md: clamp(1.05rem, 2.2vw, 1.2rem);
  --fs-lg: clamp(1.35rem, 3vw, 1.75rem);
  --fs-xl: clamp(1.75rem, 4vw, 2.35rem);
  --fs-hero: clamp(2rem, 5vw, 2.85rem);
  --lh-tight: 1.2;
  --lh-body: 1.6;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.45);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 999px;
  --space-xs: 0.35rem;
  --space-sm: 0.65rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.25rem;
  --space-2xl: 3.5rem;
  --transition: 0.22s ease;
  --header-h: 3.25rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  color: var(--color-text);
  background: var(--color-bg);
  min-height: 100vh;
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

a:hover {
  color: var(--color-accent-hover);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 9999;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-accent);
  color: var(--color-bg);
}

.skip-link:focus {
  left: var(--space-md);
  top: var(--space-md);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(12, 16, 24, 0.98), rgba(12, 16, 24, 0.92));
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(10px);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-sm) var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  min-height: var(--header-h);
}

.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-xs);
  letter-spacing: 0.02em;
  color: var(--color-text);
  white-space: nowrap;
}

@media (max-width: 520px) {
  .logo {
    max-width: min(48vw, 12rem);
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.logo:hover {
  color: var(--color-accent);
}

.nav-desktop {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-sm) var(--space-md);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-desktop a {
  font-size: clamp(0.62rem, 1.2vw, 0.78rem);
  color: var(--color-text-muted);
  padding: var(--space-xs) 0;
}

.nav-desktop a:hover {
  color: var(--color-accent);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  color: var(--color-text);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}

.menu-toggle:hover {
  background: var(--color-surface-elevated);
  border-color: var(--color-accent);
}

.menu-toggle .icon-bar {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: currentColor;
  margin: 3px auto;
  transition: transform var(--transition);
}

.nav-mobile {
  list-style: none;
  margin: 0;
  padding: var(--space-md);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.nav-mobile a {
  display: block;
  padding: var(--space-sm) var(--space-md);
  font-size: var(--fs-sm);
  color: var(--color-text);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.nav-mobile a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

@media (max-width: 1000px) {
  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
  }

  .nav-mobile-wrap {
    display: none;
    margin: 0;
    padding: 0;
  }

  .nav-mobile-wrap.is-open {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    top: var(--header-h);
    bottom: 0;
    z-index: 99;
    overflow-y: auto;
    background: var(--color-bg);
    background-image: linear-gradient(180deg, #121a28 0%, var(--color-bg) 35%);
    box-shadow: inset 0 1px 0 var(--color-border);
  }
}

@media (min-width: 1001px) {
  .nav-mobile-wrap {
    display: none !important;
  }

  .menu-toggle {
    display: none !important;
  }
}

main {
  overflow-x: hidden;
}

.section {
  padding: var(--space-2xl) var(--space-md);
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 700;
  line-height: var(--lh-tight);
  margin: 0 0 var(--space-lg);
  color: var(--color-text);
}

.section-lead {
  color: var(--color-text-muted);
  max-width: 65ch;
  margin: 0 0 var(--space-xl);
}

.hero {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-2xl);
  background: radial-gradient(ellipse 120% 80% at 70% 18%, rgba(74, 122, 184, 0.14), transparent 52%),
    linear-gradient(165deg, #141c2a 0%, #0c1018 48%);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: var(--space-xl);
  align-items: start;
}

.hero-visual {
  position: relative;
  min-width: 0;
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.hero-visual figure {
  margin: 0;
  display: block;
  line-height: 0;
  background: var(--color-bg);
}

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

.hero-copy {
  min-width: 0;
}

.hero-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  max-width: none;
  z-index: 1;
  box-sizing: border-box;
  background: rgba(30, 39, 56, 0.92);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  box-shadow: var(--shadow-sm);
  font-size: var(--fs-xs);
  overflow-wrap: anywhere;
}

@media (min-width: 480px) {
  .hero-badge {
    right: auto;
    max-width: min(20rem, calc(100% - 2 * var(--space-md)));
  }
}

.hero-product-type {
  margin: 0 0 var(--space-xs);
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--color-text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-trust {
  margin: 0;
  color: var(--color-text-muted);
  font-size: var(--fs-xs);
}

.hero-copy h1 {
  font-size: var(--fs-hero);
  font-weight: 800;
  line-height: var(--lh-tight);
  margin: 0 0 var(--space-md);
}

.hero-copy p {
  color: var(--color-text-muted);
  margin: 0 0 var(--space-lg);
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.price-current {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--color-accent);
}

.price-old {
  font-size: var(--fs-md);
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.card-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
}

.card-form h2 {
  font-size: var(--fs-md);
  margin: 0 0 var(--space-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group:not(.checkbox-row) label {
  display: block;
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-xs);
}

.form-group input:not([type="checkbox"]),
.form-group textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  color: var(--color-text);
  font-family: inherit;
  font-size: var(--fs-sm);
  transition: border-color var(--transition);
}

.form-group input:not([type="checkbox"]):focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
}

.form-group input[type="checkbox"] {
  width: 1.15rem;
  height: 1.15rem;
  margin: 0;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 0.15rem;
  accent-color: var(--color-accent);
  cursor: pointer;
}

.form-group.checkbox-row label {
  display: inline;
  margin-bottom: 0;
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  line-height: 1.5;
  cursor: pointer;
}

.form-group.checkbox-row label a {
  color: var(--color-accent);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.field-error {
  font-size: var(--fs-xs);
  color: var(--color-error);
  margin-top: var(--space-xs);
  min-height: 1.1em;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

.checkbox-row input[type="checkbox"] {
  margin-top: 0.15rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: var(--fs-sm);
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background var(--transition), color var(--transition), transform 0.15s ease, box-shadow var(--transition);
}

.cookie-bar-actions .btn,
.cookie-modal-actions .btn {
  margin-top: 0;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent), #355a8a);
  color: #f8fafc;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-accent-hover), #2d4d75);
  color: #ffffff;
}

.btn-secondary {
  background: transparent;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}

.btn-secondary:hover {
  background: var(--color-accent-muted);
  color: #ffffff;
}

.btn-ghost {
  background: var(--color-surface-elevated);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn-ghost:hover {
  background: var(--color-accent-muted);
  color: var(--color-accent);
}

.btn-block {
  width: 100%;
}

.features {
  background: linear-gradient(180deg, #0c1018, #131b28);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: var(--space-lg);
}

.feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border-top: 3px solid var(--color-accent);
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-card h3 {
  font-size: var(--fs-md);
  margin: 0 0 var(--space-sm);
}

.feature-card p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
}

.highlights {
  background: radial-gradient(circle at 12% 48%, rgba(184, 149, 92, 0.07), transparent 42%), #0c1018;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: var(--space-md);
}

.benefit-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--color-surface-elevated);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-warning);
  transition: background var(--transition);
}

.benefit-item:hover {
  background: #2a3848;
}

.benefit-num {
  font-weight: 800;
  font-size: var(--fs-lg);
  color: var(--color-warning);
  line-height: 1;
}

.detail {
  background: #111722;
}

.detail-blocks {
  display: grid;
  gap: var(--space-lg);
}

.detail-block {
  padding: var(--space-lg);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.usage {
  background: linear-gradient(135deg, #151d2c 0%, #0c1018 100%);
}

.usage-steps {
  counter-reset: step;
  display: grid;
  gap: var(--space-md);
}

.usage-step {
  position: relative;
  padding: var(--space-md) var(--space-md) var(--space-md) 3.5rem;
  background: rgba(74, 122, 184, 0.08);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.usage-step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: var(--space-md);
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: #f8fafc;
  font-weight: 700;
  font-size: var(--fs-xs);
  border-radius: var(--radius-full);
}

.ingredients {
  background: #0c1018;
}

.ingredient-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.ingredient-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: var(--fs-sm);
}

.ingredient-table th,
.ingredient-table td {
  padding: var(--space-sm) var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.ingredient-table th {
  background: var(--color-surface-elevated);
  color: var(--color-text-muted);
  font-weight: 600;
}

.ingredient-table tr:last-child td {
  border-bottom: none;
}

.ingredient-table tbody tr:hover {
  background: rgba(74, 122, 184, 0.06);
}

.reviews {
  background: linear-gradient(180deg, #131b28, #0c1018);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: var(--space-lg);
}

.review-card {
  background: var(--color-surface);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
}

.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-sm);
  gap: var(--space-sm);
}

.review-name {
  font-weight: 600;
  font-size: var(--fs-sm);
}

.review-stars {
  color: var(--color-warning);
  font-size: var(--fs-xs);
}

.review-card p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
}

.faq {
  background: #111722;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  overflow: hidden;
}

.faq-item summary {
  padding: var(--space-md);
  cursor: pointer;
  font-weight: 600;
  font-size: var(--fs-sm);
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--color-accent);
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 var(--space-md) var(--space-md);
  margin: 0;
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
}

.cta-band {
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
  background: linear-gradient(135deg, rgba(74, 122, 184, 0.18), rgba(12, 16, 24, 0.96));
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.cta-band h2 {
  margin: 0 0 var(--space-md);
  font-size: var(--fs-xl);
}

.cta-band p {
  color: var(--color-text-muted);
  margin: 0 0 var(--space-lg);
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}

.contact-section {
  background: #0c1018;
}

.disclaimer {
  padding: var(--space-xl) var(--space-md);
  background: #151210;
  border-top: 1px solid rgba(184, 149, 92, 0.22);
}

.disclaimer-inner {
  max-width: 900px;
  margin: 0 auto;
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  line-height: 1.7;
}

.disclaimer-inner p {
  margin: 0 0 var(--space-sm);
}

.disclaimer-inner p:last-child {
  margin-bottom: 0;
}

.site-footer {
  background: #080b10;
  padding: var(--space-xl) var(--space-md);
  border-top: 1px solid var(--color-border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: var(--space-xl);
}

.footer-block h3 {
  font-size: var(--fs-sm);
  margin: 0 0 var(--space-md);
  color: var(--color-text);
}

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

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

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

.footer-emails {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  line-height: 1.8;
}

.footer-meta {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: var(--space-md);
  background: var(--color-surface-elevated);
  border-top: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
}

.cookie-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.cookie-bar p {
  margin: 0;
  flex: 1 1 280px;
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

.cookie-bar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  background: rgba(0, 0, 0, 0.65);
}

.cookie-modal[hidden] {
  display: none;
}

.cookie-modal-panel {
  max-width: 480px;
  width: 100%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
}

.cookie-modal-panel h2 {
  margin: 0 0 var(--space-md);
  font-size: var(--fs-md);
}

.cookie-modal-lead {
  margin-bottom: var(--space-md);
}

.cookie-toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border);
  font-size: var(--fs-sm);
}

.cookie-toggle-row:last-of-type {
  border-bottom: none;
  margin-bottom: var(--space-md);
}

.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: flex-end;
}

@media (max-width: 520px) {
  .cookie-modal-actions {
    flex-direction: column;
  }

  .cookie-modal-actions .btn {
    width: 100%;
  }
}

.switch {
  position: relative;
  width: 3rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--color-border);
  border-radius: var(--radius-full);
  transition: background var(--transition);
}

.slider::before {
  position: absolute;
  content: "";
  height: 1.15rem;
  width: 1.15rem;
  left: 3px;
  bottom: 2px;
  background: var(--color-text);
  border-radius: 50%;
  transition: transform var(--transition);
}

.switch input:checked + .slider {
  background: var(--color-accent);
}

.switch input:checked + .slider::before {
  transform: translateX(1.35rem);
}

.switch input:disabled + .slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.legal-page {
  padding: var(--space-xl) var(--space-md) var(--space-2xl);
}

.legal-inner {
  max-width: 800px;
  margin: 0 auto;
}

.legal-inner h1 {
  font-size: var(--fs-xl);
  margin: 0 0 var(--space-md);
}

.legal-meta {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
}

.legal-inner h2 {
  font-size: var(--fs-md);
  margin: var(--space-xl) 0 var(--space-md);
}

.legal-inner p,
.legal-inner li {
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
}

.legal-inner ul {
  padding-left: var(--space-lg);
}

.legal-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: var(--space-md) 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
}

.legal-table {
  width: 100%;
  min-width: 400px;
  border-collapse: collapse;
  font-size: var(--fs-xs);
}

.legal-table th,
.legal-table td {
  padding: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
  text-align: left;
}

.legal-table th {
  background: var(--color-surface);
}

.thank-you-page {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
}

.thank-you-page h1 {
  font-size: var(--fs-xl);
  margin: 0 0 var(--space-md);
}

.thank-you-page p {
  color: var(--color-text-muted);
  max-width: 50ch;
  margin: 0 0 var(--space-lg);
}

.thank-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: var(--space-lg);
  max-width: 800px;
  margin: var(--space-xl) auto 0;
  text-align: left;
}

.thank-block {
  background: var(--color-surface);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.thank-block h2 {
  font-size: var(--fs-md);
  margin: 0 0 var(--space-sm);
}

.thank-block p {
  font-size: var(--fs-sm);
  margin: 0;
}

.thank-block-actions {
  margin-top: var(--space-md);
}

@media (max-width: 640px) {
  .thank-you-page {
    align-items: stretch;
    justify-content: flex-start;
    min-height: auto;
    padding-top: var(--space-xl);
    padding-bottom: var(--space-2xl);
    text-align: left;
    width: 100%;
    box-sizing: border-box;
  }

  .thank-you-page h1 {
    text-align: center;
  }

  .thank-you-page > p {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .thank-you-page .thank-hero-cta {
    text-align: center;
  }

  .thank-you-page .thank-hero-cta .btn {
    width: 100%;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }

  .thank-blocks {
    width: 100%;
    margin-top: var(--space-lg);
    gap: var(--space-md);
  }

  .thank-block {
    width: 100%;
    box-sizing: border-box;
  }

  .thank-block .btn {
    width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 600px) {
  .cookie-bar-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-bar-actions {
    flex-direction: column;
  }

  .cookie-bar-actions .btn {
    width: 100%;
  }
}
