:root {
  --clr-primary: rgb(31, 31, 32);
  --clr-secondary: rgb(235, 221, 38);
  --clr-bg: #F9FAFB;
  --clr-text: #111827;
  --clr-muted: #6B7280;
  --clr-accent: rgb(39, 130, 214);
  --clr-white: #ffffff;
  --clr-surface: #f0ead8;
  --clr-border: rgba(17, 24, 39, 0.1);
  --clr-success: #16a34a;
  --clr-error: #dc2626;

  --ff-display: 'Lora', Georgia, serif;
  --ff-body: 'DM Sans', system-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: clamp(1.6rem, 3vw, 2rem);
  --fs-4xl: clamp(1.9rem, 4vw, 2.6rem);
  --fs-5xl: clamp(2.2rem, 5.5vw, 3.4rem);

  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  --lh-tight: 1.15;
  --lh-snug: 1.35;
  --lh-base: 1.65;
  --lh-relaxed: 1.85;

  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.09);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.11);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);

  --radius-xs: 3px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 36px;
  --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;

  --container-max: 1200px;
  --container-px: clamp(1.25rem, 5vw, 2.5rem);

  --tr-fast: 150ms ease;
  --tr-base: 250ms ease;
  --tr-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  color: var(--clr-text);
  background-color: var(--clr-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--clr-accent);
  text-decoration: none;
  transition: color var(--tr-fast);
}

a:hover {
  color: var(--clr-primary);
}

ul,
ol {
  list-style: none;
}

button,
input,
textarea,
select {
  font-family: var(--ff-body);
}

.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

.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;
}

.section {
  padding-block: var(--sp-20);
}

.section-sm {
  padding-block: var(--sp-12);
}

.bg-surface {
  background-color: var(--clr-surface);
}

.bg-primary {
  background-color: var(--clr-primary);
}

.bg-white {
  background-color: var(--clr-white);
}

.section-header {
  margin-bottom: var(--sp-12);
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-lead {
  margin-inline: auto;
}

.section-eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--clr-accent);
  margin-bottom: var(--sp-3);
}

.section-title {
  font-family: var(--ff-display);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-tight);
  color: var(--clr-text);
  margin-bottom: var(--sp-4);
}

.section-title.light {
  color: var(--clr-white);
}

.section-lead {
  font-size: var(--fs-lg);
  color: var(--clr-muted);
  line-height: var(--lh-relaxed);
  max-width: 600px;
}

.section-lead.light {
  color: rgba(255, 255, 255, 0.72);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-7);
  border-radius: var(--radius-sm);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--tr-base);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--clr-accent);
  color: var(--clr-white);
  border-color: var(--clr-accent);
}

.btn-primary:hover {
  background-color: var(--clr-primary);
  border-color: var(--clr-primary);
  color: var(--clr-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--clr-text);
  border-color: var(--clr-border);
}

.btn-outline:hover {
  background-color: var(--clr-primary);
  border-color: var(--clr-primary);
  color: var(--clr-white);
  transform: translateY(-2px);
}

.btn-yellow {
  background-color: var(--clr-secondary);
  color: var(--clr-primary);
  border-color: var(--clr-secondary);
}

