/* ==========================================================================
   Trimoryn — Premium Affiliate Website Stylesheet
   Domain: https://us-trimoryne.com/
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
  --primary:        #135A9E;
  --primary-dark:   #0D4078;
  --primary-light:  #1A72C8;
  --teal:           #0D6B6E;
  --teal-light:     #14878B;
  --dark:           #0A1628;
  --dark-2:         #162240;
  --gold:           #D4A843;
  --gold-light:     #F0C85A;
  --white:          #FFFFFF;
  --off-white:      #F8FAFC;
  --grey-100:       #F1F5F9;
  --grey-200:       #E2E8F0;
  --grey-400:       #94A3B8;
  --grey-600:       #475569;
  --grey-800:       #1E293B;
  --success:        #22C55E;
  --font-main:      'Inter', sans-serif;
  --font-heading:   'Poppins', sans-serif;
  --shadow-sm:      0 2px 8px rgba(19,90,158,0.08);
  --shadow-md:      0 8px 32px rgba(19,90,158,0.12);
  --shadow-lg:      0 16px 64px rgba(19,90,158,0.18);
  --shadow-card:    0 4px 20px rgba(10,22,40,0.10);
  --radius-sm:      8px;
  --radius-md:      16px;
  --radius-lg:      24px;
  --radius-xl:      32px;
  --transition:     all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* --------------------------------------------------------------------------
   2. Reset & Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  color: var(--grey-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* --------------------------------------------------------------------------
   3. Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; }
.section-label {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-title {
  margin-bottom: 1rem;
  color: var(--dark);
}
.section-title span {
  background: linear-gradient(135deg, var(--primary), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtitle {
  color: var(--grey-600);
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 auto 3rem;
}
.text-center { text-align: center; }

/* --------------------------------------------------------------------------
   4. Layout Utilities
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 5rem 0; }
.section-lg { padding: 7rem 0; }
.section-sm { padding: 3rem 0; }
.bg-light { background: var(--off-white); }
.bg-dark {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: var(--white);
}
.bg-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 100%);
  color: var(--white);
}
.bg-dark h1,.bg-dark h2,.bg-dark h3,.bg-dark h4 { color: var(--white); }
.bg-primary h1,.bg-primary h2,.bg-primary h3,.bg-primary h4 { color: var(--white); }

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(19,90,158,0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  box-shadow: 0 10px 36px rgba(19,90,158,0.45);
  transform: translateY(-2px);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--dark);
  box-shadow: 0 6px 24px rgba(212,168,67,0.35);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  box-shadow: 0 10px 36px rgba(212,168,67,0.5);
  transform: translateY(-2px);
}
.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-lg { padding: 1.1rem 2.8rem; font-size: 1.1rem; }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.9rem; }
.btn-block { width: 100%; }

/* --------------------------------------------------------------------------
   6. Navigation
   -------------------------------------------------------------------------- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 1.2rem 0;
}
#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  padding: 0.8rem 0;
}
#navbar.nav-transparent {
  background: transparent;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.brand-logo-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}
#navbar.scrolled .brand-logo-text,
.brand-logo-text { /* always visible */ }
.nav-transparent .brand-logo-text {
  -webkit-text-fill-color: white;
  color: white;
}
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--grey-800);
  transition: var(--transition);
  position: relative;
}
.nav-transparent .nav-link { color: rgba(255,255,255,0.9); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--teal));
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link:hover { color: var(--primary); }
.nav-cta { margin-left: 1rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,22,40,0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link {
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
}
.mobile-menu .nav-link:hover { color: var(--gold); }
.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* --------------------------------------------------------------------------
   7. Sticky Mobile CTA
   -------------------------------------------------------------------------- */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  padding: 1rem 1.5rem;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(10,22,40,0.12);
}
.mobile-sticky-cta a { width: 100%; text-align: center; }

