/* ========================================
   GOOD LIFE GROWTH NETWORK
   growthnetwork.online
   ======================================== */

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

:root {
  --navy:        #0f3060;
  --navy-mid:    #1a3f7a;
  --navy-light:  #2a5298;
  --gold:        #D4AF37;
  --gold-light:  #FFD700;
  --gold-dark:   #b8941e;
  --teal:        #00BFBF;
  --bg:          #F4F6F9;
  --dark:        #091b3a;
  --white:       #FFFFFF;
  --light:       #EEF2F7;
  --shadow:      0 4px 24px rgba(0,0,0,0.18);
  --shadow-gold: 0 4px 24px rgba(212,175,55,0.35);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
}

h1,h2,h3,h4,h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

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

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

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(212,175,55,0.55); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: #002255; transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--navy); box-shadow: 0 8px 30px rgba(212,175,55,0.45); transform: translateY(-3px); }

.btn-lg { padding: 18px 42px; font-size: 1.05rem; }

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  padding: 0 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo img { height: 52px; width: auto; border-radius: 0; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 4px;
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links .nav-cta a {
  background: var(--gold);
  color: var(--navy);
  padding: 9px 20px;
}
.nav-links .nav-cta a:hover { background: #c49e2a; color: var(--navy); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #00264d 60%, #003d75 100%);
  color: var(--white);
  padding: 90px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.08;
}
.hero-content { position: relative; max-width: 760px; margin: 0 auto; }
.hero-tag {
  display: inline-block;
  background: rgba(212,175,55,0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 40px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero h1 span { color: var(--gold); }
.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  justify-content: center;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
}
.hero-stat span { font-size: 0.82rem; color: rgba(255,255,255,0.7); }
.hero-sep { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

/* ── HERO BANNER ── */
.hero-banner {
  width: 100%;
  background: var(--navy);
}
.hero-banner img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 320px;
  object-fit: cover;
  object-position: center top;
}
.hero-banner-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 32px 24px;
  background: var(--navy);
}

/* ── SECTION COMMON ── */
.section { padding: 80px 24px; }
.section-light { background: var(--bg); }
.section-dark { background: var(--navy); color: var(--white); }
.section-navy { background: #00264d; color: var(--white); }

.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem;
  color: rgba(0,0,0,0.6);
  max-width: 580px;
}
.section-dark .section-sub,
.section-navy .section-sub { color: rgba(255,255,255,0.75); }

.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ── FREE RESOURCE BAR ── */
.resource-bar {
  background: linear-gradient(135deg, #b8941e 0%, var(--gold) 40%, var(--gold-light) 60%, var(--gold) 80%, #b8941e 100%);
  background-size: 300% auto;
  animation: goldShimmer 5s linear infinite;
  padding: 20px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.resource-bar p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
}
.resource-bar a {
  color: var(--navy);
  text-decoration: underline;
  font-weight: 800;
}

/* ── PILLARS ── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.pillar-card {
  background: var(--white);
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
  border-top: 4px solid var(--gold);
}
.pillar-card:hover { transform: translateY(-6px); }
.pillar-icon {
  width: 60px;
  height: 60px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
}
.pillar-card h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--navy); }
.pillar-card p { font-size: 0.88rem; color: #555; }

/* ── LEAD MAGNET ── */
.lead-magnet {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 12px;
  padding: 60px 48px;
  display: flex;
  align-items: center;
  gap: 48px;
  margin-top: 60px;
  flex-wrap: wrap;
}
.lead-magnet-text { flex: 1; min-width: 280px; }
.lead-magnet-text .section-label { display: block; }
.lead-magnet-text h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 14px; }
.lead-magnet-text p { color: rgba(255,255,255,0.8); margin-bottom: 28px; }
.lead-magnet-form { flex: 1; min-width: 280px; }
.lead-magnet-form input {
  width: 100%;
  padding: 14px 18px;
  border: none;
  border-radius: 4px;
  font-size: 0.95rem;
  margin-bottom: 12px;
  background: rgba(255,255,255,0.95);
}
.lead-magnet-form .btn { width: 100%; text-align: center; }

/* ── PRODUCTS GRID ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.product-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); }
.product-card-img {
  height: 200px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; }
.product-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.product-card-body h3 { font-size: 1rem; margin-bottom: 8px; color: var(--navy); }
.product-card-body p { font-size: 0.85rem; color: #666; flex: 1; margin-bottom: 16px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--navy);
}
.price.free { color: var(--teal); }

/* ── OPPORTUNITIES ── */
.opp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.opp-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 10px;
  padding: 40px 32px;
  transition: border-color 0.2s;
}
.opp-card:hover { border-color: var(--gold); }
.opp-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 40px;
  margin-bottom: 20px;
}
.opp-card h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 12px; }
.opp-card p { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin-bottom: 20px; }
.opp-list { list-style: none; margin-bottom: 28px; }
.opp-list li {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.opp-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.opp-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 6px;
}
.opp-price span { font-size: 1rem; font-weight: 400; color: rgba(255,255,255,0.6); }
.opp-card .btn { width: 100%; text-align: center; margin-top: 16px; }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--white);
  border-radius: 8px;
  padding: 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
}
.testimonial-card p { font-size: 0.95rem; color: #444; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
}
.author-info strong { display: block; font-size: 0.9rem; color: var(--navy); }
.author-info span { font-size: 0.8rem; color: #777; }

/* ── VIDEO SECTION ── */
.video-wrap {
  margin-top: 48px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ── SOCIAL STRIP ── */
.social-strip {
  background: var(--dark);
  padding: 32px 24px;
  text-align: center;
}
.social-strip p {
  color: rgba(255,255,255,0.7);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.social-links { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s;
}
.social-link:hover { background: var(--gold); color: var(--navy); }

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy), #00264d);
  padding: 60px 24px 50px;
  text-align: center;
  color: var(--white);
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto; }

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
  margin-top: 48px;
}
.about-img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid var(--gold);
  position: sticky;
  top: 24px;
}
.about-img img { width: 100%; display: block; }
.about-text .section-label { display: block; }
.about-text h2 { color: var(--navy); font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 16px; }
.about-text p { color: #444; margin-bottom: 16px; font-size: 0.95rem; }
.about-text h3 { color: var(--navy); margin: 24px 0 12px; font-size: 1.1rem; }

/* ── ORG CARDS ── */
.org-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 40px; }
.org-card { background: var(--white); border-radius: 8px; padding: 28px; box-shadow: var(--shadow); border-top: 4px solid var(--teal); }
.org-card h3 { color: var(--navy); font-size: 1.05rem; margin-bottom: 10px; }
.org-card p { color: #555; font-size: 0.88rem; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 48px; }
.contact-info h3 { color: var(--navy); font-size: 1.2rem; margin-bottom: 20px; }
.contact-info p { color: #555; margin-bottom: 20px; font-size: 0.95rem; }
.contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.contact-item-icon { font-size: 1.2rem; margin-top: 2px; }
.contact-item-text strong { display: block; font-size: 0.85rem; color: var(--navy); }
.contact-item-text span { font-size: 0.85rem; color: #666; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 14px;
  transition: border-color 0.2s;
  background: var(--white);
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--navy); outline: none; }
.contact-form textarea { height: 130px; resize: vertical; }
.contact-form .btn { width: 100%; text-align: center; }

/* ── SHOP PAGE ── */
.shop-filter {
  display: flex;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 20px;
  border: 2px solid var(--navy);
  border-radius: 40px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  background: none;
  color: var(--navy);
  transition: all 0.2s;
}
.filter-btn.active, .filter-btn:hover { background: var(--navy); color: var(--white); }

/* ── FREE RESOURCES PAGE ── */
.resource-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; margin-top: 48px; }
.resource-card {
  background: var(--white);
  border-radius: 8px;
  padding: 32px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 4px solid var(--teal);
}
.resource-icon { font-size: 2.4rem; margin-bottom: 16px; }
.resource-card h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.05rem; }
.resource-card p { color: #555; font-size: 0.88rem; margin-bottom: 20px; }

/* ── MAILERLITE FORM EMBED ── */
.ml-form-wrap {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 10px;
  padding: 48px;
  margin: 48px 0;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.ml-form-wrap .section-label { display: block; margin-bottom: 10px; }
.ml-form-wrap h2 { color: var(--white); margin-bottom: 12px; font-size: 1.6rem; }
.ml-form-wrap p { color: rgba(255,255,255,0.8); margin-bottom: 28px; font-size: 0.95rem; }
.ml-form-wrap input {
  width: 100%;
  padding: 14px 18px;
  border: none;
  border-radius: 4px;
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.ml-form-wrap .btn { width: 100%; text-align: center; }
.ml-form-wrap .ml-note { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 14px; }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; margin-top: 48px; }
.blog-card { background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); transition: transform 0.2s; }
.blog-card:hover { transform: translateY(-4px); }
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 20px; }
.blog-tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--teal); margin-bottom: 8px; }
.blog-card-body h3 { font-size: 1rem; color: var(--navy); margin-bottom: 10px; }
.blog-card-body p { font-size: 0.85rem; color: #666; margin-bottom: 16px; }
.blog-card-body a { color: var(--navy); font-weight: 600; font-size: 0.85rem; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 24px 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 40px;
}
.footer-brand img { height: 52px; margin-bottom: 16px; border-radius: 0; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; }
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; }
.footer-bottom .social-icons { display: flex; gap: 12px; }
.footer-bottom .social-icons a {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  transition: color 0.2s;
}
.footer-bottom .social-icons a:hover { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--navy); padding: 16px; gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero { padding: 60px 20px; }
  .lead-magnet { padding: 36px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-sep { display: none; }
  .section { padding: 56px 20px; }
  .ml-form-wrap { padding: 32px 24px; }
}