.btn-yellow:hover {
  background-color: var(--clr-white);
  border-color: var(--clr-white);
  color: var(--clr-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-lg {
  padding: var(--sp-4) var(--sp-10);
  font-size: var(--fs-lg);
  border-radius: var(--radius-md);
}

.btn-full {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(249, 250, 251, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--clr-border);
  box-shadow: var(--shadow-xs);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.site-logo {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--clr-primary);
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: color var(--tr-fast);
  flex-shrink: 0;
}

.site-logo:hover {
  color: var(--clr-accent);
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

.nav-list a {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-text);
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: all var(--tr-fast);
  text-decoration: none;
}

.nav-list a:hover {
  color: var(--clr-accent);
  border-bottom-color: var(--clr-accent);
}

.nav-list .nav-btn {
  background-color: var(--clr-accent);
  color: var(--clr-white);
  padding: var(--sp-2) var(--sp-5);
  border-radius: var(--radius-sm);
  border-bottom: none;
}

.nav-list .nav-btn:hover {
  background-color: var(--clr-primary);
  color: var(--clr-white);
  border-bottom-color: transparent;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-2);
  color: var(--clr-text);
  font-size: 1.4rem;
  line-height: 1;
  transition: color var(--tr-fast);
}

.hamburger:hover {
  color: var(--clr-accent);
}

.hero {
  padding-block: var(--sp-16) var(--sp-20);
  background-color: var(--clr-bg);
  background-image: radial-gradient(ellipse at 10% 60%, rgba(235, 221, 38, 0.05) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 10%, rgba(39, 130, 214, 0.04) 0%, transparent 55%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--sp-16);
  align-items: start;
}

.hero-visual {
  position: relative;
}

.hero-img-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background-color: var(--clr-surface);
  aspect-ratio: 4 / 5;
}

.hero-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--tr-slow);
}

.hero-img-container:hover img {
  transform: scale(1.03);
}

.trust-badge {
  position: absolute;
  bottom: var(--sp-5);
  left: var(--sp-5);
  background-color: var(--clr-secondary);
  color: var(--clr-primary);
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  box-shadow: var(--shadow-md);
}

.hero-content {
  padding-top: var(--sp-6);
}

.hero-title {
  font-family: var(--ff-display);
  font-size: var(--fs-5xl);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  color: var(--clr-text);
  margin-bottom: var(--sp-5);
}

.hero-desc {
  font-size: var(--fs-lg);
  color: var(--clr-muted);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-8);
}

.price-row {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
  flex-wrap: wrap;
}

.price-now {
  font-family: var(--ff-display);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  line-height: 1;
}

.price-was {
  font-size: var(--fs-2xl);
  color: var(--clr-muted);
  text-decoration: line-through;
  line-height: 1;
}

.price-badge {
  background-color: var(--clr-secondary);
  color: var(--clr-primary);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.form-label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-text);
}

.form-label .req {
  color: var(--clr-error);
  margin-left: 2px;
}

.form-input {
  width: 100%;
  padding: 0.7rem var(--sp-4);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-sm);
  font-size: var(--fs-base);
  color: var(--clr-text);
  background-color: var(--clr-white);
  outline: none;
  transition: border-color var(--tr-fast), box-shadow var(--tr-fast);
}

.form-input::placeholder {
  color: var(--clr-muted);
}

.form-input:focus {
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 3px rgba(39, 130, 214, 0.15);
}

