:root {
  --blue: #0079ba;
  --blue-dark: #00618f;
  --cyan: #00b6db;
  --orange: #ff7f02;
  --navy: #0a1c30;
  --navy-2: #0e2a45;
  --ink: #2b3640;
  --muted: #6b7a88;
  --line: #e6ecf2;
  --bg-soft: #f4f8fc;
  --white: #ffffff;
  --font: Arial, Helvetica, sans-serif;
  --radius: 14px;
  --shadow: 0 18px 40px rgba(10, 28, 48, .10);
  --wrap: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { line-height: 1.15; color: var(--navy); font-weight: 800; font-family: var(--font); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap.wrap-wide { max-width: 1500px; }
.section { padding: 84px 0; }
.center { text-align: center; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 800; font-size: 15px; letter-spacing: .3px;
  padding: 15px 30px; border-radius: 40px; cursor: pointer;
  border: 2px solid transparent; transition: .22s ease; white-space: nowrap;
}
.btn-primary { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-2px); }
.btn-outline { color: var(--orange); border-color: var(--orange); background: rgba(255, 255, 255, .1); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.btn-outline:hover { background: rgba(255, 127, 2, .16); border-color: var(--orange); }
.btn-lg { padding: 17px 38px; font-size: 16px; }
/* botones emparejados en héroes: mismo porte */
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-cta .btn, .svc-hero .btn { min-width: 250px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px); border-bottom: 1px solid var(--line);
}
.site-header .wrap { max-width: 1320px; }
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; flex-shrink: 0; }
.brand-logo { height: 32px; width: auto; display: block; }
@media (max-width: 500px) { .brand-logo { height: 28px; } }
.brand .yb {
  width: 44px; height: 44px; border-radius: 10px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--cyan)); color: #fff; font-size: 20px; font-weight: 900;
}
.brand .brand-name { color: var(--navy); font-size: 20px; letter-spacing: .5px; }
.brand .brand-name b { color: var(--cyan); }
.brand small { display: block; font-size: 10px; letter-spacing: 2px; color: var(--muted); font-weight: 700; }
.menu { display: flex; align-items: center; gap: 22px; list-style: none; flex-shrink: 0; }
.menu > li { flex-shrink: 0; }
.menu > li > a { font-weight: 700; font-size: 14px; color: var(--blue); text-transform: uppercase; padding: 8px 0; position: relative; white-space: nowrap; }
.drop-arrow { font-weight: 400; }
.menu > li > a:hover { color: var(--orange); }
.has-drop { position: relative; }
.drop {
  position: absolute; top: 130%; left: 0; min-width: 260px; background: #fff;
  border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow);
  padding: 10px; list-style: none; opacity: 0; visibility: hidden; transform: translateY(6px); transition: .18s;
  z-index: 100;
}
.has-drop:hover .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop li a { display: block; padding: 10px 14px; border-radius: 8px; font-size: 14px; font-weight: 700; color: var(--blue); text-transform: uppercase; }
.drop li a:hover { background: var(--bg-soft); color: var(--orange); }
.nav-right { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }

/* Language Dropdown Selector (Mockup Style) */
.lang-dropdown {
  position: relative;
}
.lang-select {
  display: flex !important;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--blue) !important;
  text-transform: uppercase;
}
.lang-select .flag {
  width: 20px;
  height: auto;
  border-radius: 1px;
  display: block;
}
.lang-drop {
  min-width: 105px !important;
  padding: 6px !important;
  left: auto !important;
  right: 0 !important;
}
.lang-drop li a {
  display: flex !important;
  align-items: center;
  gap: 8px;
  padding: 8px 12px !important;
  font-weight: 700;
  color: var(--blue) !important;
  text-transform: uppercase;
  font-size: 13px !important;
}

/* Header CTA Button styling matching mockup */
.nav-right .btn-outline {
  color: var(--blue) !important;
  border-color: rgba(255, 127, 2, .75) !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, .8), rgba(255, 127, 2, .14));
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, .7), 0 4px 14px rgba(10, 28, 48, .08);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-right .btn-outline:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, .9), rgba(255, 127, 2, .22));
  color: var(--blue-dark) !important;
}

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--navy); border-radius: 3px; margin: 5px 0; transition: .2s; }

/* Hero — full-bleed image, CPC-Travel style, matches solution pages */
.hero { position: relative; height: 88vh; min-height: 560px; display: flex; align-items: center; overflow: hidden; background: var(--navy); color: #fff; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 72% 18%; z-index: 0; }
.hero > .hero-bg { inset: -20px; width: calc(100% + 40px); height: calc(100% + 40px); object-position: 50% 35%; filter: blur(4px); transform: scale(1.08); }
.hero-cutout { position: absolute; right: 13%; bottom: 0; height: 104%; width: auto; max-width: 58%; object-fit: contain; object-position: bottom; z-index: 2; filter: drop-shadow(0 30px 50px rgba(0, 0, 0, .45)); }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right,
    rgba(10, 28, 48, 0.32) 0%,
    rgba(10, 28, 48, 0.14) 40%,
    rgba(10, 28, 48, 0) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 620px; margin-left: max(24px, calc((100% - var(--wrap)) / 2)); margin-right: auto; padding: 0; }
/* Mobile-only hero elements — invisible/inert on desktop & tablet */
.hero-top-text { display: contents; }
.hero-mobile-subtitle { display: none; }
.hero-name-card { display: contents; }
.hero-avatar-ico { display: none; }
.btn-icon-circle, .btn-chevron, .hero-cta .btn-text small { display: none; }
.hero-cta .btn-text strong { font-weight: inherit; }
.hero h1 { display: block; color: #fff; font-size: clamp(40px, 5.5vw, 88px); font-weight: 800; letter-spacing: .5px; line-height: 1.05;
  background: none; backdrop-filter: none; -webkit-backdrop-filter: none;
  border: none; border-radius: 0; box-shadow: none; padding: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .75), 0 6px 28px rgba(0, 0, 0, .55); margin-bottom: 22px; }
