/* ============================================================
   La Familia Insurance Inc. — Shared Stylesheet
   ============================================================ */

:root {
  --color-primary:     #1A56C4;
  --color-cyan:        #00C8E0;
  --color-deep:        #0F3D8C;
  --color-light-sky:   #E8F4FD;
  --color-white:       #FFFFFF;
  --color-dark:        #1A1A2E;
  --color-body:        #4A4A6A;
  --color-cta:         #FF6B35;
  --color-cta-hover:   #E5572A;
  --color-whatsapp:    #25D366;
  --color-border:      #E5EAF2;

  --shadow-sm:  0 4px 12px rgba(15, 61, 140, 0.06);
  --shadow-md:  0 10px 30px rgba(15, 61, 140, 0.10);
  --shadow-lg:  0 20px 50px rgba(15, 61, 140, 0.16);

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 50px;

  --gradient-blue: linear-gradient(135deg, var(--color-deep), var(--color-cyan));
  --gradient-cyan: linear-gradient(135deg, var(--color-primary), var(--color-cyan));

  --container-max: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  color: var(--color-body);
  background: var(--color-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito', sans-serif;
  color: var(--color-dark);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-weight: 900; font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-weight: 700; font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-weight: 700; font-size: clamp(1.3rem, 2vw, 1.55rem); }
h4 { font-weight: 700; font-size: 1.15rem; }

p { margin-bottom: 1rem; }
a { color: var(--color-primary); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--color-cta); }

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

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 80px 0; }

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-cyan);
  margin-bottom: 1rem;
}
.eyebrow.dark { color: var(--color-primary); }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-header p {
  color: var(--color-body);
  font-size: 1.1rem;
  margin-top: 12px;
}

.tagline {
  font-family: 'Nunito', sans-serif;
  font-weight: 300;
  font-style: italic;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}

.btn-cta {
  background: var(--color-cta);
  color: var(--color-white);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.35);
}
.btn-cta:hover {
  background: var(--color-cta-hover);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 107, 53, 0.45);
}

.btn-primary {
  background: var(--gradient-cyan);
  color: var(--color-white);
  box-shadow: 0 8px 20px rgba(26, 86, 196, 0.3);
}
.btn-primary:hover { transform: translateY(-2px); color: var(--color-white); }

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-deep);
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline-dark:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: var(--color-white);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  background: #1FB855;
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 40px; font-size: 1.08rem; }
.btn-sm { padding: 10px 22px; font-size: 0.9rem; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: transparent;
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}
.nav.always-light {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--color-white);
  letter-spacing: -0.02em;
}
.nav.scrolled .nav-logo,
.nav.always-light .nav-logo { color: var(--color-deep); }

.logo-mark {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--gradient-cyan);
  display: grid; place-items: center;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 200, 224, 0.35);
}
.logo-mark svg { width: 22px; height: 22px; }
.logo-mark.logo-mark-img {
  width: 48px; height: 48px;
  background: white;
  padding: 4px;
  box-shadow: 0 4px 12px rgba(26, 86, 196, 0.18), 0 0 0 1px rgba(26, 86, 196, 0.06);
}
.logo-mark.logo-mark-img img { width: 100%; height: 100%; object-fit: contain; display: block; }
.nav.scrolled .logo-mark.logo-mark-img,
.nav.always-light .logo-mark.logo-mark-img { box-shadow: 0 2px 8px rgba(26, 86, 196, 0.12); }
.footer-logo .logo-mark.logo-mark-img { background: rgba(255,255,255,0.95); padding: 5px; }
.logo-text {
  display: flex; flex-direction: column;
  line-height: 1;
}
.logo-text small {
  font-family: 'Nunito', sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 0.7rem;
  opacity: 0.75;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--color-white);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  position: relative;
}
.nav.scrolled .nav-links a,
.nav.always-light .nav-links a { color: var(--color-dark); }
.nav-links a:hover, .nav-links a.active { color: var(--color-cta); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 3px;
  background: var(--color-cta);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  background: var(--color-cyan);
  color: var(--color-white);
  border: none;
  padding: 8px 16px;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 0.85rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 200, 224, 0.35);
}
.lang-toggle:hover { background: var(--color-primary); transform: translateY(-1px); }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.hamburger span {
  width: 24px; height: 2.5px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav.scrolled .hamburger span,
.nav.always-light .hamburger span { background: var(--color-dark); }

@media (max-width: 960px) {
  .nav-links, .nav-actions .btn-cta { display: none; }
  .hamburger { display: flex; }
}

/* Mobile drawer */
.drawer {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--color-white);
  z-index: 200;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(.7,0,.3,1);
  padding: 28px 24px 40px;
  box-shadow: var(--shadow-lg);
  max-height: 100vh;
  overflow-y: auto;
}
.drawer.open { transform: translateY(0); }
.drawer-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px;
}
.drawer-close {
  background: none; border: none; cursor: pointer;
  font-size: 1.8rem; color: var(--color-dark);
  width: 40px; height: 40px;
}
.drawer-links {
  list-style: none;
  display: flex; flex-direction: column; gap: 4px;
  margin-bottom: 20px;
}
.drawer-links a {
  display: block;
  padding: 14px 0;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-dark);
  border-bottom: 1px solid var(--color-border);
}
.drawer .btn { width: 100%; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--gradient-blue);
  color: var(--color-white);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero.hero-md { min-height: 60vh; padding: 160px 0 80px; }
