@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Manrope:wght@400;500;600;700;800&display=swap');

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

:root {
  --velvet-primary: #8B4C8F;
  --velvet-dark: #6B2D6F;
  --velvet-light: #B87BC0;
  --fitness-accent: #FF6B35;
  --fitness-accent-light: #FF8C5A;
  --wellness-green: #4ECDC4;
  --wellness-green-light: #6EDDD6;
  --premium-gold: #F4A261;
  --premium-gold-light: #F6B885;
  --dark-charcoal: #1A1A1A;
  --dark-gray: #2D2D2D;
  --medium-gray: #4A4A4A;
  --light-gray: #E8E8E8;
  --off-white: #FAFAFA;
  --pure-white: #FFFFFF;
  --text-primary: #1A1A1A;
  --text-secondary: #4A4A4A;
  --text-light: #6B6B6B;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.advertorial-mark {
  background: linear-gradient(135deg, var(--velvet-primary) 0%, var(--velvet-dark) 100%);
  text-align: center;
  padding: 10px 0;
  font-size: 9px;
  color: var(--pure-white);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 700;
  position: relative;
  z-index: 1000;
  font-family: 'Manrope', sans-serif;
}

.header {
  background: var(--pure-white);
  padding: 20px 60px;
  box-shadow: 0 4px 20px rgba(26, 26, 26, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 2px solid var(--light-gray);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 28px;
  font-weight: 800;
  color: var(--velvet-primary);
  font-family: 'Manrope', sans-serif;
  text-decoration: none;
  letter-spacing: -0.3px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.02);
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--velvet-primary) 0%, var(--velvet-dark) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pure-white);
  font-weight: 900;
  font-size: 24px;
  font-family: 'Manrope', sans-serif;
  box-shadow: 0 4px 15px rgba(139, 76, 143, 0.3);
}

.home-btn {
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--fitness-accent) 0%, var(--fitness-accent-light) 100%);
  border: none;
  border-radius: 8px;
  text-decoration: none;
  color: var(--pure-white);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
}

.home-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
}

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

.hero-section {
  background: linear-gradient(180deg, var(--pure-white) 0%, var(--off-white) 100%);
  padding: 100px 60px 120px;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  overflow: hidden;
  min-height: 700px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 76, 143, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(78, 205, 196, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 30px;
  line-height: 1.1;
  color: var(--dark-charcoal);
  font-family: 'Manrope', sans-serif;
  letter-spacing: -1px;
}

.hero-content .subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.6;
}

.hero-content .price-box {
  background: var(--pure-white);
  border-radius: 16px;
  padding: 30px 40px;
  margin: 30px 0;
  display: inline-block;
  border: 2px solid var(--light-gray);
  box-shadow: 0 8px 30px rgba(26, 26, 26, 0.08);
}

.price-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

.price-amount {
  font-size: 52px;
  font-weight: 800;
  color: var(--velvet-primary);
  line-height: 1;
  margin-bottom: 8px;
  font-family: 'Manrope', sans-serif;
}

.price-description {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.benefits-list {
  list-style: none;
  margin: 40px 0;
  text-align: left;
}

.benefits-list li {
  padding: 16px 0 16px 50px;
  position: relative;
  font-size: 16px;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 12px;
}

.benefits-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--wellness-green);
  font-weight: bold;
  font-size: 20px;
  width: 36px;
  height: 36px;
  background: rgba(78, 205, 196, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--wellness-green);
}

