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

:root {
  --primary: #4ab4b6; /* Teal from the bottle */
  --primary-dark: #378e90;
  --primary-light: #e6f6f6;
  --text-dark: #1f2937;
  --text-body: #4b5563;
  --bg-light: #ffffff;
  --bg-muted: #f9fafb;
  --bg-dark: #0f172a;
  --accent: #f59e0b; /* For guarantee / urgency */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --border-radius: 12px;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-body);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Typography & Helpers */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.font-bold { font-weight: 700; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.max-w-800 { max-width: 800px; margin-left: auto; margin-right: auto; }

/* Buttons */
.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(74, 180, 182, 0.4);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(74, 180, 182, 0.5);
  color: white;
}

.btn-pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 180, 182, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(74, 180, 182, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 180, 182, 0); }
}

/* Header */
header {
  padding: 1.5rem 0;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--primary);
}

.header-btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
}

/* Sections */
section {
  padding: 6rem 0;
}

.bg-muted {
  background-color: var(--bg-muted);
}

.bg-dark {
  background-color: var(--bg-dark);
  color: white;
}

/* Section 1: HOOK */
.hook-section {
  background: linear-gradient(135deg, #f0f9f9 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
  padding: 3rem 0 6rem;
}

.hook-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--primary-light) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.hook-section .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 3rem;
}

@media (max-width: 992px) {
  .hook-section .container {
    flex-direction: column;
    text-align: center;
  }
}

.hero-content {
  flex: 1;
  text-align: left;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 450px;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.hero-tag {
  display: inline-block;
  background-color: var(--primary-light);
  color: var(--primary-dark);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: 3.5rem;
  letter-spacing: -1px;
  max-width: 900px;
}

.hook-text {
  max-width: 800px;
  margin: 2rem auto 0;
  text-align: left;
  font-size: 1.125rem;
}

.hook-text p {
  margin-bottom: 1.25rem;
}

.lead-text {
  font-size: 1.5rem;
  color: var(--primary-dark);
  font-weight: 500;
  text-align: center;
  margin-bottom: 2rem;
}

/* Section 2: VALUE (Education) */
.education-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.edu-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary);
  transition: transform 0.3s ease;
}

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

.edu-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.edu-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.info-box {
  background-color: #ebf8f8;
  border: 1px solid var(--primary-light);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  margin-top: 3rem;
}

.info-box h3 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.info-box p {
  margin-bottom: 1rem;
}

/* Section 3: SOLUTION */
.solution-wrap {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-top: 4rem;
}

.solution-image {
  flex: 1;
}

.solution-image img {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
}

.solution-framework {
  flex: 1;
}

.framework-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.step-num {
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

/* Badges Section */
.badges-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.badges-container img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

/* Section 4: FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.faq-item {
  background: rgba(255,255,255,0.05);
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255,255,255,0.1);
}

.faq-item h4 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.faq-item p {
  color: #94a3b8;
}

/* Section 5: SALE / OFFER */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.pricing-card {
  background: white;
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.pricing-card.popular {
  transform: scale(1.05);
  border: 2px solid var(--primary);
  box-shadow: 0 20px 40px -5px rgba(74, 180, 182, 0.25);
  background: linear-gradient(to bottom, #ffffff, #f0f9f9);
  z-index: 10;
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 6px rgba(245, 158, 11, 0.3);
}

.pricing-card h3 {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}

.package-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-image {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 0;
}

.pricing-image img {
  max-height: 100%;
}

.price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-dark);
  font-family: 'Outfit', sans-serif;
  margin: 1rem 0;
}

.price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-body);
}

.shipping {
  font-size: 0.875rem;
  color: #10b981;
  font-weight: 600;
  margin-bottom: 2rem;
}

.pricing-card .cta-button {
  width: 100%;
  padding: 1rem;
  font-size: 1.125rem;
}

/* Guarantee Section */
.guarantee-box {
  background: white;
  border: 2px dashed #cbd5e1;
  border-radius: var(--border-radius);
  padding: 3rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 900px;
  margin: 4rem auto 0;
}

.guarantee-img {
  flex-shrink: 0;
  width: 150px;
}

.guarantee-content h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

/* Secure Cards */
.secure-cards {
  margin-top: 2rem;
  text-align: center;
}

.secure-cards img {
  max-width: 300px;
  margin: 0 auto;
  opacity: 0.7;
}

/* Footer */
footer {
  background-color: #020617;
  color: #64748b;
  padding: 4rem 0 2rem;
  font-size: 0.875rem;
  text-align: center;
}

.footer-disclaimer {
  max-width: 800px;
  margin: 0 auto 2rem;
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-links a {
  color: #94a3b8;
  transition: color 0.3s ease;
}

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

/* New Section Styles */
.mx-auto { margin-left: auto; margin-right: auto; }

.routine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}
.routine-step {
  padding: 2rem;
  background: #f8fafc;
  border-radius: var(--border-radius);
  border: 1px solid #e2e8f0;
}
.routine-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.formula-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.formula-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--primary-dark);
}
.formula-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.experience-list {
  list-style: none;
  padding: 0;
}
.experience-list li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  color: var(--text-dark);
}
.experience-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
  .hero h1 { font-size: 2.75rem; }
  .solution-wrap, .guarantee-box {
    flex-direction: column;
    text-align: center;
  }
  .framework-step { text-align: left; }
  .pricing-cards { grid-template-columns: repeat(2, 1fr); }
  .pricing-card.popular { transform: none; }
}

@media (max-width: 768px) {
  .education-grid, .faq-grid, .pricing-cards, .formula-grid, .routine-grid {
    grid-template-columns: 1fr;
  }
  .experience-wrap { flex-direction: column; text-align: center; }
  .experience-list li { text-align: left; }
  .hero h1 { font-size: 2.25rem; }
  .hook-text { text-align: center; }
  .header-btn { display: none; } /* Hide in mobile for simpler header */
}
/* Article Styles */
.article-header {
  padding: 6rem 0 3rem;
  background: var(--bg-light);
  border-bottom: 1px solid #e2e8f0;
}

.article-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.article-meta {
  color: #64748b;
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.article-body {
  padding: 4rem 0;
  background: white;
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.article-content h2 {
  font-size: 2rem;
  margin: 2.5rem 0 1rem;
  color: var(--primary-dark);
}

.article-content h3 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
}

.article-content p {
  margin-bottom: 1.5rem;
}

.article-content ul, .article-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.article-content li {
  margin-bottom: 0.5rem;
}

.article-content a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 500;
}

.article-content a:hover {
  color: var(--primary-dark);
}

.article-cta-box {
  background: #f8fafc;
  border-left: 4px solid var(--primary);
  padding: 2rem;
  margin: 3rem 0;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.article-cta-box h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.article-cta-box p {
  margin-bottom: 1rem;
  font-size: 1rem;
}