.hero h1 .accent { color: var(--orange); }
.hero .sub-name { font-family: var(--font); font-size: clamp(20px, 2.2vw, 30px); font-weight: 800; margin-top: 0; color: #fff; text-shadow: 0 2px 10px rgba(0, 0, 0, .75), 0 4px 20px rgba(0, 0, 0, .5); }
.hero .sub-role { font-style: italic; font-size: 18px; color: rgba(255,255,255,0.80); font-weight: 500; letter-spacing: 0.06em; margin-top: 4px; text-shadow: 0 2px 10px rgba(0, 0, 0, .75), 0 4px 16px rgba(0, 0, 0, .5); text-transform: uppercase; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }
.hero .btn-outline { color: #fff; border-color: rgba(255,255,255,0.6); background: rgba(255, 255, 255, .12); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.hero .btn-outline:hover { background: rgba(255,255,255,.22); border-color: #fff; }
.hero .btn-hero-orange { color: #ffffff !important; border-color: var(--orange) !important; background: rgba(255, 127, 2, 0.12) !important; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.hero .btn-hero-orange:hover { background: var(--orange) !important; color: #ffffff !important; }


/* Services */
.services { background: var(--white); }
.eyebrow { color: var(--cyan); font-weight: 900; letter-spacing: 4px; font-size: 14px; text-transform: uppercase; }
.section-title { font-size: clamp(30px, 4vw, 44px); margin-top: 8px; }
/* Reviews strip */
.reviews { padding: 46px 0 6px; }
.rev-head { text-align: center; margin-bottom: 24px; }
.rev-head .stars { color: #fbbf24; font-size: 24px; letter-spacing: 3px; }
.rev-head .lead { font-weight: 900; color: var(--navy); font-size: 18px; margin-top: 4px; }
.rev-head .g { color: var(--muted); font-size: 13px; }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.rev-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 18px 20px; box-shadow: 0 8px 20px rgba(10, 28, 48, .05); }
.rev-card .who { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 14px; color: var(--navy); }
.rev-card .who .av { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--cyan)); color: #fff; display: grid; place-items: center; font-size: 13px; }
.rev-card .st { color: #fbbf24; font-size: 14px; margin: 8px 0 6px; }
.rev-card p { color: var(--muted); font-size: 14px; }

/* Services — zig-zag rows */
.svc-row .inner { max-width: var(--wrap); margin: 0 auto; padding: 58px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.svc-row.alt { background: var(--bg-soft); }
.svc-text h2 { color: var(--blue); text-transform: uppercase; font-size: clamp(24px, 2.6vw, 32px); letter-spacing: .5px; }
.svc-text p { color: var(--muted); font-size: 16px; margin: 18px 0 26px; }
.svc-img { aspect-ratio: 16 / 11; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); background: linear-gradient(140deg, var(--blue), var(--cyan)); }
.svc-img img { width: 100%; height: 100%; object-fit: cover; }
.svc-img .ph { width: 100%; height: 100%; display: grid; place-items: center; color: rgba(255, 255, 255, .85); font-weight: 800; letter-spacing: 1px; }
.btn-orange { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-orange:hover { background: #e57200; border-color: #e57200; transform: translateY(-2px); }

/* CTA */
.cta {
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.cta::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(0, 182, 219, 0.25) 0%, rgba(0, 182, 219, 0) 70%);
  z-index: -1;
  pointer-events: none;
}
.cta::after {
  content: "";
  position: absolute;
  bottom: -40%;
  right: -10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 127, 2, 0.2) 0%, rgba(255, 127, 2, 0) 70%);
  z-index: -1;
  pointer-events: none;
}
.cta .box {
  background: rgba(10, 28, 48, 0.82); /* Premium Glassmorphism Navy */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 56px 40px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(10, 28, 48, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  color: #fff;
  position: relative;
  z-index: 2;
}
.cta h2 { color: #fff; font-size: clamp(26px, 3.4vw, 38px); }
/* Calendly Simulation CTA */
.cta-calendly {
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: 84px 0;
}
.cta-calendly::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(0, 182, 219, 0.22) 0%, rgba(0, 182, 219, 0) 70%);
  z-index: -1;
  pointer-events: none;
}
.cta-calendly::after {
  content: "";
  position: absolute;
  bottom: -40%;
  right: -10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 127, 2, 0.16) 0%, rgba(255, 127, 2, 0) 70%);
  z-index: -1;
  pointer-events: none;
}
.cta-calendly .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.cta-calendly .cta-header {
  text-align: center;
  max-width: 720px;
}
.cta-calendly .cta-header h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  color: var(--blue);
  margin-bottom: 16px;
}
.cta-calendly .cta-header h2 .calendly-accent {
  color: var(--orange);
}
.cta-calendly .cta-header p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}
.calendly-sim-container {
  width: 100%;
  max-width: 440px;
  position: relative;
}
.calendly-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.calendly-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 28px 24px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.25s ease;
}
.calendly-card-link:hover .calendly-card {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(10, 28, 48, 0.14);
}
.calendly-card-header h3 {
  font-size: 19px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 24px;
  font-family: var(--font);
}
.calendly-month-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 0 4px;
}
.calendly-nav-arrow {
  font-size: 24px;
  color: var(--orange);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: background-color 0.2s;
  user-select: none;
}
.calendly-nav-arrow:hover {
  background-color: var(--bg-soft);
}
.calendly-current-month {
  font-size: 15px;
  font-weight: 700;
  color: #262626;
}
.calendly-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.calendly-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  row-gap: 8px;
  column-gap: 8px;
  margin-bottom: 24px;
}
.calendly-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50%;
  position: relative;
  transition: background-color 0.18s, color 0.18s;
  user-select: none;
  cursor: default;
}
/* Días inactivos (fin de semana o pasado) */
.calendly-day.inactive {
  color: #a3a3a3;
  font-weight: 500;
}
/* Días activos (disponibles para cita) */
.calendly-day.active {
  background-color: #fff2e6;
  color: var(--orange);
  cursor: pointer;
}
.calendly-card-link:hover .calendly-day.active {
  background-color: #ffe4cc;
}
.calendly-day.active:hover {
  background-color: var(--orange) !important;
  color: #ffffff !important;
}
/* Indicador de "hoy" */
.calendly-day.today::after {
  content: "";
  position: absolute;
  bottom: 6px;
  width: 4px;
  height: 4px;
  background-color: #1a1a1a;
  border-radius: 50%;
}
.calendly-day.today.active::after {
  background-color: var(--orange);
}
.calendly-day.today.active:hover::after {
  background-color: #ffffff;
}
.calendly-timezone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #595959;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: 8px;
}
.calendly-timezone .globe-icon {
  width: 16px;
  height: 16px;
  stroke: #595959;
  fill: none;
}

