@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  --clr-primary: #1f1f20;
  --clr-secondary: rgb(5, 102, 73);
  --clr-secondary-hover: rgb(3, 80, 57);
  --clr-secondary-light: rgba(5, 102, 73, 0.08);
  --clr-bg: #F9FAFB;
  --clr-bg-white: #ffffff;
  --clr-text: #111827;
  --clr-text-secondary: #6B7280;
  --clr-accent: rgb(29, 4, 75);
  --clr-accent-light: rgba(29, 4, 75, 0.09);
  --clr-border: #E5E7EB;
  --clr-border-focus: rgb(5, 102, 73);
  --clr-error: #DC2626;
  --clr-success: #16A34A;
  --clr-star: #F59E0B;
  --clr-white: #ffffff;
  --clr-overlay: rgba(0, 0, 0, 0.52);

  --ff-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 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-normal: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  --lh-tight: 1.25;
  --lh-snug: 1.375;
  --lh-normal: 1.5;
  --lh-relaxed: 1.65;

  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  --r-sm: 0.25rem;
  --r-md: 0.5rem;
  --r-lg: 0.75rem;
  --r-xl: 1rem;
  --r-2xl: 1.5rem;
  --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;

  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.35s ease;

  --container-max: 1200px;
  --header-height: 70px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--ff-base);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--clr-text);
  background-color: var(--clr-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  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 {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.section {
  padding: var(--sp-20) 0;
}

.section--alt {
  background-color: var(--clr-bg-white);
}

.section--dark {
  background-color: var(--clr-primary);
  color: var(--clr-white);
}

.section-label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-secondary);
  margin-bottom: var(--sp-3);
}

.section--dark .section-label {
  color: rgba(255, 255, 255, 0.6);
}

.section-title {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  color: var(--clr-text);
  margin-bottom: var(--sp-4);
}

.section-subtitle {
  font-size: var(--fs-lg);
  color: var(--clr-text-secondary);
  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-subtitle {
  margin: 0 auto;
}

.section--dark .section-title,
.section--green .section-title {
  color: var(--clr-white);
}

.section--dark .section-subtitle,
.section--green .section-subtitle {
  color: rgba(255, 255, 255, 0.78);
}

.grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: start;
}

.grid-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.grid-four {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--clr-primary);
  box-shadow: var(--shadow-md);
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  color: var(--clr-white);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  transition: opacity var(--transition-fast);
  white-space: nowrap;
}

.logo:hover {
  opacity: 0.88;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.nav-link {
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-md);
  transition: color var(--transition-fast), background-color var(--transition-fast);
}

.nav-link:hover {
  color: var(--clr-white);
  background-color: rgba(255, 255, 255, 0.1);
}

.nav-cta {
  background-color: var(--clr-secondary);
  color: var(--clr-white) !important;
  padding: var(--sp-2) var(--sp-5) !important;
  border-radius: var(--r-md) !important;
  font-weight: var(--fw-semibold) !important;
  transition: background-color var(--transition-fast), transform var(--transition-fast) !important;
}

.nav-cta:hover {
  background-color: var(--clr-secondary-hover) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  color: var(--clr-white);
  font-size: 1.5rem;
  padding: var(--sp-2);
  border-radius: var(--r-md);
  transition: background-color var(--transition-fast);
  line-height: 1;
}

.nav-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  border-radius: var(--r-lg);
  transition: all var(--transition-base);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--clr-secondary);
  color: var(--clr-white);
  border-color: var(--clr-secondary);
}

