:root {
  --navy: #0b1e31;
  --steel: #2f4b67;
  --red: #e4282f;
  --red-deep: #c01f26;
  --fog: #f2f2f2;
  --white: #ffffff;
  --ink: #0b1e31;
  --muted: #5a6f86;
  --line: rgba(47, 75, 103, 0.18);
  --shadow: 0 24px 60px rgba(11, 30, 49, 0.28);
  --radius: 14px;
  --font-display: "Outfit", sans-serif;
  --font-body: "Source Sans 3", sans-serif;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--fog);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

body.has-custom-cursor,
body.has-custom-cursor a,
body.has-custom-cursor button,
body.has-custom-cursor input,
body.has-custom-cursor select,
body.has-custom-cursor label {
  cursor: none;
}

.cursor-dot,
.cursor-ring {
  display: none;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: transform, width, height, background, border-color;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  mix-blend-mode: normal;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(228, 40, 47, 0.9);
  background: rgba(228, 40, 47, 0.12);
  transition: width 0.2s var(--ease), height 0.2s var(--ease), background 0.2s ease, border-color 0.2s ease;
}

body.has-custom-cursor .cursor-dot,
body.has-custom-cursor .cursor-ring {
  display: block;
}

body.cursor-hover .cursor-ring {
  width: 56px;
  height: 56px;
  background: rgba(228, 40, 47, 0.18);
  border-color: var(--red);
}

body.cursor-hover .cursor-dot {
  background: var(--red-deep);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-h);
  background: var(--white);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(11, 30, 49, 0.06);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav a {
  color: var(--steel);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--navy);
}

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--red-deep);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.nav-toggle span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: top 0.25s var(--ease), transform 0.25s var(--ease), opacity 0.2s ease;
}

.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 28px; }

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.5rem 1.25rem 1.25rem;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  max-height: calc(100dvh - var(--header-h));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav a {
  color: var(--navy);
  padding: 0.85rem 0.25rem;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
  font-size: 1rem;
}

.mobile-nav a:last-child {
  margin-top: 0.5rem;
  border: 0;
  background: var(--red);
  color: var(--white);
  text-align: center;
  border-radius: 999px;
  padding: 0.85rem 1rem;
  font-weight: 700;
}

.mobile-nav:not([hidden]) {
  display: flex;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  height: auto;
  display: flex;
  align-items: flex-end;
  padding: 2.5rem 0 0;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slideshow,
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  object-fit: cover;
  object-position: center 40%;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.1s var(--ease), transform 6s var(--ease);
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(11, 30, 49, 0.78) 0%, rgba(11, 30, 49, 0.58) 48%, rgba(11, 30, 49, 0.42) 100%),
    linear-gradient(180deg, rgba(11, 30, 49, 0.28) 0%, rgba(11, 30, 49, 0.48) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

/* Formulario móvil: oculto en PC */
.section-cotizar-mobile[hidden],
.lead-panel-desktop[hidden] {
  display: none !important;
}

.section-cotizar-mobile {
  display: none;
}

.hero + .section-about {
  margin-top: 0;
}

.hero .lead-panel-desktop {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

#contacto-hero,
#cotizar-mobile {
  scroll-margin-top: calc(var(--header-h) + 8px);
}

.hero-copy {
  text-shadow: 0 2px 18px rgba(11, 30, 49, 0.45);
  max-width: 640px;
}

.hero-brand {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--white);
}

.brand-reg {
  font-size: 0.45em;
  vertical-align: super;
  font-weight: 700;
  margin-left: 0.1em;
}

.hero-brand::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin-top: 0.75rem;
  background: var(--red);
  border-radius: 2px;
  animation: growBar 0.9s var(--ease) both;
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 24ch;
  color: rgba(255, 255, 255, 0.94);
}

.hero-lead {
  margin: 0 0 1.25rem;
  max-width: 68ch;
  color: rgba(242, 242, 242, 0.86);
  font-size: 1.08rem;
  text-align: justify;
  text-wrap: pretty;
  line-height: 1.6;
}