/* Tagline */
.tagline { padding: 22px 0; }
.tagline p { text-align: center; color: #9aa5b1; font-size: 13px; }

/* Footer */
.site-footer {
  position: relative;
  background: var(--blue);
  color: #eaf4fb;
  z-index: 1;
  padding: 60px 0 20px; /* Standard padding */
}
.footer-wave-bg {
  position: absolute;
  top: -70px; /* Float waves above the footer container */
  left: 0;
  width: 100%;
  height: 72px; /* Fixed height for the waves */
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.footer-wave-bg svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scaleX(1.3); /* Soft horizontal scale only, keeps vertical reach contained */
  transform-origin: bottom;
  display: block;
  pointer-events: none;
}
.footer-top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding: 20px 0 40px;
}
.footer-brand .yb-big { font-size: 26px; font-weight: 900; letter-spacing: 1px; }
.footer-brand small { display: block; letter-spacing: 3px; font-size: 11px; opacity: .8; margin-top: 4px; }
.footer-logo-chip { background: #fff; display: inline-block; padding: 10px 18px; border-radius: 10px; }
.footer-logo { height: 36px; width: auto; display: block; }
.footer h4 { color: var(--orange); font-size: 15px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; font-size: 14px; opacity: .92; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer a.social-link { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.footer a.social-link:hover { text-decoration: none; }
.footer a.social-link:hover .social-ico { background: var(--orange); }
.social-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255, 255, 255, .12); flex-shrink: 0;
  transition: background .2s ease;
}
.social-ico svg { width: 15px; height: 15px; }
.footer .contact-line { display: flex; gap: 10px; margin-bottom: 12px; font-size: 14px; }
.footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 20px 0;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  opacity: .9;
}

