/* ============================================================
   SAMPAYO ABOGADOS — CSS Mobile-First
   Paleta: Navy #1B2A4A · Gold #C9A84C · Blanco #FFFFFF
   ============================================================ */

/* Variables */
:root {
  --navy:        #1B2A4A;
  --navy-deep:   #121D33;
  --navy-light:  #243660;
  --gold:        #C9A84C;
  --gold-light:  #E8D5A3;
  --gold-dark:   #A07A2E;
  --white:       #FFFFFF;
  --off-white:   #F8F7F4;
  --gray:        #6B7280;
  --text:        #1B2A4A;
  --text-muted:  #6B7280;
  --radius:      8px;
  --radius-lg:   16px;
  --shadow:      0 4px 24px rgba(27,42,74,.10);
  --shadow-lg:   0 8px 40px rgba(27,42,74,.18);
  --transition:  .3s ease;
  --max-w:       1200px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 75px; }
body  {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img   { max-width: 100%; height: auto; display: block; }
a     { color: inherit; text-decoration: none; }
button{ cursor: pointer; border: none; background: none; font-family: inherit; }
ul    { list-style: none; }

/* Typography */
h1,h2,h3,h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 8vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 5vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 3.5vw, 1.55rem); }
h4 { font-size: 1.05rem; }
p  { margin-bottom: 1rem; color: var(--text-muted); }
strong { color: var(--text); }

/* Press quote */
.press-quote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.25rem;
  margin: 1.75rem 0 1.5rem;
  background: rgba(201,168,76,.06);
  border-radius: 0 8px 8px 0;
}
.press-quote__text {
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--navy);
  margin: 0 0 .6rem;
}
.press-quote__source {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.press-quote__source a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.press-quote__source a:hover { color: var(--gold-dark, #a07820); }

/* Layout */
.container {
  width: 100%;
  padding: 0 1.25rem;
  margin: 0 auto;
  max-width: var(--max-w);
}
.section      {
  padding: 3.5rem 0;
  border-top: 3px solid rgba(201,168,76,.8);
  background-image: radial-gradient(circle at 50% 50%,
    transparent 8px,
    rgba(201,168,76,.13) 8px, rgba(201,168,76,.13) 9.5px,
    transparent 9.5px,
    transparent 18px,
    rgba(201,168,76,.08) 18px, rgba(201,168,76,.08) 19.5px,
    transparent 19.5px,
    transparent 27px,
    rgba(201,168,76,.04) 27px, rgba(201,168,76,.04) 28.5px,
    transparent 28.5px
  );
  background-size: 58px 58px;
}
.section--off {
  background-color: var(--off-white);
  background-image: radial-gradient(circle at 50% 50%,
    transparent 8px,
    rgba(27,42,74,.1) 8px, rgba(27,42,74,.1) 9.5px,
    transparent 9.5px,
    transparent 18px,
    rgba(27,42,74,.06) 18px, rgba(27,42,74,.06) 19.5px,
    transparent 19.5px,
    transparent 27px,
    rgba(27,42,74,.03) 27px, rgba(27,42,74,.03) 28.5px,
    transparent 28.5px
  );
  background-size: 58px 58px;
}
.section--dark {
  background: var(--navy);
  color: var(--white);
}
.section--dark.section--textured {
  background-image: radial-gradient(circle at 50% 50%,
    transparent 8px,
    rgba(201,168,76,.14) 8px, rgba(201,168,76,.14) 9.5px,
    transparent 9.5px,
    transparent 18px,
    rgba(201,168,76,.08) 18px, rgba(201,168,76,.08) 19.5px,
    transparent 19.5px,
    transparent 27px,
    rgba(201,168,76,.04) 27px, rgba(201,168,76,.04) 28.5px,
    transparent 28.5px
  );
  background-size: 58px 58px;
}
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--white); }
.section--deep {
  background: var(--navy-deep);
  color: var(--white);
}
.section--deep h2,
.section--deep h3,
.section--deep h4 { color: var(--white); }
.section--deep p  { color: rgba(255,255,255,.78); }
.section--dark p   { color: rgba(255,255,255,.75); }

.section__header    { text-align: center; margin-bottom: 2.5rem; }
.section__label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}
.section__title { margin-bottom: .75rem; }

