/* ============================================================
   CERRAJERO MAIRENA DEL ALJARAFE — styles.css
   ============================================================ */

/* --- Reset & Base ------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --dark:        #0f172a;
  --dark-800:    #1e293b;
  --dark-700:    #334155;
  --dark-600:    #475569;
  --amber:       #fbbf24;
  --amber-light: #fde68a;
  --amber-dark:  #d97706;
  --white:       #ffffff;
  --gray-50:     #f8fafc;
  --gray-100:    #f1f5f9;
  --gray-200:    #e2e8f0;
  --gray-500:    #64748b;
  --gray-700:    #374151;
  --green:       #4ade80;
  --font:        'Inter', system-ui, -apple-system, sans-serif;
  --radius-lg:   1rem;
  --radius-xl:   1.25rem;
  --radius-2xl:  1.5rem;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:   0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:   0 10px 40px rgba(0,0,0,.14);
  --shadow-amber:0 8px 30px rgba(251,191,36,.40);
  --transition:  all .25s ease;
  --bar-height:  36px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--gray-700);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; }

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

/* --- Utility: text-center ---------------------------------- */
.text-center { text-align: center; }

/* --- Container --------------------------------------------- */
.container {
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.container--narrow {
  max-width: 52rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

/* ============================================================
   HEADER
   ============================================================ */
/* ============================================================
   URGENCY BAR
   ============================================================ */
.urgency-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--bar-height);
  z-index: 300;
  background: #090e19;
  border-bottom: 1px solid rgba(251,191,36,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transform: translateY(-100%);
  opacity: 0;
}

.urgency-bar.is-visible {
  transform: translateY(0);
  opacity: 1;
  transition: transform .55s cubic-bezier(0.16, 1, 0.3, 1), opacity .4s ease;
}

.urgency-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .73rem;
  font-weight: 600;
  color: #fde68a;
  letter-spacing: .01em;
  padding: 0 1rem;
  text-align: center;
  line-height: 1;
}

.urgency-bar__dot {
  width: .45rem;
  height: .45rem;
  background: #4ade80;
  border-radius: 50%;
  flex-shrink: 0;
  animation: badge-pulse 2s ease-in-out infinite;
}

.urgency-bar__short { display: none; }

@media (max-width: 560px) {
  .urgency-bar__full  { display: none; }
  .urgency-bar__short { display: inline; }
}

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: fixed;
  top: var(--bar-height);
  left: 0;
  right: 0;
  z-index: 200;
  transition: background .3s ease, backdrop-filter .3s ease, box-shadow .3s ease;
}

#site-header.scrolled {
  background: rgba(15, 23, 42, .95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 24px rgba(0,0,0,.35);
}

.header-inner {
  max-width: 72rem;
  margin-inline: auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo-link {
  display: flex;
  align-items: center;
  gap: .625rem;
  text-decoration: none;
}

.logo-icon {
  width: 2.25rem;
  height: 2.25rem;
  background: var(--amber);
  border-radius: .625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: .875rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.logo-sub {
  font-size: .7rem;
  font-weight: 500;
  color: var(--amber);
  line-height: 1;
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--amber);
  color: var(--dark);
  font-size: .875rem;
  font-weight: 700;
  padding: .625rem 1.125rem;
  border-radius: 9999px;
  transition: var(--transition);
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-amber);
}

.cta-number { display: none; }
.cta-short  { display: inline; }

@media (min-width: 480px) {
  .cta-number { display: inline; }
  .cta-short  { display: none; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Base gradient */
  background: var(--dark);
}

/* Layered glow effects */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 15% 60%, rgba(251,191,36,.07) 0%, transparent 70%),
    radial-gradient(ellipse 900px 600px at 85% 15%, rgba(59,130,246,.05) 0%, transparent 60%),
    radial-gradient(ellipse 500px 400px at 50% 90%, rgba(251,191,36,.04) 0%, transparent 70%);
  pointer-events: none;
}

