@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --clr-primary: #1f1f20;
  --clr-secondary: rgb(40, 202, 7);
  --clr-bg: #F9FAFB;
  --clr-text: #111827;
  --clr-text-muted: #6B7280;
  --clr-accent: rgb(15, 2, 39);
  --clr-white: #ffffff;
  --clr-border: #E5E7EB;
  --clr-error: #EF4444;
  --clr-success: rgb(40, 202, 7);
  --clr-card-bg: #ffffff;
  --clr-overlay: rgba(15, 2, 39, 0.75);
  --clr-hero-bg: linear-gradient(135deg, rgb(15, 2, 39) 0%, #1f1f20 100%);
  --clr-secondary-light: rgba(40, 202, 7, 0.12);
  --clr-input-bg: #ffffff;
  --clr-section-alt: #f3f4f6;

  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
  --lh-tight: 1.2;
  --lh-snug: 1.375;
  --lh-normal: 1.5;
  --lh-relaxed: 1.65;
  --lh-loose: 1.8;

  --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.05);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.1), 0 4px 8px rgba(0,0,0,0.06);
  --shadow-xl: 0 16px 40px rgba(0,0,0,0.12), 0 8px 16px rgba(0,0,0,0.06);
  --shadow-2xl: 0 24px 60px rgba(0,0,0,0.18);
  --shadow-glow: 0 0 24px rgba(40, 202, 7, 0.35);
  --shadow-card-hover: 0 12px 32px rgba(0,0,0,0.14);

  --radius-xs: 3px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-2xl: 28px;
  --radius-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;

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 380ms ease;

  --container-max: 1280px;
  --container-pad: clamp(1rem, 4vw, 2rem);
  --header-h: 72px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: var(--lh-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font-sans);
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: var(--font-sans);
}

.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section-pad {
  padding-block: var(--sp-20);
}

.section-pad-sm {
  padding-block: var(--sp-12);
}

.section-title {
  font-size: var(--text-4xl);
  font-weight: var(--fw-extrabold);
  color: var(--clr-text);
  line-height: var(--lh-tight);
  text-align: center;
  margin-bottom: var(--sp-4);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--clr-text-muted);
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--sp-12);
  line-height: var(--lh-relaxed);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-1) var(--sp-3);
  background: var(--clr-secondary-light);
  color: var(--clr-secondary);
  border: 1px solid rgba(40, 202, 7, 0.3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-white {
  background: rgba(255,255,255,0.15);
  color: var(--clr-white);
  border-color: rgba(255,255,255,0.3);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--clr-secondary);
  color: var(--clr-accent);
  border-color: var(--clr-secondary);
}

.btn-primary:hover {
  background: #28c907;
  border-color: #28c907;
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-outline {
  background: transparent;
  color: var(--clr-white);
  border-color: rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--clr-white);
}

.btn-lg {
  padding: var(--sp-4) var(--sp-10);
  font-size: var(--text-lg);
  border-radius: var(--radius-lg);
}

.btn-full {
  width: 100%;
}

.card {
  background: var(--clr-card-bg);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  border: 1px solid var(--clr-border);
}

.card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: var(--clr-secondary-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  font-size: var(--text-2xl);
  color: var(--clr-secondary);
}

.card-title {
  font-size: var(--text-xl);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  margin-bottom: var(--sp-3);
}

.card-text {
  font-size: var(--text-base);
  color: var(--clr-text-muted);
  line-height: var(--lh-relaxed);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--clr-accent);
  height: var(--header-h);
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px !important;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-xl);
  font-weight: var(--fw-extrabold);
  color: var(--clr-white);
  letter-spacing: -0.02em;
}

.logo img {
  border-radius: var(--radius-sm);
}