/* Accent line under headings */
.accent-line { position: relative; display: inline-block; }
.accent-line::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 50%;
  transform: translateX(-50%);
  width: 50px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.accent-line--left::after { left: 0; transform: none; }

/* Gold glow for highlighted text */
.gold-glow {
  text-shadow: 0 0 18px rgba(201,168,76,.45), 0 0 36px rgba(201,168,76,.2);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .85rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .9rem;
  transition: all var(--transition);
  letter-spacing: .02em;
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: var(--navy-deep);
  border: 2px solid var(--gold);
}
.btn--primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,.35);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.7);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn--navy {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
}
.btn--navy:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  transform: translateY(-2px);
}
.btn--sm { padding: .6rem 1.2rem; font-size: .82rem; }
.btn--full { width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 2px solid var(--gold);
  transition: background var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  background: var(--navy-deep);
  box-shadow: 0 2px 20px rgba(0,0,0,.35);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  max-width: var(--max-w);
  margin: 0 auto;
  gap: 1rem;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-shrink: 0;
}
.header__logo img {
  height: 40px;
  width: auto;
}
.header__logo-text { display: flex; flex-direction: column; line-height: 1.1; gap: .3rem; }
.header__logo-name {
  font-family: 'Playfair Display', serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .04em;
}
.header__logo-sub {
  font-size: .6rem;
  color: var(--gold-light);
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* Nav — hidden on mobile, visible on desktop */
.header__nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}
.header__nav a {
  color: var(--white);
  font-size: .875rem;
  font-weight: 500;
  opacity: .88;
  transition: color var(--transition), opacity var(--transition);
  position: relative;
}
.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.header__nav a:hover           { opacity: 1; color: var(--gold-light); }
.header__nav a:hover::after    { width: 100%; }

.header__actions {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.header__social-icon {
  color: var(--white);
  opacity: .8;
  transition: opacity var(--transition), color var(--transition);
  display: flex; align-items: center;
}
.header__social-icon:hover { opacity: 1; color: var(--gold-light); }
.header__social-icon--wa { color: #25D366; opacity: 1; }
.header__social-icon--wa:hover { color: #1aaa52; opacity: 1; }

.header__social-desktop {
  display: none;
  align-items: center;
  gap: .75rem;
}
.header__wa-mobile { display: flex; }

/* Nav mobile social row */
.header__nav-mobile-social {
  display: flex;
  gap: 1.5rem;
  padding-top: .5rem;
  border-top: 1px solid rgba(255,255,255,.07);
  margin-top: .25rem;
}
.header__nav-mobile-social a {
  display: flex;
  align-items: center;
  gap: .45rem;
  color: rgba(255,255,255,.65);
  font-size: .875rem;
  border: none;
  padding: .35rem 0;
  transition: color var(--transition);
  opacity: 1;
}
.header__nav-mobile-social a:hover { color: var(--gold-light); }

/* Hamburger */
.header__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
  background: none;
  border: none;
  cursor: pointer;
}
.header__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}
.header__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__hamburger.open span:nth-child(2) { opacity: 0; }
.header__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.header__nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--navy-deep);
  padding: 1.5rem 1.25rem 2rem;
  gap: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.header__nav-mobile.open { display: flex; }
.header__nav-mobile a {
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  opacity: .88;
  padding: .4rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color var(--transition);
}
.header__nav-mobile a:hover { color: var(--gold-light); opacity: 1; }

/* Desktop breakpoint */
@media (min-width: 768px) {
  .header__nav            { display: flex; }
  .header__hamburger      { display: none; }
  .header__nav-mobile     { display: none !important; }
  .header__inner          { padding: 1.1rem 1.5rem; }
  .header__logo img       { height: 44px; }
  .header__social-desktop { display: flex; }
  .header__wa-mobile      { display: none; }
}

/* ============================================================
   REVIEWS + LOGO SECTION
   ============================================================ */