/* ── UTILITIES ── */
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.gold { color: var(--gold); }
.teal { color: var(--teal); }
.navy { color: var(--navy); }

/* ── NAV DROPDOWN ── */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,51,102,0.2);
  min-width: 275px;
  z-index: 1001;
  border-top: 3px solid var(--gold);
  overflow: hidden;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 14px 20px;
  color: var(--navy) !important;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--light);
  transition: background 0.15s;
  line-height: 1.5;
}
.nav-dropdown-menu a:hover { background: var(--bg) !important; color: var(--navy) !important; }
.nav-dropdown-menu a strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 0.88rem; color: var(--navy); }
.nav-dropdown-menu a span { font-size: 0.76rem; color: #777; }
.nav-dropdown-menu .ddl-all {
  background: var(--bg);
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  color: var(--navy) !important;
  border-bottom: none;
}
.nav-dropdown-menu .ddl-all:hover { background: var(--gold) !important; color: var(--navy) !important; }

/* ── EARN BAR ── */
.earn-bar {
  background: linear-gradient(90deg, #040d1a, var(--navy-mid), #040d1a);
  background-size: 200% 100%;
  animation: earnBarSlide 10s linear infinite;
  padding: 9px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.earn-bar > p {
  color: rgba(255,255,255,0.85);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}
.earn-bar-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.earn-bar-links a {
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: underline;
  white-space: nowrap;
}
.earn-bar-links a:hover { color: #fff; }
.earn-sep { color: rgba(255,255,255,0.3); font-size: 0.8rem; }
.earn-bar-cta {
  background: var(--gold);
  color: var(--navy) !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 3px;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background 0.2s;
}
.earn-bar-cta:hover { background: #c49e2a; }
.earn-bar-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0 4px;
  line-height: 1;
  transition: color 0.2s;
}
.earn-bar-close:hover { color: rgba(255,255,255,0.8); }

/* ── FLOATING EARN BUTTON ── */
.float-earn {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.float-earn-btn {
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 40px;
  padding: 13px 22px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: all 0.2s;
  white-space: nowrap;
}
.float-earn-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.35); background: #c49e2a; }
.float-earn-panel {
  display: none;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.22);
  padding: 20px;
  min-width: 265px;
  border-top: 3px solid var(--gold);
}
.float-earn-panel.open { display: block; }
.float-earn-panel h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--light);
}
.fp-opp {
  display: block;
  background: var(--bg);
  border: 1px solid #e0e0e0;
  border-left: 3px solid var(--gold);
  color: var(--navy);
  padding: 12px 14px;
  border-radius: 6px;
  margin-bottom: 8px;
  transition: all 0.2s;
}
.fp-opp:hover { background: var(--navy); color: var(--white); }
.fp-opp strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 0.86rem; }
.fp-price { display: block; font-size: 0.75rem; color: var(--teal); font-weight: 600; margin-top: 2px; }
.fp-opp:hover .fp-price { color: var(--gold); }
.fp-all {
  display: block;
  text-align: center;
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 10px;
  text-decoration: underline;
}
.fp-all:hover { color: var(--gold); }

