:root {
  --c-primary: rgb(31, 31, 32);
  --c-secondary: rgb(138, 211, 4);
  --c-bg: #F9FAFB;
  --c-text: #111827;
  --c-text-muted: #6B7280;
  --c-accent: rgb(29, 30, 32);
  --c-white: #ffffff;
  --c-border: #E5E7EB;
  --c-border-dark: #D1D5DB;
  --c-error: #DC2626;
  --c-surface: #ffffff;
  --c-surface-alt: #F3F4F6;
  --c-overlay: rgba(17, 24, 39, 0.65);
  --c-secondary-light: rgba(138, 211, 4, 0.12);
  --c-secondary-mid: rgba(138, 211, 4, 0.25);

  --ff: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 1.875rem;
  --fs-4xl: 2.25rem;
  --fs-5xl: 3rem;

  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  --lh-tight: 1.2;
  --lh-snug: 1.375;
  --lh-normal: 1.5;
  --lh-relaxed: 1.65;

  --sh-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --sh-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --sh-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --sh-lg: 0 8px 32px rgba(0, 0, 0, 0.10);
  --sh-xl: 0 16px 48px rgba(0, 0, 0, 0.14);

  --r-xs: 2px;
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;
  --r-2xl: 24px;
  --r-full: 9999px;

  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  --tr-fast: 150ms ease;
  --tr-base: 250ms ease;
  --tr-slow: 400ms ease;

  --max-w: 1140px;
  --header-h: 68px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  color: var(--c-text);
  background-color: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

section {
  padding: var(--sp-20) 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  color: var(--c-text);
}

h1 { font-size: var(--fs-4xl); }
h2 { font-size: var(--fs-3xl); }
h3 { font-size: var(--fs-2xl); }
h4 { font-size: var(--fs-xl); }
h5 { font-size: var(--fs-lg); }

p {
  line-height: var(--lh-relaxed);
  color: var(--c-text-muted);
}

.section-label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-secondary);
  background: var(--c-secondary-light);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-4);
}

.section-title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--c-text);
  margin-bottom: var(--sp-4);
  line-height: var(--lh-tight);
}

.section-desc {
  font-size: var(--fs-lg);
  color: var(--c-text-muted);
  max-width: 640px;
  line-height: var(--lh-relaxed);
}

.section-header {
  margin-bottom: var(--sp-12);
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-desc {
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-primary);
  height: var(--header-h);
  display: flex;
  align-items: center;
  box-shadow: var(--sh-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-name {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--c-white);
  letter-spacing: -0.02em;
}

.brand-name span {
  color: var(--c-secondary);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}

.nav-link {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--tr-fast);
  text-decoration: none;
}

.nav-link:hover {
  color: var(--c-secondary);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-2) var(--sp-5);
  background: var(--c-secondary);
  color: var(--c-primary);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  border-radius: var(--r-full);
  transition: opacity var(--tr-fast), transform var(--tr-fast);
  text-decoration: none;
}

.nav-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  cursor: pointer;
  background: none;
  border: none;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-white);
  border-radius: var(--r-full);
  transition: transform var(--tr-base), opacity var(--tr-base);
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--c-primary);
  padding: var(--sp-6);
  z-index: 99;
  box-shadow: var(--sh-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav .nav-list {
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-4);
}

.mobile-nav .nav-link {
  font-size: var(--fs-base);
  color: rgba(255, 255, 255, 0.8);
}

.mobile-nav .nav-cta {
  margin-top: var(--sp-4);
  width: 100%;
  justify-content: center;
  padding: var(--sp-3) var(--sp-5);
}

.hero {
  background: var(--c-primary);
  padding: var(--sp-20) 0 var(--sp-16);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(138, 211, 4, 0.07) 0%, transparent 68%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: var(--sp-16);
  align-items: start;
}

.hero-media {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: var(--sp-4);
}

.hero-figure {
  position: relative;
  width: 100%;
}

.hero-figure img {
  border-radius: var(--r-2xl);
  box-shadow: var(--sh-xl);
  width: 100%;
  object-fit: cover;
}

.hero-content-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  background: rgba(138, 211, 4, 0.12);
  border: 1px solid rgba(138, 211, 4, 0.28);
  border-radius: var(--r-full);
  color: var(--c-secondary);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  width: fit-content;
}