.form-input.is-error {
  border-color: var(--clr-error);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-input.is-valid {
  border-color: var(--clr-success);
}

textarea.form-input {
  resize: vertical;
  min-height: 90px;
}

.field-error {
  font-size: var(--fs-xs);
  color: var(--clr-error);
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height var(--tr-base), opacity var(--tr-fast);
}

.field-error.show {
  max-height: 40px;
  opacity: 1;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
}

.form-check-input {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 1px;
  cursor: pointer;
  accent-color: var(--clr-accent);
}

.form-check-label {
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  line-height: 1.6;
  cursor: pointer;
}

.form-check-label a {
  color: var(--clr-accent);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.benefit-card {
  background-color: var(--clr-white);
  border-radius: var(--radius-md);
  padding: var(--sp-8);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-xs);
  transition: transform var(--tr-base), box-shadow var(--tr-base);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(39, 130, 214, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  color: var(--clr-accent);
  font-size: var(--fs-xl);
  transition: background-color var(--tr-base), color var(--tr-base);
}

.benefit-card:hover .benefit-icon {
  background-color: var(--clr-accent);
  color: var(--clr-white);
}

.benefit-name {
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
  margin-bottom: var(--sp-3);
}

.benefit-desc {
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  line-height: var(--lh-relaxed);
}

.chars-block {
  background-color: var(--clr-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.chars-row {
  display: grid;
  grid-template-columns: 44% 1fr;
  border-bottom: 1px solid var(--clr-border);
}

.chars-row:last-child {
  border-bottom: none;
}

.chars-label {
  padding: var(--sp-4) var(--sp-5);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-muted);
  background-color: var(--clr-surface);
  border-right: 1px solid var(--clr-border);
}

.chars-value {
  padding: var(--sp-4) var(--sp-5);
  font-size: var(--fs-sm);
  color: var(--clr-text);
}

.media-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background-color: var(--clr-surface);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-frame.portrait {
  aspect-ratio: 4 / 5;
}

.media-frame.square {
  aspect-ratio: 1 / 1;
}

.ingredients-stack {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.ingredient-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  background-color: var(--clr-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
  transition: box-shadow var(--tr-fast);
}

.ingredient-row:hover {
  box-shadow: var(--shadow-sm);
}

.ingredient-left {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.ingredient-num {
  width: 34px;
  height: 34px;
  min-width: 34px;
  background-color: var(--clr-secondary);
  color: var(--clr-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
}

.ingredient-name {
  font-weight: var(--fw-medium);
  font-size: var(--fs-sm);
  color: var(--clr-text);
}

.ingredient-amount {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-muted);
  white-space: nowrap;
}

.ingredient-note {
  margin-top: var(--sp-5);
  padding: var(--sp-4) var(--sp-5);
  background-color: var(--clr-surface);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  line-height: var(--lh-relaxed);
}

.steps-stack {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}

.step-row {
  display: flex;
  gap: var(--sp-5);
  align-items: flex-start;
}

.step-num {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background-color: var(--clr-primary);
  color: var(--clr-secondary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
}

.step-body h3 {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
  margin-bottom: var(--sp-2);
}

.step-body p {
  font-size: var(--fs-base);
  color: var(--clr-muted);
  line-height: var(--lh-relaxed);
}

.usage-note {
  margin-top: var(--sp-8);
  padding: var(--sp-4) var(--sp-5);
  border-left: 4px solid var(--clr-secondary);
  background-color: rgba(235, 221, 38, 0.08);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.usage-note p {
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  line-height: var(--lh-relaxed);
}

.faq-stack {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.faq-item {
  background-color: var(--clr-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
  overflow: hidden;
  transition: box-shadow var(--tr-base);
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: var(--sp-5) var(--sp-6);
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  cursor: pointer;
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  color: var(--clr-text);
  transition: background-color var(--tr-fast);
}

.faq-btn:hover {
  background-color: var(--clr-bg);
}

.faq-btn i {
  color: var(--clr-accent);
  flex-shrink: 0;
  transition: transform var(--tr-base);
}

.faq-item.active .faq-btn i {
  transform: rotate(180deg);
}

.faq-panel {
  display: none;
  padding: 0 var(--sp-6) var(--sp-6);
  font-size: var(--fs-base);
  color: var(--clr-muted);
  line-height: var(--lh-relaxed);
}

.faq-item.active .faq-panel {
  display: block;
}

.detail-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.detail-item {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}

.detail-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  background-color: var(--clr-secondary);
  border-radius: var(--radius-full);
  margin-top: 7px;
}

.detail-text {
  font-size: var(--fs-base);
  color: var(--clr-muted);
  line-height: var(--lh-relaxed);
}

.cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-8);
  padding-block: var(--sp-20);
}

.cta-btns {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  justify-content: center;
}

.legal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
}

.legal-card {
  background-color: var(--clr-white);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  border: 1px solid var(--clr-border);
}

.legal-card h3 {
  font-family: var(--ff-display);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
  margin-bottom: var(--sp-3);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.legal-card h3 i {
  color: var(--clr-accent);
}

.legal-card p {
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  line-height: var(--lh-relaxed);
}

.disclaimer-block {
  margin-top: var(--sp-8);
  padding: var(--sp-5) var(--sp-6);
  background-color: rgba(235, 221, 38, 0.1);
  border-left: 4px solid var(--clr-secondary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.disclaimer-block p {
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  line-height: var(--lh-relaxed);
}

.site-footer {
  background-color: var(--clr-primary);
  color: rgba(255, 255, 255, 0.75);
  padding-block: var(--sp-16);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--sp-12);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: block;
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--clr-white);
  text-decoration: none;
  margin-bottom: var(--sp-4);
  transition: color var(--tr-fast);
}

.footer-brand:hover {
  color: var(--clr-secondary);
}

.footer-tagline {
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-6);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.65);
}

.footer-contact-list li i {
  color: var(--clr-secondary);
  font-size: var(--fs-base);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--tr-fast);
}

.footer-contact-list a:hover {
  color: var(--clr-secondary);
}

.footer-col-heading {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-secondary);
  margin-bottom: var(--sp-5);
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-nav-list a {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--tr-fast);
}

.footer-nav-list a:hover {
  color: var(--clr-white);
}

.footer-bottom {
  padding-top: var(--sp-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.footer-copy {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.45);
}

.footer-legal-links {
  display: flex;
  gap: var(--sp-5);
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--tr-fast);
}

.footer-legal-links a:hover {
  color: var(--clr-white);
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background-color: var(--clr-white);
  box-shadow: 0 -4px 28px rgba(0, 0, 0, 0.12);
  border-top: 1px solid var(--clr-border);
}

.cookie-banner.visible {
  display: block;
}

.cookie-banner-inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding: var(--sp-6) var(--container-px);
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  flex-wrap: wrap;
}

.cookie-text-block {
  flex: 1;
  min-width: 240px;
}

.cookie-text-block p {
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  line-height: var(--lh-base);
}

.cookie-text-block p a {
  color: var(--clr-accent);
}

.cookie-btns {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
  flex-shrink: 0;
}

.btn-c-accept {
  background-color: var(--clr-accent);
  color: var(--clr-white);
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  border: none;
  cursor: pointer;
  transition: background-color var(--tr-fast), transform var(--tr-fast);
}

.btn-c-accept:hover {
  background-color: var(--clr-primary);
  transform: translateY(-1px);
}

.btn-c-decline {
  background-color: transparent;
  color: var(--clr-muted);
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  border: 1.5px solid var(--clr-border);
  cursor: pointer;
  transition: all var(--tr-fast);
}

.btn-c-decline:hover {
  border-color: var(--clr-text);
  color: var(--clr-text);
}

.btn-c-settings {
  background: none;
  border: none;
  color: var(--clr-accent);
  font-size: var(--fs-sm);
  cursor: pointer;
  text-decoration: underline;
  padding: var(--sp-2);
  transition: color var(--tr-fast);
}

.btn-c-settings:hover {
  color: var(--clr-primary);
}

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 600;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  padding: var(--sp-4);
}