.hero.hero-sm { min-height: 50vh; padding: 160px 0 80px; }
.hero.hero-xs { min-height: 40vh; padding: 140px 0 60px; }

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: skewY(-3deg);
  transform-origin: top left;
  opacity: 0.6;
  pointer-events: none;
}
.hero-watermark {
  position: absolute;
  right: -80px; top: 50%;
  transform: translateY(-50%);
  width: 600px; height: 600px;
  opacity: 0.07;
  pointer-events: none;
}
.hero-watermark svg { width: 100%; height: 100%; }

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
}
.hero-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-cyan);
  margin-bottom: 1.25rem;
  padding: 6px 14px;
  background: rgba(0, 200, 224, 0.15);
  border-radius: var(--radius-pill);
}
.hero h1 {
  color: var(--color-white);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  margin-bottom: 1.5rem;
  text-wrap: balance;
}
.hero-sub {
  font-family: 'Nunito', sans-serif;
  font-weight: 300;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2.25rem;
  max-width: 660px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 2rem;
  align-items: center;
}

.wa-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.15);
  border: 1.5px solid rgba(37, 211, 102, 0.5);
  color: var(--color-white);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.wa-chip:hover {
  background: var(--color-whatsapp);
  color: var(--color-white);
  transform: translateY(-1px);
}
.wa-chip svg { width: 18px; height: 18px; }