.reviews-section {
  background: var(--navy-deep);
  padding: 2.5rem 0;
}
.reviews-section__inner {
  width: 100%;
  padding: 0 1.25rem;
  box-sizing: border-box;
  display: grid;
  grid-template-areas:
    "logo video"
    "carousel carousel";
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.reviews-section__logo {
  grid-area: logo;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reviews-section__logo .logo3d-canvas {
  width: 150px;
  height: 150px;
  display: block;
}
.reviews-section__carousel {
  grid-area: carousel;
  width: 100%;
}
.reviews-section__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.reviews-section__stars {
  color: var(--gold);
  font-size: 1.25rem;
  letter-spacing: 2px;
}
.reviews-section__meta {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
}
.reviews-marquee {
  overflow: hidden;
}
.reviews-marquee__track {
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
  width: max-content;
  will-change: transform;
}
.reviews-marquee:hover .reviews-marquee__track {
  animation-play-state: paused;
}
.review-card {
  width: 220px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 10px;
  padding: 1.1rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.review-card__top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}
.review-card__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-card__name {
  color: #fff;
  font-weight: 600;
  font-size: 0.8rem;
}
.review-card__stars {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 1px;
  margin-top: 0.1rem;
}
.review-card__text {
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 0.75rem;
}
.review-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 0.85rem;
  width: 100%;
}
.review-card__badge { text-decoration: none; }
.review-card__badge:hover { color: rgba(255,255,255,0.8); }
.review-card__badge svg { flex-shrink: 0; }
.reviews-dots {
  display: flex;
  gap: 0.55rem;
  margin-top: 1.25rem;
  justify-content: center;
}
.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}
.reviews-dot.active {
  background: var(--gold);
  transform: scale(1.35);
}
.reviews-section__video {
  grid-area: video;
  display: block;
  position: relative;
  height: 140px;
}
.reviews-section__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.video-unmute {
  position: absolute;
  bottom: 0.6rem;
  right: 0.6rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.25);
  transition: background 0.2s;
  cursor: pointer;
}
.video-unmute:hover { background: rgba(0,0,0,0.8); }
@media (min-width: 900px) {
  .reviews-section__inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    padding: 0 3rem;
  }
  .reviews-section__logo { justify-content: flex-start; flex-shrink: 0; }
  .reviews-section__logo .logo3d-canvas { width: 220px; height: 220px; }
  .reviews-section__carousel { flex: 1; min-width: 0; }
  .reviews-section__video { width: 240px; height: 300px; flex-shrink: 0; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  background: rgb(18,29,51);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(150deg, rgba(18,29,51,.88) 0%, rgba(27,42,74,.78) 50%, rgba(42,63,111,.72) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 40%, rgba(201,168,76,.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
  padding: 3rem 1.25rem 4rem;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero__content { text-align: center; }
.hero__label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero__label::before {
  content: '';
  display: block; width: 24px; height: 2px;
  background: var(--gold);
}
.hero__title {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  margin-bottom: 1.1rem;
}
.hero__title em { color: var(--gold); font-style: normal; }
.hero__subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,.78);
  margin-bottom: 1.75rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.hero__actions {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin-bottom: 2rem;
}
.hero__trust {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  align-items: center;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: .45rem;
  color: rgba(255,255,255,.72);
  font-size: .82rem;
}
.hero__trust-item svg { color: var(--gold); flex-shrink: 0; }

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero__seal {
  display: none;
}
@media (min-width: 900px) {
  .hero__seal {
    display: block;
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }
  .hero__seal img {
    width: 200px;
    height: auto;
    display: block;
    opacity: .9;
  }
}

.hero__logo-wrap {
  width: 260px;
  height: 260px;
  flex-shrink: 0;
}
.hero__logo-wrap iframe {
  width: 100%; height: 100%;
  border: none;
  border-radius: 0;
}

/* Foto de Mario en el hero */
.hero__photo-wrap {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}
.hero__photo-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
  border: 3px solid var(--gold);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
  display: block;
}
.hero__photo-badge {
  position: absolute;
  bottom: -14px; right: -10px;
  background: var(--gold);
  color: var(--navy-deep);
  padding: .6rem .9rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: .82rem;
  display: flex; flex-direction: column; align-items: center;
  box-shadow: 0 4px 14px rgba(201,168,76,.5);
  line-height: 1.2;
}
.hero__photo-badge strong { font-size: 1.3rem; line-height: 1; }

@media (min-width: 900px) {
  .hero__photo-wrap {
    max-width: 380px;
    margin: 0;
  }
  .hero__photo-wrap img { height: 480px; }
}

@media (min-width: 640px) {
  .hero__actions { flex-direction: row; justify-content: center; }
  .hero__trust   { flex-direction: row; flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 767px) {
  .hero__bg { object-position: center top; }
  .hero::before {
    background: linear-gradient(to bottom, rgba(18,29,51,.6) 0%, rgba(18,29,51,.65) 35%, rgba(18,29,51,.92) 58%, rgba(18,29,51,.97) 100%);
  }
}

@media (min-width: 900px) {
  .hero__inner {
    align-items: flex-start;
    padding: 5rem 3rem 5rem 2rem;
    gap: 2rem;
  }
  .hero__content   { max-width: 620px; text-align: left; }
  .hero__label     { justify-content: flex-start; }
  .hero__subtitle  { margin-left: 0; margin-right: 0; }
  .hero__actions   { justify-content: flex-start; }
  .hero__trust     { justify-content: flex-start; }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--gold);
  padding: 1rem 1.25rem;
}
.trust-strip__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 2.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.trust-strip__item {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: var(--navy-deep);
  font-weight: 700;
  font-size: .875rem;
}
.trust-strip__item span { font-weight: 400; opacity: .85; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold-dark);
  transition: gap var(--transition);
  margin-top: auto;
}
.service-card__link:hover { gap: .55rem; }