.btn--primary:hover {
  background-color: var(--clr-secondary-hover);
  border-color: var(--clr-secondary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--outline {
  background-color: transparent;
  color: var(--clr-secondary);
  border-color: var(--clr-secondary);
}

.btn--outline:hover {
  background-color: var(--clr-secondary);
  color: var(--clr-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--ghost {
  background-color: transparent;
  color: var(--clr-white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--ghost:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: var(--clr-white);
}

.btn--lg {
  padding: var(--sp-4) var(--sp-8);
  font-size: var(--fs-lg);
  border-radius: var(--r-xl);
}

.btn--full {
  width: 100%;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: var(--sp-1) var(--sp-3);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  border-radius: var(--r-full);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge--green {
  background-color: var(--clr-secondary-light);
  color: var(--clr-secondary);
}

.badge--accent {
  background-color: var(--clr-accent-light);
  color: var(--clr-accent);
}

.badge--gold {
  background-color: rgba(245, 158, 11, 0.12);
  color: #b45309;
}

.card {
  background-color: var(--clr-bg-white);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-border);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.rating {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
}

.rating-stars {
  display: flex;
  gap: 2px;
  color: var(--clr-star);
  font-size: var(--fs-lg);
}

.rating-value {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
}

.rating-count {
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
}

.form-group {
  margin-bottom: var(--sp-4);
}

.form-label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-text);
  margin-bottom: var(--sp-2);
}

.form-label .required {
  color: var(--clr-error);
  margin-left: 2px;
}

.form-control {
  display: block;
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--clr-text);
  background-color: var(--clr-bg-white);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-lg);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-control::placeholder {
  color: var(--clr-text-secondary);
  opacity: 0.7;
}

.form-control:focus {
  border-color: var(--clr-border-focus);
  box-shadow: 0 0 0 3px rgba(5, 102, 73, 0.14);
}

.form-control.is-invalid {
  border-color: var(--clr-error);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-control.is-valid {
  border-color: var(--clr-success);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

.form-error {
  display: block;
  font-size: var(--fs-xs);
  color: var(--clr-error);
  margin-top: var(--sp-1);
  line-height: var(--lh-normal);
}

.form-error:empty {
  display: none;
}

.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  margin-bottom: var(--sp-2);
}

.form-checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-sm);
  cursor: pointer;
  accent-color: var(--clr-secondary);
  margin-top: 2px;
}

.form-checkbox-label {
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
}

.form-checkbox-label a {
  color: var(--clr-secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-checkbox-label a:hover {
  color: var(--clr-secondary-hover);
}

.hero {
  background-color: var(--clr-bg-white);
  padding: var(--sp-16) 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: var(--sp-12);
  align-items: start;
}

.hero-media {
  position: sticky;
  top: calc(var(--header-height) + var(--sp-6));
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background-color: var(--clr-bg);
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
}

.hero-rating {
  margin-top: var(--sp-4);
  padding: var(--sp-3) var(--sp-4);
  background-color: var(--clr-bg);
  border-radius: var(--r-lg);
  border: 1px solid var(--clr-border);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.hero-brand {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--clr-secondary);
}

.hero-title {
  font-size: var(--fs-5xl);
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-tight);
  color: var(--clr-text);
  letter-spacing: -0.02em;
}

.hero-tagline {
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
  line-height: var(--lh-snug);
}

.hero-description {
  font-size: var(--fs-base);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
}

.price-block {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  background-color: var(--clr-bg);
  border-radius: var(--r-xl);
  border: 1px solid var(--clr-border);
}

.price-current {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-extrabold);
  color: var(--clr-text);
  line-height: 1;
}

.price-old {
  font-size: var(--fs-xl);
  color: var(--clr-text-secondary);
  text-decoration: line-through;
}

.price-save {
  background-color: var(--clr-secondary-light);
  color: var(--clr-secondary);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
}

.hero-form {
  background-color: var(--clr-bg);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  border: 1px solid var(--clr-border);
}

.hero-form-title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-5);
  color: var(--clr-text);
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-icon--green {
  background-color: var(--clr-secondary-light);
  color: var(--clr-secondary);
}

.feature-icon--accent {
  background-color: var(--clr-accent-light);
  color: var(--clr-accent);
}

.feature-title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
}

.feature-text {
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r-lg);
  border: 1px solid var(--clr-border);
  background-color: var(--clr-bg-white);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.benefit-item:hover {
  border-color: var(--clr-secondary);
  box-shadow: var(--shadow-sm);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-lg);
  background-color: var(--clr-secondary-light);
  color: var(--clr-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.benefit-content h3 {
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--sp-1);
  color: var(--clr-text);
}