.trust-badges {
  display: flex; flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 24px;
}
.trust-badges span {
  display: inline-flex; align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.92);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.93rem;
}
.trust-badges span::before {
  content: '✓';
  color: var(--color-cyan);
  font-weight: 900;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip { background: var(--color-light-sky); padding: 60px 0; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.trust-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.trust-card .ico {
  width: 56px; height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--gradient-cyan);
  color: white;
  display: grid; place-items: center;
  font-size: 1.6rem;
}
.trust-card h4 {
  font-size: 1rem;
  color: var(--color-dark);
  font-family: 'Nunito', sans-serif;
}
@media (max-width: 768px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   SERVICES OVERVIEW (home)
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.service-card {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: var(--gradient-cyan);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.service-icon {
  width: 72px; height: 72px;
  border-radius: var(--radius-md);
  background: var(--color-light-sky);
  color: var(--color-primary);
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.service-icon svg { width: 36px; height: 36px; }
.service-card h3 { margin-bottom: 12px; }
.service-card p { margin-bottom: 22px; min-height: 60px; }
.service-card .arrow-link {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  color: var(--color-cta);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.3s ease;
}
.service-card .arrow-link:hover { gap: 12px; }

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   DOT GRID PATTERN
   ============================================================ */
.dotgrid {
  background-image: radial-gradient(circle, rgba(15, 61, 140, 0.12) 1.2px, transparent 1.2px);
  background-size: 20px 20px;
}

/* ============================================================
   HOW IT WORKS (steps)
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  margin-top: 40px;
}
.steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 16%; right: 16%;
  height: 2px;
  border-top: 2px dashed var(--color-cyan);
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 24px 28px;
  text-align: center;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--gradient-cyan);
  color: var(--color-white);
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  display: grid; place-items: center;
  margin: 0 auto 18px;
  box-shadow: 0 8px 18px rgba(26, 86, 196, 0.3);
}
.step h3 { margin-bottom: 8px; }
@media (max-width: 768px) {
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
}

/* ============================================================
   AGENT PREVIEW
   ============================================================ */
.agent-preview {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: stretch;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.agent-portrait-card {
  background: var(--gradient-blue);
  color: var(--color-white);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.agent-portrait-card::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.5;
}
.agent-portrait {
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 5px solid rgba(255, 255, 255, 0.9);
  margin-bottom: 22px;
  display: block;
  object-fit: cover;
  object-position: top center;
  position: relative;
  z-index: 1;
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}
.agent-portrait-card h3 { color: white; margin-bottom: 4px; position: relative; z-index: 1; }
.agent-portrait-card .agent-title {
  font-family: 'Nunito', sans-serif;
  font-style: italic;
  font-weight: 300;
  opacity: 0.9;
  position: relative; z-index: 1;
}
.agent-bio { padding: 40px 36px; }
.agent-bio blockquote {
  border-left: 4px solid var(--color-cyan);
  padding: 12px 0 12px 20px;
  margin: 22px 0;
  font-family: 'Nunito', sans-serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--color-dark);
}
@media (max-width: 768px) {
  .agent-preview { grid-template-columns: 1fr; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--gradient-blue);
  color: white;
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
}
.testimonials .container { position: relative; z-index: 1; }
.testimonials h2 { color: white; }
.testimonials .section-header p { color: rgba(255,255,255,0.85); }
.tg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tcard {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s ease;
}
.tcard:hover { transform: translateY(-6px); background: rgba(255,255,255,0.18); }
.tcard .stars { color: #FFC857; margin-bottom: 14px; font-size: 1rem; letter-spacing: 2px; }
.tcard .quote {
  font-family: 'Nunito', sans-serif;
  font-style: italic;
  font-size: 1.02rem;
  margin-bottom: 18px;
  line-height: 1.6;
}
.tcard .author {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 16px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-cyan);
  display: grid; place-items: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  color: var(--color-deep);
}
.author-info strong { font-family: 'Nunito', sans-serif; display: block; line-height: 1.2; }
.author-info small { color: rgba(255,255,255,0.7); }

.disclaimer-mini {
  text-align: center;
  margin-top: 32px;
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(255,255,255,0.6);
}

@media (max-width: 880px) {
  .tg { grid-template-columns: 1fr; }
}

/* ============================================================
   BLOG STRIP
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-thumb {
  aspect-ratio: 16/10;
  background: var(--gradient-cyan);
  position: relative;
  display: grid; place-items: center;
  color: white;
  font-size: 3rem;
  overflow: hidden;
}
.blog-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 30px 30px;
}
.blog-thumb.health { background: linear-gradient(135deg, #1A56C4, #00C8E0); }
.blog-thumb.life { background: linear-gradient(135deg, #0F3D8C, #1A56C4); }
.blog-thumb.aca { background: linear-gradient(135deg, #00C8E0, #1A56C4); }
.blog-thumb.finance { background: linear-gradient(135deg, #1A56C4, #6BB6FF); }

.video-play-overlay {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  background: rgba(15, 61, 140, 0.35);
  z-index: 2;
}
.video-play-overlay .play-btn {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--color-cta);
  display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.5);
  color: white;
}
.video-play-overlay .play-btn svg { width: 28px; height: 28px; margin-left: 4px; }

.cat-chip {
  display: inline-block;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--color-light-sky);
  color: var(--color-primary);
}
.cat-chip.health { background: #DCEEFD; color: #1A56C4; }
.cat-chip.life { background: #DDF8FC; color: #007A8C; }
.cat-chip.aca { background: #FFF0E5; color: #C8521D; }
.cat-chip.finance { background: #E5F5EB; color: #1B7A40; }

.blog-body { padding: 24px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.blog-body .cat-chip { align-self: flex-start; margin-bottom: 12px; }
.blog-body h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--color-dark);
  line-height: 1.3;
}
.blog-body p {
  color: var(--color-body);
  font-size: 0.95rem;
  margin-bottom: 16px;
  flex: 1;
}
.blog-meta {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; color: var(--color-body);
  border-top: 1px solid var(--color-border);
  padding-top: 14px;
  margin-top: auto;
}
.blog-meta .author-mini {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--color-blue-50, #eaf3ff);
  color: white;
  display: block;
  object-fit: cover;
  object-position: top center;
  border: 1.5px solid white;
  box-shadow: 0 2px 6px rgba(26,86,196,0.18);
}
.blog-meta .dot { color: var(--color-border); }

@media (max-width: 960px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--gradient-cyan);
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: white; margin-bottom: 12px; }
.cta-banner p { color: rgba(255, 255, 255, 0.92); font-size: 1.15rem; margin-bottom: 28px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-banner .actions {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--color-deep);
  color: rgba(255, 255, 255, 0.85);
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
footer .container { position: relative; z-index: 1; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-grid h4 {
  color: white;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-grid a { color: rgba(255, 255, 255, 0.78); }
.footer-grid a:hover { color: var(--color-cyan); }
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
  color: white;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
}
.footer-logo .logo-mark { box-shadow: 0 4px 14px rgba(0, 200, 224, 0.5); }
.footer-col p { font-size: 0.93rem; line-height: 1.6; margin-bottom: 12px; color: rgba(255,255,255,0.78); }
.footer-col p.smol { font-size: 0.82rem; opacity: 0.7; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.footer-contact-list .ico { color: var(--color-cyan); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 22px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  text-align: center;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.fab-whatsapp {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--color-whatsapp);
  color: white;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  text-decoration: none;
  animation: wa-pulse 2s infinite;
}
.fab-whatsapp svg { width: 30px; height: 30px; }
.fab-whatsapp:hover { transform: scale(1.08); color: white; }
.fab-whatsapp::after {
  content: attr(data-tooltip);
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-dark);
  color: white;
  padding: 8px 14px;
  border-radius: 8px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.fab-whatsapp:hover::after { opacity: 1; }

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45), 0 0 0 18px rgba(37, 211, 102, 0); }
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }

/* hero stagger — content stays visible if animation fails */
.hero .stagger > * { animation: heroIn 0.8s ease both; }
.hero .stagger > *:nth-child(1) { animation-delay: 0.1s; }
.hero .stagger > *:nth-child(2) { animation-delay: 0.2s; }
.hero .stagger > *:nth-child(3) { animation-delay: 0.3s; }
.hero .stagger > *:nth-child(4) { animation-delay: 0.4s; }
.hero .stagger > *:nth-child(5) { animation-delay: 0.5s; }
@keyframes heroIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

[data-en], [data-es] { transition: opacity 0.15s ease; }

/* ============================================================
   HEALTH / LIFE PAGE SPECIFIC
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 36px; } }

.info-card {
  background: var(--gradient-blue);
  color: white;
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.info-card::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.5;
}
.info-card > * { position: relative; z-index: 1; }
.info-card h3 { color: white; margin-bottom: 16px; }
.info-card ul { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.info-card li { display: flex; gap: 10px; align-items: flex-start; line-height: 1.5; }
.info-card li::before {
  content: '✓';
  color: var(--color-cyan);
  font-weight: 900;
  flex-shrink: 0;
}

.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}
.checklist li {
  list-style: none;
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px 18px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  color: var(--color-dark);
}
.checklist .check {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--color-cyan);
  color: white;
  display: grid; place-items: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 1px;
}
@media (max-width: 720px) { .checklist { grid-template-columns: 1fr; } }

.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.icon-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.icon-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--color-cyan); }
.icon-card .ico {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  border-radius: var(--radius-md);
  background: var(--color-light-sky);
  color: var(--color-primary);
  display: grid; place-items: center;
  font-size: 1.8rem;
}
.icon-card h4 { font-family: 'Nunito', sans-serif; font-size: 1rem; }
@media (max-width: 760px) { .icon-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .icon-grid { grid-template-columns: 1fr; } }

/* Two large product cards (Life page) */
.product-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  display: flex; flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card .head {
  padding: 32px 32px 22px;
  background: var(--gradient-cyan);
  color: white;
}
.product-card .head h3 { color: white; }
.product-card .body { padding: 28px 32px 32px; flex: 1; }
.product-card .body ul { list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.product-card .body li {
  display: flex; align-items: flex-start; gap: 10px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  color: var(--color-dark);
}
.product-card .body li::before {
  content: '✓';
  color: var(--color-cyan);
  font-weight: 900;
  flex-shrink: 0;
}
@media (max-width: 760px) { .product-cards { grid-template-columns: 1fr; } }

/* Comparison table */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.compare-table th, .compare-table td {
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}
.compare-table thead th {
  background: var(--gradient-cyan);
  color: white;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
}
.compare-table td:first-child {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  color: var(--color-dark);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover { background: var(--color-light-sky); }
@media (max-width: 720px) {
  .compare-table th, .compare-table td { padding: 14px; font-size: 0.92rem; }
}

/* Two cards (enrollment) */
.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.duo-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 32px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  border-left: 5px solid var(--color-cta);
}
.duo-card.alt { border-left-color: var(--color-cyan); }
.duo-card h3 { margin-bottom: 12px; }
@media (max-width: 720px) { .duo { grid-template-columns: 1fr; } }

/* Three differentiator cards */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.diff-card {
  text-align: center;
  background: white;
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.diff-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.diff-card .num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--color-cta);
  color: white;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  display: grid; place-items: center;
  margin: 0 auto 18px;
}
.diff-card h4 { margin-bottom: 8px; font-size: 1.1rem; }
@media (max-width: 760px) { .diff-grid { grid-template-columns: 1fr; } }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: start;
}
.about-portrait {
  position: sticky; top: 110px;
  background: var(--gradient-blue);
  color: white;
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.about-portrait::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 30px 30px;
}
.about-portrait > * { position: relative; z-index: 1; }
.about-portrait .photo {
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: 6px solid rgba(255,255,255,0.9);
  margin: 0 auto 22px;
  display: block;
  object-fit: cover;
  object-position: top center;
  box-shadow: 0 22px 50px rgba(0,0,0,0.28);
}
.about-portrait h2 { color: white; margin-bottom: 4px; }
.about-portrait .role {
  font-family: 'Nunito', sans-serif;
  font-style: italic;
  font-weight: 300;
  opacity: 0.9;
  margin-bottom: 26px;
}
.cred-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  text-align: left;
  margin-top: 20px;
}
.cred-list li {
  display: flex; gap: 10px; align-items: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
}

.about-bio p { font-size: 1.07rem; line-height: 1.75; margin-bottom: 1rem; }
.about-bio blockquote {
  border-left: 4px solid var(--color-cyan);
  padding: 18px 0 18px 24px;
  margin: 28px 0;
  font-family: 'Nunito', sans-serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--color-dark);
  line-height: 1.5;
}

@media (max-width: 880px) {
  .about-split { grid-template-columns: 1fr; }
  .about-portrait { position: static; }
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.value-card {
  background: white;
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-card .ico {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  background: var(--color-light-sky);
  color: var(--color-primary);
  display: grid; place-items: center;
  margin: 0 auto 18px;
  font-size: 1.7rem;
}
.value-card h4 { margin-bottom: 8px; }
@media (max-width: 760px) { .values-grid { grid-template-columns: 1fr; } }

.disclosure-block {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-body);
  font-style: italic;
  max-width: 760px;
  margin: 0 auto;
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--color-light-sky);
}

.mission-block {
  background: var(--color-light-sky);
  padding: 64px 0;
  text-align: center;
}
.mission-block .quote-mark {
  font-family: 'Nunito', sans-serif;
  font-size: 4rem;
  color: var(--color-cyan);
  line-height: 1;
  margin-bottom: 8px;
}
.mission-block p {
  font-family: 'Nunito', sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--color-dark);
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ============================================================
   BLOG INDEX
   ============================================================ */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 10px 0 20px;
  margin-bottom: 30px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.filter-bar::-webkit-scrollbar { display: none; }
.filter-pill {
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  background: white;
  border: 2px solid var(--color-border);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  color: var(--color-body);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.filter-pill:hover { border-color: var(--color-cta); color: var(--color-cta); }
.filter-pill.active {
  background: var(--color-cta);
  border-color: var(--color-cta);
  color: white;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 50px;
}
.pagination a, .pagination span {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  background: white;
  border: 2px solid var(--color-border);
  color: var(--color-body);
  transition: all 0.3s ease;
  cursor: pointer;
}
.pagination a:hover, .pagination .active {
  background: var(--color-cta);
  border-color: var(--color-cta);
  color: white;
}

.newsletter-strip {
  background: var(--color-light-sky);
  padding: 60px 0;
  text-align: center;
}
.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 28px auto 0;
}
.newsletter-form input {
  flex: 1;
  padding: 16px 22px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--color-border);
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
}
.newsletter-form input:focus { outline: none; border-color: var(--color-cyan); }
@media (max-width: 520px) {
  .newsletter-form { flex-direction: column; }
}