/* Grid pattern */
.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 56rem;
  margin-inline: auto;
  padding: calc(6rem + var(--bar-height)) 1.25rem 4rem;
  text-align: center;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(251,191,36,.12);
  border: 1px solid rgba(251,191,36,.3);
  color: var(--amber-light);
  font-size: .8rem;
  font-weight: 600;
  padding: .5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.75rem;
  letter-spacing: .015em;
  opacity: 0; /* GSAP initial state */
}

.badge-dot {
  width: .5rem;
  height: .5rem;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
  animation: badge-pulse 2s ease-in-out infinite;
}

/* Hero title */
.hero-title {
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -.02em;
  opacity: 0; /* GSAP initial state */
}

.hero-highlight {
  color: var(--amber);
}

/* Hero sub */
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: #94a3b8;
  max-width: 40rem;
  margin-inline: auto;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0; /* GSAP initial state */
}

.hero-sub strong { color: var(--white); }

/* CTA wrap */
.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
  opacity: 0; /* GSAP initial state */
}

/* Primary CTA button */
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: var(--amber);
  color: var(--dark);
  font-size: 1.15rem;
  font-weight: 900;
  padding: 1.1rem 2rem;
  border-radius: var(--radius-xl);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
  box-shadow: var(--shadow-amber);
  width: 100%;
  justify-content: center;
  animation: cta-pulse 2.8s ease-in-out infinite;
}

.cta-primary:hover {
  background: var(--amber-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(251,191,36,.55);
  animation-play-state: paused;
}

.cta-primary svg {
  flex-shrink: 0;
  transition: transform .2s ease;
}

.cta-primary:hover svg {
  transform: scale(1.15);
}

.cta-note {
  font-size: .875rem;
  color: #64748b;
}

.check {
  color: var(--green);
  font-weight: 700;
}

/* Trust bar */
.hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 2rem;
  list-style: none;
  font-size: .8rem;
  color: #64748b;
  opacity: 0; /* GSAP initial state */
}

.hero-trust-bar li {
  display: flex;
  align-items: center;
  gap: .375rem;
}

.hero-trust-bar svg { color: var(--amber); flex-shrink: 0; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  opacity: 0; /* GSAP initial state */
}

.scroll-mouse {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid #475569;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  padding-top: .375rem;
}

.scroll-dot {
  width: .25rem;
  height: .5rem;
  background: var(--amber);
  border-radius: 9999px;
  animation: scroll-down 1.8s ease-in-out infinite;
}

@media (min-width: 640px) {
  .hero-cta-wrap {
    flex-direction: row;
    align-items: center;
  }
  .cta-primary { width: auto; }
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section-white { padding: 5rem 1.25rem; background: var(--white); }
.section-gray  { padding: 5rem 1.25rem; background: var(--gray-50); }
.section-dark  { padding: 5rem 1.25rem; background: var(--dark); }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header--dark { text-align: center; margin-bottom: 3rem; }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--amber-dark);
  margin-bottom: .5rem;
}

.section-label--amber { color: var(--amber); }

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -.02em;
  line-height: 1.15;
}

.section-title--white { color: var(--white); }

.section-desc {
  margin-top: .75rem;
  font-size: 1rem;
  color: var(--gray-500);
  max-width: 38rem;
  margin-inline: auto;
  line-height: 1.7;
}

/* ============================================================
   TRUST SECTION
   ============================================================ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (min-width: 768px)  { .trust-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .trust-grid { grid-template-columns: repeat(5, 1fr); } }

.trust-card {
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  opacity: 0; /* GSAP initial state */
}

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

.trust-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: .875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: 1rem;
}