.logo:hover {
  color: var(--clr-secondary);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.nav-link {
  color: rgba(255,255,255,0.8);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.nav-link:hover {
  color: var(--clr-white);
  background: rgba(255,255,255,0.1);
}

.nav-cta {
  background: var(--clr-secondary);
  color: var(--clr-accent);
  font-weight: var(--fw-bold);
  padding: var(--sp-2) var(--sp-5);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  transition: all var(--transition-base);
}

.nav-cta:hover {
  background: #28c907;
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
  color: var(--clr-accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--sp-2);
  border-radius: var(--radius-sm);
  background: none;
  border: none;
  transition: background var(--transition-fast);
}

.nav-toggle:hover {
  background: rgba(255,255,255,0.1);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-white);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-section {
  background: var(--clr-hero-bg);
  padding-block: var(--sp-20);
  overflow: hidden;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(40, 202, 7, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: var(--sp-8);
  align-items: start;
}

.hero-image-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-5);
}

.hero-product-img {
  width: 100%;
  max-width: 320px;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
  object-fit: cover;
}

.hero-trust {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  width: 100%;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
}

.trust-item i {
  color: var(--clr-secondary);
  font-size: var(--text-xl);
  flex-shrink: 0;
}

.trust-item span {
  color: rgba(255,255,255,0.85);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
}

.hero-info-col {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.hero-eyebrow {
  margin-bottom: var(--sp-2);
}

.hero-title {
  font-size: clamp(var(--text-4xl), 4vw, var(--text-5xl));
  font-weight: var(--fw-extrabold);
  color: var(--clr-white);
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
}

.hero-title span {
  color: var(--clr-secondary);
}

.hero-description {
  color: rgba(255,255,255,0.75);
  font-size: var(--text-lg);
  line-height: var(--lh-relaxed);
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.stars {
  display: flex;
  gap: 2px;
  color: #fbbf24;
  font-size: var(--text-lg);
}

.rating-text {
  color: rgba(255,255,255,0.8);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
}

.hero-price-block {
  display: flex;
  align-items: baseline;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.price-current {
  font-size: var(--text-4xl);
  font-weight: var(--fw-extrabold);
  color: var(--clr-secondary);
}

.price-old {
  font-size: var(--text-xl);
  color: rgba(255,255,255,0.45);
  text-decoration: line-through;
}

.price-save {
  display: inline-flex;
  align-items: center;
  padding: var(--sp-1) var(--sp-3);
  background: var(--clr-secondary);
  color: var(--clr-accent);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
}

.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.hero-bullet {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: rgba(255,255,255,0.8);
  font-size: var(--text-sm);
}

.hero-bullet i {
  color: var(--clr-secondary);
  font-size: var(--text-base);
  flex-shrink: 0;
}

.hero-form-col {
  position: sticky;
  top: calc(var(--header-h) + var(--sp-6));
}

.order-form-card {
  background: var(--clr-white);
  border-radius: var(--radius-2xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-2xl);
}

.form-title {
  font-size: var(--text-2xl);
  font-weight: var(--fw-extrabold);
  color: var(--clr-text);
  margin-bottom: var(--sp-2);
  text-align: center;
}

.form-subtitle {
  font-size: var(--text-sm);
  color: var(--clr-text-muted);
  text-align: center;
  margin-bottom: var(--sp-6);
  line-height: var(--lh-relaxed);
}

.form-group {
  margin-bottom: var(--sp-4);
  position: relative;
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
  margin-bottom: var(--sp-2);
}

.form-label .required-mark {
  color: var(--clr-error);
  margin-left: 2px;
}

.form-input {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  color: var(--clr-text);
  background: var(--clr-input-bg);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  appearance: none;
}

.form-input:focus {
  border-color: var(--clr-secondary);
  box-shadow: 0 0 0 3px rgba(40, 202, 7, 0.15);
}

.form-input.is-error {
  border-color: var(--clr-error);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.form-input.is-valid {
  border-color: var(--clr-success);
}

.form-textarea {
  resize: vertical;
  min-height: 90px;
}

.field-error {
  display: none;
  font-size: var(--text-xs);
  color: var(--clr-error);
  margin-top: var(--sp-1);
  align-items: center;
  gap: 4px;
}

.field-error.is-visible {
  display: flex;
}

.form-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}

.form-checkbox {
  width: 18px;
  height: 18px;
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-xs);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--clr-secondary);
}

.form-checkbox-label {
  font-size: var(--text-xs);
  color: var(--clr-text-muted);
  line-height: var(--lh-relaxed);
}

.form-checkbox-label a {
  color: var(--clr-secondary);
  text-decoration: underline;
  font-weight: var(--fw-medium);
}

.form-checkbox-label a:hover {
  color: #28c907;
}

.checkbox-error {
  display: none;
  font-size: var(--text-xs);
  color: var(--clr-error);
  margin-top: var(--sp-1);
  margin-bottom: var(--sp-3);
  align-items: center;
  gap: 4px;
}

.checkbox-error.is-visible {
  display: flex;
}

.btn-submit {
  width: 100%;
  background: var(--clr-secondary);
  color: var(--clr-accent);
  border: none;
  padding: var(--sp-4) var(--sp-6);
  border-radius: var(--radius-lg);
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  cursor: pointer;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
}

.btn-submit:hover {
  background: #28c907;
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.btn-submit:active {
  transform: translateY(0);
}

.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  color: var(--clr-text-muted);
  margin-top: var(--sp-3);
  text-align: center;
}

.advantages-section {
  background: var(--clr-bg);
}

.benefits-section {
  background: var(--clr-white);
}

.composition-section {
  background: var(--clr-section-alt);
}

.ingredient-card {
  background: var(--clr-white);
  border-radius: var(--radius-xl);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-border);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: all var(--transition-base);
}

.ingredient-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: rgba(40, 202, 7, 0.3);
}