/* ============================================================
   BLOG POST
   ============================================================ */
.breadcrumb {
  font-size: 0.9rem;
  color: var(--color-body);
  margin-bottom: 20px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
}
.breadcrumb a { color: var(--color-primary); }
.breadcrumb .sep { margin: 0 8px; color: var(--color-border); }

.post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 50px;
  align-items: start;
}
@media (max-width: 980px) {
  .post-layout { grid-template-columns: 1fr; }
}

.post-article h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin: 14px 0 20px;
  line-height: 1.2;
}
.author-row {
  display: flex; align-items: center; gap: 12px;
  margin: 24px 0;
  font-size: 0.95rem;
  color: var(--color-body);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  flex-wrap: wrap;
}
.author-row .avatar-circle {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #eaf3ff;
  color: white;
  display: block;
  object-fit: cover;
  object-position: top center;
  border: 2px solid white;
  box-shadow: 0 4px 10px rgba(26,86,196,0.2);
}
.author-row .dot { color: var(--color-border); }

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin: 2rem 0;
  box-shadow: var(--shadow-md);
}
.video-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

.featured-banner {
  border-radius: var(--radius-md);
  aspect-ratio: 16/8;
  background: var(--gradient-blue);
  color: white;
  display: grid; place-items: center;
  font-size: 4.5rem;
  margin: 28px 0 32px;
  position: relative;
  overflow: hidden;
}
.featured-banner::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}