.trust-icon--amber  { background: #fef3c7; color: #d97706; }
.trust-icon--green  { background: #dcfce7; color: #16a34a; }
.trust-icon--blue   { background: #dbeafe; color: #2563eb; }
.trust-icon--purple { background: #ede9fe; color: #7c3aed; }

.trust-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
  margin-bottom: .5rem;
}

.trust-label {
  font-size: .8rem;
  font-weight: 500;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-2xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  opacity: 0; /* GSAP initial state */
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  background: var(--amber);
  border-radius: .875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  margin-bottom: 1.25rem;
  transition: transform .25s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-3deg);
}

.service-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .625rem;
}

.service-desc {
  font-size: .875rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ============================================================
   BENEFITS SECTION
   ============================================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

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

.benefit-card {
  background: var(--dark-800);
  border: 1px solid var(--dark-700);
  border-radius: var(--radius-2xl);
  padding: 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  opacity: 0; /* GSAP initial state */
}

.benefit-card:hover {
  transform: translateY(-3px);
  border-color: rgba(251,191,36,.4);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}

.benefit-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(251,191,36,.1);
  border-radius: .875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
  transition: background .25s ease;
}

.benefit-card:hover .benefit-icon {
  background: rgba(251,191,36,.18);
}

.benefit-body { flex: 1; }

.benefit-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .625rem;
}

.benefit-desc {
  font-size: .875rem;
  color: #94a3b8;
  line-height: 1.7;
}

/* ============================================================
   LOCAL AREAS SECTION
   ============================================================ */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .625rem;
  margin: 2.5rem 0;
}

.area-tag {
  display: inline-block;
  padding: .5rem 1.125rem;
  background: var(--gray-100);
  color: var(--dark-600);
  border: 1px solid var(--gray-200);
  border-radius: 9999px;
  font-size: .875rem;
  font-weight: 500;
  transition: var(--transition);
  opacity: 0; /* GSAP initial state */
}

.area-tag:hover {
  background: #fef3c7;
  border-color: var(--amber);
  color: #92400e;
}

.area-tag--featured {
  background: #fef3c7;
  border-color: #fbbf24;
  color: #92400e;
  font-weight: 700;
}

.areas-btn {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  background: var(--amber);
  color: var(--dark);
  font-weight: 700;
  font-size: .925rem;
  padding: .75rem 1.5rem;
  border-radius: 9999px;
  box-shadow: var(--shadow-amber);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.areas-btn:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(251,191,36,.55);
}

/* ============================================================
   SITUATIONS SECTION
   ============================================================ */
.situations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) { .situations-grid { grid-template-columns: repeat(3, 1fr); } }

.situation-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-2xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  opacity: 0; /* GSAP initial state */
}

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

.situation-emoji {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.situation-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .75rem;
}

