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

:root {
  --white: #FFFFFF;
  --off-white: #F9FAF8;
  --eucalyptus-50: #EEF5F0;
  --eucalyptus-100: #D4E8DA;
  --eucalyptus-200: #A8D1B5;
  --eucalyptus-300: #7CBA90;
  --eucalyptus-400: #5AA872;
  --eucalyptus-500: #3D8B5A;
  --eucalyptus-600: #2E6E46;
  --eucalyptus-700: #1F5133;
  --terracotta-50: #FDF2EE;
  --terracotta-100: #F9DDD2;
  --terracotta-200: #F0B89E;
  --terracotta-300: #E8936A;
  --terracotta-400: #D97A4F;
  --terracotta-500: #C4602F;
  --terracotta-600: #A74E25;
  --terracotta-700: #7A3A1B;
  --gray-100: #F4F4F5;
  --gray-200: #E4E4E7;
  --gray-300: #D4D4D8;
  --gray-400: #A1A1AA;
  --gray-500: #71717A;
  --gray-600: #52525B;
  --gray-700: #3F3F46;
  --gray-800: #27272A;
  --gray-900: #18181B;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--gray-800);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.2;
  color: var(--gray-900);
}

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

a {
  color: var(--eucalyptus-500);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--eucalyptus-700);
}

/* ═══════════════ COOKIE MODAL ═══════════════ */
.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.cookie-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 28px 24px;
  z-index: 9999;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.15);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.cookie-modal.active {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.cookie-inner h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--gray-900);
}

.cookie-inner p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 20px;
  line-height: 1.5;
}

.cookie-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.cookie-btns .btn-accept {
  background: var(--eucalyptus-500);
  color: var(--white);
  border: none;
  padding: 12px 32px;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.cookie-btns .btn-accept:hover {
  background: var(--eucalyptus-600);
  transform: translateY(-1px);
}

.cookie-btns .btn-decline {
  background: transparent;
  color: var(--gray-500);
  border: 1.5px solid var(--gray-300);
  padding: 12px 32px;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.cookie-btns .btn-decline:hover {
  border-color: var(--gray-500);
  color: var(--gray-700);
}

/* ═══════════════ NAVBAR ═══════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 0 24px;
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--eucalyptus-600);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--terracotta-400);
  border-radius: 50%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--eucalyptus-600);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--terracotta-400);
  border-radius: 2px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════ HERO ═══════════════ */
.hero {
  padding: 60px 24px 40px;
  background: linear-gradient(175deg, var(--eucalyptus-50) 0%, var(--white) 50%, var(--terracotta-50) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--eucalyptus-100) 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--terracotta-100) 0%, transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  animation: fadeSlideUp 0.8s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--eucalyptus-100);
  color: var(--eucalyptus-700);
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-badge svg {
  width: 14px;
  height: 14px;
}

.hero-text h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.hero-text h1 em {
  font-style: normal;
  color: var(--eucalyptus-500);
  position: relative;
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 460px;
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--terracotta-400);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(217, 122, 79, 0.3);
}

.hero-cta:hover {
  background: var(--terracotta-500);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(217, 122, 79, 0.4);
  color: var(--white);
}

.hero-image {
  display: flex;
  justify-content: center;
  animation: fadeSlideUp 0.8s ease-out 0.15s both;
}

.hero-image-wrap {
  position: relative;
  max-width: 400px;
  width: 100%;
}

.hero-image-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  width: 100%;
}

.hero-image-wrap .deco-circle {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  z-index: -1;
}

.hero-image-wrap .deco-circle.c1 {
  top: -20px;
  right: -20px;
  background: var(--terracotta-200);
  opacity: 0.5;
}

.hero-image-wrap .deco-circle.c2 {
  bottom: -16px;
  left: -16px;
  background: var(--eucalyptus-200);
  opacity: 0.6;
  width: 60px;
  height: 60px;
}

/* ═══════════════ QUIZ ═══════════════ */
.quiz-section {
  padding: 60px 24px;
  background: var(--white);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}

.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.section-header p {
  font-size: 1rem;
  color: var(--gray-500);
}

.quiz-container {
  max-width: 600px;
  margin: 0 auto;
}

.quiz-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}

.quiz-progress .step-dot {
  flex: 1;
  height: 5px;
  border-radius: 10px;
  background: var(--gray-200);
  transition: background 0.4s;
}

.quiz-progress .step-dot.active {
  background: var(--eucalyptus-400);
}

.quiz-progress .step-dot.done {
  background: var(--eucalyptus-500);
}

.quiz-card {
  background: var(--off-white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  display: none;
  animation: fadeIn 0.4s ease-out;
}

.quiz-card.active {
  display: block;
}

.quiz-step-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--terracotta-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.quiz-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--gray-800);
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-700);
}

.quiz-option:hover {
  border-color: var(--eucalyptus-300);
  background: var(--eucalyptus-50);
  transform: translateY(-1px);
}

.quiz-option.selected {
  border-color: var(--eucalyptus-500);
  background: var(--eucalyptus-50);
  color: var(--eucalyptus-700);
}

.quiz-option .opt-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--eucalyptus-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: background 0.2s;
}

.quiz-option.selected .opt-icon {
  background: var(--eucalyptus-500);
  color: var(--white);
}