.post-body { font-size: 1.05rem; line-height: 1.85; color: var(--color-body); }
.post-body h2 {
  margin-top: 36px;
  margin-bottom: 14px;
  font-size: 1.7rem;
  color: var(--color-dark);
}
.post-body p { margin-bottom: 18px; }
.post-body ul { padding-left: 20px; margin-bottom: 22px; }
.post-body ul li { margin-bottom: 8px; }

.pull-quote {
  border-left: 4px solid var(--color-cyan);
  padding: 14px 0 14px 22px;
  margin: 28px 0;
  font-family: 'Nunito', sans-serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--color-dark);
  line-height: 1.5;
}

.mid-cta {
  background: var(--gradient-blue);
  color: white;
  padding: 36px 40px;
  border-radius: var(--radius-lg);
  margin: 40px 0;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.mid-cta::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.5;
  pointer-events: none;
}
.mid-cta > * { position: relative; z-index: 1; }
.mid-cta-text { flex: 1; min-width: 240px; }
.mid-cta-text h4 { color: white; margin-bottom: 4px; }
.mid-cta-text p { color: rgba(255,255,255,0.9); margin: 0; font-size: 0.95rem; }

.tags-row {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 32px 0 24px;
}
.tag {
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--color-light-sky);
  color: var(--color-primary);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
}

