:root {
  --color-bg: #0c0d11;
  --color-surface: #161922;
  --color-surface-elevated: #1f2430;
  --color-accent: #8f7cf0;
  --color-accent-muted: #6a58c4;
  --color-warm: #c9a34a;
  --color-warm-deep: #9e7d38;
  --color-text: #ececf2;
  --color-text-muted: #9a9dae;
  --color-border: rgba(143, 124, 240, 0.24);
  --color-success: #7cb87a;
  --color-error: #e07a72;
  --font-heading: "Segoe UI", system-ui, sans-serif;
  --font-body: "Segoe UI", system-ui, sans-serif;
  --fs-xs: clamp(0.75rem, 0.7rem + 0.2vw, 0.8125rem);
  --fs-sm: clamp(0.8125rem, 0.78rem + 0.25vw, 0.875rem);
  --fs-base: clamp(0.9375rem, 0.88rem + 0.35vw, 1rem);
  --fs-md: clamp(1rem, 0.95rem + 0.4vw, 1.125rem);
  --fs-lg: clamp(1.125rem, 1rem + 0.6vw, 1.35rem);
  --fs-xl: clamp(1.35rem, 1.1rem + 1vw, 1.75rem);
  --fs-2xl: clamp(1.65rem, 1.3rem + 1.4vw, 2.25rem);
  --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);
  --shadow-glow: 0 0 28px rgba(143, 124, 240, 0.18);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --space-xs: 0.35rem;
  --space-sm: 0.6rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.25rem;
  --space-2xl: 3.5rem;
  --space-section: clamp(3rem, 6vw, 5rem);
  --header-h: 3.5rem;
  --transition-fast: 0.18s ease;
  --transition-base: 0.28s ease;
  --max-width: 1120px;
}

*,
*::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: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  background-image:
    radial-gradient(ellipse 120% 80% at 8% -8%, rgba(143, 124, 240, 0.11), transparent 52%),
    radial-gradient(ellipse 90% 55% at 100% 15%, rgba(201, 163, 74, 0.07), transparent 48%);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-warm);
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 10000;
  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: 1000;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: clip;
  background: rgba(12, 13, 17, 0.93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  width: 100%;
  min-width: 0;
  max-width: min(var(--max-width), 100%);
  margin: 0 auto;
  padding: var(--space-sm) var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  min-height: 3.5rem;
  box-sizing: border-box;
  overflow-x: clip;
  flex-wrap: nowrap;
}

.brand {
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-text);
  white-space: nowrap;
  min-width: 0;
  flex: 0 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100% - 3.5rem);
}

@media (min-width: 1281px) {
  .brand {
    max-width: none;
    overflow: visible;
    text-overflow: clip;
  }
}

.brand:hover {
  color: var(--color-accent);
}

.nav-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-fast), border-color var(--transition-fast);
}

.nav-toggle:hover {
  background: var(--color-surface-elevated);
  border-color: var(--color-accent);
}

.nav-toggle-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle-icon span {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform var(--transition-base);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  min-width: 0;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: var(--space-xs) var(--space-sm);
}

@media (min-width: 1281px) {
  .site-nav {
    flex: 1 1 0;
    min-width: 0;
    max-width: 100%;
    justify-content: flex-end;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scrollbar-width: thin;
  }

  .site-nav::-webkit-scrollbar {
    height: 5px;
  }

  .site-nav::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: var(--radius-full);
  }

  .site-nav ul {
    flex: 0 0 auto;
    width: max-content;
    margin-left: auto;
  }
}

.site-nav a {
  display: block;
  padding: var(--space-xs) var(--space-sm);
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
  transition:
    color var(--transition-fast),
    background var(--transition-fast);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--color-accent);
  background: rgba(143, 124, 240, 0.09);
}