.hero-bullets {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
  max-width: 52ch;
}

.hero-bullets li {
  position: relative;
  padding-left: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.hero-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--red);
}

.hero-mobile-cta {
  display: none !important;
}

.vehicle-chip {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(11, 30, 49, 0.35);
  color: var(--white);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s var(--ease);
}

.vehicle-chip:hover,
.vehicle-chip.is-active {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-1px);
}

/* Lead form panel — interactive container */
.lead-panel {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 1.15rem 1.15rem 1rem;
  box-shadow: var(--shadow);
  animation: riseIn 0.8s var(--ease) 0.15s both;
  max-width: 460px;
  width: 100%;
  justify-self: end;
  margin-bottom: 0;
}

.lead-kicker {
  margin: 0 0 0.25rem;
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lead-panel h2 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.lead-sub {
  margin: 0 0 0.95rem;
  color: var(--steel);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0;
}

.lead-form {
  display: grid;
  gap: 0.55rem;
}

.lead-form label {
  display: grid;
  gap: 0.3rem;
}

.lead-form label > span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--steel);
}

.lead-form input,
.lead-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.55rem 0.7rem;
  background: var(--fog);
  color: var(--ink);
  outline: none;
  font-size: 0.9rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--steel);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(47, 75, 103, 0.15);
}

.lead-form input.is-invalid,
.lead-form select.is-invalid {
  border-color: var(--red);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.checkbox {
  grid-template-columns: auto 1fr !important;
  align-items: start;
  gap: 0.45rem !important;
  font-size: 0.74rem;
  color: var(--muted);
}

.checkbox a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.checkbox input {
  width: auto;
  margin-top: 0.2rem;
  accent-color: var(--red);
}

.form-note {
  margin: 0;
  font-size: 0.7rem;
  color: var(--muted);
  line-height: 1.35;
}

.form-status {
  margin: 0.35rem 0 0.55rem;
  min-height: 1.35em;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
}

.form-status.is-pending {
  color: var(--steel);
}

.form-status.is-success {
  color: #1b7a45;
}

.form-status.is-error {
  color: var(--red);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s ease, color 0.2s ease;
}

.lead-form .btn {
  padding: 0.7rem 1.1rem;
  font-size: 0.88rem;
  transition: transform 0.15s var(--ease), background 0.2s ease, box-shadow 0.2s ease;
}

.lead-form .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(228, 40, 47, 0.35);
}

.lead-form .btn:active,
.lead-form .btn.is-loading {
  transform: scale(0.97) translateY(0);
}

.lead-form .btn:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}

.lead-panel.is-sent .lead-kicker,
.lead-panel.is-sent .lead-sub,
.lead-panel.is-sent .lead-form label,
.lead-panel.is-sent .lead-form .form-row,
.lead-panel.is-sent .lead-form .form-note,
.lead-panel.is-sent .lead-form .hp-field {
  display: none !important;
}

.lead-panel.is-sent .form-status {
  margin: 0.5rem 0 1rem;
  font-size: 1.05rem;
  text-align: center;
}

.lead-panel.is-sent h2 {
  text-align: center;
  margin-bottom: 0.35rem;
}

.lead-panel.is-sent .form-status.is-success::before {
  content: "✓ ";
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-deep);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-block {
  width: 100%;
}

/* Strip */
.strip {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.88);
  border-top: 3px solid var(--red);
}

.strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.95rem;
  align-items: center;
}

.strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}

.strip-item p {
  margin: 0;
}

.strip-logo {
  height: 36px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
  padding: 0.25rem 0.5rem;
}

.strip strong {
  color: var(--white);
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2.5rem;
}

.section-head h2,
.method-copy h2,
.experience-copy h2,
.final-cta-inner h2,
.section-why h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--navy);
}

.section-head p,
.method-copy > p,
.experience-copy p,
.final-cta-inner p,
.about-body p,
.why-body p {
  margin: 0;
  color: var(--steel);
  font-size: 1.05rem;
}

/* About */
.section-about {
  background: var(--fog);
}

