@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Karla:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

:root {
  --color-primary: rgb(31, 31, 32);
  --color-secondary: rgb(55, 52, 216);
  --color-bg: #F9FAFB;
  --color-text: #111827;
  --color-text-muted: #6B7280;
  --color-accent: rgb(7, 37, 82);
  --color-white: #ffffff;
  --color-border: #E5E7EB;
  --color-error: #DC2626;
  --color-success: #16A34A;
  --color-surface: #ffffff;
  --color-surface-alt: #F3F4F6;

  --font-display: 'Syne', sans-serif;
  --font-body: 'Karla', 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;

  --weight-light: 300;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-extrabold: 800;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.13);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.16);
  --shadow-brutal: 4px 4px 0px var(--color-primary);
  --shadow-brutal-blue: 4px 4px 0px var(--color-secondary);

  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --radius-none: 0px;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-regular);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

input, textarea, select {
  font-family: var(--font-body);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-secondary);
  background: rgba(55, 52, 216, 0.08);
  border: 1px solid rgba(55, 52, 216, 0.2);
  padding: var(--space-1) var(--space-3);
  margin-bottom: var(--space-4);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--weight-extrabold);
  color: var(--color-text);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-title span {
  color: var(--color-secondary);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-secondary);
  border: 2px solid var(--color-secondary);
  padding: var(--space-4) var(--space-8);
  box-shadow: var(--shadow-brutal-blue);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px var(--color-accent);
}

.btn-primary:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px var(--color-accent);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: transparent;
  border: 2px solid var(--color-primary);
  padding: var(--space-4) var(--space-8);
  box-shadow: var(--shadow-brutal);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}

.btn-secondary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px var(--color-primary);
  background: var(--color-primary);
  color: var(--color-white);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 2px solid var(--color-primary);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: var(--weight-extrabold);
  font-size: var(--text-lg);
  letter-spacing: -0.02em;
  color: var(--color-primary);
}

.brand-dot {
  width: 10px;
  height: 10px;
  background: var(--color-secondary);
  display: inline-block;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-links a {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-secondary);
  transition: width var(--transition-base);
}

.nav-links a:hover {
  color: var(--color-text);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white) !important;
  background: var(--color-secondary);
  padding: var(--space-2) var(--space-5);
  border: 2px solid var(--color-secondary);
  transition: background var(--transition-fast), color var(--transition-fast) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--color-accent) !important;
  border-color: var(--color-accent);
  color: var(--color-white) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--color-white);
  border-bottom: 2px solid var(--color-primary);
  z-index: 99;
  padding: var(--space-6);
  flex-direction: column;
  gap: var(--space-4);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border);
  transition: color var(--transition-fast);
}

.mobile-menu a:hover {
  color: var(--color-secondary);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

main {
  padding-top: 64px;
}

.hero {
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-20) 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: var(--color-secondary);
  opacity: 0.07;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(55, 52, 216, 0.2);
  border: 1px solid rgba(55, 52, 216, 0.5);
  padding: var(--space-2) var(--space-4);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-6);
}

.hero-badge i {
  color: var(--color-secondary);
  font-size: var(--text-sm);
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-6xl);
  font-weight: var(--weight-extrabold);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-6);
}

.hero-title .product-name {
  color: var(--color-secondary);
  display: block;
}

.hero-desc {
  font-size: var(--text-lg);
  font-weight: var(--weight-light);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: var(--space-8);
}

.hero-pricing {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
  padding: var(--space-4) var(--space-5);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid var(--color-secondary);
}

.price-current {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--weight-extrabold);
  color: var(--color-white);
}

.price-old {
  font-size: var(--text-xl);
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
}

.price-note {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  margin-left: auto;
}

.hero-image-wrap {
  position: relative;
}

.hero-image-wrap figure {
  position: relative;
}

.hero-img {
  width: 100%;
  max-width: 420px;
  height: 420px;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.15);
  display: block;
  margin: 0 auto;
  background: rgba(255,255,255,0.05);
}

.hero-img-placeholder {
  width: 100%;
  max-width: 420px;
  height: 420px;
  border: 3px solid rgba(255,255,255,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  background: rgba(255,255,255,0.04);
  margin: 0 auto;
  color: rgba(255,255,255,0.3);
  font-size: var(--text-sm);
}

.hero-img-placeholder i {
  font-size: 3rem;
}

.trust-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--color-secondary);
  color: var(--color-white);
  padding: var(--space-4) var(--space-5);
  border: 2px solid var(--color-white);
  box-shadow: var(--shadow-lg);
}