/* ── ACCORDION ── */
.accordion { margin-top: 24px; }
.accordion-item { border: 1px solid #dde4ee; border-radius: 6px; margin-bottom: 8px; overflow: hidden; }
.accordion-header {
  background: var(--bg);
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  transition: background 0.2s;
  user-select: none;
  list-style: none;
}
.accordion-header:hover { background: #e5eaf3; }
.accordion-header.open { background: var(--navy); color: var(--white); }
.acc-icon { font-size: 1.25rem; transition: transform 0.3s; flex-shrink: 0; }
.accordion-header.open .acc-icon { transform: rotate(45deg); color: var(--gold); }
.accordion-body {
  display: none;
  padding: 20px 24px;
  background: var(--white);
  border-top: 1px solid #dde4ee;
}
.accordion-body.open { display: block; }
.accordion-body p { color: #444; font-size: 0.9rem; margin-bottom: 12px; line-height: 1.7; }
.accordion-body ul { list-style: none; margin: 6px 0 14px; }
.accordion-body li {
  color: #444;
  font-size: 0.88rem;
  padding: 7px 0;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  border-bottom: 1px solid var(--light);
}
.accordion-body li:last-child { border-bottom: none; }
.accordion-body li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ── OPP TEASER (homepage light version) ── */
.opp-teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.opp-teaser-card {
  background: var(--white);
  border: 1px solid #dde4ee;
  border-top: 4px solid var(--gold);
  border-radius: 10px;
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.opp-teaser-card:hover { transform: translateY(-5px); box-shadow: 0 10px 40px rgba(0,51,102,0.16); }
.opp-teaser-card .opp-badge { display: inline-block; background: var(--navy); color: var(--gold); font-family: 'Montserrat',sans-serif; font-size: 0.72rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 4px 12px; border-radius: 40px; margin-bottom: 18px; }
.opp-teaser-card h3 { color: var(--navy); font-size: 1.3rem; margin-bottom: 10px; }
.opp-teaser-card > p { color: #555; font-size: 0.9rem; margin-bottom: 16px; flex: 1; }
.opp-teaser-list { list-style: none; margin-bottom: 24px; }
.opp-teaser-list li { color: #444; font-size: 0.87rem; padding: 6px 0; display: flex; gap: 10px; align-items: flex-start; border-bottom: 1px solid var(--light); }
.opp-teaser-list li:last-child { border-bottom: none; }
.opp-teaser-list li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.opp-teaser-price { font-family: 'Montserrat',sans-serif; font-size: 2rem; font-weight: 900; color: var(--navy); margin-bottom: 6px; }
.opp-teaser-price span { font-size: 1rem; font-weight: 400; color: #777; }
.opp-teaser-card .btn { margin-top: 8px; }
.opp-teaser-card .btn-text { display: block; text-align: center; color: var(--navy); font-family: 'Montserrat',sans-serif; font-size: 0.8rem; font-weight: 700; margin-top: 10px; text-decoration: underline; }
.opp-teaser-card .btn-text:hover { color: var(--gold); }

/* ── RESPONSIVE ADDITIONS ── */
@media (max-width: 640px) {
  .float-earn { bottom: 16px; right: 14px; }
  .float-earn-btn { padding: 11px 16px; font-size: 0.82rem; }
  .earn-bar > p { display: none; }
  .nav-dropdown-menu { left: auto; right: 0; transform: none; }
}

/* ── EXIT POPUP ── */
.exit-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.exit-popup.show { display: flex; }
.exit-popup-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.65); }
.exit-popup-card {
  position: relative;
  background: var(--white);
  border-radius: 12px;
  padding: 48px 40px;
  max-width: 480px;
  width: calc(100% - 48px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  text-align: center;
  border-top: 5px solid var(--gold);
}
.exit-popup-card .section-label { display: block; margin-bottom: 10px; }
.exit-popup-card h2 { color: var(--navy); font-size: 1.5rem; margin-bottom: 14px; }
.exit-popup-card > p { color: #555; margin-bottom: 24px; font-size: 0.95rem; }
.exit-popup-close {
  position: absolute;
  top: 14px; right: 16px;
  background: none; border: none;
  font-size: 1.1rem; cursor: pointer;
  color: #bbb; line-height: 1;
  padding: 4px 8px;
  transition: color 0.2s;
}
.exit-popup-close:hover { color: var(--navy); }

/* ── SCROLL SLIDE-IN ── */
.scroll-slidein {
  position: fixed;
  bottom: 100px;
  left: 24px;
  width: 270px;
  background: var(--white);
  border-radius: 10px;
  padding: 20px 18px;
  box-shadow: 0 8px 32px rgba(0,51,102,0.2);
  border-left: 4px solid var(--gold);
  z-index: 900;
  transform: translateX(calc(-100% - 30px));
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.scroll-slidein.show { transform: translateX(0); }
.scroll-slidein-close {
  position: absolute;
  top: 8px; right: 10px;
  background: none; border: none;
  font-size: 0.9rem; cursor: pointer;
  color: #bbb; line-height: 1;
  padding: 4px 6px;
  transition: color 0.2s;
}
.scroll-slidein-close:hover { color: var(--navy); }
.slidein-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.slidein-icon { font-size: 2rem; flex-shrink: 0; }
.slidein-label { font-family: 'Montserrat',sans-serif; font-weight: 700; color: var(--navy); font-size: 0.85rem; margin-bottom: 2px; }
.slidein-sub { font-size: 0.78rem; color: #666; }

/* ── FOOTER OPT-IN ── */
.footer-optin {
  background: var(--navy);
  padding: 52px 24px;
  text-align: center;
}
.footer-optin-inner { max-width: 520px; margin: 0 auto; }
.footer-optin h3 {
  font-family: 'Montserrat',sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 6px;
}
.footer-optin .proof {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}
.footer-optin .proof strong { color: var(--gold); }
.footer-optin .ml-note { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-top: 12px; }

/* ── INLINE EBOOK CTA ── */
.ebook-cta-block {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 10px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.ebook-cta-icon { font-size: 3.5rem; flex-shrink: 0; line-height: 1; }
.ebook-cta-text h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 8px; }
.ebook-cta-text p { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin-bottom: 16px; }
@media (max-width: 640px) {
  .ebook-cta-block { flex-direction: column; text-align: center; padding: 28px 24px; }
  .exit-popup-card { padding: 36px 24px; }
  .scroll-slidein { left: 12px; right: 12px; width: auto; bottom: 80px; }
}

/* ═══════════════════════════════════════════════
   KEYFRAME ANIMATIONS
   ═══════════════════════════════════════════════ */

@keyframes goldShimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}
@keyframes earnBarSlide {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes sweepGloss {
  0%   { transform: translateX(-120%) skewX(-20deg); opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: translateX(320%) skewX(-20deg); opacity: 0; }
}
@keyframes goldGlowPulse {
  0%, 100% { box-shadow: 0 0 18px rgba(212,175,55,0.45), 0 4px 20px rgba(0,0,0,0.3); }
  50%       { box-shadow: 0 0 40px rgba(212,175,55,0.85), 0 0 70px rgba(212,175,55,0.25), 0 4px 20px rgba(0,0,0,0.3); }
}
@keyframes heroBreathe {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.035); }
}
@keyframes heroGloss {
  0%   { transform: translateX(-100%) rotate(20deg); opacity: 0; }
  10%  { opacity: 0.7; }
  90%  { opacity: 0.7; }
  100% { transform: translateX(350%) rotate(20deg); opacity: 0; }
}
@keyframes particleFloat {
  0%   { transform: translateY(0) translateX(0); opacity: 0.25; }
  33%  { transform: translateY(-18px) translateX(8px); opacity: 0.55; }
  66%  { transform: translateY(-8px) translateX(-6px); opacity: 0.35; }
  100% { transform: translateY(0) translateX(0); opacity: 0.25; }
}
@keyframes goldTextShimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-36px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(36px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes borderGlow {
  0%, 100% { border-color: rgba(212,175,55,0.3); }
  50%       { border-color: rgba(212,175,55,0.9); box-shadow: 0 0 20px rgba(212,175,55,0.25); }
}
@keyframes ctaBarLine {
  from { width: 0; opacity: 0; }
  to   { width: 220px; opacity: 1; }
}
@keyframes navGlow {
  0%, 100% { box-shadow: 0 2px 12px rgba(0,0,0,0.3); }
  50%       { box-shadow: 0 2px 20px rgba(212,175,55,0.15), 0 2px 12px rgba(0,0,0,0.3); }
}

/* ═══════════════════════════════════════════════
   HERO — DYNAMIC
   ═══════════════════════════════════════════════ */

.hero-dynamic {
  position: relative;
  background: #f7eed9;
  overflow: hidden;
  line-height: 0;
}

.hero-img-wrap {
  position: relative;
  overflow: hidden;
  line-height: 0;
}

.hero-img-wrap img {
  width: 100%;
  max-height: 625px;
  object-fit: contain;
  object-position: center center;
  display: block;
  animation: heroBreathe 14s ease-in-out infinite;
  transform-origin: center center;
}

/* Gloss sweep over banner */
.hero-img-wrap::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 25%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255,255,255,0.06) 50%,
    transparent 100%
  );
  animation: heroGloss 7s ease-in-out infinite;
  animation-delay: 1.5s;
  pointer-events: none;
}

/* Floating gold particles */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.3;
}
.particle:nth-child(1)  { width:4px;  height:4px;  top:12%;  left:7%;   animation: particleFloat 5.5s ease-in-out infinite; }
.particle:nth-child(2)  { width:3px;  height:3px;  top:28%;  left:91%;  animation: particleFloat 7s ease-in-out infinite 1.2s; }
.particle:nth-child(3)  { width:5px;  height:5px;  top:58%;  left:13%;  animation: particleFloat 6s ease-in-out infinite 2.3s; }
.particle:nth-child(4)  { width:3px;  height:3px;  top:78%;  left:82%;  animation: particleFloat 8s ease-in-out infinite 0.7s; }
.particle:nth-child(5)  { width:4px;  height:4px;  top:42%;  left:48%;  animation: particleFloat 5s ease-in-out infinite 3.1s; }
.particle:nth-child(6)  { width:3px;  height:3px;  top:18%;  left:67%;  animation: particleFloat 7.5s ease-in-out infinite 1.8s; }
.particle:nth-child(7)  { width:2px;  height:2px;  top:65%;  left:34%;  animation: particleFloat 6.5s ease-in-out infinite 0.4s; }
.particle:nth-child(8)  { width:4px;  height:4px;  top:88%;  left:55%;  animation: particleFloat 9s ease-in-out infinite 2.8s; }

/* CTA bar beneath banner */
.hero-cta-bar {
  display: flex;
  gap: 16px;
  justify-content: center;
  padding: 20px 24px;
  background: #050f1e;
  flex-wrap: wrap;
  line-height: 1.5;
  position: relative;
}

.hero-cta-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: ctaBarLine 1.2s ease 0.3s both;
}

/* ═══════════════════════════════════════════════
   BUTTON ENHANCEMENTS
   ═══════════════════════════════════════════════ */

.btn-shimmer {
  position: relative;
  overflow: hidden;
}
.btn-shimmer::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  animation: sweepGloss 3.5s ease-in-out infinite;
  animation-delay: 2s;
  pointer-events: none;
}
.btn-glow {
  animation: goldGlowPulse 2.8s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════
   NAVBAR ENHANCEMENTS
   ═══════════════════════════════════════════════ */

.navbar {
  border-bottom: 1px solid rgba(212,175,55,0.12);
  animation: navGlow 6s ease-in-out infinite;
}
.nav-links a:hover {
  color: var(--gold);
  text-shadow: 0 0 12px rgba(212,175,55,0.4);
}

/* ═══════════════════════════════════════════════
   SECTION DARK — GOLD HEADING SHIMMER
   ═══════════════════════════════════════════════ */

.section-dark .section-title,
.section-navy .section-title {
  background: linear-gradient(135deg, #FFD700 0%, #D4AF37 35%, #FFD700 65%, #D4AF37 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldTextShimmer 5s linear infinite;
}

/* ═══════════════════════════════════════════════
   CARD HOVER — GLOSS EFFECT
   ═══════════════════════════════════════════════ */

.pillar-card,
.testimonial-card,
.product-card,
.opp-teaser-card {
  position: relative;
  overflow: hidden;
}

.pillar-card::before,
.testimonial-card::before,
.product-card::before,
.opp-teaser-card::before {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
  transform: skewX(-15deg);
  transition: left 0s;
  pointer-events: none;
  z-index: 1;
}

.pillar-card:hover::before,
.testimonial-card:hover::before,
.product-card:hover::before,
.opp-teaser-card:hover::before {
  animation: sweepGloss 0.55s ease forwards;
}

.opp-card {
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.opp-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 28px rgba(212,175,55,0.2);
}
.opp-card::before {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
  transform: skewX(-15deg);
  pointer-events: none;
  z-index: 1;
}
.opp-card:hover::before {
  animation: sweepGloss 0.55s ease forwards;
}

/* Enhanced card hover lift with glow */
.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15), 0 0 0 1px rgba(212,175,55,0.15);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}
.opp-teaser-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,51,102,0.2), 0 0 0 1px rgba(212,175,55,0.2);
}