/* ── Services columns ── */
.services-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.5rem;
}
@media (max-width: 767px) {
  .svc-col {
    border-top: 2px solid var(--gold);
    padding-top: 1.5rem;
  }
}
@media (min-width: 768px) {
  .services-cols { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1100px) {
  .services-cols { grid-template-columns: repeat(5, 1fr); gap: 0; }
}

.svc-col {
  display: flex;
  flex-direction: column;
  padding: 0 1.25rem;
  border-left: 2px solid var(--gold);
}
@media (min-width: 1100px) {
  .svc-col:last-child { border-right: 2px solid var(--gold); }
}

.svc-col__title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .85rem;
}

.svc-col__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  flex: 1;
}
.svc-col__list li {
  font-size: .85rem;
  color: var(--navy);
  line-height: 1.5;
  padding: .3rem 0;
  border-bottom: 1px solid rgba(201,168,76,.2);
}
.svc-col__list li:last-child { border-bottom: none; }

/* ============================================================
   WHY SECTION
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.why-item { display: flex; gap: 1rem; align-items: flex-start; }
.why-item__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(201,168,76,.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.why-item__title { color: var(--navy); font-size: .95rem; margin-bottom: .3rem; }
.why-item__text  { font-size: .875rem; color: var(--text-muted); margin: 0; }

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

/* ============================================================
   ABOUT PREVIEW
   ============================================================ */
.about-preview {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.about-preview__img { position: relative; }
.about-preview__img img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--gold);
}
.about-preview__badge {
  position: absolute;
  bottom: -12px; right: 16px;
  background: var(--gold);
  color: var(--navy-deep);
  padding: .6rem .9rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: .8rem;
  display: flex; flex-direction: column; align-items: center;
  box-shadow: 0 4px 12px rgba(201,168,76,.4);
}
.about-preview__badge strong { font-size: 1.4rem; line-height: 1; }
.about-preview__content p { margin-bottom: 1.25rem; }

@media (min-width: 768px) {
  .about-preview        { flex-direction: row; align-items: center; gap: 4rem; }
  .about-preview__img   { flex: 0 0 40%; }
  .about-preview__content { flex: 1; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item { border-bottom: 1px solid rgba(201,168,76,.2); }
.faq-item:first-child { border-top: 1px solid rgba(201,168,76,.2); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.15rem 0;
  font-family: 'Playfair Display', serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  gap: 1rem;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold-dark); }
.faq-question svg { flex-shrink: 0; color: var(--gold); transition: transform var(--transition); }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height .35s ease; }
.faq-answer p {
  padding-bottom: 1.15rem;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}
.faq-item.open .faq-answer { max-height: 500px; }

.section--dark .faq-question { color: var(--white); }
.section--dark .faq-answer p  { color: rgba(255,255,255,.7); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-deep);
  color: var(--white);
  padding-top: 3.5rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer__brand img { height: 44px; margin-bottom: .9rem; }