.trust-badge-num {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--weight-extrabold);
  line-height: 1;
}

.trust-badge-text {
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.85;
}

.order-form-wrap {
  background: var(--color-white);
  border: 2px solid var(--color-primary);
  box-shadow: 6px 6px 0px var(--color-secondary);
  padding: var(--space-8);
  color: var(--color-text);
  margin-top: var(--space-8);
}

.form-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-extrabold);
  color: var(--color-primary);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.form-title i {
  color: var(--color-secondary);
}

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

.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  margin-bottom: var(--space-2);
  letter-spacing: 0.02em;
}

.form-group label .required {
  color: var(--color-secondary);
  margin-left: 2px;
}

.form-control {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
  border-color: var(--color-secondary);
  box-shadow: 3px 3px 0px rgba(55, 52, 216, 0.2);
}

.form-control.error {
  border-color: var(--color-error);
}

.form-control.valid {
  border-color: var(--color-success);
}

textarea.form-control {
  resize: vertical;
  min-height: 90px;
}

.field-error {
  display: none;
  font-size: var(--text-xs);
  color: var(--color-error);
  margin-top: var(--space-1);
  align-items: center;
  gap: var(--space-1);
}

.field-error.visible {
  display: flex;
}

.gdpr-check {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  cursor: pointer;
}

.gdpr-check input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-secondary);
  cursor: pointer;
}

.gdpr-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}

.gdpr-label a {
  color: var(--color-secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

.submit-btn {
  width: 100%;
  padding: var(--space-4) var(--space-6);
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--weight-extrabold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-secondary);
  border: 2px solid var(--color-secondary);
  box-shadow: 4px 4px 0px var(--color-accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  margin-top: var(--space-6);
}

.submit-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px var(--color-accent);
}

.submit-btn:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px var(--color-accent);
}

.legal-section {
  background: var(--color-surface-alt);
  border-top: 2px solid var(--color-border);
  border-bottom: 2px solid var(--color-border);
  padding: var(--space-12) 0;
}

.legal-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-8);
}

.legal-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.legal-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: var(--text-lg);
}

.legal-item h3 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-1);
}

.legal-item p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}

.faq-section {
  padding: var(--space-20) 0;
  background: var(--color-bg);
}

.faq-list {
  margin-top: var(--space-10);
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 2px solid var(--color-primary);
}

.faq-item {
  border-bottom: 2px solid var(--color-primary);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background var(--transition-fast);
}

.faq-question:hover {
  background: var(--color-surface-alt);
}

.faq-question.active {
  background: var(--color-primary);
  color: var(--color-white);
}

.faq-q-text {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  letter-spacing: 0.02em;
}

.faq-icon {
  flex-shrink: 0;
  font-size: var(--text-lg);
  transition: transform var(--transition-base);
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: var(--space-5) var(--space-6);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--color-border);
}

.faq-answer.open {
  display: block;
}

.specs-section {
  padding: var(--space-20) 0;
  background: var(--color-primary);
  color: var(--color-white);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-1);
  margin-top: var(--space-10);
}

.spec-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: var(--space-6);
  transition: background var(--transition-base), border-color var(--transition-base);
}

.spec-card:hover {
  background: rgba(55, 52, 216, 0.15);
  border-color: rgba(55, 52, 216, 0.4);
}

.spec-icon {
  font-size: var(--text-2xl);
  color: var(--color-secondary);
  margin-bottom: var(--space-3);
}

.spec-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
  color: rgba(255,255,255,0.9);
}

.spec-card p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.usage-section {
  padding: var(--space-20) 0;
  background: var(--color-bg);
}

.usage-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--space-10);
  border: 2px solid var(--color-primary);
}

.usage-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  border-bottom: 2px solid var(--color-primary);
}

.usage-step:last-child {
  border-bottom: none;
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-secondary);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--weight-extrabold);
  border-right: 2px solid var(--color-primary);
}

.step-content {
  padding: var(--space-6);
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-2);
}

.step-content p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.description-section {
  padding: var(--space-20) 0;
  background: var(--color-surface);
  border-top: 2px solid var(--color-border);
  border-bottom: 2px solid var(--color-border);
}