.hero-product {
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.product-badge {
  background: linear-gradient(135deg, var(--premium-gold) 0%, var(--premium-gold-light) 100%);
  color: var(--pure-white);
  padding: 10px 24px;
  border-radius: 50px;
  display: inline-block;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 32px;
  box-shadow: 0 4px 15px rgba(244, 162, 97, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Inter', sans-serif;
}

.hero-image {
  width: 100%;
  max-width: 420px;
  height: auto;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 20px 50px rgba(26, 26, 26, 0.15));
  border-radius: 20px;
}

.cta-button {
  background: linear-gradient(135deg, var(--velvet-primary) 0%, var(--velvet-dark) 100%);
  color: var(--pure-white);
  border: none;
  padding: 18px 44px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(139, 76, 143, 0.3);
  margin-top: 32px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(139, 76, 143, 0.4);
}

.article-header {
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.article-meta {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.article-content {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.article-content p {
  margin-bottom: 24px;
}

.article-content h2 {
  font-size: 36px;
  color: var(--dark-charcoal);
  margin: 60px 0 28px;
  font-weight: 800;
  font-family: 'Manrope', sans-serif;
  letter-spacing: -0.5px;
}

.article-content ul {
  margin: 28px 0;
  padding-left: 0;
  list-style: none;
}

.article-content li {
  margin-bottom: 16px;
  color: var(--text-secondary);
  padding-left: 32px;
  position: relative;
}

.article-content li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--velvet-primary);
  font-size: 16px;
  top: 2px;
}

.highlight-box {
  background: linear-gradient(135deg, rgba(78, 205, 196, 0.1) 0%, rgba(78, 205, 196, 0.05) 100%);
  border-left: 4px solid var(--wellness-green);
  padding: 40px;
  margin: 50px 0;
  border-radius: 12px;
  position: relative;
  z-index: 1;
}

.highlight-box h3 {
  color: var(--dark-charcoal);
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
}

.highlight-box p {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.8;
}

.product-showcase {
  background: linear-gradient(135deg, var(--velvet-primary) 0%, var(--velvet-dark) 100%);
  padding: 80px 60px;
  border-radius: 20px;
  margin: 70px 0;
  text-align: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(139, 76, 143, 0.25);
}

.product-showcase h2 {
  color: var(--pure-white);
  font-size: 40px;
  margin-bottom: 32px;
  font-weight: 800;
  font-family: 'Manrope', sans-serif;
  letter-spacing: -0.5px;
}

.product-showcase img {
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  max-width: 350px;
}

.cta-section {
  background: linear-gradient(135deg, var(--fitness-accent) 0%, var(--fitness-accent-light) 100%);
  padding: 80px 60px;
  border-radius: 20px;
  color: var(--pure-white);
  text-align: center;
  margin: 80px 0;
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.25);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section h2 {
  font-size: 42px;
  margin-bottom: 24px;
  color: var(--pure-white);
  font-weight: 800;
  position: relative;
  z-index: 1;
  font-family: 'Manrope', sans-serif;
  letter-spacing: -1px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.95;
  position: relative;
  z-index: 1;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.order-price-box {
  background: var(--pure-white);
  border-radius: 16px;
  padding: 40px 50px;
  margin: 40px 0;
  text-align: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 40px rgba(26, 26, 26, 0.1);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.order-price-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}

.order-price-amount {
  font-size: 64px;
  font-weight: 800;
  color: var(--velvet-primary);
  line-height: 1;
  margin-bottom: 12px;
  font-family: 'Manrope', sans-serif;
}

.order-price-description {
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 500;
}

.order-form {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 24px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--pure-white);
  font-family: 'Inter', sans-serif;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  font-size: 16px;
  background-color: rgba(255, 255, 255, 0.95);
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--pure-white);
  background-color: var(--pure-white);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
}

.submit-btn {
  width: 100%;
  padding: 18px;
  background: var(--dark-charcoal);
  color: var(--pure-white);
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 16px;
  box-shadow: 0 8px 25px rgba(26, 26, 26, 0.3);
  font-family: 'Inter', sans-serif;
}

.submit-btn:hover {
  background: var(--dark-gray);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(26, 26, 26, 0.4);
}

.disclaimer-box {
  background: var(--light-gray);
  border-left: 4px solid var(--fitness-accent);
  border-radius: 12px;
  padding: 32px;
  margin: 50px 0;
  font-size: 15px;
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
}

.disclaimer-box strong {
  display: block;
  margin-bottom: 12px;
  color: var(--dark-charcoal);
  font-weight: 700;
  font-size: 17px;
  font-family: 'Manrope', sans-serif;
}

.ingredient-detail-card {
  background: var(--pure-white);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(26, 26, 26, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--light-gray);
  position: relative;
  z-index: 1;
  height: 100%;
}

.ingredient-detail-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(26, 26, 26, 0.15);
}

.ingredient-detail-card h4 {
  margin: 0;
  padding: 0;
}