.benefit-content p {
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
}

.desc-highlights {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.desc-highlight {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4);
  background-color: var(--clr-bg);
  border-radius: var(--r-lg);
  border: 1px solid var(--clr-border);
}

.desc-highlight-icon {
  font-size: 1.75rem;
  color: var(--clr-secondary);
  flex-shrink: 0;
}

.desc-highlight-label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--clr-text-secondary);
}

.desc-highlight-value {
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
}

.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: var(--sp-4);
}

.ingredient-card {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  padding: var(--sp-5);
  background-color: var(--clr-bg-white);
  border-radius: var(--r-xl);
  border: 1px solid var(--clr-border);
  transition: box-shadow var(--transition-base), border-color var(--transition-base);
}

.ingredient-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--clr-secondary);
}

.ingredient-number {
  width: 36px;
  height: 36px;
  border-radius: var(--r-full);
  background-color: var(--clr-secondary);
  color: var(--clr-white);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ingredient-info h3 {
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--sp-1);
  color: var(--clr-text);
}

.ingredient-info p {
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: 0;
  width: 2px;
  background-color: var(--clr-border);
}

.step {
  display: flex;
  gap: var(--sp-5);
  align-items: flex-start;
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: var(--r-full);
  background-color: var(--clr-secondary);
  color: var(--clr-white);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-content {
  padding-top: var(--sp-2);
}

.step-content h3 {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--sp-2);
  color: var(--clr-text);
}

.step-content p {
  font-size: var(--fs-base);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.accordion-item {
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background-color: var(--clr-bg-white);
  transition: border-color var(--transition-base);
}

.accordion-item.open {
  border-color: var(--clr-secondary);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) var(--sp-6);
  cursor: pointer;
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
  transition: color var(--transition-fast);
  gap: var(--sp-4);
  user-select: none;
}

.accordion-header:hover {
  color: var(--clr-secondary);
}

.accordion-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: transform var(--transition-base);
  color: var(--clr-text-secondary);
}

.accordion-item.open .accordion-icon {
  transform: rotate(180deg);
  color: var(--clr-secondary);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.accordion-item.open .accordion-body {
  max-height: 400px;
}

.accordion-body-inner {
  padding: 0 var(--sp-6) var(--sp-5);
  font-size: var(--fs-base);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
}

.cta-section {
  padding: var(--sp-24) 0;
  background: linear-gradient(135deg, var(--clr-secondary) 0%, rgb(2, 68, 49) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.cta-title {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-extrabold);
  color: var(--clr-white);
  margin-bottom: var(--sp-4);
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
}

.cta-text {
  font-size: var(--fs-xl);
  color: rgba(255, 255, 255, 0.82);
  max-width: 620px;
  margin: 0 auto var(--sp-8);
  line-height: var(--lh-relaxed);
}

.cta-buttons {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
}

.disclaimer-section {
  background-color: var(--clr-bg);
  padding: var(--sp-12) 0;
  border-top: 1px solid var(--clr-border);
}

.disclaimer-box {
  background-color: var(--clr-bg-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  padding: var(--sp-6) var(--sp-8);
  display: flex;
  gap: var(--sp-5);
  align-items: flex-start;
}

.disclaimer-icon {
  font-size: 1.75rem;
  color: var(--clr-text-secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.disclaimer-text p {
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
}

.disclaimer-text p + p {
  margin-top: var(--sp-2);
}

.site-footer {
  background-color: var(--clr-primary);
  color: var(--clr-white);
  padding: var(--sp-16) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-8);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-text {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.58);
  line-height: var(--lh-relaxed);
  margin-top: var(--sp-3);
  margin-bottom: var(--sp-5);
}

.footer-col-title {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: var(--sp-4);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-link {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--clr-white);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: var(--sp-3);
  line-height: var(--lh-relaxed);
}

.footer-contact-item i {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--clr-secondary);
}

.footer-bottom {
  padding: var(--sp-5) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.42);
}

.footer-legal-links {
  display: flex;
  gap: var(--sp-5);
  flex-wrap: wrap;
}

.footer-legal-link {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.42);
  transition: color var(--transition-fast);
}

.footer-legal-link:hover {
  color: var(--clr-white);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #16181a;
  color: var(--clr-white);
  padding: var(--sp-5) 0;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.82);
  line-height: var(--lh-relaxed);
  min-width: 200px;
}