.description-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  margin-top: var(--space-10);
}

.description-text p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-5);
}

.desc-img-wrap {
  position: relative;
}

.desc-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border: 2px solid var(--color-primary);
  box-shadow: var(--shadow-brutal);
  background: var(--color-surface-alt);
}

.desc-img-placeholder {
  width: 100%;
  height: 360px;
  border: 2px solid var(--color-primary);
  box-shadow: var(--shadow-brutal);
  background: var(--color-surface-alt);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  color: var(--color-text-muted);
}

.desc-img-placeholder i {
  font-size: 2.5rem;
}

.benefits-section {
  padding: var(--space-20) 0;
  background: var(--color-bg);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-10);
}

.benefit-card {
  background: var(--color-white);
  border: 2px solid var(--color-primary);
  padding: var(--space-6);
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  box-shadow: 0 0 0 transparent;
}

.benefit-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 3px 3px 0px var(--color-secondary);
}

.benefit-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: var(--text-lg);
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  letter-spacing: 0.02em;
  margin-bottom: var(--space-2);
}

.benefit-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.ingredients-section {
  padding: var(--space-20) 0;
  background: var(--color-primary);
  color: var(--color-white);
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-10);
}

.ingredient-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  padding: var(--space-5);
  transition: border-color var(--transition-base), background var(--transition-base);
}

.ingredient-card:hover {
  background: rgba(55, 52, 216, 0.12);
  border-color: var(--color-secondary);
}

.ingredient-name {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  color: rgba(255,255,255,0.95);
  margin-bottom: var(--space-1);
}

.ingredient-amount {
  font-size: var(--text-xs);
  color: var(--color-secondary);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}

.ingredient-desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.disclaimer-section {
  padding: var(--space-12) 0;
  background: var(--color-surface-alt);
  border-top: 2px solid var(--color-border);
  border-bottom: 2px solid var(--color-border);
}

.disclaimer-inner {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
}

.disclaimer-icon {
  flex-shrink: 0;
  font-size: var(--text-2xl);
  color: var(--color-text-muted);
  margin-top: 2px;
}

.disclaimer-inner h3 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
  color: var(--color-text);
}

.disclaimer-inner p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

.cta-section {
  padding: var(--space-20) 0;
  background: var(--color-secondary);
  color: var(--color-white);
  text-align: center;
}

.cta-section .section-title {
  color: var(--color-white);
  font-size: var(--text-5xl);
  margin-bottom: var(--space-6);
}

.cta-section p {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto var(--space-10);
  line-height: 1.7;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-extrabold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-secondary);
  background: var(--color-white);
  border: 2px solid var(--color-white);
  padding: var(--space-5) var(--space-10);
  box-shadow: 5px 5px 0px var(--color-accent);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.cta-btn:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0px var(--color-accent);
}

footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.65);
  padding: var(--space-12) 0 var(--space-8);
  border-top: 3px solid var(--color-secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-10);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: var(--weight-extrabold);
  font-size: var(--text-lg);
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.footer-brand .brand-dot {
  background: var(--color-secondary);
}

.footer-about p {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}

.footer-about address {
  font-style: normal;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  margin-top: var(--space-4);
  line-height: 1.7;
}

.footer-about address a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition-fast);
}

.footer-about address a:hover {
  color: var(--color-secondary);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

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

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

.footer-bottom {
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.footer-copy {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
}

.footer-policy-links {
  display: flex;
  gap: var(--space-5);
  flex-wrap: wrap;
}

.footer-policy-links a {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
  transition: color var(--transition-fast);
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--color-primary);
  border-top: 3px solid var(--color-secondary);
  padding: var(--space-5) 0;
  transform: translateY(100%);
  transition: transform var(--transition-slow);
  box-shadow: 0 -4px 30px rgba(0,0,0,0.2);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-6);
  align-items: center;
}

.cookie-text h3 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  color: var(--color-white);
  margin-bottom: var(--space-1);
}

.cookie-text p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.cookie-text p a {
  color: var(--color-secondary);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  align-items: center;
}