.situation-desc {
  font-size: .875rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.situation-link {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  color: var(--amber-dark);
  font-weight: 700;
  font-size: .875rem;
  transition: gap .2s ease, color .2s ease;
}

.situation-link:hover {
  gap: .625rem;
  color: #b45309;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-2xl);
  padding: 1.75rem;
  transition: transform .3s ease, box-shadow .3s ease;
  opacity: 0; /* GSAP initial state */
}

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

.stars {
  display: flex;
  gap: .25rem;
  color: var(--amber);
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: .875rem;
  color: var(--dark-600);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.author-avatar {
  width: 2.5rem;
  height: 2.5rem;
  background: #fef3c7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 800;
  color: #92400e;
  flex-shrink: 0;
}

.author-name {
  font-size: .875rem;
  font-weight: 700;
  color: var(--dark);
}

.author-loc {
  font-size: .75rem;
  color: var(--gray-500);
}

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.section-cta {
  padding: 5rem 1.25rem;
  background: var(--amber);
}

.cta-emoji {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.cta-section-title {
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -.02em;
}

.cta-section-desc {
  font-size: 1.05rem;
  color: #78350f;
  max-width: 36rem;
  margin-inline: auto;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.cta-dark-btn {
  display: inline-flex;
  align-items: center;
  gap: .875rem;
  background: var(--dark);
  color: var(--white);
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  font-weight: 900;
  padding: 1.25rem 2.5rem;
  border-radius: var(--radius-xl);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 8px 30px rgba(15,23,42,.4);
}

.cta-dark-btn:hover {
  background: #1e293b;
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(15,23,42,.5);
}

.cta-dark-btn svg { flex-shrink: 0; }

.cta-footer-note {
  margin-top: 1.25rem;
  font-size: .875rem;
  color: #78350f;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: .625rem;
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: box-shadow .25s ease;
  opacity: 0; /* GSAP initial state */
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  font-size: .975rem;
  font-weight: 600;
  color: var(--dark);
  transition: background .2s ease;
}

.faq-btn:hover { background: var(--gray-50); }

.faq-icon {
  flex-shrink: 0;
  color: var(--amber-dark);
  transition: transform .3s ease;
}

.faq-icon--open { transform: rotate(45deg); }

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  font-size: .9rem;
  color: var(--dark-600);
  line-height: 1.75;
}

.faq-answer strong { color: var(--dark); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  padding: 3.5rem 1.25rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 2fr; gap: 3rem; }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: .625rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--white);
  font-size: .9rem;
}

.footer-tagline {
  font-size: .85rem;
  color: #64748b;
  line-height: 1.7;
  max-width: 22rem;
}

.footer-heading {
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: .625rem; }

.footer-link {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: #64748b;
  transition: color .2s ease;
}

.footer-link:hover { color: var(--amber); }

.footer-info {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: #64748b;
}

.footer-info svg { flex-shrink: 0; }

.footer-areas-text {
  font-size: .85rem;
  color: #64748b;
  line-height: 1.75;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  font-size: .75rem;
  color: #475569;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ============================================================
   FLOATING CTA
   ============================================================ */
#floating-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  opacity: 0;
  transform: translateY(1rem) scale(.92);
  transition: opacity .4s ease, transform .4s ease;
  pointer-events: none;
}

#floating-cta.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.floating-btn {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--amber);
  color: var(--dark);
  font-weight: 800;
  font-size: .9rem;
  padding: .9rem 1.375rem;
  border-radius: var(--radius-xl);
  box-shadow: 0 6px 28px rgba(251,191,36,.45);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
  animation: float 3.2s ease-in-out infinite;
}

.floating-btn:hover {
  background: var(--amber-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(251,191,36,.6);
  animation-play-state: paused;
}

.floating-phone-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.online-ring {
  position: absolute;
  top: -3px;
  right: -3px;
  width: .625rem;
  height: .625rem;
  background: #22c55e;
  border-radius: 50%;
}

.online-ring::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(34,197,94,.5);
  animation: ring-pulse 1.8s ease-out infinite;
}

.floating-label {
  display: none;
}

@media (min-width: 480px) {
  .floating-label { display: inline; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes badge-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(.8); }
}

@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(251,191,36,.4); }
  50%       { box-shadow: 0 8px 50px rgba(251,191,36,.65); }
}

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

@keyframes scroll-down {
  0%   { opacity: 1; transform: translateY(0); }
  80%  { opacity: 0; transform: translateY(10px); }
  100% { opacity: 0; transform: translateY(10px); }
}

@keyframes ring-pulse {
  0%   { transform: scale(1); opacity: .7; }
  100% { transform: scale(2.8); opacity: 0; }
}

/* ============================================================
   FOCUS STYLES (accessibility)
   ============================================================ */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: .25rem;
}

/* ============================================================
   SEO CONTENT SECTION
   ============================================================ */
.section-seo {
  padding: 5rem 1.25rem;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}

.seo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .seo-grid { grid-template-columns: repeat(2, 1fr); }
}

.seo-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform .3s ease, box-shadow .3s ease;
  opacity: 0; /* GSAP initial state */
}

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

.seo-card__header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.seo-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .125rem;
}