.share-strip {
  display: flex; align-items: center; gap: 12px;
  padding: 20px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.share-strip strong { font-family: 'Nunito', sans-serif; }
.share-strip button {
  border: 2px solid var(--color-border);
  background: white;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--color-body);
  transition: all 0.3s ease;
  font-size: 0.9rem;
}
.share-strip button:hover { border-color: var(--color-cta); color: var(--color-cta); }
.share-strip .wa-share {
  background: var(--color-whatsapp);
  color: white;
  border-color: var(--color-whatsapp);
}
.share-strip .wa-share:hover { background: #1FB855; color: white; border-color: #1FB855; }

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 22px;
}
@media (max-width: 760px) { .related-grid { grid-template-columns: 1fr; } }

.sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 100px; }
.side-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.side-card h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: 16px;
}
.side-agent { text-align: center; }
.side-agent .photo {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--gradient-cyan);
  margin: 0 auto 14px;
  display: grid; place-items: center;
  color: white;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
}
.side-agent strong {
  font-family: 'Nunito', sans-serif;
  font-size: 1.15rem;
  color: var(--color-dark);
  display: block;
}
.side-agent .small {
  font-size: 0.85rem;
  color: var(--color-body);
  margin-bottom: 8px;
}
.side-agent .btn { width: 100%; margin-top: 10px; }