.cookie-banner-text a {
  color: var(--clr-secondary);
  text-decoration: underline;
}

.cookie-banner-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-md);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--transition-fast);
  font-family: inherit;
  line-height: 1.5;
}

.cookie-btn--accept {
  background-color: var(--clr-secondary);
  color: var(--clr-white);
  border-color: var(--clr-secondary);
}

.cookie-btn--accept:hover {
  background-color: var(--clr-secondary-hover);
  border-color: var(--clr-secondary-hover);
}

.cookie-btn--decline {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.28);
}

.cookie-btn--decline:hover {
  color: var(--clr-white);
  border-color: rgba(255, 255, 255, 0.6);
}

.cookie-btn--settings {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.62);
  border-color: transparent;
  text-decoration: underline;
  padding-left: var(--sp-2);
  padding-right: var(--sp-2);
}

.cookie-btn--settings:hover {
  color: var(--clr-white);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background-color: var(--clr-overlay);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-6);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.modal-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.cookie-modal {
  background-color: var(--clr-bg-white);
  border-radius: var(--r-2xl);
  padding: var(--sp-8);
  max-width: 540px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-2xl);
  transform: scale(0.96) translateY(8px);
  transition: transform var(--transition-base);
}

.modal-overlay.visible .cookie-modal {
  transform: scale(1) translateY(0);
}

.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-6);
}

.cookie-modal-title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
}

.modal-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  color: var(--clr-text-secondary);
  font-size: 1.25rem;
  cursor: pointer;
  transition: background-color var(--transition-fast), color var(--transition-fast);
  border: none;
  background: none;
  line-height: 1;
}

.modal-close:hover {
  background-color: var(--clr-bg);
  color: var(--clr-text);
}

.cookie-category {
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: var(--sp-4) var(--sp-5);
  margin-bottom: var(--sp-3);
}

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  margin-bottom: var(--sp-2);
}

.cookie-category-name {
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
}

.cookie-category-desc {
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
}

.always-on-badge {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--clr-secondary);
  background-color: var(--clr-secondary-light);
  padding: 2px var(--sp-2);
  border-radius: var(--r-full);
  white-space: nowrap;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: var(--clr-border);
  border-radius: var(--r-full);
  transition: background-color var(--transition-fast);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: transform var(--transition-fast);
  box-shadow: var(--shadow-xs);
}

.toggle-switch input:checked + .toggle-slider {
  background-color: var(--clr-secondary);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(20px);
}

.toggle-switch input:disabled + .toggle-slider {
  cursor: not-allowed;
  opacity: 0.55;
}

.cookie-modal-footer {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
  flex-wrap: wrap;
}

.thankyou-section {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-16) var(--sp-6);
}

.thankyou-box {
  text-align: center;
  max-width: 560px;
  padding: var(--sp-12) var(--sp-10);
  background-color: var(--clr-bg-white);
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--clr-border);
}

.thankyou-icon {
  font-size: 4rem;
  color: var(--clr-secondary);
  margin-bottom: var(--sp-6);
  line-height: 1;
}

.thankyou-title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-4);
  color: var(--clr-text);
}

.thankyou-text {
  font-size: var(--fs-lg);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-8);
}

.notfound-section {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-16) var(--sp-6);
}

.notfound-box {
  text-align: center;
  max-width: 520px;
}

.notfound-code {
  font-size: 7rem;
  font-weight: var(--fw-extrabold);
  color: var(--clr-border);
  line-height: 1;
  margin-bottom: var(--sp-4);
  letter-spacing: -0.04em;
}

.notfound-title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-4);
  color: var(--clr-text);
}

.notfound-text {
  font-size: var(--fs-lg);
  color: var(--clr-text-secondary);
  margin-bottom: var(--sp-8);
  line-height: var(--lh-relaxed);
}