.footer__brand p   { color: rgba(255,255,255,.58); font-size: .85rem; margin-bottom: 1rem; }
.footer__nap p     { color: rgba(255,255,255,.6); font-size: .85rem; margin-bottom: .35rem; }
.footer__nap strong { color: var(--gold-light); }
.footer__nap a      { color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer__nap a:hover{ color: var(--gold-light); }
.footer__social {
  display: flex; gap: .6rem; margin-top: .9rem;
}
.footer__social a {
  width: 34px; height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(201,168,76,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  transition: all var(--transition);
}
.footer__social a:hover {
  background: var(--gold); border-color: var(--gold); color: var(--navy-deep);
  transform: translateY(-2px);
}
.footer__nav-title {
  font-family: 'Playfair Display', serif;
  font-size: .8rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer__nav ul  { display: flex; flex-direction: column; gap: .55rem; }
.footer__nav a   { color: rgba(255,255,255,.62); font-size: .85rem; transition: color var(--transition); }
.footer__nav a:hover { color: var(--gold-light); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.25rem;
  text-align: center;
}
.footer__bottom p  { color: rgba(255,255,255,.38); font-size: .78rem; margin: 0 0 .5rem; }
.footer__legal {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem;
}
.footer__legal a { color: rgba(255,255,255,.38); font-size: .78rem; transition: color var(--transition); }
.footer__legal a:hover { color: var(--gold-light); }

@media (min-width: 640px)  { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px)  { .footer__grid { grid-template-columns: 2fr 1fr 1fr; } }
@media (min-width: 1024px) {
  .footer__bottom { display: flex; justify-content: space-between; align-items: center; text-align: left; }
  .footer__bottom p { margin: 0; }
}

/* ============================================================
   WHATSAPP FLOTANTE
   ============================================================ */
.wa-btn {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 90;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.45);
  transition: transform var(--transition), box-shadow var(--transition);
  color: #fff;
  text-decoration: none;
}
.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 26px rgba(37,211,102,.6);
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--navy-deep);
  border-top: 3px solid var(--gold);
  border-radius: 16px 16px 0 0;
  padding: 2.2rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-height: 58vh;
  justify-content: center;
  box-shadow: 0 -8px 40px rgba(0,0,0,.5);
  transition: transform .4s ease;
}
.cookie-banner.hidden { transform: translateY(110%); }
.cookie-banner p {
  color: rgba(255,255,255,.92);
  font-size: .97rem;
  margin: 0;
  line-height: 1.7;
}
.cookie-banner p a { color: var(--gold-light); text-decoration: underline; }
.cookie-banner__actions { display: flex; flex-direction: column; gap: .75rem; }
.cookie-accept {
  background: var(--gold);
  color: var(--navy-deep);
  padding: .95rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  border: none; cursor: pointer;
  text-align: center;
  transition: background var(--transition);
}
.cookie-accept:hover { background: var(--gold-dark); }
.cookie-reject {
  background: transparent;
  color: rgba(255,255,255,.55);
  padding: .75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: .88rem;
  border: 1px solid rgba(255,255,255,.2);
  cursor: pointer;
  text-align: center;
  transition: all var(--transition);
}
.cookie-reject:hover { border-color: rgba(255,255,255,.5); color: var(--white); }
.cookie-banner__sub { font-size: .88rem !important; color: rgba(255,255,255,.65) !important; }
.cookie-banner__links {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: .75rem;
}
.cookie-banner__links a {
  color: rgba(255,255,255,.5);
  font-size: .78rem;
  text-decoration: underline;
}

@media (min-width: 640px) {
  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1.8rem 2.5rem;
    min-height: unset;
    border-radius: 0;
    gap: 2rem;
  }
  .cookie-banner p { max-width: 640px; font-size: .95rem; }
  .cookie-banner__actions { flex-direction: row; gap: .75rem; align-items: center; flex-shrink: 0; }
  .cookie-accept { padding: .75rem 1.8rem; font-size: .95rem; }
  .cookie-reject { padding: .65rem 1.4rem; font-size: .88rem; }
}

/* ============================================================
   UTILITY CLASSES (reemplaza estilos inline repetitivos)
   ============================================================ */