.about-intro {
  max-width: 56rem;
  margin-bottom: 2rem;
}

.about-intro .eyebrow {
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: var(--navy);
}

.about-intro h2 {
  font-size: clamp(2.6rem, 5vw, 3.75rem) !important;
  margin-bottom: 0.35rem !important;
}

.about-legal {
  margin: 0 !important;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.45rem) !important;
  font-weight: 700;
  color: var(--navy) !important;
}

.about-intro h2 .brand-reg {
  color: var(--red);
  font-size: 0.45em;
}

.about-desc-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: 12px;
  padding: 1.15rem 1.25rem 1.2rem;
  box-shadow: 0 10px 28px rgba(11, 30, 49, 0.06);
}

.about-desc-label {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}

.about-showcase {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.about-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 420px;
  box-shadow: 0 22px 48px rgba(11, 30, 49, 0.14);
}

.about-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.about-visual-tag {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  background: rgba(11, 30, 49, 0.92);
  color: var(--white);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  display: grid;
  gap: 0.15rem;
}

.about-visual-tag strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.about-visual-tag span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}

.about-credentials {
  display: grid;
  gap: 0.9rem;
  align-content: start;
}

.about-lead {
  margin: 0;
  color: var(--steel);
  font-size: 1.02rem;
  line-height: 1.55;
  text-align: justify;
}

.about-cred {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  padding: 1.1rem 1.15rem;
  background: var(--white);
  border-left: 3px solid var(--red);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}

.about-cred:hover {
  transform: translateX(4px);
  box-shadow: 0 12px 30px rgba(11, 30, 49, 0.08);
}

.about-cred-label {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--red);
  font-size: 0.95rem;
  line-height: 1.2;
}

.about-cred h3 {
  margin: 0 0 0.3rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.about-cred p {
  margin: 0;
  color: var(--steel);
  font-size: 0.92rem;
  line-height: 1.45;
}

.about-credentials .btn {
  justify-self: start;
  margin-top: 0.35rem;
}

/* Purpose — layout tipo brochure / features + visual */
.section-purpose {
  background: var(--white);
}

.text-accent {
  color: var(--red);
}

.purpose-top {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 2.75rem;
  align-items: center;
  margin-bottom: 2rem;
}

.purpose-copy .eyebrow {
  color: var(--navy);
}

.purpose-copy h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--navy);
  max-width: 16ch;
}

.purpose-lead {
  margin: 0 0 1.75rem;
  color: var(--steel);
  font-size: 1.05rem;
  max-width: 48ch;
}

.purpose-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem 1.35rem;
}

.purpose-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  transition: transform 0.3s var(--ease);
}

.purpose-feature:hover {
  transform: translateY(-3px);
}

.purpose-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(228, 40, 47, 0.1);
  color: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.purpose-icon svg {
  width: 22px;
  height: 22px;
}

.purpose-feature h3 {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.purpose-feature p {
  margin: 0;
  color: var(--steel);
  font-size: 0.88rem;
  line-height: 1.4;
}

.purpose-visual {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 420px;
  box-shadow: 0 24px 50px rgba(11, 30, 49, 0.16);
}

.purpose-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.purpose-badge {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  background: var(--red);
  color: var(--white);
  border-radius: 999px;
  padding: 0.55rem 0.95rem 0.55rem 1.55rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.15;
  display: grid;
  gap: 0.1rem;
  box-shadow: 0 10px 24px rgba(228, 40, 47, 0.35);
}

.purpose-badge small {
  font-size: 0.68rem;
  font-weight: 500;
  opacity: 0.92;
}

.badge-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7dffb3;
  left: 0.7rem;
  top: 0.75rem;
  box-shadow: 0 0 0 0 rgba(125, 255, 179, 0.7);
  animation: pulseDot 1.6s ease infinite;
}

.purpose-stats {
  position: absolute;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 420px;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 16px;
  padding: 0.9rem 0.75rem;
  text-align: center;
  box-shadow: 0 14px 30px rgba(11, 30, 49, 0.18);
}