.hero-title {
  font-size: var(--fs-5xl);
  font-weight: var(--fw-bold);
  color: var(--c-white);
  line-height: var(--lh-tight);
  letter-spacing: -0.03em;
}

.hero-title .product-name {
  color: var(--c-secondary);
}

.hero-desc {
  font-size: var(--fs-lg);
  color: rgba(255, 255, 255, 0.68);
  line-height: var(--lh-relaxed);
  max-width: 520px;
}

.hero-pricing {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.price-current {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-bold);
  color: var(--c-secondary);
}

.price-old {
  font-size: var(--fs-xl);
  color: rgba(255, 255, 255, 0.38);
  text-decoration: line-through;
}

.price-badge {
  background: var(--c-secondary);
  color: var(--c-primary);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-sm);
  letter-spacing: 0.03em;
}

.hero-form-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-2xl);
  padding: var(--sp-8);
  backdrop-filter: blur(12px);
}

.hero-form-title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  color: var(--c-white);
  margin-bottom: var(--sp-6);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.form-group {
  margin-bottom: var(--sp-4);
}

.form-label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: var(--sp-2);
}

.form-label .req {
  color: var(--c-secondary);
  margin-left: 2px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-md);
  color: var(--c-white);
  font-size: var(--fs-base);
  transition: border-color var(--tr-fast), box-shadow var(--tr-fast), background var(--tr-fast);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--c-secondary);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(138, 211, 4, 0.18);
}

.form-input.is-invalid,
.form-textarea.is-invalid {
  border-color: #FC8181;
  box-shadow: 0 0 0 3px rgba(252, 129, 129, 0.12);
}

.form-input.is-valid,
.form-textarea.is-valid {
  border-color: rgba(138, 211, 4, 0.6);
}

.form-textarea {
  resize: vertical;
  min-height: 90px;
}

.form-error {
  display: none;
  font-size: var(--fs-xs);
  color: #FC8181;
  margin-top: var(--sp-1);
  align-items: center;
  gap: var(--sp-1);
}

.form-error.is-visible {
  display: flex;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}

.form-check-input {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--c-secondary);
  cursor: pointer;
  margin-top: 2px;
}

.form-check-label {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.6);
  line-height: var(--lh-relaxed);
}

.form-check-label a {
  color: var(--c-secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-check-label a:hover {
  opacity: 0.8;
}

.form-check-error {
  display: none;
  font-size: var(--fs-xs);
  color: #FC8181;
  margin-top: var(--sp-1);
}

.form-check-error.is-visible {
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  padding: var(--sp-4) var(--sp-8);
  border-radius: var(--r-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--tr-base);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.btn-primary {
  background: var(--c-secondary);
  color: var(--c-primary);
  border-color: var(--c-secondary);
}

.btn-primary:hover {
  background: transparent;
  color: var(--c-secondary);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}

.btn-outline-light {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-outline-light:hover {
  border-color: var(--c-secondary);
  color: var(--c-secondary);
}

.btn-dark {
  background: var(--c-primary);
  color: var(--c-white);
  border-color: var(--c-primary);
}

.btn-dark:hover {
  background: var(--c-secondary);
  border-color: var(--c-secondary);
  color: var(--c-primary);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}

.btn-full {
  width: 100%;
}

.composition {
  background: var(--c-surface-alt);
}

.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-5);
}

.ingredient-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  transition: transform var(--tr-base), box-shadow var(--tr-base);
}

.ingredient-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
}

.ingredient-icon {
  width: 44px;
  height: 44px;
  background: var(--c-secondary-light);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-secondary);
  font-size: 1.25rem;
  margin-bottom: var(--sp-4);
}

.ingredient-name {
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--c-text);
  margin-bottom: var(--sp-1);
}

.ingredient-amount {
  font-size: var(--fs-sm);
  color: var(--c-secondary);
  font-weight: var(--fw-medium);
  margin-bottom: var(--sp-3);
}

.ingredient-desc {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  line-height: var(--lh-relaxed);
}

.features {
  background: var(--c-white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: var(--sp-5);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--sp-8) var(--sp-5);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  transition: border-color var(--tr-base), box-shadow var(--tr-base);
}

.feature-item:hover {
  border-color: var(--c-secondary);
  box-shadow: var(--sh-sm);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--c-secondary-light);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-secondary);
  font-size: 1.5rem;
  margin-bottom: var(--sp-5);
  transition: background var(--tr-base), color var(--tr-base);
}