.ingredient-amount {
  font-size: var(--text-2xl);
  font-weight: var(--fw-extrabold);
  color: var(--clr-secondary);
}

.ingredient-name {
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
}

.ingredient-desc {
  font-size: var(--text-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-relaxed);
}

.characteristics-section {
  background: var(--clr-white);
}

.char-card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding: var(--sp-6);
  background: var(--clr-bg);
  border-radius: var(--radius-xl);
  border: 1px solid var(--clr-border);
  transition: all var(--transition-base);
}

.char-card:hover {
  background: var(--clr-white);
  box-shadow: var(--shadow-md);
  border-color: rgba(40, 202, 7, 0.25);
}

.char-icon {
  width: 44px;
  height: 44px;
  background: var(--clr-secondary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  color: var(--clr-secondary);
}

.char-title {
  font-size: var(--text-base);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
}

.char-text {
  font-size: var(--text-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-relaxed);
}

.about-section {
  background: var(--clr-section-alt);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.about-image {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.about-title {
  font-size: var(--text-4xl);
  font-weight: var(--fw-extrabold);
  color: var(--clr-text);
  line-height: var(--lh-tight);
}

.about-text {
  color: var(--clr-text-muted);
  font-size: var(--text-lg);
  line-height: var(--lh-relaxed);
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.about-list-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-base);
  color: var(--clr-text);
  line-height: var(--lh-relaxed);
}

.about-list-item i {
  color: var(--clr-secondary);
  font-size: var(--text-lg);
  flex-shrink: 0;
  margin-top: 2px;
}

.usage-section {
  background: var(--clr-white);
}

.step-card {
  position: relative;
  background: var(--clr-card-bg);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--clr-border);
  text-align: center;
  transition: all var(--transition-base);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--clr-accent);
  color: var(--clr-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-2xl);
  font-weight: var(--fw-extrabold);
  margin: 0 auto var(--sp-5);
}

.step-icon {
  font-size: 2.5rem;
  color: var(--clr-secondary);
  margin-bottom: var(--sp-4);
  display: block;
}

.step-title {
  font-size: var(--text-xl);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  margin-bottom: var(--sp-3);
}

.step-text {
  font-size: var(--text-base);
  color: var(--clr-text-muted);
  line-height: var(--lh-relaxed);
}

.faq-section {
  background: var(--clr-bg);
}

.faq-grid {
  max-width: 860px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.faq-item {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.is-open {
  border-color: rgba(40, 202, 7, 0.4);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) var(--sp-6);
  font-size: var(--text-lg);
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: var(--sp-4);
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--clr-secondary);
}

.faq-item.is-open .faq-question {
  color: var(--clr-secondary);
}

.faq-icon {
  flex-shrink: 0;
  font-size: var(--text-xl);
  transition: transform var(--transition-base);
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
  color: var(--clr-secondary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-item.is-open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 var(--sp-6) var(--sp-5);
  font-size: var(--text-base);
  color: var(--clr-text-muted);
  line-height: var(--lh-relaxed);
}

.cta-section {
  background: var(--clr-hero-bg);
  padding-block: var(--sp-24);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(40, 202, 7, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: var(--fw-extrabold);
  color: var(--clr-white);
  line-height: var(--lh-tight);
  margin-bottom: var(--sp-5);
}

.cta-title span {
  color: var(--clr-secondary);
}

.cta-text {
  font-size: var(--text-xl);
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--sp-8);
  max-width: 580px;
  margin-inline: auto;
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-8);
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.cta-note {
  margin-top: var(--sp-6);
  color: rgba(255,255,255,0.5);
  font-size: var(--text-sm);
}

.disclaimer-section {
  background: var(--clr-section-alt);
  border-top: 1px solid var(--clr-border);
}

.disclaimer-inner {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  padding: var(--sp-6);
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-xs);
}

.disclaimer-inner i {
  color: var(--clr-text-muted);
  font-size: var(--text-xl);
  flex-shrink: 0;
  margin-top: 2px;
}

.disclaimer-text {
  font-size: var(--text-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-relaxed);
}