.purpose-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--red);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.purpose-stat-main strong {
  font-size: 1rem;
}

.purpose-stats div:nth-child(2) strong {
  color: var(--navy);
}

.purpose-stats span {
  font-size: 0.72rem;
  color: var(--steel);
  font-weight: 600;
}

.purpose-panel {
  background: var(--fog);
  border-radius: 18px;
  padding: 1.75rem 1.75rem 1.6rem;
}

.purpose-panel h3 {
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.purpose-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;
  margin-bottom: 1.25rem;
}

.purpose-panel-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.purpose-panel-grid li {
  position: relative;
  padding-left: 0;
  color: var(--steel);
  font-size: 0.95rem;
}

.purpose-panel-grid li::before {
  content: none;
}

.purpose-panel-quote {
  margin: 0 0 1.15rem;
  padding-top: 0;
  border-top: 0;
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--steel);
  letter-spacing: 0;
  text-align: justify;
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(125, 255, 179, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(125, 255, 179, 0); }
  100% { box-shadow: 0 0 0 0 rgba(125, 255, 179, 0); }
}

/* Why FPS */
.section-why {
  background: var(--fog);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.why-body {
  display: grid;
  gap: 1.25rem;
}

.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.why-list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--navy);
  font-weight: 600;
}

.why-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--red);
}

/* Channels */
.section-channels {
  background: var(--white);
}

.channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.channel {
  padding: 1.5rem 1.35rem;
  border: 1px solid var(--line);
  transition: border-color 0.3s ease, transform 0.3s var(--ease), box-shadow 0.3s ease;
}

.channel:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(11, 30, 49, 0.08);
}

.channel h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.channel p {
  margin: 0;
  color: var(--steel);
}

.experience-points {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.experience-points li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--navy);
  font-weight: 600;
}

.experience-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--red);
}

.eyebrow {
  margin: 0 0 0.5rem;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Services — fondo azul */
.section-services {
  background:
    radial-gradient(circle at 85% 15%, rgba(228, 40, 47, 0.16), transparent 35%),
    linear-gradient(165deg, #0b1e31 0%, #16324d 55%, #0b1e31 100%);
  color: var(--white);
}

.section-services .section-head h2 {
  color: var(--white);
}

.section-services .section-head p {
  color: rgba(242, 242, 242, 0.78);
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service {
  display: block;
  width: 100%;
  text-align: left;
  padding: 1.35rem 1.25rem 1.4rem;
  border: 0;
  border-top: 2px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.04);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  font: inherit;
  transition:
    background 0.35s var(--ease),
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s ease;
}

.service:hover {
  background: rgba(255, 255, 255, 0.1);
  border-top-color: var(--red);
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.service-index {
  display: block;
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--red);
  font-size: 0.95rem;
  transition: transform 0.35s var(--ease);
}

.service:hover .service-index {
  transform: translateX(4px);
}

.service h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--white);
  transition: color 0.25s ease;
}

.service:hover h3 {
  color: var(--white);
}

.service p {
  margin: 0;
  color: rgba(242, 242, 242, 0.78);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.1rem;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: #ff8a8f;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s var(--ease);
}

.service-link::after {
  content: "→";
  transition: transform 0.25s var(--ease);
}

.service:hover .service-link,
.service.js-open-modal .service-link {
  opacity: 1;
  transform: none;
}

.service:hover .service-link::after {
  transform: translateX(4px);
}

#servicios .section-cta {
  margin-top: 2.25rem;
}

/* Fleet */
.section-fleet {
  background: var(--white);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.fleet-item {
  margin: 0;
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.fleet-item.is-linked {
  cursor: pointer;
}

.fleet-item.is-linked::after {
  content: "Abrir archivo";
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(228, 40, 47, 0.95);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  pointer-events: none;
}

.fleet-item.is-linked:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

.fleet-item img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.fleet-item:hover img {
  transform: scale(1.05);
}

.fleet-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.5rem 1rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(11, 30, 49, 0.92));
  color: var(--white);
}