.modal-overlay.open {
  display: flex;
}

.modal-box {
  background-color: var(--clr-white);
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}

.modal-head {
  padding: var(--sp-6) var(--sp-8);
  border-bottom: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-head h2 {
  font-family: var(--ff-display);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
}

.modal-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--clr-muted);
  font-size: var(--fs-xl);
  padding: var(--sp-2);
  line-height: 1;
  transition: color var(--tr-fast);
  border-radius: var(--radius-sm);
}

.modal-close-btn:hover {
  color: var(--clr-text);
}

.modal-body {
  padding: var(--sp-6) var(--sp-8);
}

.cookie-group {
  padding-block: var(--sp-5);
  border-bottom: 1px solid var(--clr-border);
}

.cookie-group:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cookie-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-2);
}

.cookie-group-name {
  font-weight: var(--fw-semibold);
  font-size: var(--fs-base);
  color: var(--clr-text);
}

.cookie-group-desc {
  font-size: var(--fs-sm);
  color: var(--clr-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-track {
  position: absolute;
  inset: 0;
  background-color: #d1d5db;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background-color var(--tr-base);
}

.toggle-track::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background-color: var(--clr-white);
  border-radius: var(--radius-full);
  top: 3px;
  left: 3px;
  transition: transform var(--tr-base);
  box-shadow: var(--shadow-xs);
}

.toggle-switch input:checked + .toggle-track {
  background-color: var(--clr-accent);
}

.toggle-switch input:checked + .toggle-track::after {
  transform: translateX(20px);
}

.toggle-switch input:disabled + .toggle-track {
  background-color: var(--clr-accent);
  opacity: 0.8;
  cursor: not-allowed;
}

.toggle-switch input:disabled + .toggle-track::after {
  transform: translateX(20px);
}

.modal-foot {
  padding: var(--sp-5) var(--sp-8);
  border-top: 1px solid var(--clr-border);
  display: flex;
  gap: var(--sp-3);
  justify-content: flex-end;
}

.page-hero {
  background-color: var(--clr-primary);
  color: var(--clr-white);
  padding-block: var(--sp-16);
}

.page-hero .section-title {
  color: var(--clr-white);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--fs-lg);
  margin-top: var(--sp-4);
}