/* --------------------------------------------------------------------------
   8. Hero Section
   -------------------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 40%, #1A3A6E 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(19,90,158,0.25) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(13,107,110,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { color: var(--white); }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212,168,67,0.15);
  border: 1px solid rgba(212,168,67,0.4);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-eyebrow i { font-size: 0.85rem; }
.hero h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero h1 span {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-weight: 600;
}
.trust-badge i { color: var(--gold); font-size: 1rem; }
.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-glow {
  position: absolute;
  width: 90%;
  height: 90%;
  background: radial-gradient(ellipse, rgba(19,90,158,0.35) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
}
.hero-bottle {
  position: relative;
  z-index: 1;
  max-width: 480px;
  filter: drop-shadow(0 30px 60px rgba(19,90,158,0.4));
  animation: floatImg 4s ease-in-out infinite;
}
@keyframes floatImg {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 0.8rem 1.2rem;
  width: fit-content;
  margin-bottom: 2rem;
}
.stars { color: var(--gold); font-size: 1rem; }
.rating-text { color: rgba(255,255,255,0.9); font-size: 0.85rem; font-weight: 600; }

/* --------------------------------------------------------------------------
   9. Why Trimoryn Section
   -------------------------------------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.2rem; }
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.why-item:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.why-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.why-text h4 { color: var(--dark); margin-bottom: 0.25rem; }
.why-text p { color: var(--grey-600); font-size: 0.9rem; margin: 0; }
.why-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.why-image-wrap img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.why-stat-card {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-label { font-size: 0.8rem; color: var(--grey-600); font-weight: 600; }

/* --------------------------------------------------------------------------
   10. Benefits Section
   -------------------------------------------------------------------------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.benefit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  text-align: center;
  border: 1px solid var(--grey-200);
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--teal));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.benefit-card:hover::before { transform: scaleX(1); }
.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.benefit-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(19,90,158,0.1), rgba(13,107,110,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
  transition: var(--transition);
}
.benefit-card:hover .benefit-icon {
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: var(--white);
  transform: scale(1.1);
}
.benefit-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.benefit-card p { color: var(--grey-600); font-size: 0.9rem; margin: 0; }

/* --------------------------------------------------------------------------
   11. Ingredients Section
   -------------------------------------------------------------------------- */
.ingredients-intro { margin-bottom: 3rem; }
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.ingredient-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  border: 1px solid var(--grey-200);
}
.ingredient-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.ingredient-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--grey-100), var(--grey-200));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--primary);
}
.ingredient-img-placeholder {
  width: 100%;
  height: 160px;
  background: linear-gradient(135deg, rgba(19,90,158,0.08) 0%, rgba(13,107,110,0.12) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--primary);
  font-size: 2.5rem;
}
.ingredient-img-placeholder span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-600);
}
.ingredient-body { padding: 1.2rem; }
.ingredient-body h4 { color: var(--dark); margin-bottom: 0.4rem; font-size: 1rem; }
.ingredient-body p { color: var(--grey-600); font-size: 0.85rem; margin: 0; line-height: 1.5; }
.ingredient-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(19,90,158,0.1), rgba(13,107,110,0.1));
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.5rem;
}

/* --------------------------------------------------------------------------
   12. How It Works
   -------------------------------------------------------------------------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  margin-top: 3rem;
}
.steps-connector {
  position: absolute;
  top: 3.5rem;
  left: calc(16.66% + 1rem);
  right: calc(16.66% + 1rem);
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--teal));
  z-index: 0;
}
.steps-connector::before,
.steps-connector::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}
.steps-connector::before { left: 0; }
.steps-connector::after { right: 0; background: var(--teal); }
.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 2rem 1.5rem;
}
.step-number-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(19,90,158,0.3);
  position: relative;
}
.step-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}
.step-icon {
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 0.8rem;
}
.step-card h3 { margin-bottom: 0.75rem; font-size: 1.2rem; }
.step-card p { color: var(--grey-600); font-size: 0.95rem; }

/* --------------------------------------------------------------------------
   13. Why Customers Love Trimoryn
   -------------------------------------------------------------------------- */
.love-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.love-card {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}
.love-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}
.love-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(212,168,67,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.6rem;
  color: var(--gold);
}
.love-card h4 { color: var(--white); margin-bottom: 0.6rem; font-size: 1rem; }
.love-card p { color: rgba(255,255,255,0.7); font-size: 0.88rem; margin: 0; }

