:root {
  --navy: #061b3c;
  --navy-2: #0a3158;
  --cyan: #00b9e8;
  --cyan-dark: #009ccd;
  --cyan-soft: #eafaff;
  --bg: #f8faff;
  --surface: #ffffff;
  --surface-alt: #f2f6fb;
  --text: #12213b;
  --muted: #66748a;
  --border: #dfe8f2;
  --shadow: 0 18px 45px rgba(13, 44, 77, .09);
  --shadow-sm: 0 8px 24px rgba(13, 44, 77, .08);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
main, section, .container, [class*="grid"], [class*="card"] { min-width: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
ul { padding-left: 1.2rem; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(3rem, 5.7vw, 5.8rem); margin-bottom: 1.5rem; }
h2 { font-size: clamp(2.25rem, 4.5vw, 4.1rem); margin-bottom: 1rem; }
h3 { font-size: 1.35rem; }
p { color: var(--muted); }
strong { color: var(--navy); }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section { position: relative; padding: 110px 0; }
.section-sm { padding: 24px 0 70px; }
.soft-section, .plan-section, .faq-section { background: linear-gradient(145deg, #fbfcff 0%, #f3f7fc 100%); }

.skip-link {
  position: fixed; z-index: 9999; left: 16px; top: -80px;
  background: var(--navy); color: #fff; padding: 12px 18px; border-radius: 8px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.93); backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(223,232,242,.72);
  transition: box-shadow .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 12px 30px rgba(9, 35, 67, .08); }
.nav-wrap { height: 82px; display: flex; align-items: center; justify-content: space-between; }
.brand img { width: 205px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav > a { position: relative; font-weight: 600; font-size: .95rem; color: #26354d; }
.main-nav > a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px;
  background: var(--cyan); transition: right .25s ease;
}
.main-nav > a:hover::after, .main-nav > a.is-active::after { right: 0; }
.nav-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; padding: 10px; cursor: pointer; }
.nav-toggle span { display: block; height: 2px; background: var(--navy); margin: 6px 0; transition: .25s; }

.btn {
  min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 0 24px; border-radius: 10px; border: 1px solid transparent;
  font-weight: 750; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--cyan), #0a9fde); box-shadow: 0 12px 26px rgba(0, 185, 232, .24); }
.btn-primary:hover { box-shadow: 0 16px 32px rgba(0, 185, 232, .33); }
.btn-outline { background: rgba(255,255,255,.7); border-color: var(--cyan); color: var(--navy); }
.btn-light { background: #fff; color: var(--navy); box-shadow: var(--shadow-sm); }
.btn-block { width: 100%; }

.hero {
  min-height: 750px; display: grid; align-items: center;
  background:
    radial-gradient(circle at 78% 40%, rgba(0,185,232,.10), transparent 34%),
    linear-gradient(180deg, #fff 0%, #f9fbff 100%);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(115deg, transparent 55%, rgba(15,77,130,.035) 55.2%, transparent 55.4%);
  background-size: 44px 44px; opacity: .35; pointer-events: none;
}
.hero .container { width: min(1280px, calc(100% - 40px)); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 20px; }
.hero-copy { position: relative; z-index: 2; }
.hero h1 { font-size: clamp(3rem, 5.25vw, 5.4rem); }
.hero h1 span { display: block; color: var(--cyan); }
.hero-lead { max-width: 660px; font-size: 1.15rem; line-height: 1.75; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--cyan-dark); font-weight: 850; letter-spacing: .16em; font-size: .78rem; margin-bottom: 18px;
}
.pill { border: 1px solid rgba(0,185,232,.55); padding: 8px 14px; border-radius: 99px; letter-spacing: 0; font-weight: 650; }
.pill svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-trust { display: flex; gap: 28px; margin-top: 40px; }
.hero-trust > div { display: flex; align-items: center; gap: 10px; padding-right: 22px; border-right: 1px solid var(--border); }
.hero-trust > div:last-child { border-right: 0; padding-right: 0; }
.hero-trust p { margin: 0; color: #37465c; font-size: .85rem; line-height: 1.35; }
.mini-icon { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 10px; background: #fff; color: var(--cyan); box-shadow: var(--shadow-sm); font-weight: 900; }

/* Iconografía lineal propia: evita glifos que cambian a emoji según el dispositivo. */
.mini-icon::before, .process-icon::before, .service-icon::before,
.heading-icon::before, .benefit-icon::before,
.badge-icon::before, .about-icon::before {
  content: ""; display: block; width: 24px; height: 24px; background: currentColor;
  -webkit-mask: var(--icon) center / contain no-repeat; mask: var(--icon) center / contain no-repeat;
}
.icon-check { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' d='m5 12 4 4L19 6'/%3E%3C/svg%3E"); }
.icon-calendar { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'%3E%3Crect x='3' y='5' width='18' height='16' rx='2'/%3E%3Cpath d='M8 3v4m8-4v4M3 10h18'/%3E%3C/g%3E%3C/svg%3E"); }
.icon-user { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23000' stroke-width='2'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M4 21c.7-4.3 3.4-6.5 8-6.5s7.3 2.2 8 6.5'/%3E%3C/g%3E%3C/svg%3E"); }
.icon-sedan, .icon-suv, .icon-pickup, .icon-van { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 15v-3l2-1 2.5-4h8.8l2.7 4 2 1v3M5 15h14'/%3E%3Ccircle cx='7' cy='16' r='2'/%3E%3Ccircle cx='17' cy='16' r='2'/%3E%3Cpath d='M8 11h8'/%3E%3C/g%3E%3C/svg%3E"); }
.icon-search { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round'%3E%3Ccircle cx='10.5' cy='10.5' r='6.5'/%3E%3Cpath d='m15.5 15.5 5 5'/%3E%3C/g%3E%3C/svg%3E"); }
.icon-fleet-management { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 14.5v-2.2l1.4-.8 1.7-3h6.2l1.9 3 1.5.8v2.2M5.5 14.5h9.8'/%3E%3Ccircle cx='7' cy='15.5' r='1.5'/%3E%3Ccircle cx='14' cy='15.5' r='1.5'/%3E%3Cpath d='M8 11.5h5.5M17 5h3v3M20 5l-4 4M20 14v5h-5'/%3E%3C/g%3E%3C/svg%3E"); }
.icon-document { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23000' stroke-width='2' stroke-linejoin='round'%3E%3Cpath d='M6 3h8l4 4v14H6z'/%3E%3Cpath d='M14 3v5h4M9 12h6m-6 4h6'/%3E%3C/g%3E%3C/svg%3E"); }
.icon-phone { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M7 3 4 5c0 8 7 15 15 15l2-3-5-3-2 2c-3-1-5-3-6-6l2-2z'/%3E%3C/svg%3E"); }
.icon-tool { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M14 6a5 5 0 0 0-6-3l3 3-5 5-3-3a5 5 0 0 0 6 6l6 7 4-4-7-6a5 5 0 0 0 2-5Z'/%3E%3C/svg%3E"); }
.icon-clock { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23000' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v6l4 2'/%3E%3C/g%3E%3C/svg%3E"); }
.icon-location { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='M12 22s7-6 7-13a7 7 0 1 0-14 0c0 7 7 13 7 13Z'/%3E%3Ccircle cx='12' cy='9' r='2'/%3E%3C/g%3E%3C/svg%3E"); }
.icon-star { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='2' stroke-linejoin='round' d='m12 3 2.8 5.7 6.2.9-4.5 4.4 1.1 6.2-5.6-3-5.6 3 1.1-6.2L3 9.6l6.2-.9z'/%3E%3C/svg%3E"); }
.heading-icon, .badge-icon, .about-icon { display: inline-grid; place-items: center; color: var(--cyan); vertical-align: middle; }
.heading-icon, .badge-icon { width: 24px; height: 24px; }
.about-icon { width: 48px; height: 48px; flex: 0 0 auto; }

.hero-media { position: relative; z-index: 1; }
.vehicle-stage {
  position: relative; min-height: 430px; display: flex; align-items: center;
  background: linear-gradient(160deg, rgba(255,255,255,.5), rgba(234,250,255,.65));
  border-radius: 60% 18% 26% 22%; overflow: hidden;
}
.vehicle-stage::after {
  content: ""; position: absolute; width: 76%; height: 36px; bottom: 50px; left: 12%;
  background: rgba(2,26,58,.13); filter: blur(20px); border-radius: 50%;
}
.vehicle-stage img {
  position: absolute; z-index: 1; left: 50%; top: 50%;
  width: 100%; max-width: 100%; height: auto;
  transform: translate(-50%, -50%);
}
.active-fleet { position: absolute; right: 30px; bottom: 0; background: rgba(255,255,255,.84); backdrop-filter: blur(8px); padding: 14px 18px; border-radius: 13px; box-shadow: var(--shadow-sm); }
.active-fleet span { color: #5f6d81; letter-spacing: .1em; font-size: .77rem; }
.active-fleet span strong { color: var(--cyan-dark); }
.active-fleet p { margin: 4px 0 0; color: var(--navy); font-weight: 750; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); opacity: .55; }
.hero-orb-one { width: 320px; height: 320px; background: rgba(0,185,232,.09); right: -140px; top: 40px; }
.hero-orb-two { width: 220px; height: 220px; border: 1px solid rgba(0,185,232,.18); left: -110px; bottom: -80px; }

.category-grid {
  display: grid; grid-template-columns: repeat(4,1fr); background: #fff;
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 10px 18px;
}
.category-grid article { display: flex; align-items: center; padding: 22px 24px; border-right: 1px solid var(--border); }
.category-grid article > div { width: 100%; }
.category-grid article:last-child { border-right: 0; }
.category-grid h3 { font-size: 1rem; margin-bottom: 5px; }
.category-grid p { font-size: .82rem; margin: 0; }
.section-heading { max-width: 900px; margin-bottom: 54px; }
.section-heading p { font-size: 1.08rem; }
.process-section { background: #fff; overflow: hidden; }
.process-section::after, .benefits-section::after, .about-section::after {
  content: ""; position: absolute; width: 640px; height: 640px; border: 1px solid rgba(0,185,232,.09);
  border-radius: 50%; right: -380px; top: -160px; pointer-events: none;
}
.process-grid { display: grid; grid-template-columns: 1fr 70px 1fr 70px 1fr; align-items: center; }
.process-card {
  position: relative; height: 100%; background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 54px 34px 30px; text-align: center; box-shadow: var(--shadow-sm);
}
.step-number {
  position: absolute; width: 70px; height: 70px; left: 50%; top: 0; transform: translate(-50%,-50%);
  display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, var(--cyan), #0679cc);
  border-radius: 50%; font-weight: 900; font-size: 1.2rem; box-shadow: 0 10px 22px rgba(0,185,232,.25);
}
.process-icon, .service-icon { display: grid; place-items: center; width: 68px; height: 68px; margin: 0 auto 18px; border-radius: 18px; color: var(--cyan); background: var(--cyan-soft); font-size: 2rem; }
.process-card p { min-height: 76px; }
.process-card ul { text-align: left; margin: 24px 0 0; padding-top: 18px; border-top: 1px solid var(--border); color: #526179; }
.process-card li::marker, .check-list li::marker { color: var(--cyan); }
.process-arrow { text-align: center; font-size: 2.5rem; color: var(--cyan); }
.value-strip {
  margin-top: 28px; display: grid; grid-template-columns: repeat(4,1fr); background: #fff;
  border: 1px solid var(--border); border-radius: 18px; box-shadow: var(--shadow-sm);
}
.value-strip > div { padding: 24px; display: flex; flex-direction: column; border-right: 1px solid var(--border); }
.value-strip > div:last-child { border-right: 0; }
.value-strip strong { margin-bottom: 4px; }
.value-strip span { color: var(--muted); font-size: .88rem; }

.service-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.service-card {
  background: rgba(255,255,255,.9); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 44px; box-shadow: var(--shadow-sm);
}
.service-card .service-icon { margin-left: 0; }
.service-card h3 { font-size: 1.65rem; }
.check-list { list-style: none; padding: 0; margin: 24px 0 0; }
.check-list li { position: relative; padding-left: 28px; margin: 10px 0; color: #36465d; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: .22em; width: 17px; height: 17px;
  background: var(--cyan);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' d='m5 12 4 4L19 6'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' d='m5 12 4 4L19 6'/%3E%3C/svg%3E") center / contain no-repeat;
}

.fleet-section { background: #fff; }
.fleet-viewer {
  position: relative; display: grid; grid-template-columns: minmax(0, 1fr) 350px; min-height: 690px;
  background: #fff; border: 1px solid #dce8f1; border-radius: 28px;
  box-shadow: 0 28px 70px rgba(4,25,53,.12); overflow: hidden; overflow-anchor: none;
}
.fleet-stage { position: relative; min-width: 0; padding: 28px 34px 32px; overflow: hidden; }
.fleet-stage::before { content: ""; position: absolute; width: 560px; height: 180px; left: 50%; top: 310px; transform: translateX(-50%); background: radial-gradient(ellipse, rgba(0,185,232,.1), transparent 68%); border: 1px solid rgba(0,185,232,.08); border-radius: 50%; }
.fleet-stage::after { content: ""; position: absolute; width: 460px; height: 460px; left: 50%; top: 44%; transform: translate(-50%,-50%); border: 1px solid rgba(0,185,232,.1); border-radius: 50%; box-shadow: 0 0 80px rgba(0,185,232,.06); }
.fleet-stage-head { position: relative; z-index: 2; display: flex; justify-content: space-between; color: #7890a8; font-size: .72rem; font-weight: 800; letter-spacing: .16em; }
.fleet-stage-head strong { color: var(--navy); }
.fleet-stage-head strong span { color: var(--cyan-dark); }
.fleet-image-wrap { position: relative; z-index: 1; height: 390px; display: grid; place-items: center; }
.fleet-image-wrap img { width: 100%; height: 100%; object-fit: contain; transition: opacity .22s ease, transform .35s ease; mix-blend-mode: multiply; }
.fleet-image-wrap img.is-changing { opacity: 0; transform: translateX(28px) scale(.97); }
.fleet-copy { position: relative; z-index: 2; max-width: 680px; color: var(--navy); }
.fleet-category-label { display: block; margin-bottom: 8px; color: var(--cyan-dark); font-size: .68rem; font-weight: 850; letter-spacing: .16em; }
.fleet-copy h3 { margin-bottom: 8px; color: var(--navy); font-size: clamp(1.8rem,3vw,2.7rem); }
.fleet-copy p { margin: 0; color: #5d6e82; line-height: 1.65; }
.fleet-specs { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; margin-top: 20px; }
.fleet-specs div { padding: 12px 14px; border-left: 2px solid var(--cyan); background: #f5f9fc; }
.fleet-specs span { display: block; color: #8092a4; font-size: .62rem; font-weight: 800; letter-spacing: .14em; }
.fleet-specs strong { display: block; margin-top: 3px; color: var(--navy); font-size: .88rem; }
.fleet-selector { position: relative; z-index: 3; padding: 28px 22px; background: #f7fafc; border-left: 1px solid #dce8f1; }
.fleet-selector-title { display: block; margin-bottom: 14px; color: #70859a; font-size: .65rem; font-weight: 850; letter-spacing: .14em; }
.fleet-tabs { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; }
.fleet-tab {
  position: relative; min-height: 68px; display: grid; grid-template-columns: 28px 1fr; align-items: center; text-align: left;
  color: #50647a; background: #fff; border: 1px solid #dce6ef; border-radius: 11px;
  font-weight: 750; cursor: pointer; transition: .2s; padding: 10px;
}
.fleet-tab small { color: #91a2b3; font-size: .65rem; letter-spacing: .1em; }
.fleet-tab span { line-height: 1.25; }
.fleet-tab:hover, .fleet-tab.is-active { border-color: var(--cyan); color: var(--navy); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,185,232,.12); }
.fleet-tab.is-active { background: var(--cyan-soft); }
.fleet-tab.is-active::after { content: ""; position: absolute; right: -1px; top: 25%; width: 3px; height: 50%; background: #55d9fa; box-shadow: 0 0 12px #55d9fa; }
.fleet-tab.is-active small { color: var(--cyan-dark); }
.fleet-models-title { margin-top: 24px; padding-top: 22px; border-top: 1px solid #dce6ef; }
.fleet-models { display: grid; gap: 6px; max-height: 326px; overflow-y: auto; padding-right: 5px; scrollbar-width: thin; scrollbar-color: #b9dce8 transparent; }
.fleet-model { min-height: 42px; display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 8px 11px; text-align: left; color: #51657a; background: transparent; border: 1px solid transparent; border-radius: 9px; cursor: pointer; transition: .18s; }
.fleet-model span { font-size: .82rem; font-weight: 700; line-height: 1.25; }
.fleet-model b { color: #a0afbd; font-size: 1.2rem; }
.fleet-model:hover, .fleet-model.is-active { color: var(--navy); background: #fff; border-color: #cfe5ed; box-shadow: 0 5px 15px rgba(4,25,53,.06); }
.fleet-model.is-active b { color: var(--cyan-dark); }
.fleet-selector-note { margin: 16px 0 0; color: #7b8d9f; font-size: .68rem; line-height: 1.5; }

@media (min-width: 851px) {
  .fleet-copy { margin-top: 56px; }
  .plan-section { padding: 86px 0; }
  .plan-section .plan-heading { align-items: center; margin-bottom: 30px; }
  .plan-section .plan-heading > div:first-child { max-width: 750px; }
  .plan-heading h2 { font-size: clamp(2.8rem, 4vw, 3.7rem); }
  .plan-heading p { max-width: 710px; margin-bottom: 0; }
  .plan-heading .metric-card { min-width: 270px; padding: 16px 20px; }
}

.plan-heading, .benefits-header { display: flex; justify-content: space-between; gap: 40px; align-items: flex-start; }
.plan-heading { max-width: none; width: 100%; }
.plan-heading > div:first-child { max-width: 800px; }
.metric-card {
  min-width: 250px; display: grid; grid-template-columns: auto 1fr; gap: 0 14px; align-items: center;
  background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 18px 22px; box-shadow: var(--shadow-sm);
}
.metric-card strong { grid-row: span 2; color: var(--cyan); font-size: 3rem; line-height: 1; }
.metric-card span { font-weight: 850; line-height: 1.15; }
.metric-card small { color: var(--muted); }
.metric-card.compact { min-width: 310px; }
.included-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 38px 42px; }
.included-card > h3 { font-size: 1.65rem; display: flex; align-items: center; gap: 12px; }
.included-card > h3 span { color: var(--cyan); }
.included-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; }
.included-grid > div { padding: 20px 34px; border-right: 1px solid var(--border); }
.included-grid > div:first-child { padding-left: 0; }
.included-grid > div:last-child { border-right: 0; padding-right: 0; }
.included-grid h4 { font-size: 1.08rem; margin-bottom: 12px; }

.benefits-section { background: #fff; overflow: hidden; }
.benefits-header { margin-bottom: 48px; }
.benefits-header > div:first-child { max-width: 760px; }
.benefit-grid { display: grid; grid-template-columns: 1.15fr .8fr .8fr; grid-template-rows: repeat(2,1fr); gap: 18px; }
.benefit-card {
  background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 26px;
  box-shadow: var(--shadow-sm); min-height: 200px;
}
.benefit-card > span:first-child { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: var(--cyan-soft); color: var(--cyan); font-size: 1.4rem; margin-bottom: 18px; }
.benefit-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.benefit-card p { margin-bottom: 0; }
.benefit-main { grid-row: 1 / 3; padding: 40px; display: flex; flex-direction: column; justify-content: center; background: linear-gradient(145deg, #fff, #f1faff); }
.benefit-main .benefit-icon { width: 80px!important; height: 80px!important; font-size: 2.4rem!important; border-radius: 50%!important; }
.benefit-main small { color: var(--cyan-dark); font-weight: 850; letter-spacing: .04em; }
.benefit-main h3 { font-size: 2rem; margin-top: 12px; }
.benefit-badge { display: inline-flex!important; width: fit-content!important; height: auto!important; padding: 10px 14px; border-radius: 10px!important; font-size: .9rem!important; margin-top: 14px; }

.about-section { overflow: hidden; }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.about-intro h2 { font-size: clamp(2.5rem, 4.7vw, 4.3rem); }
.accent-copy { color: var(--cyan-dark); font-size: 1.2rem; font-weight: 650; }
.about-copy { position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 56px 42px 34px; }
.experience-badge { position: absolute; right: 24px; top: -52px; display: flex; gap: 14px; align-items: center; background: #fff; border: 1px solid var(--border); border-radius: 15px; box-shadow: var(--shadow-sm); padding: 16px 22px; }
.experience-badge strong { color: var(--cyan); font-size: 2.4rem; }
.experience-badge span { font-weight: 700; line-height: 1.25; }
.about-copy p { color: #35445b; }
.about-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 32px; }
.about-cards article { display: flex; gap: 18px; align-items: flex-start; background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 25px; box-shadow: var(--shadow-sm); }
.about-cards article > span { width: 50px; height: 50px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 14px; background: var(--cyan-soft); color: var(--cyan); font-size: 1.4rem; }
.about-cards h3 { font-size: 1.12rem; margin-bottom: 7px; }
.about-cards p { margin: 0; font-size: .9rem; }

.faq-layout { display: grid; grid-template-columns: 280px 1fr; gap: 28px; align-items: start; }
.faq-cta { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 28px; box-shadow: var(--shadow-sm); }
.faq-icon { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; background: var(--cyan-soft); color: var(--cyan); font-size: 1.5rem; font-weight: 900; }
.faq-cta h3 { margin-top: 20px; }
.faq-cta .btn { width: 100%; padding-inline: 14px; }
.accordion { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 8px 12px; box-shadow: var(--shadow); }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: 0; }
.accordion-item button {
  width: 100%; min-height: 62px; display: flex; justify-content: space-between; align-items: center;
  text-align: left; background: none; border: 0; padding: 14px 18px; font-weight: 750; cursor: pointer;
}
.accordion-item button b { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid var(--cyan); color: var(--cyan); border-radius: 50%; font-size: 1.1rem; }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.accordion-panel p { padding: 0 18px 18px; margin: 0; }
.accordion-item.is-open { background: #f4f9fd; border-radius: 12px; }
.accordion-item.is-open .accordion-panel { max-height: 420px; }

.contact-band { padding: 80px 0; background: linear-gradient(135deg, #00b9e8, #087bc6); }
.contact-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.contact-band .eyebrow, .contact-band h2, .contact-band p { color: #fff; }
.contact-band h2 { margin-bottom: 8px; }
.contact-band p { margin: 0; opacity: .88; }

.site-footer { padding: 80px 0 38px; background: #edf3f9; }
.footer-card { background: #fff; border: 1px solid var(--border); border-radius: 24px; box-shadow: var(--shadow); padding: 44px; }
.footer-main { display: grid; grid-template-columns: 1.4fr repeat(3,.75fr) 1.05fr; gap: 30px; }
.footer-brand img { width: 220px; margin-bottom: 20px; }
.footer-brand h3 { font-size: 1.1rem; }
.footer-brand p { font-size: .9rem; max-width: 320px; }
.socials { display: flex; gap: 10px; }
.socials a { width: 38px; height: 38px; border: 1px solid var(--border); border-radius: 50%; display: grid; place-items: center; font-weight: 800; }
.footer-column { display: flex; flex-direction: column; gap: 11px; }
.footer-column h4 { color: var(--cyan-dark); text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; margin-bottom: 6px; }
.footer-column a, .footer-column span { color: #526179; font-size: .88rem; }
.footer-column a:hover { color: var(--cyan-dark); }
.contact-column .btn { margin-top: 10px; padding-inline: 12px; }
.footer-bottom { border-top: 1px solid var(--border); margin-top: 34px; padding-top: 24px; display: flex; justify-content: space-between; align-items: end; gap: 30px; }
.footer-bottom p, .footer-bottom a { font-size: .82rem; color: #758297; margin-right: 16px; }
.footer-bottom .developer-credit { margin: 12px 0 0; color: #96a2b2; font-size: .72rem; }
.footer-bottom .developer-credit a { margin: 0; color: #718399; font-size: inherit; font-weight: 650; }
.footer-bottom .developer-credit a:hover { color: var(--cyan-dark); }
.footer-bottom img {
  width: 500px; max-width: 48%; height: 190px;
  object-fit: cover; object-position: center 48%;
}

.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 900; width: 72px; height: 72px;
  display: grid; place-items: center; border-radius: 50%;
  filter: drop-shadow(0 10px 14px rgba(18, 140, 72, .32));
  animation: whatsapp-float 2.8s ease-in-out infinite;
  transition: filter .2s;
}
.whatsapp-float::before {
  content: ""; position: absolute; inset: 5px; z-index: -1; border: 2px solid rgba(37,211,102,.55);
  border-radius: 50%; animation: whatsapp-pulse 2s ease-out infinite;
}
.whatsapp-float:hover { animation-play-state: paused; filter: drop-shadow(0 13px 18px rgba(18,140,72,.45)); }
.whatsapp-float:hover img { transform: scale(1.1) rotate(-5deg); }
.whatsapp-float img { width: 100%; height: 100%; display: block; object-fit: contain; border-radius: 50%; transition: transform .25s ease; }

@keyframes whatsapp-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
@keyframes whatsapp-pulse {
  0% { opacity: .8; transform: scale(.85); }
  75%, 100% { opacity: 0; transform: scale(1.35); }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float, .whatsapp-float::before { animation: none; }
}

.modal { position: fixed; inset: 0; z-index: 2000; display: none; place-items: center; padding: 20px; }
.modal.is-open { display: grid; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(4,20,45,.66); backdrop-filter: blur(6px); }
.modal-dialog {
  position: relative; width: min(760px,100%); max-height: calc(100vh - 40px); overflow-y: auto;
  background: #fff; border-radius: 22px; padding: 38px; box-shadow: 0 35px 90px rgba(0,0,0,.3);
  animation: modalIn .22s ease both;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(15px) scale(.98); } }
.modal-close { position: absolute; right: 18px; top: 14px; width: 42px; height: 42px; border: 0; border-radius: 50%; background: var(--surface-alt); font-size: 1.8rem; cursor: pointer; }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
label { display: flex; flex-direction: column; gap: 7px; color: #36465d; font-weight: 700; font-size: .9rem; }
input, select, textarea { width: 100%; border: 1px solid var(--border); border-radius: 10px; background: #fbfdff; padding: 13px 14px; color: var(--text); outline: none; }
input:focus, select:focus, textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,185,232,.12); }
textarea { resize: vertical; margin-bottom: 18px; }
.form-note { display: block; margin-top: 12px; color: #78869a; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .main-nav { gap: 20px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero .container { width: min(var(--container), calc(100% - 40px)); }
  .hero { padding-top: 70px; }
  .hero-copy { max-width: 820px; }
  .hero-media { max-width: 820px; margin: 0 auto; width: 100%; }
  .process-grid { grid-template-columns: 1fr; gap: 44px; }
  .process-arrow {
    position: relative; width: 100%; height: 30px; display: block;
    transform: none;
  }
  .process-arrow { font-size: 0; }
  .process-arrow::before {
    content: ""; position: absolute; left: 50%; top: 0;
    width: 4px; height: 20px; border-radius: 999px;
    background: var(--cyan); transform: translateX(-50%);
  }
  .process-arrow::after {
    content: ""; position: absolute; left: 50%; bottom: 1px;
    width: 12px; height: 12px; border-right: 4px solid var(--cyan); border-bottom: 4px solid var(--cyan);
    transform: translateX(-50%) rotate(45deg);
  }
  .category-grid { grid-template-columns: repeat(2,1fr); }
  .category-grid article:nth-child(2) { border-right: 0; }
  .category-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .benefit-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
  .benefit-main { grid-row: auto; grid-column: 1 / -1; }
  .footer-main { grid-template-columns: 1.4fr repeat(2,1fr); }
  .footer-brand, .contact-column { grid-row: span 2; }
}

@media (max-width: 850px) {
  .section { padding: 82px 0; }
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; inset: 82px 16px auto; padding: 22px; border: 1px solid var(--border);
    border-radius: 16px; background: #fff; box-shadow: var(--shadow); flex-direction: column; align-items: stretch;
    gap: 6px; max-height: calc(100dvh - 98px); overflow-y: auto; overscroll-behavior: contain;
    opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .22s;
  }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav > a { padding: 12px 8px; }
  .nav-cta { margin-top: 8px; }
  .hero-trust { flex-wrap: wrap; }
  .fleet-viewer { grid-template-columns: 1fr; }
  .fleet-selector { border-left: 0; border-top: 1px solid #dce8f1; }
  .fleet-tabs { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .fleet-tab:hover, .fleet-tab.is-active { transform: translateY(-3px); }
  .service-grid, .about-grid { grid-template-columns: 1fr; }
  .about-grid { gap: 80px; }
  .included-grid { grid-template-columns: 1fr; }
  .included-grid > div, .included-grid > div:first-child, .included-grid > div:last-child { padding: 24px 0; border-right: 0; border-bottom: 1px solid var(--border); }
  .included-grid > div:last-child { border-bottom: 0; }
  .plan-heading, .benefits-header { flex-direction: column; }
  .metric-card, .metric-card.compact { min-width: 0; width: 100%; max-width: 390px; }
  .about-cards { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-cta { display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center; }
  .faq-cta .faq-icon { grid-row: span 2; }
  .faq-cta h3, .faq-cta p { margin: 0; }
  .faq-cta .btn { width: auto; grid-row: span 2; }
  .footer-main { grid-template-columns: repeat(2,1fr); }
  .footer-brand, .contact-column { grid-row: auto; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: center; }
  .footer-bottom img { width: 330px; }
}

@media (max-width: 650px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 68px 0; }
  .section-sm { padding: 18px 0 52px; }
  .section-heading { margin-bottom: 38px; }
  .section-heading p { font-size: 1rem; }
  .nav-wrap { height: 72px; }
  .main-nav { inset: 72px 12px auto; max-height: calc(100dvh - 84px); padding: 16px; }
  .brand img { width: 168px; }
  .hero { min-height: auto; padding-top: 52px; }
  .hero .container { width: min(100% - 28px, var(--container)); }
  h1 { font-size: clamp(2.65rem, 13vw, 4rem); }
  h2 { font-size: clamp(2rem, 9vw, 3rem); }
  h1, h2, h3, h4, p, a, button, span { overflow-wrap: break-word; }
  .eyebrow { max-width: 100%; line-height: 1.35; }
  .pill { align-items: flex-start; }
  .pill svg { flex: 0 0 auto; }
  .hero-lead { font-size: 1rem; line-height: 1.65; }
  .hero h1 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .hero h1 span { display: inline; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
  .hero-trust > div { display: block; text-align: center; padding: 10px 4px; border-right: 0; }
  .mini-icon { margin: 0 auto 8px; }
  .hero-grid { gap: 16px; }
  .vehicle-stage { min-height: 280px; border-radius: 42% 16% 22% 18%; }
  .vehicle-stage img { width: 100%; }
  .active-fleet { position: relative; right: auto; bottom: auto; margin-top: -15px; }
  .category-grid { grid-template-columns: 1fr; }
  .category-grid article { border-right: 0; border-bottom: 1px solid var(--border); }
  .category-grid article:last-child { border-bottom: 0; }
  .process-grid { gap: 44px; }
  .process-card { padding: 48px 22px 26px; }
  .process-card p { min-height: 0; }
  .value-strip { grid-template-columns: 1fr 1fr; }
  .value-strip > div:nth-child(2) { border-right: 0; }
  .value-strip > div:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .service-card { padding: 28px 22px; }
  .service-card h3 { font-size: 1.4rem; }
  .fleet-stage { padding: 22px 20px 26px; }
  .fleet-image-wrap { height: 250px; }
  .fleet-image-wrap img { max-width: 94%; max-height: 235px; }
  .fleet-tabs { grid-template-columns: repeat(2,1fr); }
  .fleet-tab { min-height: 72px; font-size: .8rem; }
  .fleet-selector { padding: 24px 20px; }
  .included-card { padding: 28px 20px; }
  .included-card > h3 { font-size: 1.35rem; }
  .metric-card, .metric-card.compact { grid-template-columns: auto minmax(0, 1fr); padding: 16px 18px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-main { grid-column: auto; }
  .benefit-card, .benefit-main { min-height: 0; padding: 24px 22px; }
  .experience-badge { position: static; margin: -20px 0 28px; }
  .about-copy { padding: 30px 24px; }
  .about-grid { gap: 52px; }
  .about-cards article { padding: 22px; }
  .about-cards article > div { min-width: 0; }
  .faq-cta { display: block; }
  .faq-cta h3 { margin-top: 18px; }
  .faq-cta p { margin-bottom: 18px; }
  .faq-cta .btn { width: 100%; }
  .accordion { padding: 6px; border-radius: 16px; }
  .accordion-item button { gap: 12px; padding: 14px 12px; line-height: 1.35; }
  .accordion-item button span { min-width: 0; }
  .accordion-item button b { flex: 0 0 30px; }
  .accordion-panel p { padding: 0 12px 16px; }
  .contact-band-inner { flex-direction: column; align-items: flex-start; }
  .contact-band .btn { width: 100%; }
  .footer-card { padding: 30px 22px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-bottom > div { display: flex; flex-wrap: wrap; gap: 8px 14px; }
  .footer-bottom p { width: 100%; margin: 0; }
  .footer-bottom a { margin: 0; }
  .footer-bottom img {
    width: 100%; max-width: none; height: 190px;
    object-fit: cover; object-position: center 48%;
  }
  .form-grid { grid-template-columns: 1fr; }
  .modal { padding: 10px; }
  .modal-dialog { max-height: calc(100dvh - 20px); padding: 34px 18px 24px; border-radius: 16px; }
  .modal-dialog h2 { padding-right: 32px; }
  .modal-close { right: 10px; top: 8px; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 62px; height: 62px; }
}

@media (max-width: 420px) {
  .container { width: calc(100% - 22px); }
  .section { padding: 58px 0; }
  h1 { font-size: clamp(2.35rem, 12.5vw, 3rem); }
  h2 { font-size: clamp(1.85rem, 9vw, 2.35rem); }
  .brand img { width: 150px; }
  .hero { padding-top: 42px; }
  .hero .container { width: calc(100% - 22px); }
  .hero h1 { font-size: clamp(2.35rem, 12.5vw, 3rem); }
  .hero-trust { grid-template-columns: 1fr; }
  .hero-trust > div { display: flex; text-align: left; gap: 12px; }
  .mini-icon { margin: 0; flex: 0 0 40px; }
  .vehicle-stage { min-height: 225px; }
  .vehicle-stage img { width: 100%; }
  .active-fleet { padding: 12px 14px; }
  .category-grid { padding: 6px 12px; }
  .category-grid article { padding: 18px 8px; }
  .value-strip { grid-template-columns: 1fr; }
  .value-strip > div { border-right: 0; border-bottom: 1px solid var(--border); padding: 20px; }
  .value-strip > div:last-child { border-bottom: 0; }
  .fleet-image-wrap { height: 210px; }
  .fleet-image-wrap img { max-height: 195px; }
  .fleet-stage-head { font-size: .62rem; }
  .fleet-specs { grid-template-columns: 1fr; }
  .fleet-tabs { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; }
  .fleet-tab { min-height: 62px; }
  .fleet-selector { padding: 22px 15px; }
  .fleet-models { max-height: 280px; }
  .metric-card strong { font-size: 2.5rem; }
  .experience-badge { align-items: flex-start; padding: 14px 16px; }
  .experience-badge span br { display: none; }
  .about-cards article { gap: 13px; padding: 18px; }
  .footer-card { padding: 26px 18px; }
  .contact-column .btn { width: 100%; }
  .btn { padding-inline: 18px; }
}
