:root {
  --color-tangerine-mist: #FFD1A3;
  --color-sunburst: #FFB763;
  --color-apricot-glow: #FFC18F;
  --color-amber-light: #FFAA6A;
  --color-coral-glow: #FF9966;
  --color-dark: #2C2C2C;
  --color-muted: #5A5A5A;
  --color-white: #FFFFFF;
  --color-light-bg: #FFFBF7;
  --font-display: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-mono: 'Consolas', 'Monaco', monospace;
  --shadow-soft: 0 4px 20px rgba(255, 183, 99, 0.08);
  --shadow-elevated: 0 8px 32px rgba(255, 183, 99, 0.12);
  --shadow-glow: 0 0 60px rgba(255, 183, 99, 0.15);
  --shadow-luxury: 0 20px 60px rgba(0, 0, 0, 0.08);
  --radius-card: 24px;
  --radius-button: 18px;
  --radius-input: 14px;
  --margin-section-desktop: 160px;
  --margin-section-mobile: 72px;
  --margin-card: 28px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-dark);
  background: var(--color-light-bg);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-coral-glow);
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}

a:hover {
  color: var(--color-sunburst);
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 251, 247, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  position: relative;
}

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--color-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 2px solid var(--color-dark);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.nav-toggle:hover {
  background: var(--color-sunburst);
  border-color: var(--color-sunburst);
}

.nav-toggle:hover .burger-line {
  background: var(--color-white);
}

.nav-toggle .burger-line,
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--color-dark);
  transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: block;
}

.nav-toggle .burger-line:nth-child(1) { margin-bottom: 6px; }
.nav-toggle .burger-line:nth-child(2) { margin-bottom: 6px; }
.nav-toggle .burger-line:nth-child(3) { margin-bottom: 0; }

.nav-toggle.active .burger-line:nth-child(1),
.nav-toggle.active span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle.active .burger-line:nth-child(2),
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .burger-line:nth-child(3),
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}

@media (max-width: 640px) {
  .nav-toggle {
    display: flex;
    z-index: 1002;
    position: relative;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(44, 44, 44, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
  }

  .nav-overlay.visible {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 88px 28px 40px;
    background: linear-gradient(180deg, var(--color-light-bg) 0%, var(--color-white) 100%);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1), box-shadow 0.4s ease;
    overflow-y: auto;
    list-style: none;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links li {
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.35s ease, transform 0.35s ease, background 0.2s ease;
    border-radius: var(--radius-input);
  }

  .nav-links.open li {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-links.open li:nth-child(1) { transition-delay: 0.05s; }
  .nav-links.open li:nth-child(2) { transition-delay: 0.1s; }
  .nav-links.open li:nth-child(3) { transition-delay: 0.15s; }
  .nav-links.open li:nth-child(4) { transition-delay: 0.2s; }
  .nav-links.open li:nth-child(5) { transition-delay: 0.25s; }
  .nav-links.open li:nth-child(6) { transition-delay: 0.3s; }

  .nav-links a {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-dark);
    border-radius: var(--radius-input);
    transition: color 0.2s ease, background 0.2s ease;
  }

  .nav-links a:hover,
  .nav-links a:focus {
    background: rgba(255, 183, 99, 0.15);
    color: var(--color-coral-glow);
  }

  .nav-links a::after {
    display: none;
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open header {
    z-index: 1000;
  }
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

@media (min-width: 641px) {
  .nav-toggle {
    display: none !important;
  }

  .nav-overlay {
    display: none !important;
  }

  .nav-links {
    display: flex !important;
    position: static;
    transform: none;
    flex-direction: row;
    width: auto;
    height: auto;
    padding: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .nav-links li {
    opacity: 1;
    transform: none;
  }
}

.nav-links a {
  color: var(--color-dark);
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-coral-glow);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}


main {
  overflow-x: hidden;
}

section {
  padding: var(--margin-section-desktop) 24px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  section {
    padding: var(--margin-section-mobile) 20px;
  }
}

.hero {
  position: relative;
  padding-top: 80px;
  padding-bottom: var(--margin-section-desktop);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: 90vh;
  overflow: hidden;
}

.hero-creative {
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: 0;
  padding-top: 60px;
}

.hero-creative .hero-inner {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 40px 56px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.hero-creative .hero-content {
  grid-column: 1;
  grid-row: 1;
}

.hero-creative .order-form {
  grid-column: 1;
  grid-row: 2;
}

.hero-creative .hero-visual {
  grid-column: 2;
  grid-row: 1 / -1;
  position: sticky;
  top: 120px;
  align-self: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  animation: morphBlob 12s ease-in-out infinite;
}

.hero-blob-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 183, 99, 0.35) 0%, transparent 70%);
  top: -10%;
  right: -5%;
  animation-delay: 0s;
}

.hero-blob-2 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 153, 102, 0.3) 0%, transparent 70%);
  bottom: -5%;
  left: -8%;
  animation-delay: -4s;
  animation-duration: 14s;
}