.feature-item:hover .feature-icon {
  background: var(--c-secondary);
  color: var(--c-primary);
}

.feature-title {
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--c-text);
  margin-bottom: var(--sp-2);
}

.feature-text {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  line-height: var(--lh-relaxed);
}

.description {
  background: var(--c-bg);
}

.description-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.description-figure img {
  border-radius: var(--r-2xl);
  box-shadow: var(--sh-lg);
  width: 100%;
  object-fit: cover;
}

.description-content .section-title {
  margin-bottom: var(--sp-5);
}

.description-content p {
  margin-bottom: var(--sp-5);
}

.description-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  margin-top: var(--sp-8);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--c-border);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.stat-value {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--c-secondary);
  line-height: 1;
}

.stat-label {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
}

.how-to-use {
  background: var(--c-primary);
}

.how-to-use .section-label {
  background: rgba(138, 211, 4, 0.14);
}

.how-to-use .section-title {
  color: var(--c-white);
}

.how-to-use .section-desc {
  color: rgba(255, 255, 255, 0.6);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-6);
}

.step-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--r-xl);
  padding: var(--sp-8) var(--sp-6);
  transition: border-color var(--tr-base), background var(--tr-base);
}

.step-card:hover {
  border-color: rgba(138, 211, 4, 0.38);
  background: rgba(255, 255, 255, 0.08);
}

.step-number {
  font-size: 3rem;
  font-weight: var(--fw-bold);
  color: rgba(138, 211, 4, 0.18);
  line-height: 1;
  margin-bottom: var(--sp-4);
}

.step-icon {
  width: 48px;
  height: 48px;
  background: rgba(138, 211, 4, 0.14);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-secondary);
  font-size: 1.375rem;
  margin-bottom: var(--sp-4);
}

.step-title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  color: var(--c-white);
  margin-bottom: var(--sp-3);
}

.step-text {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.58);
  line-height: var(--lh-relaxed);
}

.benefits {
  background: var(--c-white);
}

.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.benefit-item {
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-5);
  border-radius: var(--r-lg);
  transition: background var(--tr-base);
}

.benefit-item:hover {
  background: var(--c-surface-alt);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--c-secondary-light);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-secondary);
  font-size: 1.25rem;
}

.benefit-body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.benefit-title {
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--c-text);
}

.benefit-text {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  line-height: var(--lh-relaxed);
}

.benefits-figure img {
  border-radius: var(--r-2xl);
  box-shadow: var(--sh-lg);
  width: 100%;
  object-fit: cover;
}

.faq {
  background: var(--c-bg);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.faq-item {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: border-color var(--tr-base), box-shadow var(--tr-base);
}

.faq-item.is-open {
  border-color: var(--c-secondary);
  box-shadow: var(--sh-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-5) var(--sp-6);
  cursor: pointer;
  background: none;
  border: none;
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--c-text);
  text-align: left;
  gap: var(--sp-4);
  font-family: var(--ff);
}

.faq-question:hover {
  color: var(--c-accent);
}

.faq-chevron {
  min-width: 20px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-secondary);
  font-size: 1.1rem;
  transition: transform var(--tr-base);
}

.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--tr-slow);
}

.faq-answer-inner {
  padding: 0 var(--sp-6) var(--sp-5);
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  line-height: var(--lh-relaxed);
}

.cta {
  background: var(--c-secondary);
  padding: var(--sp-24) 0;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-6);
}

.cta-title {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-bold);
  color: var(--c-primary);
  line-height: var(--lh-tight);
  max-width: 680px;
}

.cta-desc {
  font-size: var(--fs-lg);
  color: rgba(31, 31, 32, 0.72);
  max-width: 540px;
  line-height: var(--lh-relaxed);
}

.cta-actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  justify-content: center;
}

.legal-info {
  background: var(--c-surface-alt);
}

.legal-info-inner {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-2xl);
  padding: var(--sp-10);
}

.legal-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-8);
}

.legal-block-title {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--c-text);
  margin-bottom: var(--sp-3);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.legal-block-title i {
  color: var(--c-secondary);
}

.legal-block p,
.legal-block address {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  line-height: var(--lh-relaxed);
  font-style: normal;
}

.legal-block a {
  color: var(--c-text-muted);
  transition: color var(--tr-fast);
}

.legal-block a:hover {
  color: var(--c-secondary);
}