.fleet-item h3 {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.fleet-item p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.section-cta {
  margin-top: 2rem;
  text-align: center;
}

/* Method */
.section-method {
  background:
    radial-gradient(circle at 15% 20%, rgba(228, 40, 47, 0.12), transparent 40%),
    linear-gradient(160deg, #0b1e31 0%, #16324d 55%, #0b1e31 100%);
  color: var(--white);
}

.section-method h2,
.section-method .method-copy > p {
  color: var(--white);
}

.section-method .method-copy > p {
  color: rgba(242, 242, 242, 0.82);
}

.method-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: stretch;
}

.method-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.15rem;
}

.method-list li {
  display: grid;
  gap: 0.2rem;
  padding-left: 1rem;
  border-left: 3px solid var(--red);
}

.method-list strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.method-list span {
  color: rgba(242, 242, 242, 0.75);
}

.value-block {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

.value-label {
  margin: 0;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.value-quote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

/* Experience */
.section-experience {
  background: var(--fog);
}

.experience-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: center;
}

.experience-stat {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  color: var(--navy);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(5rem, 10vw, 7.5rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
}

/* Final CTA */
.section-final-cta {
  background:
    linear-gradient(120deg, rgba(11, 30, 49, 0.78), rgba(11, 30, 49, 0.62)),
    url("../Assets/images/vehicles/hero-bg.webp") center/cover no-repeat;
  text-align: center;
  color: var(--white);
  background-size: cover;
  background-position: center;
}

.final-cta-inner h2,
.final-cta-inner p {
  color: var(--white);
}

.final-cta-inner p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  padding: 3rem 0 1.25rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.15fr 0.9fr;
  gap: 1.75rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 0.35rem;
}

.footer-logo {
  height: auto;
  width: min(280px, 100%);
  max-width: 280px;
  margin-bottom: 0.85rem;
  object-fit: contain;
  image-rendering: auto;
  -ms-interpolation-mode: bicubic;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.15rem;
}

.footer-social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  padding: 0;
  line-height: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s var(--ease), color 0.2s ease;
}

.footer-social-link svg {
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.footer-social-link:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-nav {
  display: grid;
  gap: 0.45rem;
  justify-items: start;
}

.footer-nav a {
  display: block;
  line-height: 1.35;
}

.footer-nav a[data-modal="modal-privacidad"] {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-legal {
  margin: 0;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--white);
}

.footer-tag {
  margin: 0;
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0 0 0.4rem;
  line-height: 1.45;
}

.site-footer h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
}

.site-footer a {
  display: block;
  margin-bottom: 0.35rem;
  transition: color 0.2s ease;
}

.site-footer .footer-social-link {
  display: inline-flex;
  margin-bottom: 0;
}

.site-footer a[href^="tel:"],
.site-footer a[href^="mailto:"] {
  display: inline;
  margin-bottom: 0;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 1.1rem;
  font-size: 0.85rem;
}

.footer-bottom p {
  margin: 0;
}

/* Modals */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.modal[hidden],
.modal:not(.is-open) {
  display: none !important;
}

.modal.is-open {
  display: flex !important;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 30, 49, 0.72);
  backdrop-filter: blur(3px);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
  max-height: min(92vh, 900px);
  overflow: auto;
  background: #f4f6f8;
  border-radius: 16px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
  padding: 1.25rem 1.25rem 1rem;
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.modal-close-light {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.renting-modal {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
  clear: both;
}

.renting-head {
  border-radius: 14px;
  color: #fff;
  text-align: center;
  padding: 1rem 0.85rem;
  margin-bottom: 0.75rem;
}

.renting-head p {
  margin: 0.15rem 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.renting-head svg {
  width: 56px;
  height: 28px;
  margin: 0 auto 0.35rem;
  display: block;
}

.renting-head-green {
  background: #00a86b;
}

.renting-head-teal {
  background: #1a3e4c;
}

.renting-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  font-size: 0.68rem;
  font-weight: 700;
  font-family: var(--font-display);
}

.renting-sub {
  margin: 0 0 0.65rem;
  text-align: center;
  font-weight: 800;
  font-size: 0.78rem;
  color: #111;
  letter-spacing: 0.02em;
}

.renting-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
}

