:root {
  --navy: #102033;
  --navy-deep: #0C2445;
  --navy-darker: #071A31;
  --blue: #173B6C;
  --teal: #15B77F;
  --teal-light: #2ED3C6;
  --bg-tint: #E9FBF9;
  --bg-soft: #F6F9FC;
  --white: #FFFFFF;
  --border: #E3E9F0;
  --font: "Inter", "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --radius: 16px;
  --radius-pill: 999px;
  --shadow: 0 20px 45px -20px rgba(12, 36, 69, 0.25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--navy);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { font-weight: 700; margin: 0 0 1rem; line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
p { margin: 0 0 1rem; }
a { color: inherit; text-decoration: none; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 0.9rem;
}
.eyebrow.light { color: var(--teal-light); }

.center { text-align: center; }
.light { color: var(--white); }

.section-lead {
  color: #4A5C72;
  font-size: 1.05rem;
  max-width: 680px;
}
.section-lead.center { margin-left: auto; margin-right: auto; }
.section-lead.light { color: rgba(255,255,255,0.78); }

.section { padding: 5.5rem 0; scroll-margin-top: 20px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.98rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { box-shadow: 0 12px 24px -10px rgba(23,59,108,0.5); }
.btn-accent { background: var(--teal); color: var(--white); }
.btn-accent:hover { box-shadow: 0 12px 24px -10px rgba(21,183,127,0.5); }
.btn-ghost { background: transparent; color: var(--navy); border: 1.5px solid var(--border); }
.btn-secondary { background: var(--bg-tint); color: var(--blue); }
.btn-sm { padding: 9px 18px; font-size: 0.88rem; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; padding-bottom: 16px; gap: 24px;
}
.logo { font-weight: 800; font-size: 1.25rem; color: var(--navy); }
.logo span { color: var(--teal); }
.main-nav { display: flex; gap: 28px; flex: 1; justify-content: center; }
.main-nav a { font-weight: 600; font-size: 0.92rem; color: var(--navy); opacity: 0.75; }
.main-nav a:hover { opacity: 1; }
.main-nav__cta { display: none; }
.nav-toggle { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--navy); }

/* Hero */
.hero { padding: 4.5rem 0 5rem; background: linear-gradient(180deg, var(--bg-soft), var(--white)); }
.hero-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 2rem; align-items: center; }
.hero-copy .lead { font-size: 1.1rem; color: #37485D; max-width: 560px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-tint); color: var(--navy); border: 1px solid rgba(21,183,127,0.3);
  font-weight: 700; font-size: 0.85rem; padding: 8px 16px 8px 12px;
  border-radius: var(--radius-pill); margin-bottom: 1.25rem;
}
.hero-badge__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 1.25rem; }
.hero-form { max-width: 480px; margin-bottom: 1.25rem; }
.hero-form__row { display: flex; gap: 10px; margin-bottom: 10px; }
.hero-form__field {
  flex: 1; display: flex; align-items: center; gap: 10px; min-width: 0;
  background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 12px 14px;
  box-shadow: 0 1px 2px rgba(16,32,51,0.04);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.hero-form__field:focus-within { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(21,183,127,0.14); }
.hero-form__icon { display: flex; flex-shrink: 0; color: var(--teal); }
.hero-form__icon svg { width: 18px; height: 18px; }
.hero-form__field input {
  border: none; outline: none; background: none; font-family: var(--font);
  font-size: 16px; color: var(--navy); width: 100%; min-width: 0;
}
.hero-form__field input::placeholder { color: #94A3B8; }
.hero-form__btn { width: 100%; padding: 14px 26px; }
.hero-form__status { font-size: 0.85rem; font-weight: 600; margin: 0.75rem 0 0; color: var(--teal); }
.microtrust { font-size: 0.85rem; color: #6B7C90; }
.hero-photo { display: flex; align-items: center; justify-content: center; }
.hero-photo__img {
  width: 100%; max-width: 360px; height: auto; aspect-ratio: 900 / 1125; object-fit: cover;
  border-radius: 24px; box-shadow: 0 30px 60px -24px rgba(12,36,69,0.35);
}

/* Frontline (Tú al frente, yo al teléfono) */
.frontline { background: linear-gradient(135deg, var(--blue), var(--navy-darker)); }
.frontline-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 2.75rem; text-align: left; }
.frontline-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: 16px;
  padding: 1.5rem; transition: transform 0.15s ease, background 0.15s ease;
}
.frontline-card:hover { transform: translateY(-3px); background: rgba(255,255,255,0.1); }
.frontline-card__icon {
  display: inline-flex; width: 52px; height: 52px; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.95); border-radius: 12px; font-size: 1.65rem; margin-bottom: 1rem;
  box-shadow: 0 8px 20px -8px rgba(0,0,0,0.4);
}
.frontline-card p { color: rgba(255,255,255,0.8); font-size: 0.88rem; margin: 0; }