.ingredient-detail-card p {
  margin: 0;
}

.footer {
  background: var(--dark-charcoal);
  color: rgba(255, 255, 255, 0.8);
  padding: 70px 50px 40px;
  margin-top: 100px;
  position: relative;
  z-index: 1;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  margin-bottom: 40px;
}

.footer-section h4 {
  color: var(--wellness-green);
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
}

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

.footer-links li {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 400;
}

.footer-links a:hover {
  color: var(--wellness-green);
  padding-left: 4px;
}

.footer-disclosures {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
  margin-top: 40px;
  font-size: 12px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
}

.footer-disclosures p {
  margin-bottom: 20px;
}

.footer-disclosures strong {
  color: var(--wellness-green);
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 13px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.ingredients-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin: 60px 0;
  position: relative;
  z-index: 1;
}

.ingredient-card {
  background: var(--pure-white);
  padding: 40px 32px;
  border-radius: 16px;
  border: 2px solid var(--light-gray);
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 4px 20px rgba(26, 26, 26, 0.06);
  position: relative;
  z-index: 1;
}

.ingredient-card:hover {
  transform: translateY(-6px);
  border-color: var(--velvet-primary);
  box-shadow: 0 12px 40px rgba(139, 76, 143, 0.15);
}

.ingredient-card h3 {
  color: var(--dark-charcoal);
  font-size: 26px;
  margin-bottom: 20px;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
}

.ingredient-card p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
}

.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin: 60px 0;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  padding: 50px 40px;
  background: var(--pure-white);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(26, 26, 26, 0.08);
}

.trust-badge {
  background: linear-gradient(135deg, var(--wellness-green) 0%, var(--wellness-green-light) 100%);
  padding: 20px 32px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(78, 205, 196, 0.25);
  font-weight: 600;
  color: var(--pure-white);
  font-size: 14px;
  text-align: center;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.trust-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(78, 205, 196, 0.35);
}

.legal-page {
  position: relative;
  z-index: 1;
  padding: 60px 50px;
  background: var(--pure-white);
  margin: 40px auto;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(26, 26, 26, 0.08);
  max-width: 1000px;
}

.legal-page h1 {
  font-size: 42px;
  color: var(--dark-charcoal);
  margin-bottom: 24px;
  font-weight: 800;
  font-family: 'Manrope', sans-serif;
  letter-spacing: -1px;
}

.legal-page h2 {
  font-size: 28px;
  color: var(--dark-charcoal);
  margin-top: 50px;
  margin-bottom: 20px;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
}

.legal-page h3 {
  font-size: 22px;
  color: var(--dark-gray);
  margin-top: 32px;
  margin-bottom: 16px;
  font-weight: 600;
  font-family: 'Manrope', sans-serif;
}

.legal-page ul {
  margin: 24px 0;
  padding-left: 0;
  list-style: none;
}

.legal-page li {
  margin-bottom: 14px;
  line-height: 1.8;
  color: var(--text-secondary);
  padding-left: 28px;
  position: relative;
}

.legal-page li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--velvet-primary);
  font-size: 14px;
}

.legal-page p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--text-secondary);
  font-size: 17px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
  align-items: start;
}

@media (max-width: 1200px) {
  .hero-section {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 80px 50px 100px;
    min-height: auto;
  }

  .hero-content h1 {
    font-size: 52px;
  }

  .container {
    padding: 0 30px;
  }

  .cta-section {
    padding: 60px 40px;
  }

  .product-showcase {
    padding: 60px 40px;
  }
}

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

  .hero-section {
    padding: 60px 30px 80px;
  }

  .cta-section {
    padding: 50px 30px;
  }

  .cta-section h2 {
    font-size: 32px;
  }

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

  .header {
    padding: 16px 30px;
  }

  .logo {
    font-size: 22px;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .home-btn {
    padding: 10px 20px;
    font-size: 13px;
  }

  .legal-page {
    margin: 20px;
    padding: 40px 30px;
  }

  .article-content {
    padding: 0 15px;
    margin: 50px auto;
  }

  .ingredients-section {
    grid-template-columns: 1fr;
  }

  .trust-badges {
    gap: 20px;
    padding: 40px 30px;
  }
}