.renting-plans-2 {
  grid-template-columns: 1fr 1fr;
}

.renting-plan h3 {
  margin: 0;
  background: #00a86b;
  color: #fff;
  text-align: center;
  font-size: 0.78rem;
  font-family: var(--font-display);
  padding: 0.45rem;
  border-radius: 6px 6px 0 0;
}

.renting-col-empresa .renting-plan h3 {
  background: #1a3e4c;
}

.renting-plan-exclude h3 {
  background: #2f4b67 !important;
}

.renting-plan ul {
  list-style: none;
  margin: 0;
  padding: 0.65rem 0.55rem 0.75rem;
  background: #fff;
  border: 1px solid #e5e8ec;
  border-top: 0;
  border-radius: 0 0 6px 6px;
  min-height: 100%;
}

.renting-plan li {
  position: relative;
  padding-left: 0.9rem;
  margin-bottom: 0.35rem;
  font-size: 0.74rem;
  color: #222;
  line-height: 1.35;
}

.renting-plan li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: #00a86b;
}

.renting-plan-exclude li::before {
  background: #1a3e4c;
}

.modal-footer-brands {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid #dde2e8;
  clear: both;
}

.modal-footer-brands img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.modal-footer-brands-renting {
  justify-content: center;
  gap: 1rem 1.5rem;
}

.modal-footer-brands-renting .renting-brand-logo {
  display: block;
  width: min(280px, 72%);
  height: auto;
  aspect-ratio: 768 / 540;
  object-fit: contain;
  border-radius: 10px;
  background: #000;
  box-shadow: 0 8px 22px rgba(11, 30, 49, 0.18);
}

.modal-dialog-rentek {
  background: #1e5bb8;
  color: #fff;
  padding: 1.5rem;
}

.modal-dialog-policy {
  width: min(760px, 100%);
  max-height: min(88vh, 900px);
  background: #fff;
  color: var(--ink);
}

.policy-content {
  padding: 0.35rem 0.5rem 0.75rem;
}

.policy-kicker {
  margin: 0 0 0.35rem;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.policy-content h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  color: var(--navy);
  letter-spacing: -0.02em;
}

.policy-content h3 {
  margin: 1.15rem 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--navy);
}

.policy-content p,
.policy-content li {
  color: var(--steel);
  font-size: 0.94rem;
  line-height: 1.55;
}

.policy-content ul {
  margin: 0.35rem 0 0.5rem;
  padding-left: 1.15rem;
}

.policy-content a {
  color: var(--red);
}

.rentek-modal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  clear: both;
}

.rentek-modal-top h2 {
  margin: 0;
  display: inline-block;
  background: #f07a2a;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.15rem;
  padding: 0.55rem 1rem;
  border-radius: 10px;
}

.rentek-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}

.rentek-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;
  margin-bottom: 1.25rem;
}

.rentek-lists ul {
  margin: 0;
  padding-left: 1.1rem;
}

.rentek-lists li {
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
  line-height: 1.4;
}

.rentek-refs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}

.rentek-refs img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.55);
  background: #fff;
}

.rentek-modal-actions {
  text-align: center;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .renting-modal,
  .renting-plans,
  .renting-plans-2,
  .rentek-lists {
    grid-template-columns: 1fr;
  }

  .rentek-refs {
    grid-template-columns: repeat(2, 1fr);
  }

  .modal-dialog {
    padding: 1rem;
  }
}

/* WhatsApp floating button — estilo clásico */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  display: block;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.whatsapp-float-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  padding: 8px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.whatsapp-float-tooltip::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #111;
}

.whatsapp-float:hover .whatsapp-float-tooltip,
.whatsapp-float:focus-visible .whatsapp-float-tooltip {
  opacity: 1;
  visibility: visible;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes growBar {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 72px;
    opacity: 1;
  }
}

.hero-copy > * {
  animation: riseIn 0.75s var(--ease) both;
}