.link-gold { color: #c9a84c; text-decoration: none; }
.link-gold:hover { color: var(--gold-light); }
.cta-buttons { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.cta-buttons--left { display: flex; gap: 1rem; flex-wrap: wrap; }
.cta-buttons--svc { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: .5rem; }
.section--dark h2 { color: #fff; margin-bottom: 1rem; }
.section-lead { max-width: 520px; margin: 0 auto 2rem; }
.legal-main { padding-top: 80px; }
.legal-page-hero { padding: 5rem 1.25rem 3rem; }
.legal-footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 1.5rem; }
.legal-footer-copy { color: rgba(255,255,255,.38); font-size: .78rem; margin: 0 0 .5rem; }
.legal-date { color: rgba(255,255,255,.65); font-size: .85rem; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in {
  opacity: 0;
  transition: opacity .65s ease;
}
.fade-in.visible { opacity: 1; }

.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }

/* ============================================================
   FORM
   ============================================================ */
.form { display: flex; flex-direction: column; gap: 1.15rem; }
.form__row { display: grid; grid-template-columns: 1fr; gap: 1.15rem; }
@media (min-width: 520px) { .form__row { grid-template-columns: 1fr 1fr; } }
.form__group { display: flex; flex-direction: column; gap: .35rem; }
.form__group label { font-size: .82rem; font-weight: 600; color: var(--text); }
.form__group input,
.form__group textarea,
.form__group select {
  padding: .75rem 1rem;
  border: 1.5px solid #E5E7EB;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form__group input:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.12);
}
.form__group textarea { resize: vertical; min-height: 110px; }
.form__honey { display: none; }
.form__rgpd {
  display: flex; align-items: flex-start; gap: .7rem;
  font-size: .82rem; color: var(--text-muted); cursor: pointer;
}
.form__rgpd input[type="checkbox"] {
  width: 17px; height: 17px;
  flex-shrink: 0; margin-top: 2px;
  accent-color: var(--gold);
}
.form__rgpd a { color: var(--gold-dark); text-decoration: underline; }

/* ============================================================
   PAGE HERO (páginas internas)
   ============================================================ */
.page-hero {
  background: linear-gradient(150deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 7rem 1.25rem 3.5rem;
  text-align: center;
}
.page-hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  display: inline-block;
  padding-bottom: .55rem;
  border-bottom: 3px solid var(--gold);
}
.page-hero p  { color: rgba(255,255,255,.72); max-width: 580px; margin: 0 auto; font-size: 1rem; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  color: rgba(255,255,255,.45); font-size: .75rem; margin-bottom: 1.25rem;
}
.breadcrumb a { color: var(--gold-light); }

/* ============================================================
   SERVICE DETAIL (página Servicios)
   ============================================================ */
.service-detail {
  display: flex; flex-direction: column;
  gap: 2rem;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(201,168,76,.15);
}
.service-detail:last-child { border-bottom: none; }
.service-detail__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
}
.service-detail__img img {
  width: 100%;
  height: auto;
  display: block;
}
.service-detail__tag {
  display: inline-block;
  background: rgba(201,168,76,.12);
  color: var(--gold-dark);
  font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .25rem .7rem; border-radius: 4px;
  margin-bottom: .75rem;
}
.service-detail__content h2 { font-size: clamp(1.4rem,4vw,1.9rem); margin-bottom: .65rem; }
.service-detail__content p  { font-size: .9rem; line-height: 1.8; }
.service-detail__list {
  display: flex; flex-direction: column; gap: .45rem;
  margin: .75rem 0 1.25rem;
}
.service-detail__list li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .875rem; color: var(--text-muted);
}
.service-detail__list li::before {
  content: '';
  display: block; width: 7px; height: 7px;
  background: var(--gold); border-radius: 50%;
  flex-shrink: 0; margin-top: .45rem;
}

@media (min-width: 768px) {
  .service-detail           { flex-direction: row; align-items: flex-start; gap: 3.5rem; }
  .service-detail--reverse  { flex-direction: row-reverse; }
  .service-detail__img      { flex: 0 0 42%; }
  .service-detail__img img  { width: 100%; height: auto; }
}

/* ============================================================
   PROFILE (página Sobre Mario)
   ============================================================ */