.site-footer {
  background: var(--clr-accent);
  color: rgba(255,255,255,0.75);
  padding-block: var(--sp-12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-8);
  padding-bottom: var(--sp-10);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand-name {
  font-size: var(--text-xl);
  font-weight: var(--fw-extrabold);
  color: var(--clr-white);
  margin-bottom: var(--sp-3);
}

.footer-brand-desc {
  font-size: var(--text-sm);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-5);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  margin-bottom: var(--sp-2);
}

.footer-contact-item i {
  color: var(--clr-secondary);
  font-size: var(--text-base);
}

.footer-col-title {
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  color: var(--clr-white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.footer-link {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--clr-secondary);
}

.footer-bottom {
  padding-top: var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.footer-copyright {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
}

.footer-bottom-links {
  display: flex;
  gap: var(--sp-6);
}

.footer-bottom-link {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  transition: color var(--transition-fast);
}

.footer-bottom-link:hover {
  color: var(--clr-secondary);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--clr-accent);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
  transform: translateY(100%);
  transition: transform var(--transition-slow);
  border-top: 2px solid rgba(40, 202, 7, 0.4);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
  padding-block: var(--sp-5);
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 260px;
}

.cookie-text p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.8);
  line-height: var(--lh-relaxed);
}

.cookie-text a {
  color: var(--clr-secondary);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  flex-shrink: 0;
}

.btn-cookie-accept {
  background: var(--clr-secondary);
  color: var(--clr-accent);
  border: none;
  padding: var(--sp-2) var(--sp-5);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-cookie-accept:hover {
  background: #28c907;
  box-shadow: var(--shadow-glow);
}

.btn-cookie-reject {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.3);
  padding: var(--sp-2) var(--sp-5);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-cookie-reject:hover {
  color: var(--clr-white);
  border-color: rgba(255,255,255,0.6);
}

.btn-cookie-settings {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: none;
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  cursor: pointer;
  transition: color var(--transition-fast);
  text-decoration: underline;
}

.btn-cookie-settings:hover {
  color: var(--clr-secondary);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: var(--clr-overlay);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-6);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: var(--clr-white);
  border-radius: var(--radius-2xl);
  padding: var(--sp-8);
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-2xl);
  transform: scale(0.95) translateY(16px);
  transition: transform var(--transition-base);
}

.modal-overlay.is-open .modal-box {
  transform: scale(1) translateY(0);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-6);
}

.modal-title {
  font-size: var(--text-2xl);
  font-weight: var(--fw-extrabold);
  color: var(--clr-text);
}

.modal-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--clr-bg);
  border: none;
  cursor: pointer;
  font-size: var(--text-xl);
  color: var(--clr-text-muted);
  transition: all var(--transition-fast);
}

.modal-close:hover {
  background: var(--clr-border);
  color: var(--clr-text);
}

.cookie-category {
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--clr-border);
}

.cookie-category:last-of-type {
  border-bottom: none;
  margin-bottom: var(--sp-6);
}

.cookie-cat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-2);
}

.cookie-cat-name {
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
}

.cookie-cat-desc {
  font-size: var(--text-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-relaxed);
}

.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--clr-border);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  background: var(--clr-white);
  border-radius: var(--radius-full);
  transition: transform var(--transition-fast);
  box-shadow: var(--shadow-xs);
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--clr-secondary);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(20px);
}

.toggle-switch input:disabled + .toggle-slider {
  background: var(--clr-secondary);
  opacity: 0.7;
  cursor: not-allowed;
}

.modal-footer {
  display: flex;
  gap: var(--sp-3);
  justify-content: flex-end;
}

.btn-save-prefs {
  background: var(--clr-secondary);
  color: var(--clr-accent);
  border: none;
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  font-weight: var(--fw-bold);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-save-prefs:hover {
  background: #28c907;
  box-shadow: var(--shadow-glow);
}

.btn-accept-all-modal {
  background: var(--clr-accent);
  color: var(--clr-white);
  border: none;
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-accept-all-modal:hover {
  background: #1a0350;
}

.page-hero {
  background: var(--clr-hero-bg);
  padding-block: var(--sp-16);
  text-align: center;
}

.page-hero-title {
  font-size: var(--text-5xl);
  font-weight: var(--fw-extrabold);
  color: var(--clr-white);
  line-height: var(--lh-tight);
  margin-bottom: var(--sp-4);
}

.page-hero-subtitle {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.7);
  max-width: 580px;
  margin-inline: auto;
}

.policy-body {
  background: var(--clr-white);
}

.policy-content {
  max-width: 800px;
  margin-inline: auto;
  padding-block: var(--sp-16);
}

.policy-updated {
  font-size: var(--text-sm);
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-10);
  padding: var(--sp-3) var(--sp-4);
  background: var(--clr-bg);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--clr-secondary);
}