/* --------------------------------------------------------------------------
   14. Testimonials
   -------------------------------------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  border: 1px solid var(--grey-200);
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.testimonial-stars { color: var(--gold); margin-bottom: 1rem; font-size: 0.95rem; }
.testimonial-text {
  color: var(--grey-600);
  font-size: 0.95rem;
  line-height: 1.7;
  flex: 1;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-top: 1px solid var(--grey-200);
  padding-top: 1rem;
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font-heading);
  flex-shrink: 0;
}
.author-info .name { font-weight: 700; color: var(--dark); font-size: 0.95rem; }
.author-info .meta { color: var(--grey-400); font-size: 0.8rem; }
.verified-badge {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--success);
  font-size: 0.75rem;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   15. Trust Section
   -------------------------------------------------------------------------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.trust-item {
  text-align: center;
  padding: 1.5rem 1rem;
}
.trust-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(19,90,158,0.1), rgba(13,107,110,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
  font-size: 1.6rem;
  color: var(--primary);
  transition: var(--transition);
}
.trust-item:hover .trust-icon-wrap {
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: var(--white);
  transform: scale(1.1);
}
.trust-item h5 { font-size: 0.85rem; color: var(--dark); margin-bottom: 0.25rem; }
.trust-item p { font-size: 0.75rem; color: var(--grey-600); margin: 0; }

/* --------------------------------------------------------------------------
   16. FAQ Section
   -------------------------------------------------------------------------- */
.faq-list { max-width: 800px; margin: 3rem auto 0; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--grey-200);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.5rem;
  cursor: pointer;
  font-weight: 700;
  color: var(--dark);
  font-size: 0.95rem;
  transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: transform 0.35s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.3rem;
  color: var(--grey-600);
  font-size: 0.9rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 500px; }

/* --------------------------------------------------------------------------
   17. Pricing Section
   -------------------------------------------------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  align-items: end;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem 2.5rem;
  box-shadow: var(--shadow-card);
  border: 2px solid var(--grey-200);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-16px);
  background: linear-gradient(180deg, #F0F7FF 0%, var(--white) 100%);
}
.pricing-card.featured:hover { transform: translateY(-24px); }
.pricing-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
}
.pricing-badge.popular { background: linear-gradient(135deg, var(--primary), var(--teal)); color: var(--white); }
.free-ship {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(34,197,94,0.1);
  color: #16A34A;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.pricing-img-wrap {
  margin: 0 auto 1.5rem;
  max-width: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
}
.pricing-img-wrap img {
  max-height: 200px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(19,90,158,0.2));
  transition: var(--transition);
}
.pricing-card:hover .pricing-img-wrap img { transform: scale(1.06) translateY(-4px); }
.pricing-bottles { color: var(--grey-600); font-weight: 600; font-size: 0.95rem; margin-bottom: 0.25rem; }
.pricing-price-wrap { margin: 1rem 0; }
.pricing-per {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.pricing-per span { font-size: 1.2rem; vertical-align: super; }
.pricing-unit { color: var(--grey-600); font-size: 0.85rem; }
.pricing-total { color: var(--grey-400); font-size: 0.85rem; margin: 0.25rem 0 1rem; }
.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--grey-700);
}
.pricing-features li i { color: var(--success); font-size: 0.75rem; }
.guarantee-text {
  font-size: 0.8rem;
  color: var(--grey-500);
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.guarantee-text i { color: var(--primary); }

/* --------------------------------------------------------------------------
   18. Final CTA Section
   -------------------------------------------------------------------------- */