@media (max-width: 1280px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--header-h);
    margin-top: 0;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition:
      max-height 0.35s ease,
      opacity 0.25s ease,
      visibility 0.25s;
  }

  .site-nav.is-open {
    max-height: min(85vh, 560px);
    opacity: 1;
    visibility: visible;
    overflow-y: auto;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-md);
    gap: var(--space-xs);
  }

  .site-nav a {
    padding: var(--space-sm) var(--space-md);
    font-size: var(--fs-sm);
  }
}

main {
  overflow-x: hidden;
}

.section {
  padding: var(--space-section) var(--space-md);
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin: 0 0 var(--space-sm);
}

.section-title {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 var(--space-lg);
  color: var(--color-text);
}

.hero {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-2xl);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-xl);
  align-items: start;
}

.hero-visual {
  position: relative;
  background: linear-gradient(145deg, var(--color-surface-elevated), var(--color-surface));
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.hero-visual figure {
  margin: 0;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-sm);
  background: rgba(143, 124, 240, 0.13);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

.rating-row {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.hero-copy h1 {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 var(--space-md);
}

.hero-copy p.lead {
  font-size: var(--fs-md);
  color: var(--color-text-muted);
  margin: 0 0 var(--space-lg);
}

.price-block {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: var(--space-sm);
  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;
}

.order-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.order-card h2 {
  font-size: var(--fs-lg);
  margin: 0 0 var(--space-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 500;
  margin-bottom: var(--space-xs);
  color: var(--color-text-muted);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  font-family: inherit;
  font-size: var(--fs-sm);
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(143, 124, 240, 0.22);
}

.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.25em;
}

.optional-label {
  color: var(--color-text-muted);
  font-weight: 400;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.checkbox-row input {
  width: auto;
  margin-top: 0.25rem;
}

.checkbox-row label {
  margin-bottom: 0;
  font-weight: 400;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-lg);
  font-family: inherit;
  font-size: var(--fs-sm);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition:
    background var(--transition-base),
    color var(--transition-base),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-muted));
  color: #0c0b10;
  width: 100%;
}

.btn-primary:hover {
  color: #ffffff;
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}

.btn-primary:focus-visible {
  outline: 2px solid var(--color-warm);
  outline-offset: 2px;
}

.btn-secondary {
  background: transparent;
  color: var(--color-accent);
  border: 1px solid var(--color-border);
}

.btn-secondary:hover {
  color: var(--color-warm);
  border-color: var(--color-warm);
  background: rgba(201, 163, 74, 0.1);
}

.btn-ghost {
  background: var(--color-surface-elevated);
  color: var(--color-text);
}

.btn-ghost:hover {
  color: var(--color-accent);
}

.features-section {
  background: linear-gradient(180deg, transparent, rgba(22, 26, 38, 0.52));
  border-top: 1px solid var(--color-border);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
}

.feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition:
    border-color var(--transition-base),
    transform var(--transition-fast),
    box-shadow var(--transition-base);
}

.feature-card:nth-child(odd) {
  border-left: 3px solid var(--color-accent);
}

.feature-card:nth-child(even) {
  border-left: 3px solid var(--color-warm);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(143, 124, 240, 0.42);
}

.feature-card h3 {
  font-size: var(--fs-lg);
  margin: 0 0 var(--space-sm);
}

.benefits-section .section-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-xl);
  align-items: center;
}

.benefits-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.benefits-list li {
  position: relative;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
  color: var(--color-text-muted);
}

.benefits-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--color-accent);
  box-shadow: 0 0 10px rgba(143, 124, 240, 0.45);
}

.benefits-follow {
  margin-top: var(--space-xl);
}

.text-muted-block {
  color: var(--color-text-muted);
  margin: 0;
}

.detail-section {
  background: var(--color-surface);
  border-block: 1px solid var(--color-border);
}

.detail-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
}

.detail-block {
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  border: 1px dashed var(--color-border);
}

.usage-section .steps {
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-md);
}