/* Responsive */
@media (max-width: 960px) {
  .hero { min-height: 540px; }
  .hero::after { background: linear-gradient(180deg, rgba(10, 28, 48, .15), rgba(10, 28, 48, .38)); }
  .hero h1 { backdrop-filter: none; -webkit-backdrop-filter: none; background: none; border-color: rgba(255, 255, 255, .12); box-shadow: none; }
  .svc-row .inner { grid-template-columns: 1fr; gap: 24px; text-align: center; padding: 44px 24px; }
  .svc-img { order: -1; max-width: 520px; margin: 0 auto; width: 100%; }
  .rev-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }

  /* Mobile Navigation Toggle (Breakpoint moved to 960px to prevent overflow) */
  .menu, .nav-right .btn { display: none; }
  .nav-toggle { display: block; }
  .menu.open {
    display: flex; flex-direction: column; position: absolute; top: 78px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 16px 24px; gap: 6px; align-items: flex-start;
    z-index: 999;
  }
  .menu.open .drop {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0;
    padding-left: 16px; width: 100%; min-width: 0; display: block;
  }
  .menu.open .drop li a {
    padding: 8px 12px; width: 100%; display: block;
  }
}
@media (max-width: 720px) {
  .svc-row .inner { padding: 40px 18px; }
  .footer-top { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .feature-grid { grid-template-columns: 1fr; }
}
/* Hero dividido en tablet: foto de Yasmin a la izquierda (de largo), tarjetas de texto a la derecha */
@media (min-width: 641px) and (max-width: 880px) {
  .hero { display: flex; flex-direction: row; align-items: stretch; min-height: 600px; height: auto; background: var(--navy); overflow: hidden; }
  .hero > .hero-bg { position: absolute; inset: -10px; width: calc(100% + 20px); height: calc(100% + 20px); object-position: 35% center; filter: blur(5px); transform: scale(1.05); }
  .hero-cutout { position: absolute; left: 0; right: auto; top: auto; bottom: 0; height: 100%; max-width: 48%; width: auto; object-position: bottom left; filter: drop-shadow(0 14px 26px rgba(0, 0, 0, .4)); }
  .hero::after { display: none; }
  .hero-content { position: relative; z-index: 2; width: 55%; max-width: none; margin: 0 0 0 auto; padding: 20px 16px; display: flex; flex-direction: column; justify-content: center; text-align: left; }
  .hero h1 { display: block; font-size: clamp(22px, 6vw, 30px); letter-spacing: .2px; line-height: 1.15; backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(10, 28, 48, .82); border: none; box-shadow: none; padding: 14px 16px; border-radius: 12px; margin-bottom: 10px; }
  .hero .sub-name { background: rgba(10, 28, 48, .82); padding: 10px 16px 2px; border-radius: 12px 12px 0 0; margin-top: 0; font-size: 16px; }
  .hero .sub-role { background: rgba(10, 28, 48, .82); padding: 0 16px 10px; border-radius: 0 0 12px 12px; margin-top: 0; font-size: 13px; }
  .hero-cta { flex-direction: column; justify-content: center; margin-top: 10px; gap: 10px; }
  .hero-cta .btn { width: 100%; min-width: 0; padding: 13px 18px; font-size: 13px; }
}

/* Hero de celular: foto de Yasmin a la derecha (proporcional), texto superpuesto arriba-izquierda, tarjeta de nombre con avatar, botones grandes con ícono+descripción debajo de la foto */
@media (max-width: 640px) {
  .hero { display: block; position: relative; min-height: 0; height: auto; overflow: visible; background: var(--navy); }
  .hero > .hero-bg { position: absolute; inset: 0; width: 100%; height: 520px; object-fit: cover; object-position: 70% 15%; filter: blur(4px); transform: scale(1.05); }
  .hero-cutout { position: absolute; right: 0; left: auto; top: 0; bottom: auto; height: 520px; max-width: 82%; width: auto; object-fit: contain; object-position: top right; filter: drop-shadow(-4px 6px 10px rgba(0, 0, 0, .22)); }
  .hero::after { display: block; content: ""; position: absolute; left: 0; right: 0; top: 0; height: 520px; z-index: 1; background:
    linear-gradient(180deg, rgba(10, 28, 48, 0) 80%, var(--navy) 100%),
    linear-gradient(100deg, rgba(10, 28, 48, .82) 0%, rgba(10, 28, 48, .48) 42%, rgba(10, 28, 48, .08) 72%, rgba(10, 28, 48, 0) 100%); }

  .hero-content { position: relative; z-index: 2; width: 100%; max-width: none; margin: 0; padding: 0; display: block; }
  .hero-top-text { display: flex; flex-direction: column; height: 520px; box-sizing: border-box; padding: 40px 20px 24px; justify-content: flex-start; }
  .hero h1 { display: block; background: none; padding: 0; border: none; box-shadow: none; border-radius: 0; text-align: left; font-size: clamp(22px, 6.8vw, 28px); line-height: 1.15; max-width: 54%; margin-bottom: 10px; }
  .hero-mobile-subtitle { display: block; color: rgba(255, 255, 255, .92); font-size: 13px; line-height: 1.5; max-width: 48%; text-shadow: 0 2px 8px rgba(0, 0, 0, .7); margin: 0 0 auto; }
  .hero-mobile-subtitle .accent { color: var(--orange); font-weight: 700; }

  .hero-name-card { display: flex; align-items: center; gap: 10px; background: rgba(10, 28, 48, .6); border: 1px solid rgba(255, 255, 255, .15); border-radius: 14px; padding: 8px 14px; width: fit-content; margin-top: 24px; }
  .hero-avatar-ico { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: rgba(255, 255, 255, .16); flex-shrink: 0; }
  .hero-avatar-ico svg { width: 16px; height: 16px; color: #fff; }
  .hero-name-card .sub-name { font-size: 13px; font-weight: 700; margin: 0; text-shadow: none; }
  .hero-name-card .sub-role { font-size: 10px; opacity: .85; margin: 0; text-shadow: none; text-transform: none; letter-spacing: normal; }

  .hero-cta { position: relative; z-index: 2; flex-direction: column; margin: 0; padding: 18px 16px 24px; background: var(--navy); gap: 10px; }
  .hero-cta .btn { width: 100%; min-width: 0; justify-content: center; text-align: center; padding: 13px 18px; font-family: var(--font); }
  .hero-cta .btn-icon-circle, .hero-cta .btn-chevron { display: none; }
  .hero-cta .btn-text { display: inline; text-transform: none; letter-spacing: normal; font-family: var(--font); }
  .hero-cta .btn-text strong { font-size: 14px; font-weight: 800; font-family: var(--font); }
  .hero-cta .btn-text small { display: none; }

  /* Book a Consultation → naranjo, Calculators → azul (igual que el footer) */
  .hero-cta .btn-primary { background: var(--orange); border-color: var(--orange); }
  .hero-cta .btn-primary:hover { background: #e67200; border-color: #e67200; }
  .hero-cta .btn-hero-orange {
    background: var(--blue) !important;
    border-color: var(--blue) !important;
    color: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
  }
}

/* Interior pages (service / legal / etc.) */
.wrap.narrow { max-width: 920px; }
.svc-hero { background: linear-gradient(115deg, #0a1c30, #0e2a45); color: #fff; padding: 66px 0 58px; }
.svc-hero h1 { color: #fff; font-size: clamp(32px, 5vw, 54px); text-transform: uppercase; letter-spacing: 1px; }
.svc-hero .svc-tag { color: var(--orange); font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin: 14px 0 28px; font-size: clamp(15px, 2vw, 19px); max-width: 760px; }
.svc-hero { position: relative; }
.svc-hero.has-img { overflow: hidden; }
.svc-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.svc-hero.has-img::before { content: ''; position: absolute; inset: 0; background: linear-gradient(115deg, rgba(10, 28, 48, .88), rgba(14, 42, 69, .78)); z-index: 1; }
.svc-hero.has-img .wrap { position: relative; z-index: 2; }
.crumb { color: rgba(255, 255, 255, .65); font-size: 13px; margin-bottom: 16px; }
.crumb a { color: rgba(255, 255, 255, .9); }
.crumb a:hover { color: #fff; }
.svc-content .svc-h2 { color: var(--blue); font-size: clamp(22px, 2.6vw, 30px); margin: 44px 0 14px; }
.svc-content .svc-p { color: var(--ink); font-size: 17px; margin: 14px 0; }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin: 22px 0 12px; }
.feature { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: 0 10px 26px rgba(10, 28, 48, .05); transition: .2s ease; }
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature-thumb { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; object-position: top; display: block; }
.feature-body { padding: 22px 24px; }
.feature h3 { color: var(--navy); font-size: 17px; }
.feature p { color: var(--muted); font-size: 15px; margin-top: 8px; }

/* Service page — grouped cards (matching original) */
.svc-section { padding: 62px 0; }
.svc-section.alt {
  background-color: var(--white);
  background-image: radial-gradient(rgba(0, 182, 219, 0.14) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}
.svc-section.blue { background: linear-gradient(120deg, var(--blue), #0092cc); color: #fff; }
.svc-section .svc-h2 { color: var(--blue); text-align: center; font-size: clamp(24px, 2.8vw, 34px); margin-bottom: 10px; }
.svc-section.blue .svc-h2 { color: #fff; }
.svc-intro { text-align: center; max-width: 780px; margin: 0 auto 6px; color: var(--muted); font-size: 16px; }
.svc-section.blue .svc-intro { color: rgba(255, 255, 255, .92); }
.opt-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: 28px; margin: 42px auto 0; max-width: 1000px; }
.opt-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 38px 34px; box-shadow: 0 18px 44px rgba(10, 28, 48, .08); text-align: center; }
.opt-ico { width: 74px; height: 74px; margin: 0 auto 18px; border-radius: 20px; background: linear-gradient(135deg, var(--blue), var(--cyan)); display: grid; place-items: center; font-size: 34px; box-shadow: 0 10px 26px rgba(0, 121, 186, .32); }
.opt-icon-photo { width: 130px; height: 130px; object-fit: contain; margin: 0 auto 18px; display: block; }
.opt-card h3 { color: var(--blue); font-size: 22px; }
.opt-intro { color: var(--muted); margin: 12px 0 20px; }
.opt-list { list-style: none; text-align: left; }
.opt-list li { display: flex; gap: 12px; align-items: flex-start; padding: 13px 0; border-top: 1px solid var(--line); }
.opt-list li:first-child { border-top: 0; }
.chk { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--cyan)); color: #fff; display: grid; place-items: center; font-size: 12px; font-weight: 900; margin-top: 2px; }
.opt-list strong { color: var(--navy); display: block; font-size: 15px; }
.opt-list span { color: var(--muted); font-size: 14px; display: block; margin-top: 3px; }
.mini-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 26px; margin-top: 42px; }
.mini-card { text-align: center; }
.mini-card .opt-ico { background: rgba(255, 255, 255, .16); }
.mini-card h3 { color: #fff; font-size: 19px; margin-bottom: 8px; }
.mini-card p { color: rgba(255, 255, 255, .9); font-size: 15px; }
.mini-card.light .opt-ico { background: linear-gradient(135deg, var(--blue), var(--cyan)); }
.mini-card.light h3 { color: var(--navy); }
.mini-card.light p { color: var(--muted); }
.check-grid { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 16px; margin-top: 36px; }
.check-grid li { display: flex; gap: 12px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 20px 22px; box-shadow: 0 10px 26px rgba(10, 28, 48, .05); }
.check-grid .chk { width: 30px; height: 30px; font-size: 14px; }
.check-grid strong { color: var(--blue); display: block; }
.check-grid span { color: var(--muted); font-size: 14px; display: block; margin-top: 4px; }
.svc-p { color: var(--ink); font-size: 16px; max-width: 820px; margin: 14px auto; text-align: center; }
.svc-section.blue .svc-p { color: rgba(255, 255, 255, .92); }
.opt-ico svg { width: 38px; height: 38px; color: #fff; }
.chk svg { width: 14px; height: 14px; color: #fff; }
.check-grid .chk svg { width: 16px; height: 16px; }
.svc-sub { text-align: center; color: var(--navy); font-size: clamp(19px, 2.2vw, 24px); margin: 30px 0 6px; }
.svc-section.blue .svc-sub { color: #fff; }
.opt-grid.cols3 { grid-template-columns: repeat(3, 1fr); max-width: 1100px; }
.opt-grid.cols4 { grid-template-columns: repeat(4, 1fr); max-width: 1400px; }
.opt-grid.cols5 { grid-template-columns: repeat(5, 1fr); max-width: 1500px; }
.opt-card.on-blue { background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .2); box-shadow: none; padding: 32px 26px; backdrop-filter: blur(2px); }
.opt-card.on-blue.flat { background: transparent; border: none; box-shadow: none; padding: 0; backdrop-filter: none; }
.opt-icon-photo.icon-sm { width: 90px; height: 90px; }
.opt-card-split { display: flex; flex-direction: column; align-items: center; text-align: center; }
.opt-card-split .opt-icon-photo { margin-bottom: 20px; }
.opt-card-split .opt-card.on-blue { width: 100%; }
.svc-section.blue .opt-ico { background: rgba(255, 255, 255, .18); }
.svc-section.blue .opt-card h3 { color: #fff; }
.svc-section.blue .opt-intro { color: rgba(255, 255, 255, .9); }
@media (max-width: 900px) { .opt-grid, .opt-grid.cols3, .opt-grid.cols4, .opt-grid.cols5, .mini-grid, .check-grid { grid-template-columns: 1fr; } }
@media (min-width: 901px) and (max-width: 1200px) { .opt-grid.cols4 { grid-template-columns: repeat(2, 1fr); } .opt-grid.cols5 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1201px) and (max-width: 1400px) { .opt-grid.cols5 { grid-template-columns: repeat(4, 1fr); } }
.prose h2 { color: var(--blue); font-size: clamp(22px, 2.4vw, 28px); margin: 40px 0 12px; }
.prose h3 { color: var(--navy); font-size: 18px; margin: 24px 0 8px; }
.prose p { color: var(--ink); font-size: 16px; margin: 12px 0; }
.prose ul { margin: 12px 0 12px 22px; color: var(--ink); }
.prose li { margin: 7px 0; }
.prose a { color: var(--blue); text-decoration: underline; }

/* About */
.journey-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.journey .eyebrow { color: var(--cyan); }
.journey h2 { color: var(--navy); font-size: 24px; margin: 6px 0 12px; }
.journey p { color: var(--muted); font-size: 16px; }
.expertise-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 42px; }
.quote-band {
  background-image: linear-gradient(115deg, rgba(0, 121, 186, .88), rgba(0, 182, 219, .85)), url('/assets/img/yasmin-bedoya-about-total-independence.webp');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff; padding: 52px 0; text-align: center;
}
@media (hover: none) {
  .quote-band { background-attachment: scroll; }
}
.quote-band p { font-size: clamp(20px, 2.6vw, 28px); font-weight: 800; max-width: 900px; margin: 0 auto; color: #fff; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-list { list-style: none; margin: 16px 0; }
.contact-list li { margin: 12px 0; font-size: 16px; }
.contact-social { display: flex; gap: 16px; margin: 16px 0 24px; }
.contact-social a { color: var(--blue); font-weight: 700; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form input, .contact-form select, .contact-form textarea { padding: 14px 16px; border: 1px solid var(--line); border-radius: 10px; font-family: var(--font); font-size: 15px; width: 100%; }
.form-note { color: var(--muted); font-size: 13px; }

@media (max-width: 860px) {
  .journey-grid, .contact-grid { grid-template-columns: 1fr; }
  .expertise-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) { .expertise-grid { grid-template-columns: 1fr; } }

/* Blog + article */
.post-kicker { display: inline-block; background: var(--orange); color: #fff; font-weight: 700; font-size: 12px; letter-spacing: 1px; padding: 6px 16px; border-radius: 20px; text-transform: uppercase; margin-bottom: 14px; }
.compare { width: 100%; border-collapse: collapse; margin: 16px 0; }
.compare th, .compare td { border: 1px solid var(--line); padding: 12px 14px; text-align: left; font-size: 15px; }
.compare th { background: var(--bg-soft); color: var(--navy); }
.compare tr:nth-child(even) td { background: #fafcfe; }
.article hr { border: 0; border-top: 1px solid var(--line); margin: 28px 0; }
.post-cta { background: var(--bg-soft); border-radius: 16px; padding: 30px; margin-top: 38px; text-align: center; }
.post-cta p { margin-bottom: 16px; color: var(--ink); }
.post-cta .btn { color: var(--orange); text-decoration: none; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card { display: block; background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: .2s; }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post-thumb { aspect-ratio: 16 / 9; background: linear-gradient(140deg, var(--blue), var(--cyan)); display: grid; place-items: center; color: #fff; font-weight: 800; overflow: hidden; }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-body { padding: 20px 22px 24px; }
.post-body h2 { font-size: 19px; color: var(--navy); margin: 6px 0 8px; }
.post-body p { color: var(--muted); font-size: 14px; }
.post-body .more { color: var(--orange); font-weight: 800; font-size: 14px; }
@media (max-width: 860px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }

/* Real images */
.hero-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; border-radius: 20px; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.contact-hero .upk-salf-slider-wrapper { height: 70vh; min-height: 580px; }
.contact-hero .upk-salf-title-sol { font-size: clamp(30px, 3.6vw, 58px); }
.contact-hero .upk-salf-desc { font-size: clamp(12px, 1.1vw, 14px); }
@media (min-width: 1440px) {
  .contact-hero .upk-salf-slider-wrapper { height: 64vh; min-height: 620px; }
}

/* ==========================================
   Swiper Parallax Timeline Slider Hero (Fidelity Match)
   ========================================== */
.bdt-timeline-container {
  display: flow-root;
  box-sizing: content-box;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

/* ── Hero: CPC-Travel style — full image + gradient overlay ── */
.upk-salf-slider-wrapper {
  position: relative;
  width: 100%;
  height: 88vh;
  min-height: 560px;
  overflow: hidden;
  background: #0a1c30;
}

.mySwiper2 {
  width: 100%;
  height: 100%;
}

.upk-salf-item {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block !important;
}

/* Image: fills full hero */
.upk-salf-item .upk-salf-image-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Soft gradient overlay — just enough for text contrast, photo stays clear */
.upk-salf-item .upk-salf-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 28, 48, 0.32) 0%,
    rgba(10, 28, 48, 0.14) 40%,
    rgba(10, 28, 48, 0) 100%
  );
  z-index: 1;
}

.upk-salf-item .upk-xanc-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.contact-hero .upk-xanc-img { object-position: center 75%; }

/* About Me hero — sharp cutout of Yasmin over the background photo */
.about-hero-cutout {
  position: absolute;
  right: 4%;
  bottom: 0;
  z-index: 2;
  height: 100%;
  width: auto;
  max-width: 46%;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, .45));
}

/* Text content: no card, positioned left-center on the image */
.upk-salf-item .upk-salf-content-wrap {
  position: absolute;
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  max-width: 620px;
  width: 48%;
  background: transparent;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
  overflow: visible;
}

/* Individual Slide Border Colors */
.upk-salf-content-wrap.border-blue {
  border-color: var(--blue) !important;
}
.upk-salf-content-wrap.border-cyan {
  border-color: var(--cyan) !important;
}
.upk-salf-content-wrap.border-orange {
  border-color: var(--orange) !important;
}

.upk-salf-item .upk-salf-title {
  font-size: 23px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--muted);
  text-transform: capitalize;
  margin-bottom: 20px;
  opacity: 0;
  font-family: var(--font);
}
.upk-salf-title .accent-orange {
  color: var(--orange);
}

/* Breadcrumb on dark background */
.hero-solution .crumb,
.hero-solution .crumb a {
  color: rgba(255, 255, 255, 0.60) !important;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .7);
}

/* Main title — big, white, uppercase */
.upk-salf-title-sol {
  font-size: clamp(40px, 5.5vw, 88px);
  font-weight: 800;
  line-height: 1.05;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-family: var(--font);
  text-shadow: 0 2px 10px rgba(0, 0, 0, .75), 0 6px 28px rgba(0, 0, 0, .55);
}
.upk-salf-title-sol .accent-orange {
  color: var(--orange);
}

/* Description on dark bg */
.upk-salf-item .upk-salf-desc {
  color: rgba(255, 255, 255, 0.82);
  opacity: 1;
  font-size: clamp(13px, 1.3vw, 16px);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.6;
  text-transform: uppercase;
  margin-bottom: 32px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .7);
}

/* CTA button — always visible */
.upk-salf-item .upk-salf-button {
  opacity: 1;
}

/* CTA link — white on dark bg */
.upk-salf-item .upk-salf-button .link {
  color: #ffffff;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.06em;
  transition: all .3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.upk-salf-item .upk-salf-button .link:hover {
  color: var(--orange);
}

.upk-salf-item .upk-salf-button .link--arrowed {
  display: inline-flex;
  align-items: center;
  background: var(--blue);
  padding: 15px 30px;
  border-radius: 40px;
  transition: background .22s ease, transform .22s ease;
}

.upk-salf-item .upk-salf-button .link--arrowed:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

.upk-salf-item .upk-salf-button .link--arrowed .arrow-icon {
  position: relative;
  top: 0;
  transition: transform 0.3s ease;
  vertical-align: middle;
}

.upk-salf-item .upk-salf-button .link--arrowed .arrow-icon--circle {
  transition: stroke-dashoffset .3s ease;
  stroke-dasharray: 95;
  stroke-dashoffset: 95;
}

.upk-salf-item .upk-salf-button .link--arrowed g {
  stroke: currentColor;
  color: var(--orange);
}

.upk-salf-item .upk-salf-button .link--arrowed:hover .arrow-icon {
  transform: translate3d(5px, 0, 0);
}

.upk-salf-item .upk-salf-button .link--arrowed:hover .arrow-icon--circle {
  stroke-dashoffset: 0;
}

/* scroll css start */
.upk-page-scroll {
  position: absolute;
  bottom: 8%;
  right: 5%;
  transform: rotate(90deg);
  z-index: 1;
  display: none;
}

.upk-page-scroll .arrow-up {
  height: 70px;
  width: 70px;
  display: block;
  background: rgba(255, 255, 255, 0.79);
  backdrop-filter: blur(18px);
  position: relative;
  cursor: pointer;
  transition: all .5s cubic-bezier(0.25, 1.7, 0.35, 1.5);
  transform: rotate(-90deg);
  overflow: hidden;
}

.upk-page-scroll .arrow-slide {
  left: 0;
  top: -100%;
  width: 100%;
  height: 100%;
  background: var(--orange);
  position: absolute;
  display: block;
  z-index: 0;
}

.upk-page-scroll .long-arrow-left {
  display: block;
  margin: 30px auto;
  width: 16px;
  height: 16px;
  border-top: 2px solid #2b2d42;
  border-left: 2px solid #2b2d42;
  transform: rotate(-135deg);
}

.upk-page-scroll .long-arrow-left::after {
  content: "";
  display: block;
  width: 2px;
  height: 25px;
  background-color: #2b2d42;
  transform: rotate(-45deg) translate(8px, 3px);
  left: 0;
  top: 0;
}

.upk-page-scroll .arrow-up:hover .arrow-slide {
  transition: all .5s ease-in-out;
  transform: translateY(200%);
}

.upk-salf-nav-pag-wrap {
  display: none !important;
}

.upk-salf-navigation {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  margin-bottom: 24px;
}

.upk-salf-navigation .arrow-icon {
  width: 28px;
  height: 28px;
  color: #2b2d42;
  transition: transform 0.3s ease;
}

.upk-salf-navigation g {
  stroke: currentColor;
  color: #2b2d42;
}

.upk-salf-navigation .upk-button-next {
  transform: rotate(90deg);
}

.upk-salf-navigation .upk-button-prev {
  transform: rotate(-90deg);
}

.upk-salf-navigation .upk-n-p a:hover g {
  color: var(--orange);
}

.upk-salf-pagi-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

/* Swiper Pagination */
.swiper-pagination {
  position: static !important;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.swiper-pagination-bullet {
  background-color: transparent !important;
  opacity: 0.8;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
}

.swiper-pagination-bullet--svg-animation {
  width: 20px;
  height: 20px;
  display: inline-block;
  cursor: pointer;
}

.swiper-pagination-bullet--svg-animation svg {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.swiper-pagination-bullet--svg-animation .svg__circle-inner {
  stroke: #2b2d42;
  fill: transparent;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet--svg-animation .svg__circle {
  stroke: rgba(43, 45, 66, 0.2);
  fill: transparent;
}

@keyframes progress {
  0% {
    stroke-dashoffset: 75;
    opacity: 1;
  }
  95% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}

.swiper-pagination-bullet-active .svg__circle {
  stroke: var(--orange);
  stroke-dasharray: 75;
  stroke-dashoffset: 0;
  animation: progress 4s linear 1 forwards;
}

.swiper-pagination-bullet-active .svg__circle-inner {
  fill: #2b2d42;
  stroke: var(--orange);
}

@media (min-width: 768px) {
  .upk-salf-slider-wrapper {
    height: 580px;
    padding: 0;
  }
  .upk-salf-slider-wrapper .upk-page-scroll {
    bottom: 4%;
    display: inherit;
  }
  .upk-salf-slider-wrapper .upk-salf-item .upk-salf-title {
    font-size: 40px;
  }
  .upk-salf-slider-wrapper .upk-salf-item .upk-salf-image-wrap {
    width: 100% !important;
    margin-left: 0 !important;
  }
}


/* ── Hero responsive ── */
@media (min-width: 768px) {
  .upk-salf-slider-wrapper {
    height: 90vh;
    min-height: 580px;
  }
}

@media (min-width: 1440px) {
  .upk-salf-slider-wrapper {
    height: 88vh;
    min-height: 680px;
  }
  .upk-salf-title-sol {
    font-size: clamp(60px, 5.8vw, 100px);
  }
}

@media (max-width: 767px) {
  .upk-salf-slider-wrapper {
    height: 70vh;
    min-height: 420px;
  }
  .upk-salf-item .upk-salf-content-wrap {
    left: 5%;
    width: 88%;
    max-width: none;
  }
  .upk-salf-title-sol {
    font-size: clamp(32px, 10vw, 56px);
  }
  /* About Me hero — stacked on mobile: photo on top, text + button below */
  .about-hero .upk-salf-slider-wrapper {
    height: auto;
    min-height: 0;
  }
  .about-hero .upk-salf-item {
    position: static !important;
    display: flex !important;
    flex-direction: column;
  }
  .about-hero .upk-salf-image-wrap {
    position: relative;
    inset: auto;
    width: 100%;
    height: 60vh;
    min-height: 360px;
  }
  /* Fade the bottom of the photo zone into the navy text block below */
  .about-hero .upk-salf-image-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(10, 28, 48, 0) 72%, var(--navy) 100%);
  }
  .about-hero-cutout {
    right: auto;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    max-width: 90%;
    height: 100%;
  }
  .about-hero .upk-salf-content-wrap {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: none;
    background: var(--navy);
    padding: 32px 24px 40px;
  }
}

/* FAQ Section */
.faq-section {
  padding: 84px 0;
  background: var(--bg-soft);
}
.faq-header {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 24px;
}
.faq-header h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  color: var(--navy);
  text-transform: uppercase;
  font-weight: 800;
}
.faq-header h2 span {
  color: var(--blue);
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 24px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.faq-item:hover {
  box-shadow: 0 8px 30px rgba(10, 28, 48, 0.06);
  border-color: rgba(0, 121, 186, 0.2);
}
.faq-item summary {
  padding: 22px 28px;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: background-color 0.2s;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 500;
  color: var(--orange);
  transition: transform 0.25s ease;
  line-height: 1;
}
.faq-item[open] summary::after {
  content: '−';
  transform: rotate(180deg);
  color: var(--blue);
}
.faq-item[open] summary {
  border-bottom: 1px solid var(--line);
  background: rgba(244, 248, 252, 0.5);
}
.faq-content {
  padding: 22px 28px 26px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}
.faq-content p {
  margin: 0;
}
.faq-content strong, .faq-content b {
  color: var(--navy);
  font-weight: 700;
}

/* Combined FAQ & Calendly Section */
.faq-calendly-section {
  padding: 84px 0;
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.faq-calendly-section::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(0, 182, 219, 0.15) 0%, rgba(0, 182, 219, 0) 70%);
  z-index: -1;
  pointer-events: none;
}
.faq-calendly-section::after {
  content: "";
  position: absolute;
  bottom: -20%;
  right: -5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 127, 2, 0.12) 0%, rgba(255, 127, 2, 0) 70%);
  z-index: -1;
  pointer-events: none;
}
.faq-calendly-layout {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 0 24px;
}
.faq-calendly-layout .faq-column {
  width: 100%;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.faq-calendly-layout .faq-column .faq-header {
  text-align: center;
  padding: 0;
  margin-bottom: 32px;
}
.faq-calendly-layout .faq-column .faq-header h2 {
  font-size: clamp(26px, 3vw, 36px);
  color: var(--navy);
  text-transform: uppercase;
  font-weight: 800;
  line-height: 1.2;
}
.faq-calendly-layout .faq-column .faq-header h2 span {
  color: var(--blue);
  display: block;
}
.faq-calendly-layout .faq-column .faq-container {
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}
.faq-calendly-layout .calendly-column {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.faq-calendly-layout .calendly-column .cta-header {
  text-align: center;
  margin-bottom: 24px;
  max-width: 100%;
}
.faq-calendly-layout .calendly-column .cta-header h2 {
  font-size: clamp(24px, 2.8vw, 32px);
  color: var(--blue);
  margin-bottom: 12px;
  line-height: 1.3;
}
.faq-calendly-layout .calendly-column .cta-header h2 .calendly-accent {
  color: var(--orange);
}
.faq-calendly-layout .calendly-column .cta-header p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
.faq-calendly-layout .calendly-column .calendly-sim-container {
  margin: 0 auto;
}

/* Parallax CTA Banner */
.cta-parallax-section {
  padding: 100px 0;
  position: relative;
  background-image: linear-gradient(rgba(244, 248, 252, 0.90), rgba(244, 248, 252, 0.90)), url('/assets/img/family-compass.png');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  z-index: 1;
}

/* Fallback for devices that don't support parallax background-attachment: fixed */
@media (hover: none) {
  .cta-parallax-section {
    background-attachment: scroll;
  }
}

.cta-parallax-section .cta-parallax-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.cta-parallax-section h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  color: var(--blue);
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
}

.cta-parallax-section p {
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--navy);
  line-height: 1.65;
  margin: 0;
  font-weight: 500;
  opacity: 0.95;
}

.cta-parallax-section .btn-parallax-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 121, 186, 0.2);
  transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.cta-parallax-section .btn-parallax-cta:hover {
  background-color: #006094;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 121, 186, 0.3);
}

.cta-parallax-section .btn-parallax-cta svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* FAQ Card Container & Equal Height Layout */
.faq-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

/* FAQ Accordion Items inside Card */
.faq-card .faq-item {
  background: transparent;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid var(--line);
  box-shadow: none;
  transition: background-color 0.2s;
}

.faq-card .faq-item:last-child {
  border-bottom: none;
}

.faq-card .faq-item:hover {
  box-shadow: none;
  border-color: var(--line);
}

.faq-card .faq-item summary {
  padding: 20px 8px;
}

.faq-card .faq-item[open] summary {
  border-bottom: none;
  background: transparent;
}

.faq-card .faq-item .faq-content {
  padding: 0 8px 20px;
}