.profile-grid {
  display: flex; flex-direction: column; gap: 2.5rem;
}
.profile-img { position: relative; }
.profile-img img {
  width: 100%; border-radius: var(--radius-lg);
  border: 3px solid var(--gold);
  box-shadow: var(--shadow-lg);
}
.profile-badge {
  position: absolute; bottom: -14px; right: 12px;
  background: var(--gold); color: var(--navy-deep);
  padding: .6rem .85rem; border-radius: 10px;
  text-align: center; font-weight: 700;
  box-shadow: 0 4px 12px rgba(201,168,76,.4);
}
.profile-badge strong { display: block; font-size: 1.35rem; line-height: 1; }
.profile-badge small  { font-size: .65rem; text-transform: uppercase; letter-spacing: .05em; }

@media (min-width: 768px) {
  .profile-grid { flex-direction: row; align-items: flex-start; gap: 4rem; }
  .profile-img  { flex: 0 0 38%; }
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
}
@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 700;
  color: var(--gold); line-height: 1;
  margin-bottom: .35rem;
}
.stat-label { font-size: .82rem; color: rgba(255,255,255,.68); }

/* TikTok vídeos grid */
.tiktok-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto 2rem;
}
@media (min-width: 640px) { .tiktok-grid { grid-template-columns: repeat(3, 1fr); } }

.tiktok-thumb-card {
  display: block;
  text-decoration: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.tiktok-thumb-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.4); }
.tiktok-thumb-card__img {
  position: relative;
  aspect-ratio: 9/16;
  overflow: hidden;
  background: #000;
}
.tiktok-thumb-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}
.tiktok-thumb-card:hover .tiktok-thumb-card__img img { transform: scale(1.04); }
.tiktok-thumb-card__play {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.35);
  transition: background var(--transition);
}
.tiktok-thumb-card:hover .tiktok-thumb-card__play { background: rgba(0,0,0,.5); }
.tiktok-thumb-card__play svg { filter: drop-shadow(0 2px 6px rgba(0,0,0,.5)); }
.tiktok-thumb-card__label {
  text-align: center;
  color: var(--gold);
  font-size: .8rem;
  font-weight: 600;
  padding: .65rem 0 .25rem;
  margin: 0;
}

/* TikTok block */
.tiktok-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex; align-items: center; gap: 1.25rem;
  max-width: 480px;
  margin: 0 auto;
  transition: border-color var(--transition), transform var(--transition);
  text-decoration: none;
}
.tiktok-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.tiktok-card__icon {
  flex-shrink: 0; width: 54px; height: 54px;
  background: #010101; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.tiktok-card__text h4  { color: var(--white); margin-bottom: .2rem; font-size: 1rem; }
.tiktok-card__text p   { color: rgba(255,255,255,.62); font-size: .82rem; margin: 0; }
.tiktok-card__arrow    { margin-left: auto; color: var(--gold); flex-shrink: 0; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 5rem;
}
.legal-body h2  { font-size: 1.3rem; margin: 2rem 0 .65rem; color: var(--navy); }
.legal-body p   { font-size: .9rem; line-height: 1.8; color: var(--text-muted); }
.legal-body ul  { padding-left: 1.4rem; list-style: disc; }
.legal-body ul li { font-size: .9rem; color: var(--text-muted); margin-bottom: .35rem; }
.legal-body a   { color: var(--gold-dark); text-decoration: underline; }

/* ============================================================
   SUBPAGE HERO (foto de fondo en subpáginas de servicios)
   ============================================================ */
.subpage-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 8rem 1.25rem 4.5rem;
}
.subpage-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    150deg,
    rgba(18,29,51,.92) 0%,
    rgba(27,42,74,.78) 55%,
    rgba(18,29,51,.88) 100%
  );
  z-index: 1;
}
.subpage-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.subpage-hero .container { position: relative; z-index: 2; }
.subpage-hero .breadcrumb {
  justify-content: flex-start;
  margin-bottom: 1.5rem;
}
.subpage-hero .service-detail__tag { margin-bottom: 1rem; display: inline-block; }
.subpage-hero h1 {
  color: var(--white);
  max-width: 740px;
  margin-bottom: 1.1rem;
  display: block;
  padding: 0;
  border: none;
}
.subpage-hero__lead {
  color: rgba(255,255,255,.82);
  font-size: 1.05rem;
  max-width: 620px;
  margin-bottom: 2rem;
  line-height: 1.75;
}
.subpage-hero__actions {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .subpage-hero { min-height: 65vh; }
  .subpage-hero__lead { font-size: 1.1rem; }
}