.hero-blob-3 {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 209, 163, 0.4) 0%, transparent 70%);
  top: 40%;
  left: 30%;
  animation-delay: -8s;
  animation-duration: 10s;
}

@keyframes morphBlob {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: translate(0, 0) scale(1); }
  25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; transform: translate(20px, -15px) scale(1.05); }
  50% { border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%; transform: translate(-10px, 20px) scale(0.95); }
  75% { border-radius: 60% 40% 60% 30% / 70% 30% 50% 60%; transform: translate(-15px, -10px) scale(1.02); }
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-particles .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--color-sunburst);
  border-radius: 50%;
  opacity: 0.4;
  animation: floatParticle 15s linear infinite;
}

.hero-particles .particle:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; animation-duration: 12s; }
.hero-particles .particle:nth-child(2) { top: 70%; left: 85%; animation-delay: -2s; animation-duration: 14s; }
.hero-particles .particle:nth-child(3) { top: 40%; left: 5%; animation-delay: -5s; animation-duration: 18s; }
.hero-particles .particle:nth-child(4) { top: 85%; left: 25%; animation-delay: -7s; animation-duration: 11s; }
.hero-particles .particle:nth-child(5) { top: 25%; left: 75%; animation-delay: -3s; animation-duration: 16s; }
.hero-particles .particle:nth-child(6) { top: 55%; left: 60%; animation-delay: -9s; animation-duration: 13s; }

@keyframes floatParticle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.4; }
  90% { opacity: 0.2; }
  100% { transform: translateY(-100vh) scale(1); opacity: 0; }
}

.hero-reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: heroReveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-content .hero-trust.hero-reveal { animation-delay: 0.1s; }
.hero-content .hero-title.hero-reveal { animation-delay: 0.25s; }
.hero-content .hero-desc.hero-reveal { animation-delay: 0.4s; }
.hero-content .hero-price.hero-reveal { animation-delay: 0.55s; }
.hero-content .highlight-item.hero-reveal:nth-child(1) { animation-delay: 0.7s; }
.hero-content .highlight-item.hero-reveal:nth-child(2) { animation-delay: 0.85s; }
.hero-content .highlight-item.hero-reveal:nth-child(3) { animation-delay: 1s; }
.hero-inner .hero-visual.hero-reveal { animation-delay: 0.5s; }
.hero-inner .order-form.hero-reveal { animation-delay: 1.15s; }

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title-line {
  display: block;
  overflow: hidden;
  line-height: 1.1;
}

.hero-title-gradient {
  background: linear-gradient(90deg, var(--color-coral-glow), var(--color-sunburst), var(--color-amber-light));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-orbits {
  position: absolute;
  inset: -40px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero-orbit {
  position: absolute;
  border: 1px dashed rgba(255, 153, 102, 0.35);
  border-radius: 50%;
  animation: orbitSpin 20s linear infinite;
}

.hero-orbit-outer {
  width: 100%;
  height: 100%;
  animation-direction: reverse;
  animation-duration: 25s;
}

.hero-orbit-inner {
  width: 70%;
  height: 70%;
  border-color: rgba(255, 183, 99, 0.25);
  animation-duration: 15s;
}

@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 320px;
}

.hero-product-wrapper {
  position: relative;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-product-wrapper:hover {
  transform: translateY(-20px) scale(1.05);
  animation-play-state: paused;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-14px) scale(1.02); }
}

.hero-product-img {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(255, 153, 102, 0.2));
}

.price-current {
  animation: pricePulse 3s ease-in-out infinite;
}

@keyframes pricePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.95; transform: scale(1.02); }
}

@media (max-width: 968px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 48px;
  }

  .hero-creative .hero-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 40px;
  }

  .hero-creative .hero-content {
    grid-column: 1;
    grid-row: 1;
    text-align: center;
  }

  .hero-creative .hero-visual {
    grid-column: 1;
    grid-row: 2;
    position: relative;
    top: 0;
    align-self: center;
  }

  .hero-creative .order-form {
    grid-column: 1;
    grid-row: 3;
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .hero-creative .hero-inner {
    padding: 0 16px;
  }

  .hero-orbits {
    inset: -20px;
  }
}