.hero-copy > *:nth-child(1) { animation-delay: 0.05s; }
.hero-copy > *:nth-child(2) { animation-delay: 0.15s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.25s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.35s; }
.hero-copy > *:nth-child(5) { animation-delay: 0.45s; }

/* Touch: links de servicio siempre visibles */
@media (hover: none) {
  .service-link {
    opacity: 1;
    transform: none;
  }

  body.has-custom-cursor,
  body.has-custom-cursor a,
  body.has-custom-cursor button,
  body.has-custom-cursor input,
  body.has-custom-cursor select,
  body.has-custom-cursor label {
    cursor: auto;
  }

  body.has-custom-cursor .cursor-dot,
  body.has-custom-cursor .cursor-ring {
    display: none !important;
  }
}

/* ========== TABLET ========== */
@media (max-width: 1100px) {
  .nav {
    gap: 0.85rem;
  }

  .nav a {
    font-size: 0.88rem;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.95fr;
    gap: 1.5rem;
  }

  .lead-panel {
    max-width: 420px;
  }
}

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .brand-logo {
    height: 54px;
  }

  /* Hero solo texto + fotos en tablet/móvil */
  .hero {
    height: auto;
    min-height: 0;
    padding: 2.25rem 0 2rem;
    align-items: center;
  }

  .hero-slide {
    object-position: center center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(11, 30, 49, 0.62) 0%, rgba(11, 30, 49, 0.72) 40%, rgba(11, 30, 49, 0.9) 100%);
  }

  .lead-panel-desktop,
  .lead-panel-desktop[hidden] {
    display: none !important;
  }

  .section-cotizar-mobile {
    display: block;
    background: var(--fog);
    padding: 1.5rem 0 2rem;
  }

  .section-cotizar-mobile[hidden] {
    display: block !important;
  }

  .section-cotizar-mobile .lead-panel-mobile {
    max-width: none;
    width: 100%;
    justify-self: stretch;
    box-shadow: 0 16px 40px rgba(11, 30, 49, 0.12);
  }

  .section-cotizar-mobile .lead-sub {
    font-size: 0.98rem;
    margin-bottom: 1rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
    align-items: end;
  }

  .method-grid,
  .services,
  .footer-grid,
  .strip-inner,
  .about-showcase,
  .why-grid,
  .channels,
  .purpose-top,
  .purpose-panel-grid {
    grid-template-columns: 1fr;
  }

  .purpose-features {
    grid-template-columns: 1fr 1fr;
  }

  .fleet-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-copy {
    max-width: none;
  }

  .hero h1,
  .hero-lead {
    max-width: none;
  }

  .about-visual,
  .about-visual img {
    min-height: 300px;
  }

  .purpose-copy h2 {
    max-width: none;
  }

  .purpose-visual,
  .purpose-visual img {
    min-height: 340px;
  }

  .experience-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .section {
    padding: 4rem 0;
  }

  .strip-inner {
    gap: 0.75rem;
    padding: 1.25rem 0;
  }

  .strip-inner p {
    margin: 0;
    padding: 0.35rem 0;
  }
}