.final-cta {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, #1A2E5E 100%);
  padding: 7rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 60%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(19,90,158,0.2), transparent 70%);
  pointer-events: none;
}
.final-cta::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(13,107,110,0.2), transparent 70%);
  pointer-events: none;
}
.final-cta > .container { position: relative; z-index: 1; }
.final-cta h2 { color: var(--white); margin-bottom: 1rem; }
.final-cta p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 600px; margin: 0 auto 2.5rem; }
.final-cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.countdown-wrap { margin: 2rem 0; }
.countdown-label { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; }
.countdown {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.countdown-num {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
}
.countdown-lbl { font-size: 0.7rem; color: rgba(255,255,255,0.6); text-transform: uppercase; margin-top: 0.4rem; }
.countdown-sep { color: rgba(255,255,255,0.4); font-size: 1.5rem; font-weight: 700; margin-top: -1rem; }

/* --------------------------------------------------------------------------
   19. Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand-logo-text { -webkit-text-fill-color: white; color: white; }
.footer-brand p { margin: 1rem 0; font-size: 0.9rem; line-height: 1.7; max-width: 300px; }
.footer-secure {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.secure-badge {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 0.3rem 0.7rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.75);
}
.secure-badge i { color: var(--gold); font-size: 0.8rem; }
.footer-heading {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
  font-size: 0.88rem;
}
.footer-contact-item i { color: var(--primary); margin-top: 0.15rem; }
.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.82rem;
}
.footer-bottom-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.8rem;
}
.footer-bottom-links a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }
.footer-disclaimer {
  max-width: 900px;
  margin: 1rem auto 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   20. Blog Styles
   -------------------------------------------------------------------------- */
.blog-hero {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  padding: 8rem 0 4rem;
  color: var(--white);
  text-align: center;
}
.blog-hero h1 { color: var(--white); margin-bottom: 1rem; }
.blog-hero p { color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto; }
.blog-search-wrap {
  max-width: 500px;
  margin: 2rem auto 0;
  position: relative;
}
.blog-search-wrap input {
  width: 100%;
  padding: 1rem 1.2rem 1rem 3.2rem;
  border-radius: 50px;
  border: none;
  outline: none;
  font-size: 1rem;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.blog-search-wrap input::placeholder { color: rgba(255,255,255,0.5); }
.blog-search-wrap .search-icon {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.5);
}
.blog-categories {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--grey-200);
  margin-bottom: 3rem;
}
.cat-btn {
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--grey-200);
  color: var(--grey-600);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.cat-btn:hover, .cat-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.blog-featured {
  margin-bottom: 4rem;
}
.featured-article {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  border: 1px solid var(--grey-200);
}
.featured-img {
  background: linear-gradient(135deg, var(--primary), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255,255,255,0.4);
  min-height: 300px;
  position: relative;
  overflow: hidden;
}
.featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top:0;left:0;right:0;bottom:0;
}
.featured-badge {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
}
.featured-body {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  color: var(--grey-400);
}
.featured-meta i { color: var(--primary); }
.featured-cat {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.featured-body h2 { margin-bottom: 1rem; font-size: 1.6rem; }
.featured-body p { color: var(--grey-600); margin-bottom: 1.5rem; }
.blog-main-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--grey-200);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,0.5);
  position: relative;
  overflow: hidden;
}
.blog-card-img img { width:100%; height:100%; object-fit:cover; }
.blog-card-cat {
  position: absolute;
  bottom: 0.8rem;
  left: 0.8rem;
  background: var(--primary);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
}
.blog-card-body { padding: 1.5rem; }
.blog-card-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--grey-400);
  margin-bottom: 0.75rem;
}
.blog-card-meta i { color: var(--primary); }
.blog-card h3 { font-size: 1rem; margin-bottom: 0.75rem; line-height: 1.4; }
.blog-card h3 a { color: var(--dark); transition: var(--transition); }
.blog-card h3 a:hover { color: var(--primary); }
.blog-card p { color: var(--grey-600); font-size: 0.88rem; margin: 0 0 1rem; line-height: 1.6; }
.read-more {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}
.read-more:hover { gap: 0.7rem; color: var(--teal); }
.blog-sidebar { display: flex; flex-direction: column; gap: 2rem; }
.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--grey-200);
}
.widget-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--grey-200);
}
.widget-title span {
  background: linear-gradient(135deg, var(--primary), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.recent-post {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--grey-200);
}
.recent-post:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.recent-post-thumb {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary), var(--teal));
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 1.2rem;
  overflow: hidden;
}
.recent-post-thumb img { width:100%; height:100%; object-fit:cover; }
.recent-post-info h5 { font-size: 0.85rem; margin-bottom: 0.25rem; line-height: 1.4; }
.recent-post-info h5 a { color: var(--dark); transition: var(--transition); }
.recent-post-info h5 a:hover { color: var(--primary); }
.recent-post-info span { font-size: 0.75rem; color: var(--grey-400); }
.sidebar-cta {
  background: linear-gradient(135deg, var(--primary), var(--teal));
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  color: var(--white);
}
.sidebar-cta h4 { color: var(--white); margin-bottom: 0.75rem; font-size: 1.1rem; }
.sidebar-cta p { color: rgba(255,255,255,0.8); font-size: 0.88rem; margin-bottom: 1.2rem; }
.blog-pagination {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 3rem;
}
.page-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  transition: var(--transition);
  border: 1px solid var(--grey-200);
  color: var(--grey-600);
  background: var(--white);
}
.page-btn:hover, .page-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* --------------------------------------------------------------------------
   21. Single Blog Post
   -------------------------------------------------------------------------- */