.seo-card__icon--amber  { background: #fef3c7; color: #d97706; }
.seo-card__icon--blue   { background: #dbeafe; color: #2563eb; }
.seo-card__icon--green  { background: #dcfce7; color: #16a34a; }
.seo-card__icon--red    { background: #fee2e2; color: #dc2626; }

.seo-card__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.35;
}

.seo-card__body {
  display: flex;
  flex-direction: column;
  gap: .875rem;
  flex: 1;
}

.seo-card__body p {
  font-size: .9rem;
  color: #4b5563;
  line-height: 1.8;
}

.seo-card__body strong { color: var(--dark); font-weight: 700; }
.seo-card__body em     { font-style: italic; color: var(--dark-600); }

.seo-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding: 1rem 1.125rem;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  margin-top: .25rem;
}

.seo-list li {
  font-size: .85rem;
  color: #374151;
  font-weight: 500;
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}

.seo-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .45em;
  width: .5rem;
  height: .5rem;
  background: var(--amber);
  border-radius: 50%;
}

.seo-card__cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--dark);
  color: var(--white);
  font-size: .875rem;
  font-weight: 700;
  padding: .625rem 1.25rem;
  border-radius: 9999px;
  transition: background .2s ease, transform .2s ease;
  align-self: flex-start;
  margin-top: auto;
}

.seo-card__cta:hover {
  background: var(--dark-800);
  transform: translateY(-1px);
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */

/* Hero de páginas legales */
.legal-hero {
  background: var(--dark);
  padding: 7rem 1.25rem 3rem;
  position: relative;
  overflow: hidden;
}

.legal-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 300px at 25% 60%, rgba(251,191,36,.06) 0%, transparent 70%);
  pointer-events: none;
}

.legal-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

.legal-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 52rem;
  margin-inline: auto;
}

.legal-hero__tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--amber);
  margin-bottom: .75rem;
}

.legal-hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.025em;
  line-height: 1.1;
  margin-bottom: .625rem;
}

.legal-hero__update {
  font-size: .8rem;
  color: #475569;
}

.legal-hero__update span { color: #94a3b8; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .375rem;
  font-size: .8rem;
  color: #475569;
  margin-top: 1rem;
}

.breadcrumb a {
  color: var(--amber);
  font-weight: 600;
  transition: color .2s ease;
  text-decoration: none;
}

.breadcrumb a:hover { color: var(--amber-light); }