/* Pillar icon glow on hover */
.pillar-card:hover .pillar-icon {
  box-shadow: 0 0 20px rgba(212,175,55,0.4);
  background: var(--navy-mid);
}

/* ═══════════════════════════════════════════════
   SCROLL-TRIGGERED ANIMATIONS
   ═══════════════════════════════════════════════ */

.anim-up,
.anim-left,
.anim-right,
.anim-scale {
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.anim-up    { opacity: 0; transform: translateY(38px); }
.anim-left  { opacity: 0; transform: translateX(-38px); }
.anim-right { opacity: 0; transform: translateX(38px); }
.anim-scale { opacity: 0; transform: scale(0.92); }

.anim-up.visible,
.anim-left.visible,
.anim-right.visible,
.anim-scale.visible {
  opacity: 1;
  transform: none;
}

.anim-d1 { transition-delay: 0.1s; }
.anim-d2 { transition-delay: 0.2s; }
.anim-d3 { transition-delay: 0.3s; }
.anim-d4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════════
   GOLD ACCENT LINES & DECORATIONS
   ═══════════════════════════════════════════════ */

.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  margin: 14px auto;
  border-radius: 2px;
}

/* Section label underline accent */
.section-label {
  position: relative;
}
.section-label::after {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--gold);
  margin: 4px 0 0;
  border-radius: 2px;
}
.text-center .section-label::after {
  margin: 4px auto 0;
}