.post-hero {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  padding: 8rem 0 3rem;
  color: var(--white);
}
.post-hero h1 { color: var(--white); max-width: 900px; }
.post-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.post-breadcrumb a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.post-breadcrumb a:hover { color: var(--gold); }
.post-breadcrumb i { font-size: 0.65rem; }
.post-meta-bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}
.post-meta-bar i { color: var(--gold); }
.post-author-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.post-author-chip .avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
}
.post-feat-img {
  width: 100%;
  height: 480px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(255,255,255,0.3);
  margin-bottom: 2rem;
  overflow: hidden;
  position: relative;
}
.post-feat-img img { width:100%; height:100%; object-fit:cover; }
.post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
  margin-top: 3rem;
}
.post-content h2 {
  font-size: 1.5rem;
  color: var(--dark);
  margin: 2rem 0 1rem;
  padding-left: 1rem;
  border-left: 4px solid var(--primary);
}
.post-content h3 {
  font-size: 1.2rem;
  color: var(--dark-2);
  margin: 1.5rem 0 0.75rem;
}
.post-content p { color: var(--grey-600); margin-bottom: 1.2rem; line-height: 1.8; }
.post-content ul, .post-content ol {
  list-style: disc;
  padding-left: 1.5rem;
  color: var(--grey-600);
  margin-bottom: 1.2rem;
  line-height: 1.8;
}
.post-content ol { list-style: decimal; }
.post-content li { margin-bottom: 0.4rem; }
.post-content blockquote {
  border-left: 4px solid var(--gold);
  background: linear-gradient(135deg, rgba(212,168,67,0.05), rgba(19,90,158,0.05));
  padding: 1.5rem 2rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 2rem 0;
  font-style: italic;
  color: var(--grey-700);
}
.post-toc {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary);
}
.post-toc h4 { color: var(--dark); margin-bottom: 1rem; font-size: 0.95rem; }
.post-toc ol { list-style: decimal; padding-left: 1.2rem; }
.post-toc li { margin-bottom: 0.4rem; }
.post-toc a { color: var(--primary); font-size: 0.88rem; }
.post-toc a:hover { text-decoration: underline; }
.post-share {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--grey-200);
}
.share-label { font-weight: 700; color: var(--dark); margin-bottom: 0.8rem; font-size: 0.9rem; }
.share-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.share-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}
.share-facebook { background: #1877F2; color: var(--white); }
.share-twitter { background: #1DA1F2; color: var(--white); }
.share-linkedin { background: #0A66C2; color: var(--white); }
.share-copy { background: var(--grey-100); color: var(--grey-700); }
.share-btn:hover { opacity: 0.85; transform: translateY(-2px); }
.post-cta-banner {
  background: linear-gradient(135deg, var(--primary), var(--teal));
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  text-align: center;
  color: var(--white);
  margin: 3rem 0;
}
.post-cta-banner h3 { color: var(--white); margin-bottom: 0.75rem; }
.post-cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; font-size: 0.95rem; }
.post-sidebar { position: sticky; top: 7rem; }
.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.related-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--grey-200);
  transition: var(--transition);
}
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.related-img {
  height: 160px;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(255,255,255,0.4);
}
.related-body { padding: 1.2rem; }
.related-body h4 { font-size: 0.9rem; margin-bottom: 0.5rem; line-height: 1.4; }
.related-body h4 a { color: var(--dark); transition: var(--transition); }
.related-body h4 a:hover { color: var(--primary); }
.related-body span { font-size: 0.75rem; color: var(--grey-400); }