.breadcrumb span { color: #64748b; }

/* Contenido legal */
.legal-content {
  padding: 3.5rem 1.25rem 5rem;
  background: var(--white);
}

.legal-article {
  max-width: 52rem;
  margin-inline: auto;
}

.legal-section {
  margin-bottom: 2.75rem;
  padding-bottom: 2.75rem;
  border-bottom: 1px solid var(--gray-200);
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-section h2 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1.125rem;
  padding-left: .875rem;
  border-left: 3px solid var(--amber);
  line-height: 1.35;
}

.legal-section h3 {
  font-size: .975rem;
  font-weight: 700;
  color: var(--dark);
  margin-top: 1.5rem;
  margin-bottom: .625rem;
}

.legal-section p {
  font-size: .925rem;
  color: #374151;
  line-height: 1.85;
  margin-bottom: .875rem;
}

.legal-section p:last-child { margin-bottom: 0; }

.legal-section strong { color: var(--dark); font-weight: 700; }

.legal-section a {
  color: var(--amber-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .2s ease;
}

.legal-section a:hover { color: #b45309; }

/* Listas */
.legal-section ul,
.legal-section ol {
  list-style: none;
  padding: 0;
  margin: .75rem 0 .875rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.legal-section ul li,
.legal-section ol li {
  font-size: .925rem;
  color: #374151;
  line-height: 1.75;
  padding-left: 1.375rem;
  position: relative;
}

.legal-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .6em;
  width: .4rem;
  height: .4rem;
  background: var(--amber);
  border-radius: 50%;
}

.legal-section ol {
  counter-reset: legal-counter;
}

.legal-section ol li {
  counter-increment: legal-counter;
}

.legal-section ol li::before {
  content: counter(legal-counter) '.';
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  font-size: .85rem;
  color: var(--amber-dark);
}

/* Bloque de info destacada */
.legal-info-box {
  background: #fef3c7;
  border: 1px solid #fde68a;
  border-radius: var(--radius-lg);
  padding: 1.125rem 1.375rem;
  margin: 1.25rem 0;
  font-size: .9rem;
  color: #78350f;
  line-height: 1.75;
}

.legal-info-box strong { color: #92400e; }

.legal-info-box a {
  color: #92400e;
  font-weight: 700;
}

/* Bloque de contacto */
.legal-contact {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 1.25rem 1.5rem;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.legal-contact p {
  margin-bottom: 0 !important;
  font-size: .9rem !important;
}

/* Tabla de cookies */
.cookie-table-wrap {
  overflow-x: auto;
  margin: 1.25rem 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .825rem;
  min-width: 600px;
}

.cookie-table thead { background: var(--dark); }

.cookie-table th {
  color: var(--white);
  font-weight: 700;
  padding: .875rem 1rem;
  text-align: left;
  white-space: nowrap;
  letter-spacing: .01em;
}

.cookie-table td {
  padding: .875rem 1rem;
  color: #374151;
  border-bottom: 1px solid var(--gray-200);
  vertical-align: top;
  line-height: 1.65;
}

.cookie-table td small {
  display: block;
  font-size: .75rem;
  color: var(--gray-500);
  margin-top: .125rem;
}

.cookie-table td code {
  font-family: 'Courier New', monospace;
  font-size: .8rem;
  background: #f1f5f9;
  padding: .125rem .375rem;
  border-radius: .25rem;
  color: var(--dark);
}

.cookie-table tr:last-child td { border-bottom: none; }
.cookie-table tr:nth-child(even) td { background: var(--gray-50); }

/* Links del footer - legales */
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: .375rem 1.25rem;
  margin-top: .375rem;
}

.footer-legal-links a {
  font-size: .75rem;
  color: #475569;
  transition: color .2s ease;
  text-decoration: none;
}

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

/* ============================================================
   HERO IMAGE PLACEHOLDER & MICROCOPY
   ============================================================ */
.hero-microcopy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: -.75rem;
  margin-bottom: 2rem;
  opacity: 0; /* GSAP */
}

.hero-micro-tag {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .78rem;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: .01em;
}

.hero-micro-tag .micro-dot {
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-micro-tag--green .micro-dot { background: #4ade80; animation: badge-pulse 2s ease-in-out infinite; }
.hero-micro-tag--amber .micro-dot { background: var(--amber); }
.hero-micro-tag--green { color: #86efac; }
.hero-micro-tag--amber { color: var(--amber-light); }

.hero-img-placeholder {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  height: 380px;
  background: linear-gradient(135deg, rgba(251,191,36,.06) 0%, rgba(59,130,246,.04) 100%);
  border: 1px solid rgba(251,191,36,.12);
  border-radius: var(--radius-2xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  z-index: 1;
  opacity: 0; /* GSAP */
}

/* Imagen real dentro del placeholder → centrada y recortada */
.hero-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: var(--radius-2xl);
}

.hero-img-placeholder__icon {
  width: 64px;
  height: 64px;
  background: rgba(251,191,36,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
}

.hero-img-placeholder__label {
  font-size: .8rem;
  font-weight: 600;
  color: #475569;
  text-align: center;
  letter-spacing: .01em;
}

@media (max-width: 1100px) {
  .hero-img-placeholder { display: none; }
}

/* ============================================================
   TRUST: 5th counter card
   ============================================================ */
.trust-card--highlight {
  border: 1px solid rgba(251,191,36,.25);
  background: linear-gradient(135deg, rgba(251,191,36,.04) 0%, transparent 100%);
}

/* ============================================================
   SERVICE CARDS — image placeholder
   ============================================================ */
.service-img-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-50) 100%);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .625rem;
  border-bottom: 1px solid var(--gray-200);
  margin: -1.5rem -1.5rem 1.25rem;
  overflow: hidden;
  flex-shrink: 0;
}

/* Imagen real dentro del placeholder → centrada y recortada */
.service-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.service-img-placeholder__icon {
  width: 44px;
  height: 44px;
  background: var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
}

.service-img-placeholder__label {
  font-size: .7rem;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: .025em;
  text-transform: uppercase;
}

/* ============================================================
   HOW IT WORKS SECTION
   ============================================================ */
.section-how {
  padding: 5rem 1.25rem;
  background: var(--dark);
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 72rem;
  margin-inline: auto;
  margin-top: 0;
  position: relative;
}

@media (min-width: 768px) {
  .how-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .how-grid::before {
    content: '';
    position: absolute;
    top: 3.25rem;
    left: calc(33.33% + 1.5rem);
    right: calc(33.33% + 1.5rem);
    height: 2px;
    background: linear-gradient(90deg, rgba(251,191,36,.3), rgba(251,191,36,.1));
    z-index: 0;
  }
}

.how-card {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  opacity: 0; /* GSAP */
}

.how-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--amber);
  color: var(--dark);
  font-size: .875rem;
  font-weight: 900;
  border-radius: 50%;
  margin: 0 auto .875rem;
}

.how-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(251,191,36,.1);
  border: 1px solid rgba(251,191,36,.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  margin: 0 auto 1rem;
}

.how-img-placeholder {
  font-size: .7rem;
  font-weight: 600;
  color: #475569;
  letter-spacing: .025em;
  text-transform: uppercase;
  margin-bottom: .875rem;
}

.how-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: .625rem;
  letter-spacing: -.015em;
}

.how-desc {
  font-size: .9rem;
  color: #64748b;
  line-height: 1.7;
}

/* ============================================================
   LOCAL PROFESSIONAL BLOCK
   ============================================================ */
.section-pro {
  padding: 5rem 1.25rem;
  background: var(--gray-50);
}

.pro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 72rem;
  margin-inline: auto;
}

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