.hero-trust {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

@media (max-width: 968px) {
  .hero-trust {
    justify-content: center;
  }
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-rating .bi-star-fill {
  font-size: 1.125rem;
  color: var(--color-sunburst);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 183, 99, 0.2);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--color-dark);
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--color-muted);
  margin-bottom: 24px;
  max-width: 480px;
}

@media (max-width: 968px) {
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 28px;
}

.price-current {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-coral-glow);
}

.price-old {
  font-size: 1.125rem;
  color: var(--color-muted);
  text-decoration: line-through;
}

.hero-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
}

.highlight-item .bi-check-lg {
  font-size: 1.25rem;
  color: var(--color-coral-glow);
  flex-shrink: 0;
}

.order-form-disclaimer {
  font-size: 0.75rem;
  color: var(--color-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.order-form {
  background: var(--color-white);
  border: 1px solid rgba(255, 183, 99, 0.2);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-soft);
}

.form-group {
  position: relative;
  margin-bottom: 24px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-input);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, outline 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-sunburst);
  box-shadow: 0 0 0 3px rgba(255, 183, 99, 0.2);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.form-group label {
  position: absolute;
  left: 16px;
  top: 16px;
  font-size: 1rem;
  color: var(--color-muted);
  transition: all 0.3s ease;
  pointer-events: none;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group input:valid:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -10px;
  left: 12px;
  font-size: 0.75rem;
  color: var(--color-sunburst);
  background: var(--color-white);
  padding: 0 4px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: transparent;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.checkbox-group input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--color-sunburst);
}

.checkbox-group label {
  font-size: 0.875rem;
  color: var(--color-muted);
}

.checkbox-group label a {
  text-decoration: underline;
}

.checkbox-group.error label {
  color: var(--color-coral-glow);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-button);
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.btn-primary {
  background: var(--color-sunburst);
  color: var(--color-dark);
  width: 100%;
}

.btn-primary:hover {
  transform: scale(1.03);
  filter: brightness(1.05);
}

.btn-secondary {
  background: var(--color-apricot-glow);
  color: var(--color-dark);
}

.btn-secondary:hover {
  transform: scale(1.03);
  filter: brightness(1.05);
}

.form-error {
  font-size: 0.8125rem;
  color: var(--color-coral-glow);
  margin-top: 6px;
}

.form-group.error input,
.form-group.error textarea {
  border-color: var(--color-coral-glow);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 48px;
}

.stats-section {
  background: linear-gradient(135deg, rgba(255, 183, 99, 0.12) 0%, rgba(255, 209, 163, 0.2) 50%, rgba(255, 170, 106, 0.1) 100%);
  border-radius: var(--radius-card);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--margin-card);
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 320px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.stat-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.stat-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-elevated);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-coral-glow);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 0.9375rem;
  color: var(--color-muted);
  font-weight: 500;
}

.social-proof {
  background: linear-gradient(180deg, rgba(255, 209, 163, 0.3) 0%, transparent 100%);
}

.social-proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--margin-card);
}

@media (max-width: 768px) {
  .social-proof-grid {
    grid-template-columns: 1fr;
  }
}

.review-card {
  background: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}

.review-stars .bi-star-fill {
  font-size: 1rem;
  color: var(--color-sunburst);
}

.review-text {
  font-size: 0.9375rem;
  color: var(--color-muted);
  font-style: italic;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: var(--margin-card);
}

@media (max-width: 968px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
}

.bento-card {
  background: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-card);
  padding: 32px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 183, 99, 0.3);
}

.bento-card-large {
  grid-column: span 2;
}

@media (max-width: 968px) {
  .bento-card-large {
    grid-column: span 1;
  }
}

.bento-card-icon {
  font-size: 2.5rem;
  color: var(--color-coral-glow);
  margin-bottom: 16px;
  display: block;
}

.bento-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.bento-card p {
  font-size: 0.9375rem;
  color: var(--color-muted);
}

.product-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 968px) {
  .product-overview {
    grid-template-columns: 1fr;
  }
}

.overview-text h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.overview-text p {
  color: var(--color-muted);
  margin-bottom: 16px;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--margin-card);
}