/* ========== MOBILE ========== */
@media (max-width: 760px) {
  :root {
    --header-h: 64px;
  }

  .container {
    width: 100%;
    max-width: 1180px;
    padding-left: 30px;
    padding-right: 30px;
    box-sizing: border-box;
  }

  .mobile-nav {
    padding-left: 30px;
    padding-right: 30px;
  }

  .strip .container,
  .strip-inner {
    padding-left: 30px;
    padding-right: 30px;
    box-sizing: border-box;
  }

  .strip-item {
    align-items: flex-start;
    text-align: left;
    width: 100%;
  }

  .strip-logo {
    max-width: 100%;
  }

  .brand-logo {
    height: 46px;
  }

  .hero {
    height: auto;
    min-height: 0;
    padding: 1.75rem 0 2rem;
    align-items: center;
  }

  .hero-grid {
    justify-items: center;
    width: 100%;
  }

  .hero-copy {
    text-align: center;
    margin-inline: auto;
    width: 100%;
    max-width: 34rem;
  }

  .hero-brand {
    font-size: clamp(1.7rem, 8vw, 2.1rem);
    margin-bottom: 0.45rem;
  }

  .hero-brand::after {
    width: 52px;
    height: 3px;
    margin: 0.45rem auto 0;
  }

  .hero h1 {
    font-size: clamp(1.25rem, 5.2vw, 1.55rem);
    margin-bottom: 0.55rem;
    margin-inline: auto;
    max-width: 18ch;
  }

  .hero-lead {
    font-size: 0.92rem;
    line-height: 1.45;
    margin-bottom: 0.75rem;
    margin-inline: auto;
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
    text-align: center;
    max-width: 36ch;
  }

  .hero-bullets {
    gap: 0.28rem;
    font-size: 0.88rem;
    margin: 0 auto 0.95rem;
    text-align: left;
    width: fit-content;
    max-width: 100%;
  }

  .hero-bullets li {
    padding-left: 1rem;
    line-height: 1.35;
  }

  .hero-bullets li:nth-child(n + 4) {
    display: none;
  }

  .hero-vehicle-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem;
    width: 100%;
    max-width: 22rem;
    margin: 0 auto 1rem;
  }

  .vehicle-chip {
    font-size: 0.8rem;
    padding: 0.55rem 0.45rem;
    width: 100%;
    min-height: 44px;
    justify-content: center;
    text-align: center;
  }

  .lead-panel {
    padding: 1.1rem 1rem 1rem;
    border-radius: 12px;
  }

  .lead-panel h2 {
    font-size: 1.15rem;
  }

  .form-row,
  .fleet-grid,
  .purpose-features,
  .purpose-panel-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3rem 0;
  }

  .section-head {
    margin-bottom: 1.75rem;
  }

  .section-head h2,
  .method-copy h2,
  .experience-copy h2,
  .final-cta-inner h2,
  .section-why h2,
  .purpose-copy h2 {
    font-size: clamp(1.45rem, 6.5vw, 1.9rem);
  }

  .about-visual,
  .about-visual img,
  .purpose-visual,
  .purpose-visual img {
    min-height: 240px;
  }

  .purpose-stats {
    width: calc(100% - 1.25rem);
    padding: 0.7rem 0.45rem;
  }

  .purpose-stats strong {
    font-size: 1rem;
  }

  .purpose-panel {
    padding: 1.25rem 1.1rem;
  }

  .purpose-badge {
    top: 0.75rem;
    right: 0.75rem;
    font-size: 0.7rem;
  }

  .fleet-item,
  .fleet-item img {
    min-height: 220px;
  }

  .stat-number {
    font-size: clamp(3.5rem, 18vw, 5rem);
  }

  .experience-points {
    margin-top: 1rem;
  }

  .value-block {
    padding: 1.4rem 1.2rem;
  }

  .value-quote {
    font-size: 1.15rem;
  }

  .method-list {
    margin-top: 1.5rem;
  }

  .footer-grid {
    gap: 1.5rem;
  }

  .footer-logo {
    width: min(240px, 100%);
    max-width: 240px;
  }

  .site-footer {
    padding: 2.25rem 0 1.1rem;
    padding-bottom: calc(1.1rem + env(safe-area-inset-bottom, 0px));
  }

  .whatsapp-float {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 56px;
    height: 56px;
  }

  .whatsapp-float svg {
    width: 30px;
    height: 30px;
  }

  .whatsapp-float-tooltip {
    display: none;
  }

  .btn {
    width: 100%;
    max-width: 360px;
  }

  .section-cta .btn,
  .about-credentials .btn,
  .why-body .btn,
  .final-cta-inner .btn {
    width: 100%;
    max-width: none;
  }

  .strip-inner {
    text-align: left;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

/* Extra small phones */
@media (max-width: 400px) {
  .hero-vehicle-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .vehicle-chip {
    text-align: center;
    justify-content: center;
  }

  .lead-form .btn {
    font-size: 0.85rem;
  }
}