.simple-header {
  background-color: var(--clr-primary);
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.simple-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.back-link {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--fs-sm);
  transition: color var(--transition-fast);
}

.back-link:hover {
  color: var(--clr-white);
}

.simple-footer {
  background-color: var(--clr-primary);
  padding: var(--sp-6) 0;
}

.simple-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.simple-footer-copy {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.42);
}

.simple-footer-links {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.simple-footer-link {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.42);
  transition: color var(--transition-fast);
}

.simple-footer-link:hover {
  color: var(--clr-white);
}

.policy-page {
  padding: var(--sp-20) 0;
}

.policy-header {
  margin-bottom: var(--sp-12);
  padding-bottom: var(--sp-8);
  border-bottom: 1px solid var(--clr-border);
}

.policy-header time {
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
  display: block;
  margin-top: var(--sp-2);
}

.policy-title {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
  color: var(--clr-text);
}

.policy-content h2 {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  margin-top: var(--sp-10);
  margin-bottom: var(--sp-4);
  color: var(--clr-text);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--clr-border);
}

.policy-content h2:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.policy-content h3 {
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  margin-top: var(--sp-6);
  margin-bottom: var(--sp-3);
  color: var(--clr-text);
}

.policy-content p {
  font-size: var(--fs-base);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-4);
}

.policy-content ul,
.policy-content ol {
  padding-left: var(--sp-6);
  margin-bottom: var(--sp-4);
}

.policy-content ul {
  list-style: disc;
}

.policy-content ol {
  list-style: decimal;
}

.policy-content li {
  font-size: var(--fs-base);
  color: var(--clr-text-secondary);
  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: var(--clr-secondary-hover);
}

.policy-content strong {
  color: var(--clr-text);
  font-weight: var(--fw-semibold);
}

.policy-info-box {
  background-color: var(--clr-secondary-light);
  border-left: 4px solid var(--clr-secondary);
  padding: var(--sp-4) var(--sp-6);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  margin-bottom: var(--sp-6);
}

.policy-info-box p {
  color: var(--clr-text);
  margin-bottom: 0;
}

.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
  }

  .hero-title {
    font-size: var(--fs-4xl);
  }
}

@media (max-width: 861px) {
  .hero-media{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background-color: var(--clr-primary);
    flex-direction: column;
    padding: var(--sp-4) var(--sp-6) var(--sp-6);
    gap: var(--sp-1);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-lg);
    z-index: 99;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    padding: var(--sp-3) var(--sp-4);
    width: 100%;
  }

  .site-header {
    position: sticky;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .hero-media {
    position: static;
  }

  .hero-title {
    font-size: var(--fs-3xl);
  }

  .hero-image-wrapper {
    max-height: 380px;
  }

  .grid-two {
    grid-template-columns: 1fr;
  }

  .grid-three {
    grid-template-columns: 1fr 1fr;
  }

  .grid-four {
    grid-template-columns: 1fr 1fr;
  }

  .section-title {
    font-size: var(--fs-3xl);
  }

  .cta-title {
    font-size: var(--fs-3xl);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner-actions {
    width: 100%;
  }

  .section {
    padding: var(--sp-16) 0;
  }

  .policy-title {
    font-size: var(--fs-3xl);
  }

  .steps::before {
    display: none;
  }

  .disclaimer-box {
    flex-direction: column;
    padding: var(--sp-5);
  }
}

@media (max-width: 480px) {
  .logo{
    font-size: 0.9rem;
    padding-right: 5px;
  }
  .container {
    padding: 0 var(--sp-4);
  }

  .grid-three,
  .grid-four {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: var(--fs-2xl);
  }

  .section-title {
    font-size: var(--fs-2xl);
  }

  .cta-title {
    font-size: var(--fs-2xl);
  }

  .price-current {
    font-size: var(--fs-3xl);
  }

  .btn--lg {
    padding: var(--sp-3) var(--sp-6);
    font-size: var(--fs-base);
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
    justify-content: center;
  }

  .thankyou-box {
    padding: var(--sp-8) var(--sp-6);
  }
}