.spec-card {
  background: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-card);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.spec-card:hover {
  border-color: rgba(255, 183, 99, 0.3);
}

.spec-icon {
  font-size: 2rem;
  color: var(--color-coral-glow);
  flex-shrink: 0;
}

.spec-label {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--color-muted);
  margin-bottom: 4px;
}

.spec-value {
  font-weight: 600;
  font-size: 1rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

.step-item {
  text-align: center;
}

.step-number {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: var(--color-apricot-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
}

.step-item h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.step-item p {
  font-size: 0.875rem;
  color: var(--color-muted);
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--margin-card);
}

.ingredient-card {
  background: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-card);
  padding: 24px;
  text-align: center;
  transition: transform 0.3s ease;
}

.ingredient-card:hover {
  transform: translateY(-4px);
}

.ingredient-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.ingredient-card p {
  font-size: 0.8125rem;
  color: var(--color-muted);
}

.instructions-list {
  max-width: 600px;
  margin: 0 auto;
}

.instruction-step {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.instruction-num {
  width: 40px;
  height: 40px;
  background: var(--color-amber-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-question {
  width: 100%;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--color-coral-glow);
}

.faq-icon {
  font-size: 1.25rem;
  color: inherit;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding-bottom: 24px;
  color: var(--color-muted);
  font-size: 0.9375rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--color-apricot-glow) 0%, var(--color-sunburst) 100%);
  text-align: center;
  border-radius: var(--radius-card);
  padding: 64px 32px;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-section p {
  margin-bottom: 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.disclaimer {
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-card);
  padding: 32px;
  text-align: center;
}

.disclaimer p {
  font-size: 0.875rem;
  color: var(--color-muted);
}

footer {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 48px 24px 24px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-address {
  font-style: normal;
  margin-bottom: 20px;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
}

.footer-address a {
  color: var(--color-tangerine-mist);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 24px;
}

.footer-links a {
  color: var(--color-tangerine-mist);
}

.footer-links a:hover {
  color: var(--color-sunburst);
}

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-banner p {
  margin-bottom: 20px;
  font-size: 0.9375rem;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-settings-panel {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: none;
}

.cookie-settings-panel.visible {
  display: block;
}

.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category .label {
  font-weight: 500;
}

.cookie-category .desc {
  font-size: 0.8125rem;
  color: var(--color-muted);
  margin-top: 4px;
}

.page-header {
  padding: 120px 24px 64px;
  text-align: center;
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.page-header p {
  color: var(--color-muted);
  max-width: 640px;
  margin: 0 auto;
}

.policy-content {
  max-width: 720px;
  margin: 0 auto 80px;
  padding: 0 24px;
}

.policy-content h2 {
  font-size: 1.5rem;
  margin: 40px 0 16px;
}

.policy-content p,
.policy-content li {
  margin-bottom: 12px;
  color: var(--color-muted);
}

.policy-content ul {
  margin-left: 24px;
}

.thank-you-content {
  text-align: center;
  padding: 120px 24px;
}

.thank-you-content h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.thank-you-content p {
  color: var(--color-muted);
  margin-bottom: 32px;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.toggle-switch {
  width: 48px;
  height: 26px;
  background: var(--color-muted);
  border-radius: 100px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: var(--color-sunburst);
}

.toggle-switch::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  background: var(--color-white);
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-switch.active::after {
  transform: translateX(22px);
}

.toggle-switch.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 380px) {
  .nav-links {
    width: 100%;
    padding: 80px 20px 32px;
  }
}

@media (max-width: 320px) {
  .hero-blob-1 {
    width: 260px;
    height: 260px;
  }

  .hero-blob-2 {
    width: 200px;
    height: 200px;
  }

  .hero-blob-3 {
    width: 140px;
    height: 140px;
  }

  .hero-orbits {
    inset: -10px;
  }

  .hero-product-img {
    max-width: 160px;
  }

  nav {
    padding: 14px 12px;
  }

  .brand {
    font-size: 1rem;
  }

  .nav-toggle {
    width: 38px;
    height: 38px;
  }

  .nav-toggle .burger-line,
  .nav-toggle span {
    width: 18px;
  }

  .nav-links {
    padding: 16px 12px;
    gap: 12px;
  }

  section {
    padding: 48px 12px;
  }

  .hero {
    padding-top: 32px;
    padding-bottom: 48px;
    min-height: auto;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-desc {
    font-size: 0.9375rem;
  }

  .price-current {
    font-size: 1.5rem;
  }

  .order-form {
    padding: 20px 16px;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 0.9375rem;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 28px;
  }

  .social-proof-grid {
    gap: 16px;
  }

  .review-card {
    padding: 20px 16px;
  }

  .stat-item {
    padding: 24px 16px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .bento-card {
    padding: 24px 20px;
  }

  .bento-card h3 {
    font-size: 1.125rem;
  }

  .specs-grid {
    gap: 16px;
  }

  .spec-card {
    padding: 20px 16px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .steps-grid {
    gap: 24px;
  }

  .step-number {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }

  .ingredient-card {
    padding: 20px 16px;
  }

  .instruction-step {
    gap: 16px;
    margin-bottom: 20px;
  }

  .instruction-num {
    width: 36px;
    height: 36px;
  }

  .faq-question {
    padding: 18px 0;
    font-size: 0.9375rem;
  }

  .cta-section {
    padding: 40px 16px;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }

  .cta-section p {
    font-size: 0.9375rem;
  }

  .disclaimer {
    padding: 20px 16px;
  }

  .disclaimer p {
    font-size: 0.8125rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }

  .cookie-banner {
    padding: 16px 12px;
  }

  .cookie-buttons {
    gap: 8px;
  }

  .cookie-buttons .btn {
    padding: 12px 20px;
    font-size: 0.875rem;
  }
}

.policy-page {
  background: linear-gradient(180deg, var(--color-light-bg) 0%, rgba(255, 209, 163, 0.15) 30%, var(--color-light-bg) 100%);
}

.policy-hero {
  position: relative;
  padding: 140px 24px 80px;
  text-align: center;
  overflow: hidden;
}

.policy-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 183, 99, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.policy-hero-content {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.policy-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--color-dark);
}

.policy-date {
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  color: var(--color-sunburst);
  margin-bottom: 20px;
  font-weight: 500;
}

.policy-intro {
  font-size: 1.125rem;
  color: var(--color-muted);
  line-height: 1.7;
}

.policy-content-luxury {
  max-width: 820px;
  margin: 0 auto 100px;
  padding: 0 24px;
}

.policy-block {
  background: var(--color-white);
  border: 1px solid rgba(255, 183, 99, 0.15);
  border-radius: var(--radius-card);
  padding: 40px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.4s ease, transform 0.4s ease, border-color 0.4s ease;
}

.policy-block:hover {
  box-shadow: var(--shadow-luxury);
  border-color: rgba(255, 183, 99, 0.25);
}

.policy-block h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-dark);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-tangerine-mist);
}

.policy-block h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 24px 0 12px;
  color: var(--color-dark);
}

.policy-block ol {
  margin: 16px 0 16px 24px;
}

.policy-block ol li {
  margin-bottom: 10px;
}

.policy-block p {
  margin-bottom: 16px;
  color: var(--color-muted);
  line-height: 1.75;
}

.policy-block ul {
  margin: 16px 0 16px 24px;
}

.policy-block li {
  margin-bottom: 12px;
  color: var(--color-muted);
  line-height: 1.7;
}

.contact-card {
  background: linear-gradient(135deg, rgba(255, 209, 163, 0.2) 0%, rgba(255, 183, 99, 0.1) 100%);
  border-radius: var(--radius-input);
  padding: 24px;
  margin: 20px 0;
  border: 1px solid rgba(255, 183, 99, 0.2);
}

.contact-card p {
  margin-bottom: 8px;
}

.contact-card p:last-child {
  margin-bottom: 0;
}

.thank-you-hero {
  position: relative;
  padding: 140px 24px 100px;
  text-align: center;
  overflow: hidden;
}

.thank-you-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 183, 99, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.thank-you-content {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}

.thank-you-icon {
  color: var(--color-sunburst);
  margin-bottom: 24px;
  animation: scaleIn 0.6s ease-out;
}

.thank-you-icon .bi-check-circle-fill {
  font-size: 5rem;
}

@keyframes scaleIn {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

.thank-you-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.thank-you-date {
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  color: var(--color-sunburst);
  margin-bottom: 20px;
}

.thank-you-content .btn {
  margin-top: 24px;
  max-width: 280px;
}

@media (max-width: 320px) {
  .policy-hero {
    padding: 100px 16px 56px;
  }

  .policy-content-luxury {
    padding: 0 16px;
    margin-bottom: 60px;
  }

  .policy-block {
    padding: 24px 20px;
  }

  .policy-block h2 {
    font-size: 1.25rem;
  }
}