/* Problem */
.problem { background: var(--white); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.problem-card { background: var(--bg-soft); border-radius: var(--radius); padding: 1.75rem; text-align: left; }
.problem-icon { font-size: 1.8rem; display: block; margin-bottom: 0.75rem; }
.problem-card p { color: #4A5C72; font-size: 0.92rem; margin: 0; }

/* Cost calculator */
.cost-calc { background: var(--bg-soft); }
.cost-calc-box { background: var(--white); border: 1px solid var(--border); border-radius: 24px; padding: 2.5rem; margin-top: 2.5rem; }
.cc-step { display: flex; align-items: center; gap: 10px; margin-bottom: 1.5rem; }
.cc-step-badge { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--navy-deep); color: var(--white); font-size: 0.8rem; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.cc-step-label { text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.78rem; font-weight: 700; color: var(--navy); }
.cost-calc-inputs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 1.5rem; }
.cc-field label { font-size: 0.88rem; font-weight: 700; color: var(--navy); display: block; margin-bottom: 10px; }
.cc-field__hint { font-size: 0.78rem; color: #6B7C90; margin: 8px 0 0; }
.cc-stepper { display: flex; align-items: center; gap: 12px; background: var(--bg-tint); border-radius: 14px; padding: 10px; }
.cc-stepper__btn {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 10px; border: none; cursor: pointer;
  background: var(--white); color: var(--blue); font-size: 1.2rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 6px rgba(12,36,69,0.1);
  transition: transform 0.1s ease;
}
.cc-stepper__btn:hover { transform: translateY(-1px); }
.cc-stepper__value { flex: 1; text-align: center; font-size: 1.4rem; font-weight: 800; color: var(--navy); }
.cost-calc-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.5rem; }
.cost-calc-stat {
  text-align: center; background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 16px; padding: 1.75rem 1rem;
}
.cost-calc-stat__value { display: block; font-size: 2.4rem; font-weight: 800; color: #C0392B; line-height: 1.1; }
.cost-calc-stat__label { display: block; margin-top: 0.6rem; font-size: 0.92rem; font-weight: 600; color: #4A5C72; }
.cost-calc-breakeven { text-align: center; font-size: 1.2rem; font-weight: 600; color: var(--navy); margin: 0; }
.cc-gain { color: var(--teal); font-weight: 800; font-size: 1.05em; }

.cc-unlock { text-align: center; background: var(--bg-tint); border-radius: 12px; padding: 1.75rem 1.5rem; margin: 0; }
.cc-unlock__eyebrow { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; font-weight: 800; color: var(--navy); font-size: 1.35rem; margin: 0 0 0.6rem; }
.cc-unlock__icon {
  display: inline-flex; width: 52px; height: 52px; align-items: center; justify-content: center;
  background: var(--white); border-radius: 50%; font-size: 1.65rem;
  box-shadow: 0 8px 20px -8px rgba(12,36,69,0.4);
}
.cc-unlock__text { color: #37485D; font-size: 1.05rem; margin: 0 auto 1.5rem; max-width: 460px; }
.cc-unlock__form { display: flex; gap: 10px; max-width: 420px; margin: 0 auto; }
.cc-unlock__form input {
  flex: 1; min-width: 0; padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius-pill);
  font-size: 16px; font-family: inherit; background: var(--white);
}
.cc-unlock__form input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(21,183,127,0.14); }
.cc-unlock__form .btn { white-space: nowrap; }
.cc-unlock__hint { font-size: 0.82rem; font-weight: 600; color: #6B7C90; margin: 0.85rem 0 0; }
.cc-unlock__status { margin-top: 0.75rem; }

.cost-calc-answer { margin-top: 3.5rem; }
.escape-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 780px; margin: 2rem auto; }
.escape-grid span { display: block; background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 12px 16px; font-size: 0.88rem; font-weight: 600; color: #37485D; text-align: center; }
.cost-calc-closing { font-weight: 700; color: var(--navy); max-width: 620px; margin: 0 auto; }

/* Sectors */
.sectors { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.sector-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.7rem 1.5rem; max-width: 640px; margin: 2rem auto 0; }
.sector-row {
  display: flex; align-items: center; gap: 12px; padding: 0.65rem 0.9rem;
  background: var(--white); border: 1px solid var(--border); border-radius: 12px;
}
.sector-row__icon {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.sector-row__name { font-size: 0.92rem; font-weight: 700; color: var(--navy); }
.sector-row--psicologia .sector-row__icon { background: #EFDFC4; }
.sector-row--mediacion .sector-row__icon { background: #DCD3EC; }
.sector-row--fisio .sector-row__icon { background: #ECE2CB; }
.sector-row--logopedia .sector-row__icon { background: #E9D2A5; }
.sector-row--nutricion .sector-row__icon { background: #CDE2C3; }
.sector-row--podologia .sector-row__icon { background: #D2DDE3; }
.sector-row--dental .sector-row__icon { background: #C2E1DC; }
.sector-row--estetica .sector-row__icon { background: #F3D9E3; }
.sector-row--osteopatia .sector-row__icon { background: #D7E3F4; }
.sector-row--otras .sector-row__icon { background: #D6DECF; }
.sectors-subtitle { color: var(--teal); font-weight: 700; font-size: 1.02rem; margin: 0 0 0.75rem; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; margin-top: 3rem; }

/* How it works */
.how { background: linear-gradient(135deg, var(--blue), var(--navy-darker)); }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; text-align: center; }
.how-step__icon {
  position: relative; width: 84px; height: 84px; margin: 0 auto 1.5rem;
  border-radius: 50%; background: linear-gradient(135deg, var(--teal), var(--blue));
  display: flex; align-items: center; justify-content: center; font-size: 2rem; color: var(--white);
  box-shadow: 0 16px 30px -12px rgba(0,0,0,0.55);
}
.how-step__num {
  position: absolute; top: -2px; right: -2px; width: 26px; height: 26px; border-radius: 50%;
  background: var(--white); color: var(--navy-deep); font-size: 0.78rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.how-step h3 { margin-bottom: 0.6rem; }
.how-step p { color: rgba(255,255,255,0.75); font-size: 0.92rem; margin: 0; }

/* Pricing */
.pricing { position: relative; background: linear-gradient(135deg, var(--blue), var(--navy-darker)); }
.pricing-card {
  position: relative; overflow: hidden;
  max-width: 640px; margin: 2.5rem auto 0; background: var(--white); border: 1px solid var(--border);
  border-radius: 28px; padding: 3rem; text-align: center; box-shadow: var(--shadow);
}
.pricing-card::before {
  content: ""; position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 420px; height: 240px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(46,211,198,0.16), rgba(46,211,198,0));
  pointer-events: none;
}
.pricing-card__badge {
  position: relative; display: inline-block; background: var(--navy-deep); color: var(--teal-light);
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 16px; border-radius: var(--radius-pill); margin-bottom: 1.5rem;
}
.pricing-card__price { position: relative; display: flex; align-items: baseline; justify-content: center; gap: 8px; }
.pricing-card__price strong {
  font-size: 3.6rem; font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, var(--blue), var(--teal)); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.pricing-card__price span { font-size: 1.15rem; color: #6B7C90; font-weight: 700; }
.pricing-card__vat { font-size: 0.8rem; color: #6B7C90; margin: 6px 0 0; }
.pricing-card__no-permanencia { color: var(--teal); font-weight: 800; }
.pricing-card__setup {
  display: block; color: var(--navy); background: linear-gradient(135deg, rgba(46,211,198,0.14), rgba(21,183,127,0.14));
  border: 1px solid rgba(21,183,127,0.35); font-weight: 700; font-size: 0.88rem;
  padding: 10px 18px; border-radius: 12px; margin: 1.5rem 0 2rem;
}
.pricing-card__list {
  list-style: none; padding: 0; margin: 0 0 2.25rem; text-align: left;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem 1.5rem;
}
.pricing-card__list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: #37485D; }
.pricing-check {
  flex-shrink: 0; width: 20px; height: 20px; margin-top: 1px; border-radius: 50%;
  background: var(--teal); color: var(--white); font-size: 0.7rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.pricing-card__cta { width: 100%; padding: 15px 26px; font-size: 1.02rem; }
.pricing-nudge {
  max-width: 460px; margin: 3rem auto 0; text-align: center;
  background: linear-gradient(160deg, var(--bg-tint), #DDF6F1);
  border: 1px solid rgba(21,183,127,0.25); border-radius: 20px; padding: 2rem 1.75rem;
  box-shadow: 0 20px 40px -24px rgba(21,183,127,0.45);
}
.pricing-nudge__icon {
  display: inline-flex; width: 52px; height: 52px; align-items: center; justify-content: center;
  background: var(--white); border-radius: 50%; font-size: 1.65rem; margin-bottom: 0.85rem;
  box-shadow: 0 8px 20px -8px rgba(12,36,69,0.4);
}
.pricing-nudge__title { font-weight: 800; color: var(--navy); font-size: 1.35rem; margin: 0 0 0.6rem; }
.pricing-nudge__text { color: #37485D; font-size: 1.05rem; margin: 0 0 1.5rem; }
.pricing-nudge__btn { padding: 13px 26px; font-size: 0.95rem; box-shadow: 0 10px 20px -8px rgba(12,36,69,0.4); }
.cta-microtrust { font-size: 0.82rem; font-weight: 600; color: #6B7C90; margin: 0.75rem 0 0; text-align: center; }
.final-cta .cta-microtrust { color: rgba(255,255,255,0.75); }

/* FAQ */
.accordion { max-width: 760px; margin: 3rem auto 0; display: flex; flex-direction: column; gap: 12px; }
.accordion-item { border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.faq-toggle { align-self: center; margin: 8px 0 4px; padding: 12px 26px; display: flex; align-items: center; gap: 8px; }
.faq-toggle span { font-size: 1.3rem; color: var(--teal); }
.accordion-trigger {
  width: 100%; text-align: left; background: var(--white); border: none; cursor: pointer;
  padding: 1.1rem 1.4rem; font-family: var(--font); font-weight: 700; font-size: 0.98rem; color: var(--navy);
  display: flex; justify-content: space-between; align-items: center;
}
.accordion-trigger span { font-size: 1.3rem; color: var(--teal); transition: transform 0.2s ease; }
.accordion-item.is-open .accordion-trigger span { transform: rotate(45deg); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; background: var(--bg-soft); }
.accordion-panel p { padding: 0 1.4rem 1.1rem; margin: 0; color: #4A5C72; font-size: 0.92rem; }
.accordion-item.is-open .accordion-panel { max-height: 220px; }

/* Contact */
.contact { background: var(--bg-soft); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-details { margin-top: 1.5rem; }
.contact-details div { display: flex; flex-direction: column; gap: 2px; }
.contact-details span { font-size: 0.8rem; color: #6B7C90; }
.contact-details a { font-weight: 700; color: var(--blue); }
.contact-whatsapp {
  margin-top: 1.75rem; padding-top: 1.75rem; border-top: 1px solid var(--border);
}
.contact-whatsapp p { color: #37485D; font-size: 0.92rem; margin-bottom: 1rem; }
.contact-whatsapp__btn { gap: 10px; background: #25D366; box-shadow: 0 10px 22px -10px rgba(37,211,102,0.6); }
.contact-whatsapp__btn:hover { box-shadow: 0 14px 28px -10px rgba(37,211,102,0.7); }
.contact-whatsapp__btn svg { width: 28px; height: 28px; }
.contact-form { background: var(--white); border-radius: var(--radius); padding: 2rem; display: flex; flex-direction: column; gap: 1rem; border: 1px solid var(--border); }
.contact-form label { display: flex; flex-direction: column; gap: 6px; font-size: 0.88rem; font-weight: 700; color: var(--navy); }
.contact-form input, .contact-form textarea {
  font-family: var(--font); font-size: 16px; padding: 12px 14px; border-radius: 10px; border: 1.5px solid var(--border); resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--teal); }
.form-status { font-size: 0.88rem; font-weight: 600; }
.form-status.success { color: var(--teal); }
.form-status.error { color: #C0392B; }

/* Final CTA */
.final-cta { background: linear-gradient(135deg, var(--blue), var(--navy-darker)); }
.final-cta h2 { max-width: 600px; margin-left: auto; margin-right: auto; }

/* Footer */
.site-footer { background: var(--navy-darker); padding: 2.5rem 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.footer-inner .logo { color: var(--white); }
.footer-nav { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-nav a { color: rgba(255,255,255,0.65); font-size: 0.88rem; }
.footer-nav a:hover { color: var(--white); }
.footer-contact {
  width: 100%; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 2.5rem;
  padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-contact div { display: flex; flex-direction: column; gap: 2px; text-align: center; }
.footer-contact span { font-size: 0.75rem; font-weight: 700; color: var(--teal-light); text-transform: uppercase; letter-spacing: 0.04em; }
.footer-contact small { font-size: 0.85rem; color: rgba(255,255,255,0.75); }
.footer-contact a { color: rgba(255,255,255,0.75); font-weight: 600; }
.footer-contact a:hover { color: var(--white); }
.footer-copy { color: rgba(255,255,255,0.45); font-size: 0.82rem; width: 100%; text-align: center; }
.footer-copy a { color: rgba(255,255,255,0.7); text-decoration: underline; }
.footer-copy a:hover { color: var(--white); }

/* Responsive */
@media (max-width: 960px) {
  .hero-grid, .contact-grid { grid-template-columns: 1fr; }
  .grid-4, .grid-3, .how-steps, .frontline-grid { grid-template-columns: repeat(2, 1fr); }
  .escape-grid { grid-template-columns: repeat(2, 1fr); }
  .cost-calc-inputs { grid-template-columns: 1fr; }
  .main-nav {
    position: fixed; top: 65px; left: 0; right: 0;
    background: var(--white); flex-direction: column; align-items: center;
    gap: 0; padding: 8px 0; border-bottom: 1px solid var(--border);
    transform: translateY(-120%); opacity: 0; pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .main-nav a { padding: 14px 0; width: 100%; text-align: center; }
  .main-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
}
@media (max-width: 640px) {
  .grid-4, .grid-3, .how-steps, .frontline-grid { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
  .hero { padding-top: 1.75rem; }
  .nav-toggle { display: flex; }
  .header-inner > .btn-sm { display: none; }
  .main-nav a.main-nav__cta {
    display: inline-flex; opacity: 1; margin: 12px auto 4px; width: auto;
    padding: 12px 28px; color: var(--white);
  }
  .sector-list { grid-template-columns: 1fr; }
  .escape-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 2rem 1.5rem; }
  .pricing-card__list { grid-template-columns: 1fr; }
  .hero-form__row { flex-direction: column; }
  .cc-unlock__form { flex-direction: column; }
  .cost-calc-stats { gap: 0.75rem; }
  .cost-calc-stat { padding: 1.5rem 0.6rem; }
  .cost-calc-stat__value { font-size: 1.55rem; }
}

/* La web mantiene siempre su propia paleta clara/oscura por sección,
   independientemente del modo claro/oscuro del dispositivo del visitante. */

/* WhatsApp flotante */
.whatsapp-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px -8px rgba(0,0,0,0.4);
  transition: transform 0.15s ease;
  animation: wa-pulse 4s ease-in-out infinite;
}
.whatsapp-float:hover { animation-play-state: paused; transform: scale(1.08); }
.whatsapp-float svg { width: 38px; height: 38px; }

@keyframes wa-pulse {
  0%, 75% { transform: scale(1); }
  82% { transform: scale(1.12); }
  89% { transform: scale(0.97); }
  96% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-float { animation: none; }
}

/* Página legal */
.legal-content { margin-top: 2.5rem; }
.legal-content h3 { font-size: 1.1rem; margin: 2rem 0 0.5rem; }
.legal-content h3:first-child { margin-top: 0; }
.legal-content p { color: #37485D; line-height: 1.6; }
.legal-content a { color: var(--teal); font-weight: 600; }