.usage-section .steps li {
  position: relative;
  padding: var(--space-lg);
  padding-left: calc(var(--space-xl) + 2rem);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.usage-section .steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: var(--space-md);
  top: 50%;
  transform: translateY(-50%);
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-warm), var(--color-warm-deep));
  color: #141109;
  font-weight: 700;
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
}

.ingredients-section {
  background: linear-gradient(180deg, rgba(201, 163, 74, 0.07), transparent);
}

.ingredient-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.ingredient-table {
  width: 100%;
  min-width: 280px;
  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-accent);
  font-weight: 600;
}

.ingredient-table tr:last-child td {
  border-bottom: none;
}

.ingredient-table tbody tr:hover {
  background: rgba(143, 124, 240, 0.07);
}

.reviews-section .reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
}

.review-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  position: relative;
  overflow: hidden;
}

.review-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, transparent 50%, rgba(143, 124, 240, 0.14));
  pointer-events: none;
}

.review-meta {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.review-card blockquote {
  margin: 0;
  font-style: normal;
  color: var(--color-text);
}

.faq-section details {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  transition: border-color var(--transition-fast);
}

.faq-section details:hover {
  border-color: rgba(201, 163, 74, 0.38);
}

.faq-section summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.faq-section summary::-webkit-details-marker {
  display: none;
}

.faq-section details[open] summary {
  margin-bottom: var(--space-sm);
  color: var(--color-accent);
}

.cta-band {
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
  background: linear-gradient(135deg, var(--color-surface-elevated), var(--color-surface));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.cta-band .btn-primary {
  width: auto;
  min-width: 200px;
}

.disclaimer-box {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--space-lg);
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  line-height: 1.65;
  border: 1px solid rgba(201, 163, 74, 0.4);
  border-radius: var(--radius-md);
  background: rgba(201, 163, 74, 0.06);
}

.contact-section .contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-xl);
  align-items: start;
}

.contact-aside {
  padding: var(--space-lg);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.contact-aside p {
  margin: 0 0 var(--space-sm);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

.site-footer {
  border-top: 1px solid var(--color-border);
  padding: var(--space-xl) var(--space-md);
  background: #08090c;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-meta {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-lg);
}

.footer-links a {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  padding: var(--space-md);
  background: rgba(10, 14, 18, 0.97);
  border-top: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: var(--space-md);
  align-items: center;
}

@media (min-width: 640px) {
  .cookie-inner {
    grid-template-columns: 1fr auto;
  }
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: stretch;
}

@media (max-width: 639px) {
  .cookie-actions {
    flex-direction: column;
  }

  .cookie-actions .btn {
    width: 100%;
  }
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.cookie-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-panel {
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  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-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border);
}

.switch {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  transition: background var(--transition-fast);
}

.slider::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 2px;
  background: var(--color-text-muted);
  border-radius: var(--radius-full);
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.switch input:checked + .slider {
  background: rgba(143, 124, 240, 0.26);
  border-color: var(--color-accent);
}

.switch input:checked + .slider::before {
  transform: translateX(22px);
  background: var(--color-accent);
}

.switch input:disabled + .slider {
  opacity: 0.7;
  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-bottom: var(--space-md);
}

.legal-inner h2 {
  font-size: var(--fs-lg);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.legal-inner p,
.legal-inner li {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

.legal-inner ul {
  padding-left: var(--space-lg);
}

.legal-table-wrap {
  overflow-x: auto;
  margin: var(--space-md) 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
}

.legal-table {
  width: 100%;
  min-width: 320px;
  border-collapse: collapse;
  font-size: var(--fs-xs);
}

.legal-table th,
.legal-table td {
  padding: var(--space-sm);
  border: 1px solid var(--color-border);
  text-align: left;
}

.thank-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
}

.thank-card {
  max-width: 520px;
  padding: var(--space-xl);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.thank-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  margin-top: var(--space-lg);
}

@media (max-width: 639px) {
  .thank-actions {
    flex-direction: column;
  }

  .thank-actions .btn {
    width: 100%;
  }
}