.disclaimer {
  background: var(--c-bg);
  padding: var(--sp-12) 0;
}

.disclaimer-box {
  border: 1px solid var(--c-border);
  border-left: 4px solid var(--c-text-muted);
  border-radius: var(--r-lg);
  padding: var(--sp-6) var(--sp-8);
  background: var(--c-white);
}

.disclaimer-title {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--c-text);
  margin-bottom: var(--sp-3);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.disclaimer-text {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  line-height: var(--lh-relaxed);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--c-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--sp-5) var(--sp-6);
  transform: translateY(100%);
  transition: transform var(--tr-slow);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 260px;
}

.cookie-text p {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.72);
  line-height: var(--lh-relaxed);
}

.cookie-text a {
  color: var(--c-secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-actions {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  align-items: center;
}

.cookie-btn {
  padding: var(--sp-2) var(--sp-5);
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  cursor: pointer;
  transition: all var(--tr-fast);
  border: 1px solid transparent;
  font-family: var(--ff);
}

.cookie-btn-accept {
  background: var(--c-secondary);
  color: var(--c-primary);
}

.cookie-btn-accept:hover {
  opacity: 0.9;
}

.cookie-btn-decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.24);
}

.cookie-btn-decline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--c-white);
}

.cookie-btn-settings {
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-weight: var(--fw-medium);
  text-decoration: underline;
  text-underline-offset: 2px;
  padding: var(--sp-2) var(--sp-3);
}

.cookie-btn-settings:hover {
  color: var(--c-secondary);
}

.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: var(--c-overlay);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-6);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--tr-base);
}

.cookie-modal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal {
  background: var(--c-white);
  border-radius: var(--r-2xl);
  padding: var(--sp-8);
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--sh-xl);
  transform: scale(0.95);
  transition: transform var(--tr-base);
}

.cookie-modal-overlay.is-open .cookie-modal {
  transform: scale(1);
}

.cookie-modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-6);
}

.cookie-modal-title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--c-text);
}

.modal-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-full);
  color: var(--c-text-muted);
  font-size: 1.25rem;
  cursor: pointer;
  transition: background var(--tr-fast), color var(--tr-fast);
  background: none;
  border: none;
  font-family: var(--ff);
}

.modal-close:hover {
  background: var(--c-surface-alt);
  color: var(--c-text);
}

.cookie-category {
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--c-border);
}

.cookie-category:last-of-type {
  border-bottom: none;
  margin-bottom: var(--sp-5);
}

.cookie-category-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-2);
}

.cookie-category-name {
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--c-text);
}

.cookie-category-desc {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  line-height: var(--lh-relaxed);
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  min-width: 44px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--c-border-dark);
  border-radius: var(--r-full);
  transition: background var(--tr-fast);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: var(--c-white);
  border-radius: var(--r-full);
  transition: transform var(--tr-fast);
  box-shadow: var(--sh-xs);
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--c-secondary);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(20px);
}

.toggle-switch input:disabled + .toggle-slider {
  cursor: not-allowed;
  opacity: 0.65;
}

.always-on-label {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  font-weight: var(--fw-medium);
  white-space: nowrap;
}

.cookie-modal-actions {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  padding-top: var(--sp-5);
  border-top: 1px solid var(--c-border);
}

.site-footer {
  background: var(--c-primary);
  padding: var(--sp-16) 0 var(--sp-8);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--sp-12);
  margin-bottom: var(--sp-12);
  padding-bottom: var(--sp-10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-brand-name {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--c-white);
  display: block;
  margin-bottom: var(--sp-4);
  letter-spacing: -0.02em;
}

.footer-brand-name span {
  color: var(--c-secondary);
}

.footer-brand p {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.5);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-6);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.footer-contact a,
.footer-contact address {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.55);
  font-style: normal;
  transition: color var(--tr-fast);
}

.footer-contact a:hover {
  color: var(--c-secondary);
}

.footer-col-title {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--c-white);
  margin-bottom: var(--sp-5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-links a {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--tr-fast);
}

.footer-links a:hover {
  color: var(--c-secondary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.footer-copy {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.35);
}

.footer-policy-links {
  display: flex;
  gap: var(--sp-6);
  flex-wrap: wrap;
}

.footer-policy-links a {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.38);
  transition: color var(--tr-fast);
}

.footer-policy-links a:hover {
  color: var(--c-secondary);
}