/* ═══════════════ ORDER FORM ═══════════════ */
.order-section {
  padding: 60px 24px;
  background: linear-gradient(180deg, var(--white) 0%, var(--eucalyptus-50) 100%);
}

.order-card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  animation: fadeSlideUp 0.6s ease-out;
}

.order-card h2 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 8px;
}

.order-card .subtitle {
  text-align: center;
  color: var(--gray-500);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--gray-800);
  transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--off-white);
}

.form-group input:focus {
  outline: none;
  border-color: var(--eucalyptus-400);
  box-shadow: 0 0 0 3px rgba(90, 168, 114, 0.15);
  background: var(--white);
}

.form-group input::placeholder {
  color: var(--gray-400);
}

.disclaimer-box {
  background: var(--terracotta-50);
  border: 1px solid var(--terracotta-200);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin: 24px 0;
  font-size: 0.82rem;
  color: var(--terracotta-700);
  line-height: 1.5;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.disclaimer-box svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--terracotta-400);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(217, 122, 79, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-submit:hover {
  background: var(--terracotta-500);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(217, 122, 79, 0.4);
}

/* ═══════════════ FEATURES ═══════════════ */
.features-section {
  padding: 60px 24px;
  background: var(--white);
}

.features-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.feature-icon.eucalyptus {
  background: var(--eucalyptus-100);
  color: var(--eucalyptus-600);
}

.feature-icon.terracotta {
  background: var(--terracotta-100);
  color: var(--terracotta-600);
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ═══════════════ FOOTER ═══════════════ */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 48px 24px 28px;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--gray-400);
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

.footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  border-top: 1px solid var(--gray-700);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}

.footer-bottom a {
  color: var(--gray-400);
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ═══════════════ PAGE HERO (Subpages) ═══════════════ */
.page-hero {
  padding: 48px 24px;
  background: linear-gradient(175deg, var(--eucalyptus-50) 0%, var(--white) 100%);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--gray-500);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ═══════════════ CONTENT PAGES ═══════════════ */
.page-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 24px 72px;
}

.page-content h2 {
  font-size: 1.4rem;
  margin: 36px 0 14px;
  color: var(--gray-800);
}

.page-content h3 {
  font-size: 1.1rem;
  margin: 24px 0 10px;
}

.page-content p {
  margin-bottom: 14px;
  color: var(--gray-600);
  line-height: 1.7;
}

.page-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.page-content ul li {
  margin-bottom: 8px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ═══════════════ CONTACT PAGE ═══════════════ */
.contact-grid {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 24px 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info-card {
  background: var(--eucalyptus-50);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
}

.contact-info-card h3 {
  font-size: 1.15rem;
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-item-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--eucalyptus-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-item-text {
  font-size: 0.95rem;
}

.contact-item-text strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 2px;
}

.contact-item-text span,
.contact-item-text a {
  color: var(--gray-500);
  font-size: 0.9rem;
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
}

.contact-form-card h3 {
  font-size: 1.15rem;
  margin-bottom: 20px;
}

.contact-form-card textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--gray-800);
  background: var(--off-white);
  resize: vertical;
  min-height: 120px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form-card textarea:focus {
  outline: none;
  border-color: var(--eucalyptus-400);
  box-shadow: 0 0 0 3px rgba(90, 168, 114, 0.15);
  background: var(--white);
}

/* ═══════════════ PRODUCT PAGE ═══════════════ */
.product-detail {
  max-width: 1120px;
  margin: 0 auto;
  padding: 48px 24px 72px;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-gallery .main-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  background: var(--eucalyptus-50);
  padding: 20px;
}

.product-gallery .main-img img {
  width: 100%;
  border-radius: var(--radius-md);
}

.product-info h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.product-info .product-description {
  color: var(--gray-500);
  margin-bottom: 24px;
  line-height: 1.7;
}

.ingredients-list {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
}

.ingredients-list h3 {
  font-size: 1rem;
  margin-bottom: 14px;
  color: var(--gray-800);
}

.ingredient-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--eucalyptus-100);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--eucalyptus-700);
  margin: 0 6px 8px 0;
}

.usage-box {
  background: var(--terracotta-50);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
}

.usage-box h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--terracotta-700);
}

.usage-box p {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ═══════════════ SUCCESS PAGE ═══════════════ */
.success-wrap {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.success-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  text-align: center;
  max-width: 520px;
  box-shadow: var(--shadow-lg);
  animation: fadeSlideUp 0.6s ease-out;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--eucalyptus-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2.2rem;
}

.success-card h1 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.success-card p {
  color: var(--gray-500);
  margin-bottom: 28px;
  line-height: 1.7;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--eucalyptus-500);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.15s;
}

.btn-back:hover {
  background: var(--eucalyptus-600);
  transform: translateY(-2px);
  color: var(--white);
}

/* ═══════════════ ANIMATIONS ═══════════════ */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-image-wrap {
    max-width: 280px;
    margin: 0 auto;
  }

  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 99;
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .hamburger {
    display: flex;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

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

  .order-card {
    padding: 28px 20px;
  }

  .quiz-card {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 15px;
  }

  .hero {
    padding: 40px 16px 28px;
  }

  .quiz-section,
  .order-section,
  .features-section {
    padding: 40px 16px;
  }
}
