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

:root {
  --emerald-50: #ecfdf5;
  --emerald-100: #d1fae5;
  --emerald-400: #34d399;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  --emerald-700: #047857;
  --teal-50: #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --cyan-50: #ecfeff;
  --cyan-400: #22d3ee;
  --cyan-500: #06b6d4;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --rose-400: #fb7185;
  --rose-500: #f43f5e;
  --pink-500: #ec4899;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --orange-400: #fb923c;
  --orange-500: #f97316;
  --blue-400: #60a5fa;
  --red-50: #fef2f2;
  --red-200: #fecaca;
  --red-800: #991b1b;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--gray-900);
  background: white;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero {
  min-height: 100vh;
  background: linear-gradient(to bottom right, var(--emerald-50), var(--teal-50), var(--cyan-50));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  width: 18rem;
  height: 18rem;
  background: linear-gradient(to bottom right, rgba(52, 211, 153, 0.3), rgba(45, 212, 191, 0.3));
  border-radius: 50%;
  filter: blur(60px);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 5rem;
  left: 2.5rem;
  width: 24rem;
  height: 24rem;
  background: linear-gradient(to top right, rgba(34, 211, 238, 0.2), rgba(52, 211, 153, 0.2));
  border-radius: 50%;
  filter: blur(60px);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--emerald-100);
  margin-bottom: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--emerald-700);
}

.hero h1 {
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.gradient-text {
  display: block;
  font-size: clamp(2.5rem, 8vw, 5rem);
  margin-top: 0.5rem;
  background: linear-gradient(to right, var(--emerald-600), var(--teal-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: var(--gray-700);
  margin-bottom: 1rem;
}

.hero-tagline {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  color: var(--emerald-700);
  margin-bottom: 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(to right, var(--emerald-600), var(--teal-600));
  color: white;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: scale(1.05);
}

.section {
  padding: 6rem 0;
}

.section-white {
  background: white;
}

.section-gradient {
  background: linear-gradient(to bottom right, var(--gray-50), rgba(236, 253, 245, 0.3));
}

.section-emerald {
  background: linear-gradient(to bottom right, var(--emerald-50), var(--teal-50), var(--cyan-50));
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 48rem;
  margin: 0 auto;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--gray-100);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-0.5rem);
}

.card-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.icon-emerald {
  background: linear-gradient(to bottom right, var(--emerald-400), var(--teal-500));
  color: white;
}

.icon-rose {
  background: linear-gradient(to bottom right, var(--rose-400), var(--pink-500));
  color: white;
}

.icon-blue {
  background: linear-gradient(to bottom right, var(--blue-400), var(--cyan-500));
  color: white;
}

.icon-amber {
  background: linear-gradient(to bottom right, var(--amber-400), var(--orange-500));
  color: white;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.card-text {
  color: var(--gray-600);
  line-height: 1.7;
}

.product-image-container {
  position: relative;
  background: linear-gradient(to bottom right, white, var(--emerald-50));
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--emerald-100);
  text-align: center;
}

.product-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.ingredient-card {
  background: linear-gradient(to bottom right, white, var(--gray-50));
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--gray-100);
  margin-bottom: 2rem;
}

.ingredient-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  width: fit-content;
}

.ingredient-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.ingredient-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
}

.benefit-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem;
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

.benefit-title {
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.benefit-desc {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.testimonial-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-0.5rem);
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.star {
  color: #fbbf24;
}

.testimonial-text {
  color: var(--gray-700);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(to bottom right, var(--emerald-400), var(--teal-500));
  display: flex;
  align-items: center;
  justify-center;
  color: white;
  font-weight: 700;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.author-name {
  font-weight: 600;
  color: var(--gray-900);
}

.author-role {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.contact-info-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: linear-gradient(to bottom right, white, var(--gray-50));
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--gray-100);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  color: white;
}

.contact-title {
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.contact-value {
  color: var(--gray-600);
  white-space: pre-line;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: 0.75rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--emerald-500);
}

.form-textarea {
  resize: none;
  min-height: 150px;
}

footer {
  background: linear-gradient(to bottom right, var(--gray-900), var(--gray-800), var(--gray-900));
  color: white;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer-logo {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(to bottom right, var(--emerald-500), var(--teal-600));
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.footer-brand-name {
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-text {
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

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

.footer-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-link {
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--emerald-400);
}

.footer-icon {
  color: var(--emerald-400);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.disclaimer {
  background: rgba(31, 41, 55, 0.5);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border: 1px solid var(--gray-700);
}

.disclaimer-title {
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.warning-icon {
  width: 1.5rem;
  height: 1.5rem;
  background: #f59e0b;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.disclaimer-text {
  color: var(--gray-400);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.footer-bottom {
  border-top: 1px solid var(--gray-700);
  padding-top: 2rem;
  text-align: center;
  color: var(--gray-400);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--emerald-600);
  text-decoration: none;
  margin-bottom: 2rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: var(--emerald-700);
}

.legal-page {
  min-height: 100vh;
  background: linear-gradient(to bottom right, var(--gray-50), rgba(236, 253, 245, 0.3));
  padding: 3rem 0;
}

.legal-content {
  max-width: 56rem;
  margin: 0 auto;
  background: white;
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  padding: 3rem;
}

.legal-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.legal-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(to bottom right, var(--emerald-500), var(--teal-600));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.legal-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-900);
}

.legal-date {
  color: var(--gray-600);
  margin-top: 0.25rem;
}

.legal-section {
  margin-bottom: 2rem;
}

.legal-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.legal-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.legal-section p {
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
  margin-left: 1.5rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-section li {
  margin-bottom: 0.5rem;
}

.highlight-box {
  background: var(--emerald-50);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.warning-box {
  background: #fef3c7;
  border: 2px solid #fbbf24;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.warning-box p {
  color: var(--gray-800);
}

.info-box {
  background: var(--gray-50);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.contact-page-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-page-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(to right, var(--emerald-600), var(--teal-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.contact-page-subtitle {
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 42rem;
  margin: 0 auto;
}

.success-message {
  padding: 1rem 1.5rem;
  background: var(--emerald-50);
  border: 1px solid #d1fae5;
  border-radius: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.success-icon {
  color: var(--emerald-600);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.success-title {
  color: #047857;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.success-text {
  color: #047857;
  font-size: 0.875rem;
}

.error-message {
  padding: 1rem 1.5rem;
  background: var(--red-50);
  border: 1px solid var(--red-200);
  border-radius: 0.75rem;
  color: var(--red-800);
  margin-bottom: 1.5rem;
}

.contact-details-box {
  background: linear-gradient(to bottom right, var(--emerald-600), var(--teal-600));
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  padding: 3rem;
  color: white;
  margin-bottom: 1.5rem;
}

.contact-details-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-detail-text {
  color: var(--emerald-50);
}

.features-list {
  list-style: none;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.check-icon {
  color: var(--emerald-600);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }

  .gradient-text {
    font-size: 2.5rem;
  }

  .section {
    padding: 3rem 0;
  }

  .legal-content {
    padding: 1.5rem;
  }

  .legal-title {
    font-size: 2rem;
  }
}