.policy-hero {
  background: var(--c-primary);
  padding: var(--sp-16) 0;
}

.policy-hero-label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-secondary);
  margin-bottom: var(--sp-4);
  display: block;
}

.policy-hero-title {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-bold);
  color: var(--c-white);
}

.policy-hero-meta {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.45);
  margin-top: var(--sp-3);
}

.policy-content {
  padding: var(--sp-20) 0;
}

.policy-body {
  max-width: 780px;
  margin: 0 auto;
}

.policy-body h2 {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--c-text);
  margin-top: var(--sp-12);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 2px solid var(--c-secondary);
}

.policy-body h2:first-child {
  margin-top: 0;
}

.policy-body h3 {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  color: var(--c-text);
  margin-top: var(--sp-6);
  margin-bottom: var(--sp-3);
}

.policy-body p {
  font-size: var(--fs-base);
  color: var(--c-text-muted);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-4);
}

.policy-body ul,
.policy-body ol {
  margin-bottom: var(--sp-4);
  padding-left: var(--sp-6);
}

.policy-body ul {
  list-style: disc;
}

.policy-body ol {
  list-style: decimal;
}

.policy-body li {
  font-size: var(--fs-base);
  color: var(--c-text-muted);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-2);
}

.policy-body a {
  color: var(--c-secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.policy-body a:hover {
  opacity: 0.8;
}

.policy-body strong {
  color: var(--c-text);
  font-weight: var(--fw-semibold);
}

.policy-box {
  background: var(--c-surface-alt);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  margin: var(--sp-6) 0;
  border-left: 4px solid var(--c-secondary);
}

.policy-box p {
  margin-bottom: 0;
  font-size: var(--fs-sm);
}

.thankyou-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-20) 0;
}

.thankyou-card {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  padding: var(--sp-12) var(--sp-10);
  background: var(--c-white);
  border-radius: var(--r-2xl);
  box-shadow: var(--sh-xl);
}

.thankyou-icon {
  width: 80px;
  height: 80px;
  background: var(--c-secondary-light);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-6);
  color: var(--c-secondary);
  font-size: 2.5rem;
}

.thankyou-title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--c-text);
  margin-bottom: var(--sp-4);
}

.thankyou-text {
  font-size: var(--fs-base);
  color: var(--c-text-muted);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-8);
}

.error-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-20) 0;
}

.error-card {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  padding: var(--sp-12) var(--sp-10);
}

.error-code {
  font-size: 8rem;
  font-weight: var(--fw-bold);
  color: var(--c-secondary);
  line-height: 1;
  margin-bottom: var(--sp-4);
}

.error-title {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--c-text);
  margin-bottom: var(--sp-4);
}

.error-text {
  font-size: var(--fs-base);
  color: var(--c-text-muted);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-8);
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-12);
  }

  .hero-media {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .description-inner,
  .benefits-layout {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 60px;
  }

  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  h1 { font-size: var(--fs-3xl); }
  h2 { font-size: var(--fs-2xl); }

  .hero {
    padding: var(--sp-16) 0;
  }

  .hero-title {
    font-size: var(--fs-4xl);
  }

  .hero-form-card {
    padding: var(--sp-6);
  }

  .form-row-2 {
    grid-template-columns: 1fr;
  }

  section {
    padding: var(--sp-12) 0;
  }

  .section-title {
    font-size: var(--fs-2xl);
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-policy-links {
    justify-content: center;
  }

  .cta-title {
    font-size: var(--fs-3xl);
  }

  .container {
    padding: 0 var(--sp-4);
  }

  .cookie-banner-inner {
    flex-direction: column;
    gap: var(--sp-5);
    align-items: flex-start;
  }

  .policy-hero-title {
    font-size: var(--fs-3xl);
  }

  .thankyou-card,
  .error-card {
    padding: var(--sp-8) var(--sp-6);
  }

  .error-code {
    font-size: 6rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: var(--fs-3xl);
  }

  .price-current {
    font-size: var(--fs-3xl);
  }

  .btn {
    padding: var(--sp-3) var(--sp-6);
    font-size: var(--fs-sm);
  }

  .ingredient-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .description-stats {
    grid-template-columns: 1fr 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .legal-info-inner {
    padding: var(--sp-6);
  }
  .features-grid{
    display: flex !important;
    flex-direction: column;
  }
}