.pro-content { opacity: 0; /* GSAP */ }

.pro-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--amber-dark);
  margin-bottom: .75rem;
}

.pro-title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -.02em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.pro-title span { color: var(--amber-dark); }

.pro-text {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.pro-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .625rem;
}

.pro-badge {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 9999px;
  padding: .375rem .875rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--dark);
  box-shadow: var(--shadow-sm);
}

.pro-badge svg { color: var(--amber-dark); flex-shrink: 0; }

.pro-image-placeholder {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
  border-radius: var(--radius-2xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  opacity: 0; /* GSAP */
}

/* Imagen real → centrada y recortada */
.pro-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--radius-2xl);
}

.pro-image-placeholder__icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-600);
}

.pro-image-placeholder__label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--dark-600);
  letter-spacing: .01em;
}

/* ============================================================
   MINI PRICING STRIP
   ============================================================ */
.pricing-strip {
  background: var(--dark);
  padding: 2.5rem 1.25rem;
}

.pricing-strip__inner {
  max-width: 72rem;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.pricing-strip__label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--amber);
  flex-shrink: 0;
}

.pricing-strip__divider {
  width: 1px;
  height: 2rem;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .pricing-strip__divider { display: none; }
}

.pricing-items {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 2rem;
  flex: 1;
  align-items: center;
}

.pricing-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: #94a3b8;
  opacity: 0; /* GSAP */
}

.pricing-item__icon {
  width: 1.5rem;
  height: 1.5rem;
  background: rgba(251,191,36,.1);
  border-radius: .375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
}

.pricing-item__price {
  font-weight: 800;
  color: var(--white);
}

.pricing-strip__cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--amber);
  color: var(--dark);
  font-size: .875rem;
  font-weight: 700;
  padding: .625rem 1.25rem;
  border-radius: 9999px;
  transition: background .2s ease, transform .2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.pricing-strip__cta:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
}

/* ============================================================
   SEO CARD — image placeholder
   ============================================================ */