/* ═══════════════════════════════════════════════
   TESTIMONIAL CARD ENHANCED
   ═══════════════════════════════════════════════ */

.testimonial-card {
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.12), 0 0 0 1px rgba(212,175,55,0.12);
}

/* ═══════════════════════════════════════════════
   FOOTER ENHANCED
   ═══════════════════════════════════════════════ */

footer {
  border-top: 1px solid rgba(212,175,55,0.15);
}

.footer-optin {
  background: var(--navy);
  border-top: 1px solid rgba(212,175,55,0.15);
  border-bottom: 1px solid rgba(212,175,55,0.15);
}

/* ═══════════════════════════════════════════════
   SOCIAL LINKS ENHANCED
   ═══════════════════════════════════════════════ */

.social-link {
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}
.social-link:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212,175,55,0.4);
}

/* ═══════════════════════════════════════════════
   FLOAT EARN BUTTON — ENHANCED
   ═══════════════════════════════════════════════ */

.float-earn-btn {
  animation: goldGlowPulse 3s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════
   OPP BADGE — SHIMMER
   ═══════════════════════════════════════════════ */

.opp-badge {
  position: relative;
  overflow: hidden;
}
.opp-badge::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  animation: sweepGloss 4s ease-in-out infinite;
  animation-delay: 1s;
}

/* ═══════════════════════════════════════════════
   PAGE HERO GRADIENT UPDATE
   ═══════════════════════════════════════════════ */

.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
}

/* ═══════════════════════════════════════════════
   SHOP HERO — DYNAMIC HEADER
   ═══════════════════════════════════════════════ */

.shop-hero {
  position: relative;
  overflow: hidden;
  background: #f7eed9;
}
.shop-hero-img-wrap {
  position: relative;
  overflow: hidden;
  line-height: 0;
}
.shop-hero-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  animation: heroBreathe 14s ease-in-out infinite;
  transform-origin: center center;
}
.shop-hero-img-wrap::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 25%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.05), transparent);
  animation: heroGloss 7s ease-in-out infinite;
  animation-delay: 2s;
  pointer-events: none;
}
.shop-hero-overlay {
  background: #050f1e;
  text-align: center;
  padding: 28px 24px;
  border-top: 1px solid rgba(212,175,55,0.2);
}
.shop-hero-overlay h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.shop-hero-overlay p {
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.95rem;
}