.side-cta {
  background: var(--gradient-blue);
  color: white;
  border: none;
}
.side-cta h4 { color: var(--color-cyan); }
.side-cta h3 { color: white; margin-bottom: 14px; font-size: 1.3rem; }
.side-cta p { color: rgba(255,255,255,0.9); font-size: 0.92rem; margin-bottom: 16px; }
.side-cta .btn { width: 100%; }

.recent-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.recent-list a { display: block; }
.recent-list strong {
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: var(--color-dark);
  display: block;
  line-height: 1.3;
  margin-bottom: 4px;
  transition: color 0.3s ease;
}
.recent-list a:hover strong { color: var(--color-cta); }
.recent-list small { color: var(--color-body); font-size: 0.8rem; }

.cat-list { list-style: none; }
.cat-list li {
  display: flex; justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
}
.cat-list li:last-child { border-bottom: none; }
.cat-list .count {
  background: var(--color-light-sky);
  color: var(--color-primary);
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
}

@media (max-width: 980px) {
  .sidebar { position: static; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info {
  background: var(--gradient-blue);
  color: white;
  padding: 44px 36px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.contact-info::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 30px 30px;
}
.contact-info > * { position: relative; z-index: 1; }
.contact-info h3 { color: white; }

.contact-list { list-style: none; display: flex; flex-direction: column; gap: 18px; margin: 24px 0; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; line-height: 1.5; }
.contact-list .ico-pill {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.15);
  display: grid; place-items: center;
  flex-shrink: 0;
  color: var(--color-cyan);
}
.contact-list small { display: block; opacity: 0.7; font-size: 0.78rem; margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-list a { color: white; font-family: 'Nunito', sans-serif; font-weight: 700; }
.contact-list a:hover { color: var(--color-cyan); }

.contact-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }

.map-box {
  margin-top: 24px;
  aspect-ratio: 16/9;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  display: grid; place-items: center;
  border: 2px dashed rgba(255,255,255,0.3);
  text-align: center;
  padding: 20px;
}
.map-box small { opacity: 0.7; font-family: 'Nunito', sans-serif; }

.contact-form {
  background: white;
  padding: 44px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}
.contact-form h3 { margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--color-dark);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  background: white;
  transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { outline: none; border-color: var(--color-cyan); }
.form-group textarea { resize: vertical; min-height: 130px; }

.radio-group {
  display: flex; gap: 14px; flex-wrap: wrap;
}
.radio-group label {
  display: flex; align-items: center; gap: 8px;
  cursor: pointer;
  padding: 10px 16px;
  background: var(--color-light-sky);
  border-radius: var(--radius-pill);
  margin: 0;
}
.radio-group input { width: auto; margin: 0; }

.form-note {
  font-size: 0.85rem;
  color: var(--color-body);
  text-align: center;
  margin-top: 14px;
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

.service-area {
  background: var(--color-light-sky);
  padding: 80px 0;
  text-align: center;
}
.us-map-wrap {
  max-width: 700px;
  margin: 32px auto 24px;
}
.us-map-wrap svg { width: 100%; height: auto; }
.area-note {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  color: var(--color-deep);
  margin-top: 16px;
}

/* utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }


/* ============================================================
   COOKIE / PRIVACY BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  z-index: 9999;
  background: var(--color-deep, #0E2A66);
  color: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.05);
  padding: 18px 22px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.28s ease, transform 0.28s ease;
  pointer-events: none;
  max-width: 720px;
  margin: 0 auto;
}
.cookie-banner.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.cookie-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
}
.cookie-text {
  font-family: 'Lato', sans-serif;
  font-size: 0.92rem;
  line-height: 1.5;
}
.cookie-text strong {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  display: block;
  margin-bottom: 4px;
  color: var(--color-cyan);
}
.cookie-actions { display: flex; gap: 10px; }
.cookie-banner .btn-outline {
  border-color: rgba(255,255,255,0.4);
  color: white;
}
.cookie-banner .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}
@media (max-width: 640px) {
  .cookie-inner { grid-template-columns: 1fr; }
  .cookie-actions { justify-content: flex-end; }
}

/* ============================================================
   QUOTE ESTIMATOR
   ============================================================ */
.quote-estimator-section {
  background: linear-gradient(180deg, #f6faff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}
.quote-estimator-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(0,200,224,0.08), transparent 70%);
  pointer-events: none;
}
.qe-card {
  max-width: 980px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(15,40,100,0.10), 0 0 0 1px rgba(15,40,100,0.04);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
}
.qe-form { padding: 38px 40px; }
.qe-tabs {
  display: flex;
  gap: 8px;
  background: #f1f5fb;
  padding: 6px;
  border-radius: var(--radius-pill);
  margin-bottom: 28px;
}
.qe-tabs button {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--color-deep, #0E2A66);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.qe-tabs button.active {
  background: white;
  color: var(--color-primary, #1A56C4);
  box-shadow: 0 4px 12px rgba(26,86,196,0.12);
}
.qe-field { margin-bottom: 22px; }
.qe-field-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}
.qe-field label {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-deep, #0E2A66);
}
.qe-field-row span {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--color-primary, #1A56C4);
}
.qe-slider {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  height: 6px;
  border-radius: 3px;
  background: #e5edf7;
  outline: none;
  margin-top: 2px;
}
.qe-slider::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--color-cyan, #00C8E0);
  box-shadow: 0 4px 12px rgba(0,200,224,0.4);
  cursor: pointer;
}
.qe-slider::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--color-cyan, #00C8E0);
  cursor: pointer;
}
.qe-toggle {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  cursor: pointer;
}
.qe-toggle input { width: 18px; height: 18px; accent-color: var(--color-cyan); }
.qe-result {
  background: var(--gradient-blue, linear-gradient(135deg, #1A56C4, #00C8E0));
  color: white;
  padding: 38px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.qe-result::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.qe-result > * { position: relative; z-index: 1; }
.qe-result-label {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  opacity: 0.85;
  margin-bottom: 8px;
}
.qe-monthly {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 3.4rem;
  line-height: 1;
  letter-spacing: -0.02em;
}
.qe-monthly-suffix {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  opacity: 0.85;
  margin-bottom: 18px;
}
.qe-subsidy {
  background: rgba(255,255,255,0.18);
  padding: 10px 14px;
  border-radius: var(--radius-md, 12px);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  display: inline-block;
  margin-bottom: 18px;
}
.qe-note {
  font-family: 'Nunito', sans-serif;
  font-style: italic;
  font-size: 0.86rem;
  opacity: 0.92;
  line-height: 1.5;
  margin-bottom: 22px;
}
.qe-result .btn-cta { align-self: flex-start; }
.qe-disclaimer {
  margin-top: 24px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.78rem;
  color: var(--color-body, #5a6677);
  font-style: italic;
}
.quote-estimator-section.plan-term .qe-field.income-field,
.quote-estimator-section.plan-whole .qe-field.income-field,
.quote-estimator-section.plan-term .qe-field.household-field,
.quote-estimator-section.plan-whole .qe-field.household-field { display: none; }
.quote-estimator-section.plan-health .qe-field.tobacco-field { display: none; }

@media (max-width: 820px) {
  .qe-card { grid-template-columns: 1fr; }
  .qe-form { padding: 30px 26px; }
  .qe-result { padding: 32px 26px; }
  .qe-monthly { font-size: 2.8rem; }
}