/* --------------------------------------------------------------------------
   22. Contact Page
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-item h5 { color: var(--dark); margin-bottom: 0.25rem; }
.contact-info-item p { color: var(--grey-600); font-size: 0.9rem; margin: 0; }
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--grey-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--dark);
  transition: var(--transition);
  outline: none;
  background: var(--white);
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(19,90,158,0.1);
}
.form-control.error { border-color: #EF4444; }
.error-msg { color: #EF4444; font-size: 0.8rem; margin-top: 0.3rem; display: none; }
.form-control.error + .error-msg { display: block; }
textarea.form-control { resize: vertical; min-height: 140px; }
.form-success, .form-error {
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-weight: 600;
  display: none;
}
.form-success { background: #DCFCE7; color: #166534; border: 1px solid #BBF7D0; }
.form-error { background: #FEE2E2; color: #991B1B; border: 1px solid #FECACA; }

/* --------------------------------------------------------------------------
   23. Legal Pages
   -------------------------------------------------------------------------- */
.legal-hero {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  padding: 7rem 0 3rem;
  color: var(--white);
  text-align: center;
}
.legal-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.legal-hero p { color: rgba(255,255,255,0.7); }
.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.legal-content h2 {
  font-size: 1.4rem;
  color: var(--dark);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--grey-200);
}
.legal-content h3 { font-size: 1.1rem; color: var(--dark-2); margin: 1.5rem 0 0.75rem; }
.legal-content p { color: var(--grey-600); line-height: 1.8; margin-bottom: 1rem; }
.legal-content ul { list-style: disc; padding-left: 1.5rem; color: var(--grey-600); margin-bottom: 1rem; }
.legal-content ul li { margin-bottom: 0.4rem; line-height: 1.7; }
.legal-last-updated {
  font-size: 0.85rem;
  color: var(--grey-400);
  margin-bottom: 2rem;
}

/* --------------------------------------------------------------------------
   24. 404 Page
   -------------------------------------------------------------------------- */
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  color: var(--white);
  padding: 2rem;
}
.error-number {
  font-family: var(--font-heading);
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}
.page-404 h2 { color: var(--white); margin-bottom: 1rem; }
.page-404 p { color: rgba(255,255,255,0.7); max-width: 480px; margin: 0 auto 2.5rem; }
.page-404-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   25. Scroll Reveal Animations
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.revealed { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.revealed { opacity: 1; transform: translateX(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* --------------------------------------------------------------------------
   26. Responsive Design
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 991px) {
  .navbar-nav { display: none; }
  .hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-image-wrap { order: -1; }
  .hero-bottle { max-width: 360px; margin: 0 auto; }
  .why-grid { grid-template-columns: 1fr; }
  .why-image-wrap { order: -1; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-connector { display: none; }
  .steps-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .love-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-10px); }
  .blog-main-layout { grid-template-columns: 1fr; }
  .post-layout { grid-template-columns: 1fr; }
  .featured-article { grid-template-columns: 1fr; }
  .featured-img { min-height: 250px; }
  .contact-grid { grid-template-columns: 1fr; }
  .related-posts-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .section, .section-lg { padding: 3.5rem 0; }
  .benefits-grid { grid-template-columns: 1fr; }
  .ingredients-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .love-grid { grid-template-columns: 1fr; }
  .related-posts-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .mobile-sticky-cta { display: block; }
  .hero { padding-bottom: 5rem; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}

/* --------------------------------------------------------------------------
   27. Focus States (Accessibility)
   -------------------------------------------------------------------------- */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   28. Print
   -------------------------------------------------------------------------- */
@media print {
  #navbar, .mobile-sticky-cta, .mobile-menu { display: none !important; }
  body { color: #000; background: #fff; }
}