.policy-content h2 {
  font-size: var(--text-2xl);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  margin-top: var(--sp-10);
  margin-bottom: var(--sp-4);
}

.policy-content h3 {
  font-size: var(--text-xl);
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
  margin-top: var(--sp-6);
  margin-bottom: var(--sp-3);
}

.policy-content p {
  font-size: var(--text-base);
  color: var(--clr-text-muted);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-4);
}

.policy-content ul, .policy-content ol {
  list-style: disc;
  padding-left: var(--sp-6);
  margin-bottom: var(--sp-4);
}

.policy-content ol {
  list-style: decimal;
}

.policy-content li {
  font-size: var(--text-base);
  color: var(--clr-text-muted);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-2);
}

.policy-content a {
  color: var(--clr-secondary);
  text-decoration: underline;
}

.policy-content a:hover {
  color: #28c907;
}

.policy-contact-box {
  background: var(--clr-bg);
  border-radius: var(--radius-xl);
  padding: var(--sp-6);
  border: 1px solid var(--clr-border);
  margin-top: var(--sp-8);
}

.policy-contact-box h3 {
  font-size: var(--text-xl);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  margin-bottom: var(--sp-4);
}

.policy-contact-box p {
  font-size: var(--text-base);
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-2);
}

.thankyou-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--clr-bg);
  padding: var(--sp-8);
  text-align: center;
}

.thankyou-card {
  background: var(--clr-white);
  border-radius: var(--radius-2xl);
  padding: var(--sp-12) var(--sp-16);
  box-shadow: var(--shadow-xl);
  max-width: 540px;
  width: 100%;
}

.thankyou-icon {
  width: 80px;
  height: 80px;
  background: var(--clr-secondary-light);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-6);
  font-size: 2.5rem;
  color: var(--clr-secondary);
}

.thankyou-title {
  font-size: var(--text-3xl);
  font-weight: var(--fw-extrabold);
  color: var(--clr-text);
  margin-bottom: var(--sp-4);
}

.thankyou-text {
  font-size: var(--text-lg);
  color: var(--clr-text-muted);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-8);
}

.notfound-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--clr-bg);
  padding: var(--sp-8);
  text-align: center;
}

.notfound-code {
  font-size: 8rem;
  font-weight: var(--fw-extrabold);
  color: var(--clr-secondary);
  line-height: 1;
  margin-bottom: var(--sp-4);
  letter-spacing: -0.04em;
}

.notfound-title {
  font-size: var(--text-4xl);
  font-weight: var(--fw-extrabold);
  color: var(--clr-text);
  margin-bottom: var(--sp-4);
}

.notfound-text {
  font-size: var(--text-lg);
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-8);
  max-width: 480px;
}

.notfound-actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-image-col {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: center;
  }

  .hero-product-img {
    max-width: 220px;
  }

  .hero-trust {
    width: auto;
    flex: 1;
    max-width: 300px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
  }
}

@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .about-image img {
    height: 280px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--clr-accent);
    flex-direction: column;
    align-items: stretch;
    padding: var(--sp-4);
    gap: var(--sp-2);
    box-shadow: var(--shadow-xl);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform var(--transition-base), opacity var(--transition-base);
    z-index: 899;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-link {
    padding: var(--sp-3) var(--sp-4);
    font-size: var(--text-base);
  }

  .nav-cta {
    text-align: center;
    padding: var(--sp-3) var(--sp-4);
  }

  .nav-toggle {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-col {
    flex-direction: column;
    align-items: center;
  }

  .hero-trust {
    max-width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-form-col {
    position: static;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: var(--text-3xl);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-3);
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    gap: var(--sp-3);
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-4);
  }

  .cookie-actions {
    width: 100%;
  }

  .btn-cookie-accept, .btn-cookie-reject {
    flex: 1;
    text-align: center;
    justify-content: center;
  }

  .thankyou-card {
    padding: var(--sp-8);
  }

  .page-hero-title {
    font-size: var(--text-3xl);
  }
}

@media (max-width: 480px) {
  .logo{
    font-size: 1rem;
  }
  .hero-price-block {
    flex-direction: column;
    gap: var(--sp-2);
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .notfound-code {
    font-size: 6rem;
  }

  .modal-footer {
    flex-direction: column;
  }

  .modal-footer button {
    width: 100%;
  }
}