/* ============================================================
   NAV DROPDOWN (desktop hover + mobile toggle)
   ============================================================ */

.header__nav-item {
  position: relative;
  display: flex;
  align-items: center;
}
.header__nav-item__link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}
.header__nav-item__link svg {
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-top: 1px;
}
.header__nav-item:hover .header__nav-item__link svg {
  transform: rotate(180deg);
}
.header__dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--navy-deep);
  border: 1px solid rgba(201,168,76,.35);
  border-radius: var(--radius);
  padding: .4rem 0;
  min-width: 210px;
  box-shadow: 0 8px 32px rgba(0,0,0,.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 110;
}
.header__dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid rgba(201,168,76,.35);
}
.header__nav-item:hover .header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.header__dropdown a {
  display: block;
  padding: .6rem 1.35rem;
  color: rgba(255,255,255,.78);
  font-size: .85rem;
  font-weight: 500;
  transition: color var(--transition), background var(--transition);
  opacity: 1;
}
.header__dropdown a::after { display: none !important; }
.header__dropdown a:hover {
  color: var(--gold-light);
  background: rgba(255,255,255,.06);
  opacity: 1;
}

/* Mobile submenu */
.header__mobile-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header__mobile-nav-row > a {
  flex: 1;
  padding: .4rem 0;
  border-bottom: none !important;
}
.header__mobile-submenu-toggle {
  color: rgba(255,255,255,.55);
  padding: .5rem .6rem;
  transition: transform var(--transition), color var(--transition);
  flex-shrink: 0;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.header__mobile-submenu-toggle.open {
  transform: rotate(180deg);
  color: var(--gold);
}
.header__mobile-submenu {
  display: none;
  flex-direction: column;
  background: rgba(0,0,0,.18);
  border-radius: var(--radius);
  margin: .1rem 0 .4rem .75rem;
  overflow: hidden;
}
.header__mobile-submenu.open { display: flex; }
.header__mobile-submenu a {
  padding: .6rem 1.1rem !important;
  color: rgba(255,255,255,.62) !important;
  font-size: .85rem !important;
  border-bottom: 1px solid rgba(255,255,255,.04) !important;
  opacity: 1 !important;
}
.header__mobile-submenu a:last-child { border-bottom: none !important; }
.header__mobile-submenu a:hover { color: var(--gold-light) !important; }

/* ============================================================
   SUBPÁGINAS DE SERVICIOS — Cards, Checklist, Steps, Back-link
   ============================================================ */

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (min-width: 640px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: var(--white);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: .75rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--gold);
}
.card p { font-size: .9rem; margin-bottom: .6rem; }
.card p:last-child { margin-bottom: 0; }

/* Checklist */
.checklist {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
  margin-top: 2rem;
}
@media (min-width: 640px) {
  .checklist { grid-template-columns: repeat(2, 1fr); }
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow);
  font-size: .9rem;
  color: var(--text-muted);
}
.checklist li::before {
  content: '✓';
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: .05rem;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (min-width: 640px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .steps { grid-template-columns: repeat(4, 1fr); }
}
.step {
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201,168,76,.2);
  box-shadow: var(--shadow);
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 1rem;
}
.step h3 { font-size: 1rem; margin-bottom: .5rem; }
.step p   { font-size: .875rem; margin: 0; }

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

.section--dark .step {
  background: rgba(255,255,255,.07);
  border-color: rgba(201,168,76,.25);
}
.section--dark .step h3 { color: var(--white); }
.section--dark .step p  { color: rgba(255,255,255,.72); }

/* Back link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--navy);
  font-weight: 600;
  font-size: .9rem;
  border-bottom: 2px solid var(--gold);
  padding-bottom: .1rem;
  transition: color var(--transition);
}
.back-link:hover { color: var(--gold-dark); }

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .header, .footer, .wa-btn, .cookie-banner { display: none; }
  body { color: #000; }
}