.seo-card__img {
  width: calc(100% + 2px);
  margin: -1px -1px 0;
  aspect-ratio: 16 / 7;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-50) 100%);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-bottom: 1px solid var(--gray-200);
}

/* Imagen real dentro del placeholder → centrada y recortada */
.seo-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.seo-card__img-icon {
  width: 40px;
  height: 40px;
  background: var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
}

.seo-card__img-label {
  font-size: .7rem;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: .025em;
  text-transform: uppercase;
}

/* ============================================================
   TESTIMONIALS — avatar placeholder image
   ============================================================ */
.author-avatar-img {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dark-700), var(--dark-800));
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .875rem;
  font-weight: 800;
  color: var(--amber);
  position: relative;
  overflow: hidden;
}

.author-avatar-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(251,191,36,.12) 0%, transparent 60%);
}

.testimonial-micro {
  font-size: .75rem;
  font-weight: 600;
  color: var(--amber-dark);
  margin-top: .375rem;
  letter-spacing: .005em;
}

/* ============================================================
   FINAL CTA — enhanced microcopy
   ============================================================ */
.cta-micro-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.cta-micro-badge {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .8rem;
  font-weight: 600;
  color: #64748b;
}

.cta-micro-badge .cta-micro-dot {
  width: .45rem;
  height: .45rem;
  background: #4ade80;
  border-radius: 50%;
  flex-shrink: 0;
  animation: badge-pulse 2s ease-in-out infinite;
}

.cta-micro-badge--live { color: #86efac; }

/* ============================================================
   ADVANCED COOKIE — floating tab
   ============================================================ */
.cookie-tab {
  position: fixed;
  bottom: 1.125rem;
  left: 1.125rem;
  z-index: 9998;
  background: var(--dark-800);
  border: 1px solid rgba(251,191,36,.25);
  border-radius: 9999px;
  padding: .5rem 1rem .5rem .625rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  cursor: pointer;
  font-size: .75rem;
  font-weight: 600;
  color: var(--amber);
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
  transform: translateY(80px);
  opacity: 0;
  transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1), opacity .3s ease, box-shadow .2s ease;
  border: none;
  font-family: var(--font);
}

.cookie-tab.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-tab:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.4);
  border: none;
  outline: none;
}

.cookie-tab:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

.cookie-tab__icon {
  width: 1.5rem;
  height: 1.5rem;
  background: rgba(251,191,36,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--dark);
  border-top: 2px solid var(--amber);
  padding: 1rem 1.5rem;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, .35);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-banner__icon {
  color: var(--amber);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.cookie-banner__text {
  flex: 1;
  min-width: 200px;
  font-size: .875rem;
  color: #cbd5e1;
  line-height: 1.65;
}

.cookie-banner__text p { margin: 0; }

.cookie-banner__text strong { color: var(--white); }

.cookie-banner__text a {
  color: var(--amber);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .2s ease;
}

.cookie-banner__text a:hover { color: var(--amber-light); }

.cookie-banner__actions {
  display: flex;
  gap: .625rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: .625rem 1.25rem;
  border-radius: 9999px;
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .15s ease, border-color .2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1;
}

.cookie-btn:hover { transform: translateY(-1px); }

.cookie-btn--primary {
  background: var(--amber);
  color: var(--dark);
  border-color: var(--amber);
}

.cookie-btn--primary:hover {
  background: var(--amber-light);
  border-color: var(--amber-light);
}

.cookie-btn--outline {
  background: transparent;
  color: #cbd5e1;
  border-color: #475569;
}

.cookie-btn--outline:hover {
  border-color: #94a3b8;
  color: var(--white);
}

@media (max-width: 640px) {
  .cookie-banner { padding: 1rem; }
  .cookie-banner__actions {
    width: 100%;
    justify-content: flex-end;
  }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  #site-header, #floating-cta, .scroll-indicator, .cookie-banner, .cookie-tab, .urgency-bar { display: none; }
  .hero-section { min-height: auto; padding: 2rem 1rem; }
}