.policy-body {
  padding-block: var(--sp-16);
}

.policy-body h2 {
  font-family: var(--ff-display);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
  margin: var(--sp-10) 0 var(--sp-5);
  padding-top: var(--sp-2);
  border-top: 2px solid var(--clr-secondary);
}

.policy-body h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.policy-body h3 {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
  margin: var(--sp-6) 0 var(--sp-3);
}

.policy-body p {
  font-size: var(--fs-base);
  color: var(--clr-muted);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-4);
}

.policy-body ul {
  list-style: disc;
  padding-left: var(--sp-6);
  margin-bottom: var(--sp-4);
}

.policy-body ol {
  list-style: decimal;
  padding-left: var(--sp-6);
  margin-bottom: var(--sp-4);
}

.policy-body li {
  font-size: var(--fs-base);
  color: var(--clr-muted);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-2);
}

.policy-body a {
  color: var(--clr-accent);
}

.policy-body strong {
  color: var(--clr-text);
  font-weight: var(--fw-semibold);
}

.policy-body .info-box {
  background-color: var(--clr-surface);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  margin-bottom: var(--sp-6);
}

.policy-body .info-box p {
  margin-bottom: 0;
}

.ty-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-block: var(--sp-20);
}

.ty-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(22, 163, 74, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: var(--sp-6);
  color: #16a34a;
  font-size: 2.5rem;
}

.ty-title {
  font-family: var(--ff-display);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  margin-bottom: var(--sp-4);
}

.ty-text {
  font-size: var(--fs-lg);
  color: var(--clr-muted);
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: var(--sp-8);
  line-height: var(--lh-relaxed);
}

.not-found {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-block: var(--sp-20);
}

.not-found-code {
  font-family: var(--ff-display);
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: var(--fw-bold);
  color: var(--clr-secondary);
  line-height: 1;
  margin-bottom: var(--sp-4);
}

@media (max-width: 860px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 830px) {
  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--clr-white);
    border-top: 1px solid var(--clr-border);
    box-shadow: var(--shadow-lg);
    padding: var(--sp-4) var(--container-px) var(--sp-6);
    display: none;
    z-index: 99;
  }

  .main-nav.open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .nav-list li {
    width: 100%;
    border-bottom: 1px solid var(--clr-border);
  }

  .nav-list li:last-child {
    border-bottom: none;
    margin-top: var(--sp-3);
  }

  .nav-list a {
    display: block;
    padding: var(--sp-4) 0;
    font-size: var(--fs-base);
    border-bottom: none;
  }

  .nav-list .nav-btn {
    display: inline-block;
    padding: var(--sp-3) var(--sp-6);
    width: auto;
  }
}

@media (max-width: 640px) {
  .legal-grid{
    display: flex !important;flex-direction: column;
  }
  .section {
    padding-block: var(--sp-12);
  }

  .section-header {
    margin-bottom: var(--sp-8);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .legal-grid {
    grid-template-columns: 1fr;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    gap: var(--sp-5);
  }

  .cookie-btns {
    justify-content: flex-start;
  }

  .modal-head,
  .modal-body,
  .modal-foot {
    padding-inline: var(--sp-5);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
  }
}