.cookie-btn {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: var(--space-3) var(--space-5);
  border: 2px solid;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.cookie-btn-accept {
  color: var(--color-white);
  background: var(--color-secondary);
  border-color: var(--color-secondary);
}

.cookie-btn-accept:hover {
  background: rgba(55, 52, 216, 0.8);
}

.cookie-btn-reject {
  color: rgba(255,255,255,0.7);
  background: transparent;
  border-color: rgba(255,255,255,0.3);
}

.cookie-btn-reject:hover {
  border-color: rgba(255,255,255,0.7);
  color: var(--color-white);
}

.cookie-btn-settings {
  color: rgba(255,255,255,0.5);
  background: transparent;
  border-color: transparent;
  text-decoration: underline;
  font-size: var(--text-xs);
  padding: var(--space-2);
}

.cookie-btn-settings:hover {
  color: var(--color-white);
}

.cookie-settings-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.7);
}

.cookie-settings-modal.open {
  display: flex;
}

.modal-box {
  background: var(--color-white);
  border: 2px solid var(--color-primary);
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 520px;
  margin: var(--space-4);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  border-bottom: 2px solid var(--color-primary);
}

.modal-header h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-extrabold);
}

.modal-close {
  font-size: var(--text-xl);
  color: var(--color-text-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.modal-close:hover {
  color: var(--color-primary);
}

.modal-body {
  padding: var(--space-6);
}

.cookie-toggle-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-border);
}

.cookie-toggle-item:last-child {
  border-bottom: none;
}

.cookie-toggle-info h4 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-1);
}

.cookie-toggle-info p {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.5;
}

.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

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

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

.toggle-slider::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  background: var(--color-white);
  border-radius: 50%;
  transition: transform var(--transition-base);
}

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

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(20px);
}

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

.modal-footer {
  padding: var(--space-5) var(--space-6);
  border-top: 2px solid var(--color-primary);
  display: flex;
  gap: var(--space-3);
  justify-content: flex-end;
}

.policy-page {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-20) var(--space-6);
}

.policy-page h1 {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--weight-extrabold);
  margin-bottom: var(--space-3);
  line-height: 1.1;
}

.policy-page .policy-date {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-10);
  padding-bottom: var(--space-6);
  border-bottom: 2px solid var(--color-primary);
}

.policy-page h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-extrabold);
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
  padding-left: var(--space-4);
  border-left: 3px solid var(--color-secondary);
}

.policy-page p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}

.policy-page ul {
  list-style: disc;
  padding-left: var(--space-6);
  margin-bottom: var(--space-4);
}

.policy-page ul li {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-2);
}

.policy-page address {
  font-style: normal;
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-secondary);
  padding: var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.8;
}

.thankyou-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-20) var(--space-6);
}

.thankyou-inner {
  max-width: 560px;
}

.thankyou-icon {
  width: 72px;
  height: 72px;
  background: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  font-size: var(--text-3xl);
  color: var(--color-white);
}

.thankyou-inner h1 {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: var(--weight-extrabold);
  line-height: 1.1;
  margin-bottom: var(--space-5);
}

.thankyou-inner p {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-8);
}

.notfound-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-20) var(--space-6);
}

.notfound-inner {
  max-width: 560px;
}

.notfound-num {
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: var(--weight-extrabold);
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-4);
  display: block;
}

.notfound-inner h1 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-4);
}

.notfound-inner p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
}

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

  .hamburger {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .hero-image-wrap {
    order: -1;
  }

  .hero-title {
    font-size: var(--text-4xl);
  }

  .legal-inner {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .specs-grid {
    grid-template-columns: 1fr 1fr;
  }

  .description-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .ingredients-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
  }

  .cookie-inner {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    flex-direction: column;
    width: 100%;
  }

  .cookie-btn {
    width: 100%;
    text-align: center;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .cta-section .section-title {
    font-size: var(--text-4xl);
  }

  .usage-step {
    grid-template-columns: 60px 1fr;
  }

  .policy-page {
    padding: var(--space-12) var(--space-4);
  }

  .policy-page h1 {
    font-size: var(--text-3xl);
  }
}

@media (max-width: 480px) {
  .cta-btn{
    font-size: 1rem;
  }
  .specs-grid {
    grid-template-columns: 1fr;
  }

  .ingredients-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: var(--text-3xl);
  }

  .price-current {
    font-size: var(--text-3xl);
  }

  .trust-badge {
    bottom: -10px;
    left: 10px;
  }
}
