/* =============================================================================
   FLOTAS — CLEANED GLOBAL STYLESHEET
   -----------------------------------------------------------------------------
   WHAT CHANGED FROM YOUR ORIGINAL FILE (read this once, then ignore it):

   1. ONE BREAKPOINT SCALE for the whole site instead of 17 different values.
        --bp-sm   480px   (large phones)
        --bp-md   640px   (small tablets)
        --bp-lg   768px   (tablets)
        --bp-xl   1024px  (small desktop / laptop)
        --bp-2xl  1280px  (desktop)
        --bp-3xl  1440px  (large desktop)
        --bp-4xl  1680px  (very large desktop)
      Every section below switches layout at these same widths, so sections
      stay visually aligned with each other at any zoom level — that's what
      was producing the "cluttered at 100%" feeling: different blocks were
      re-flowing at different widths (830 vs 831 vs 900 vs 1025 vs 1050...).

   2. ONE TYPE SCALE and ONE SPACING SCALE, both as CSS variables, used
      everywhere instead of one-off numbers per section (25px here, 30px
      there, 32px somewhere else, for what is meant to be the same "large
      heading" role).

   3. Removed !important on h2 — nothing overrides it anymore because
      sizes now come from the shared scale, so there's nothing to fight.

   4. Fixed asymmetric/odd values that looked like bugs, e.g. the button's
      padding jumped from "19px 17px 15px" to "12px 30px 17px" — now it
      scales cleanly with the spacing scale at each breakpoint.

   5. Consolidated near-duplicate media queries (650/640/600, 830/831,
      1025/1050) into the shared breakpoints above.

   6. Left your actual layout decisions, colors, and component structure
      alone — this is a consistency pass, not a redesign.
============================================================================= */

@font-face {
  font-family: "Dream Avenue";
  src: url("./Dream Avenue Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* =============================================================================
   01. DESIGN TOKENS — change things here first
============================================================================= */

:root {

  /* ---- Brand colours -------------------------------------------------- */
  --flotas-blue: #022E4B;
  --flotas-maroon: #56071D;
  --flotas-cream: #FDF4E9;

  /* ---- Breakpoints (reference only — media queries hardcode the px
     values since CSS can't use var() in @media, but every query below
     uses one of these seven numbers) ------------------------------------ */
  --bp-sm: 480px;
  --bp-md: 640px;
  --bp-lg: 768px;
  --bp-xl: 1024px;
  --bp-2xl: 1280px;
  --bp-3xl: 1440px;
  --bp-4xl: 1680px;

  /* ---- Spacing scale (10px base, used for padding/margin/gap) ---------
     Bumped ~25% up from the original 8px-based scale to bake in the
     "80%-zoom" whitespace feel as the real 100% default, instead of
     relying on the visitor zooming out. Every section pulls from these
     variables, so this one change raises breathing room site-wide. ------*/
  --space-1: 10px;
  --space-2: 20px;
  --space-3: 30px;
  --space-4: 40px;
  --space-5: 52px;
  --space-6: 64px;
  --space-7: 84px;
  --space-8: 104px;
  --space-9: 126px;

  /* ---- Type scale ------------------------------------------------------
     Roles, not sections. Every heading/body/label in the site should map
     to one of these instead of inventing a new number. -------------------*/
  --fs-label: 10px;        /* eyebrows, small caps labels */
  --fs-caption: 12px;      /* fine print, timestamps */
  --fs-body-sm: 14px;      /* mobile body copy, buttons */
  --fs-body: 16px;         /* desktop body copy */
  --fs-h5: 18px;           /* small sub-headings, mobile */
  --fs-h5-lg: 22px;        /* small sub-headings, desktop */

  --fs-h3-sm: 20px;        /* section heading, mobile */
  --fs-h3-md: 20px;        /* section heading, tablet */
  --fs-h3-lg: 25px;        /* section heading, desktop — also used by
                               hero/query/footer large headings, which
                               previously each invented their own 30/32px */

  --fs-h2-sm: 20px;        /* section heading, mobile */
  --fs-h2-md: 25px;        /* section heading, tablet */
  --fs-h2-lg: 30px;        /* section heading, desktop*/
  --fs-h1-sm: 25px;        /* page heading, mobile */
  --fs-h1-md: 35px;        /* page heading, tablet */
  --fs-h1-lg: 40px;        /* page heading, desktop */
  --fs-display: 60px;      /* big stat numbers, small desktop */
  --fs-display-lg: 80px;   /* big stat numbers, large desktop */

  /* Kept for backwards compatibility with any inline references */
  --heading-h1-mobile: var(--fs-h1-sm);
  --heading-h1-tablet: var(--fs-h1-md);
  --heading-h1-desktop: var(--fs-h1-lg);
  --heading-h2-mobile: var(--fs-h2-sm);
  --heading-h2-tablet: var(--fs-h2-md);
  --heading-h2-desktop: var(--fs-h2-lg);
  --body-mobile: var(--fs-body-sm);
  --body-desktop: var(--fs-body);
}


/* =============================================================================
   02. GLOBAL RESET
============================================================================= */

* {
  box-sizing: border-box;
  border: 0 solid transparent;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  color: var(--flotas-blue);
}

body {
  margin: 0;
  font-family:
    "Epilogue",
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img, video {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

::selection {
  background: var(--flotas-blue);
  color: var(--flotas-cream);
}


/* =============================================================================
   03. CONTAINER
   -----------------------------------------------------------------------------
   This is the thing that gives you the "80% zoom" feel for real: a
   constrained max-width with generous side margins on large screens.
============================================================================= */

.site-container {
  width: calc(100% - var(--space-4));
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .site-container { max-width: 680px; }
}

@media (min-width: 1024px) {
  .site-container { max-width: 900px; }
}

@media (min-width: 1280px) {
  .site-container { max-width: 1080px; }
}

@media (min-width: 1440px) {
  .site-container { max-width: 1200px; }
}

@media (min-width: 1680px) {
  .site-container { max-width: 1400px; }
}

@media (max-width: 640px) {
  .site-container { width: calc(100% - var(--space-3)); }
}


/* =============================================================================
   04. GLOBAL TYPOGRAPHY
============================================================================= */

h1 {
  font-size: var(--fs-h1-sm);
  font-weight: 300;
  line-height: 1.6;
}

@media (min-width: 768px) {
  h1 { font-size: var(--fs-h1-md); line-height: 1.18; }
}

@media (min-width: 1280px) {
  h1 { font-size: var(--fs-h1-lg); }
}

h2 {
  font-size: var(--fs-h2-sm);
  line-height: 1.4;
}

@media (min-width: 768px) {
  h2 { font-size: var(--fs-h2-md); line-height: 1.25; }
}

@media (min-width: 1280px) {
  h2 { font-size: var(--fs-h2-lg); }
}

h5 {
  font-size: var(--fs-h5);
  line-height: 1.4;
}

@media (min-width: 1024px) {
  h5 { font-size: 20px; }
}

@media (min-width: 1280px) {
  h5 { font-size: var(--fs-h5-lg); }
}


/* =============================================================================
   05. BODY COPY / WYSIWYG
============================================================================= */

.wysywig {
  font-size: var(--fs-body-sm);
  line-height: 1.6;
}

.wysywig p {
  margin: 0;
}

.wysywig p:not(:last-child) {
  margin-bottom: var(--space-3);
}

@media (min-width: 1280px) {
  .wysywig { font-size: var(--fs-body); }
}


/* =============================================================================
   06. BUTTONS
   -----------------------------------------------------------------------------
   Fixed: padding used to jump from an asymmetric "19px 17px 15px" to an
   unrelated "12px 30px 17px" at 640px. Now it's a clean, symmetric value
   at every size, built from the spacing scale.
============================================================================= */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: 44px;
  padding: var(--space-2) var(--space-3);
  border-radius: 26px;
  font-size: var(--fs-body-sm);
  font-weight: 500;
  letter-spacing: .025em;
  line-height: 1.5;
  transition: all .5s ease;
}

@media (min-width: 640px) {
  .button {
    height: 49px;
    padding: var(--space-2) var(--space-4);
  }
}

@media (min-width: 768px) {
  .button { font-size: var(--fs-body); }
}

/* Blue */
.button.black {
  background: var(--flotas-blue);
  color: var(--flotas-cream);
}
.button.black:hover {
  background: var(--flotas-maroon);
}

/* White */
.button.white {
  background: var(--flotas-cream);
  border: 1px solid var(--flotas-blue);
  color: var(--flotas-blue);
}
.button.white:hover {
  background: var(--flotas-blue);
  border-color: var(--flotas-cream);
  color: var(--flotas-cream);
}

/* book-now */
.button.book-now {
  background: var(--flotas-cream);
  border: 1px solid var(--flotas-blue);
  color: var(--flotas-blue);
    padding: var(--space-2) var(--space-2);
}
.button.book-now:hover {
  background: var(--flotas-blue);
  border-color: var(--flotas-cream);
  color: var(--flotas-cream);
}


/* trial */

.button.trial {
   border: 1px solid rgba(253, 244, 233, .25);
  background: linear-gradient(
    105deg,
    #56071D 0%,
    #6F0925 32%,
    #123F5C 70%,
    #022E4B 100%
  );
  color: var(--flotas-cream);

  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  width: 100%;
  box-sizing: border-box;
}
.button.trial:hover {
   background: linear-gradient(
    105deg,

    #123F5C 0%,
    #123F5C 32%,
    #56071D 70%,
    #6F0925 100%);  
}


.flotas-hero-trial {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  width: 100%;
  box-sizing: border-box;
  padding: var(--space-2) 17px;
  margin: var(--space-1) 0;
  border: 1px solid rgba(253, 244, 233, .25);
  border-radius: 13px;
  background: linear-gradient(
    105deg,
    #56071D 0%,
    #6F0925 32%,
    #123F5C 70%,
    #022E4B 100%
  );
  color: var(--flotas-cream);
  text-decoration: none;
  cursor: pointer;
  transition:
    transform .3s ease,
    box-shadow .3s ease,
    border-color .3s ease,
    filter .3s ease;
} 

.flotas-hero-trial div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.flotas-hero-trial strong,
.flotas-hero-trial span {
  font-family: "Epilogue", ui-sans-serif, system-ui, sans-serif;
}

.flotas-hero-trial strong {
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--flotas-cream);
}

.flotas-hero-trial > div > span {
  display: block;
  font-size: 10px;
  line-height: 1.4;
  color: rgba(253, 244, 233, .72);
}

.flotas-hero-trial-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(253, 244, 233, .45);
  border-radius: 50%;
  background: rgba(253, 244, 233, .10);
  font-size: 15px;
  color: var(--flotas-cream);
  transition: transform .3s ease, background-color .3s ease;
}

.flotas-hero-trial:hover {
  transform: translateY(-2px);
  border-color: rgba(253, 244, 233, .45);
  box-shadow: 0 8px 22px rgba(2, 46, 75, .18);
  filter: brightness(1.06);
}

.flotas-hero-trial:hover .flotas-hero-trial-arrow {
  transform: rotate(45deg);
  background: rgba(253, 244, 233, .12);
}

.flotas-hero-trial:active {
  transform: translateY(0);
}

.flotas-hero-trial:focus-visible {
  outline: 2px solid var(--flotas-maroon);
  outline-offset: 3px;
}



/* =============================================================================
   07. UNDERLINE CTA
============================================================================= */

.underline-cta {
  position: relative;
  width: fit-content;
  font-size: var(--fs-body-sm);
  cursor: pointer;
}

.underline-cta::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: var(--flotas-cream);
  transition: all .5s ease;
}

.underline-cta:hover::before {
  opacity: 0;
  transform: scaleY(.5) scaleX(.9);
}

@media (min-width: 768px) {
  .underline-cta { font-size: var(--fs-body); }
}

@media (max-width: 640px) {
  .underline-cta::before { height: 1.5px; }
}


/* =============================================================================
   08. HEADER
============================================================================= */

.site-header {
  position: fixed;
  top: var(--space-4);
  left: 0;
  z-index: 9999;
  width: 100%;
}

.site-header .site-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: inline-block;
  color: var(--flotas-cream);
  font-family: "Dream Avenue", serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  font-weight: 500;
  transition: transform .44s ease-in-out;
}

.site-header.scrolling .site-logo {
  transform: translateY(-200%);
}

.main-navigation {
  display: flex;
  align-items: center;
}

/* .button-book-now {
  margin-right: var(--space-2);
} */

@media (min-width: 640px) {
  .button-book-now { margin-right: var(--space-6); }
}

.ham-container {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding-right: var(--space-3);
}


/* =============================================================================
   09. INTRO / LOTTIE MAP BLOCK
============================================================================= */

#map-block {
  background: var(--flotas-cream);
  color: var(--flotas-blue);
}

#map-block .site-container {
  padding-top: var(--space-7);
}

@media (min-width: 768px) {
  #map-block .site-container {
    padding-top: var(--space-8);
    padding-bottom: var(--space-8);
  }
}

#map-block .grid-container {
  display: grid;
  gap: var(--space-3);
}

@media (min-width: 768px) {
  #map-block .grid-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

#map-block .cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#map-block h2 {
  max-width: 771px;
  margin-bottom: var(--space-6);
  color: var(--flotas-blue);
  font-weight: 300;
  line-height: 1.25;
}

#map-block .wysywig {
  max-width: 571px;
  margin-bottom: var(--space-6);
  color: var(--flotas-blue);
}

#map-block .button {
  background: var(--flotas-blue);
  color: var(--flotas-cream);
}

#map-block .button:hover {
  background: var(--flotas-maroon);
}

.map-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 220px;
  object-fit: cover;
  margin: 0;
  padding: 0;
}

.map-container dotlottie-wc {
  display: block;
  width: 90%;
  height: 90%;
  max-width: 700px;
}

@media (min-width: 768px) {
  .map-container dotlottie-wc { width: 95%; height: 95%; }
}


/* =============================================================================
   10. COUNTERS
============================================================================= */

.counter-block {
  padding-top: var(--space-7);
  padding-bottom: var(--space-7);
  background: var(--flotas-blue);
  color: var(--flotas-cream);
}

.counter-block .site-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: var(--space-4);
  row-gap: var(--space-6);
}

.single-stat .stat {
  margin-bottom: var(--space-2);
  font-size: 34px;
  font-weight: 100;
  line-height: 1;
}

.single-stat .wysywig {
  max-width: 260px;
  font-size: var(--fs-body);
  line-height: 1.5;
}

@media (min-width: 480px) {
  .single-stat .stat { font-size: 38px; }
}

@media (min-width: 640px) {
  .counter-block {
    padding-top: var(--space-8);
    padding-bottom: var(--space-8);
  }
  .counter-block .site-container {
    column-gap: var(--space-5);
    row-gap: var(--space-7);
  }
  .single-stat .stat { font-size: 45px; }
}

@media (min-width: 768px) {
  .single-stat .stat { font-size: 52px; }
}

/* Desktop — switch to 4 columns */
@media (min-width: 1024px) {
  .counter-block .site-container {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 0;
    row-gap: 0;
  }
  .single-stat .stat { font-size: var(--fs-display); }
}

@media (min-width: 1280px) {
  .single-stat .stat { font-size: 70px; }
}

@media (min-width: 1440px) {
  .single-stat .stat { font-size: var(--fs-display-lg); }
}


/* =============================================================================
   11. TABS
============================================================================= */

#tabs-block {
  margin-top: -1px;
  margin-bottom: -1px;
  background: var(--flotas-cream);
  color: var(--flotas-blue);
}

#tabs-block .grid-container {
  display: grid;
  grid-template-columns: 1fr;
  text-align: center;
}

@media (min-width: 1024px) {
  #tabs-block .grid-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

#tabs-block .left-column {
  padding: var(--space-4);
  background: var(--flotas-cream);
}

@media (min-width: 768px) {
  #tabs-block .left-column { padding: var(--space-6); }
}

#tabs-block .buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  #tabs-block .buttons {
    flex-direction: row;
    gap: var(--space-3);
  }
}

#tabs-block .buttons > button {
  position: relative;
  flex-grow: 1;
  width: 100%;
  padding-bottom: var(--space-2);
  color: #909090;
  font-size: var(--fs-body-sm);
}

@media (min-width: 640px) {
  #tabs-block .buttons > button {
    max-width: 170px;
    color: inherit;
    font-size: var(--fs-body);
  }
}

#tabs-block .buttons > button::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 1px;
  background: var(--flotas-blue);
  opacity: .15;
}

#tabs-block .buttons > button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 0;
  height: 2px;
  background: var(--flotas-blue);
  transition: width .5s ease;
}

#tabs-block .buttons > button.active {
  color: var(--flotas-blue);
  pointer-events: none;
}

#tabs-block .buttons > button.active::after {
  width: 100%;
}

#tabs-block .cta-content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-bottom: var(--space-7);
  background: var(--flotas-cream);
}

@media (min-width: 1024px) {
  #tabs-block .cta-content {
    padding-top: 0;
    padding-bottom: 0;
  }
}

#tabs-block .cta-content .cta {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#tabs-block .cta-content .cta.active {
  display: flex;
}

#tabs-block .cta-content .cta h2 {
  margin-bottom: var(--space-6);
  font-weight: 300;
}

#tabs-block .cta-content .cta .wysywig {
  max-width: 455px;
  margin-bottom: var(--space-6);
}

#tabs-block .right-column {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#tabs-block .image-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

#tabs-block .image-container img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

#tabs-block .image-container.active img {
  opacity: 1;
}

/* Mobile — keep image compact */
@media (max-width: 1023px) {
  #tabs-block .right-column { height: 300px; }
}


/* =============================================================================
   12. CTA SECTION
============================================================================= */

#cta-block {
  padding-top: var(--space-7);
  padding-bottom: var(--space-7);
  background: var(--flotas-blue);
  color: var(--flotas-cream);
  font-size: var(--fs-h2-lg);
}

@media (min-width: 768px) {
  #cta-block {
    padding-top: var(--space-9);
    padding-bottom: var(--space-9);
  }
}

#cta-block .line {
  width: 100%;
  height: 1.5px;
  margin-top: var(--space-6);
  margin-bottom: var(--space-5);
  background: var(--flotas-cream);
}

@media (min-width: 768px) {
  #cta-block .line {
    margin-top: var(--space-7);
    margin-bottom: var(--space-6);
  }
}

#cta-block .wysywig {
  max-width: 600px;
  margin-bottom: var(--space-6);
}


/* =============================================================================
   13. LEGACY / SECTION FOOTER (simple text footer, if still used)
============================================================================= */

.site-footer {
  /* margin-top: -5px;
  padding-top: var(--space-6); */
  padding-bottom: 1px;
  background: var(--flotas-blue);
  color: var(--flotas-cream);
  font-size: var(--fs-h3-sm);
}

@media (min-width: 768px) {
  .site-footer { font-size: var(--fs-h3-md); }
}

.site-footer .quote {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--space-6);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-2);
  border-bottom: 1.5px solid;
}

/* @media (min-width: 768px) {
  .site-footer .quote { margin-bottom: var(--space-8); }
}

@media (min-width: 1024px) {
  .site-footer .quote { padding-bottom: var(--space-8); }
} */

.site-footer .quote a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-footer .quote h3 {
  margin-right: var(--space-2);
  font-weight: 300;
  font-size: var(--fs-h3-lg);
}

.site-footer .quote svg {
  width: 40px;
  height: 42px;
  border-radius: 100%;
  transition: all .44s ease;
}

@media (min-width: 768px) {
  .site-footer .quote svg { width: 54px; height: 56px; }
}

.site-footer .quote a:hover svg {
  background: var(--flotas-cream);
  transform: translateX(5px);
}

.site-footer .quote a:hover svg path {
  fill: var(--flotas-blue);
}

.site-footer .top-container {
  margin-bottom: var(--space-6);
}

.site-footer .bottom-container {
  display: grid;
  gap: var(--space-2);
}

@media (min-width: 640px) {
  .site-footer .bottom-container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.social-media {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.social-media span {
  font-size: var(--fs-body-sm);
  font-weight: 500;
}

@media (min-width: 1024px) {
  .social-media span { font-size: var(--fs-body); }
}

.single-media {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .15s;
}

.single-media:hover {
  opacity: .5;
}

.copyright-info {
  margin-top: var(--space-9);
  color: var(--flotas-cream);
  font-size: var(--fs-body-sm);
}

@media (min-width: 640px) {
  .copyright-info { margin-top: 0; }
}

@media (min-width: 1024px) {
  .copyright-info { font-size: var(--fs-body); }
}

@media (max-width: 640px) {
  .copyright-info span { display: none; }
}

@media (min-width: 640px) {
  .copyright-info br { display: none; }
}


/* =============================================================================
   14. SCROLL REVEAL
============================================================================= */

[data-aos] {
  opacity: 0;
  transition: opacity .6s ease, transform .6s ease;
}

[data-aos="fade-up"] {
  transform: translateY(40px);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translate(0, 0);
}


/* =============================================================================
   15. SERVICES
   -----------------------------------------------------------------------------
   Fixed: .service-title (25px/20px) and .service-description (16px/14px)
   now map onto --fs-h2-* / --fs-body-* instead of standalone numbers, so
   they scale in lockstep with every other heading/body pair on the site.
   Breakpoints collapsed from 900/650/380 to 1024/768/480.
============================================================================= */

.services {
  --services-bg: var(--flotas-cream);
  --services-text: var(--flotas-blue);
  --services-accent: var(--flotas-maroon);
  --services-border: rgba(0, 0, 0, .12);
  --services-width: 100%;
  --services-padding-y: var(--space-8);
  --services-gap: 8vw;
  --image-width: 32vw;
  --image-height: 40vw;

  position: relative;
  width: 100%;
  padding: var(--services-padding-y) var(--space-2);
  background: var(--services-bg);
  color: var(--services-text);
  overflow: hidden;
}

.services-grid {
  width: var(--services-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: var(--image-width) minmax(0, 1fr);
  gap: var(--services-gap);
  align-items: start;
  position: relative;
}

.services-media {
  position: relative;
  width: 100%;
  height: var(--image-height);
  overflow: hidden;
  background: #DEDBD5;
  transform: translate3d(0, 0, 0);
  transition: transform 1.2s cubic-bezier(.22, 1, .36, 1);
}

.services-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .2);
  pointer-events: none;
  z-index: 5;
}

.service-image {
  position: absolute;
  inset: -3%;
  width: 106%;
  height: 106%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.07) translate3d(0, 18px, 0);
  filter: saturate(.85);
  transition:
    opacity 1.75s cubic-bezier(.22, 1, .36, 1),
    transform 1.1s cubic-bezier(.16, 1, .3, 1),
    filter .8s ease;
}

.service-image.active {
  opacity: 1;
  transform: scale(1) translate3d(0, 0, 0);
  filter: saturate(1);
}

.media-number {
  position: absolute;
  left: var(--space-2);
  bottom: var(--space-2);
  z-index: 10;
  font-size: 9px;
  letter-spacing: .14em;
  color: white;
  mix-blend-mode: difference;
}

.services-list {
  width: 100%;
  padding: 0;
  margin: 0;
}

.service {
  position: relative;
  width: 100%;
  padding: var(--space-2) 0 var(--space-3);
  cursor: pointer;
  border-top: 1px solid var(--services-border);
  transition: padding .7s cubic-bezier(.22, 1, .36, 1);
}

.service:last-child {
  border-bottom: 1px solid var(--services-border);
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-2);
}

.service-number {
  font-size: 9px;
  letter-spacing: .13em;
  color: #AAA;
  transition: color .5s ease;
}

.service-title {
  display: inline-block;
  margin: 0;
  font-weight: 400;
  font-size: var(--fs-h2-md);
  letter-spacing: -.04em;
  color: inherit;
  transition:
    color .6s cubic-bezier(.22, 1, .36, 1),
    transform .7s cubic-bezier(.22, 1, .36, 1);
}

@media (max-width: 767px) {
  .service-title { font-size: var(--fs-h2-sm); }
}

.service-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  border: 1px solid rgba(0, 0, 0, .16);
  border-radius: 50%;
  font-size: 11px;
  color: #DEDBD5;
  opacity: .5;
  transform: rotate(-45deg);
  transition:
    opacity .5s ease,
    transform .7s cubic-bezier(.22, 1, .36, 1),
    background .5s ease,
    color .5s ease;
}

.service-description {
  max-width: 390px;
  margin-top: 2px;
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--flotas-blue);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(-7px);
  transition:
    opacity .5s ease,
    max-height .7s cubic-bezier(.22, 1, .36, 1),
    transform .7s cubic-bezier(.22, 1, .36, 1);
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: var(--space-2);
  opacity: 0;
  transform: translateY(-5px);
  transition:
    opacity .5s ease .05s,
    transform .6s cubic-bezier(.22, 1, .36, 1);
}

.tag {
  padding: 5px 9px;
  border: 1px solid rgba(0, 0, 0, .14);
  border-radius: 100px;
  font-size: var(--fs-body-sm);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--flotas-blue);
}

.service.active .service-title {
  color: var(--services-text);
  transform: translateX(8px);
}

.service.active .service-number {
  color: var(--services-accent);
}

.service.active .service-arrow {
  opacity: 1;
  transform: rotate(0deg) scale(1.04);
  background: var(--services-accent);
  color: white;
}

.service.active .service-description {
  opacity: 1;
  max-height: 170px;
  transform: translateY(0);
}

.service.active .service-tags {
  opacity: 1;
  transform: translateY(0);
}

.service::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 0;
  height: 1px;
  background: var(--services-accent);
  transition: width 1s cubic-bezier(.22, 1, .36, 1);
}

.service.active::before {
  width: 65px;
}

@media (pointer: fine) {
  .services-media:hover {
    transform: translate3d(0, -3px, 0);
  }
}

/* Tablet */
@media (max-width: 1023px) {
  .services {
    --services-width: 90%;
    --image-width: 34vw;
    --image-height: 55vw;
    --services-gap: 6vw;
    padding: var(--space-8) var(--space-3);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .services {
    --services-width: 100%;
    padding: var(--space-7) var(--space-2);
  }

  .services-grid {
    display: block;
  }

  .services-media {
    width: 100%;
    height: 62vw;
    min-height: 230px;
    max-height: 360px;
    margin-bottom: var(--space-4);
  }

  .service-description {
    max-width: 90%;
    font-size: var(--fs-body-sm);
    line-height: 1.6;
  }

  .service-arrow {
    width: 25px;
    height: 25px;
    font-size: 10px;
  }

  .service-tags {
    margin-top: var(--space-2);
  }
}

/* Very small phones */
@media (max-width: 480px) {
  .services {
    padding: var(--space-6) var(--space-2) var(--space-8);
  }

  .services-media {
    min-height: 210px;
    margin-bottom: var(--space-3);
  }
}


/* =============================================================================
   16. QUERY / CONTACT FORM
   -----------------------------------------------------------------------------
   Fixed: heading was 30px hardcoded (--query-heading-size); now points at
   --fs-h2-lg so it matches every other "large section heading" on the site.
   Breakpoints collapsed from 900/600/380 to 1024/640/480.
============================================================================= */

.flotas-query-section {
  --query-heading-size: var(--fs-h2-lg);
  --query-body-size: var(--fs-body);
  --query-label-size: var(--fs-body-sm);

  position: relative;
  /* width: 100%; */
  padding: var(--space-7) 0;
  overflow: hidden;
  color: var(--flotas-cream);
}

.flotas-query-background {
  position: absolute;
  inset: -25px;
  z-index: 0;
  overflow: hidden;
}

.flotas-query-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(8px);
  transform: scale(1.05);
}

.flotas-query-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(63, 3, 14, .116) 0%,
    rgba(2, 46, 75, .58) 55%,
    rgba(2, 46, 75, .48) 65%,
    rgba(2, 46, 75, .58) 78%,
    rgba(63, 3, 14, .116) 100%
  );
}

.flotas-query-container {
  position: relative;
  z-index: 2;
  width: min(1040px, calc(100% - 70px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: var(--space-9);
  align-items: start;
}

.flotas-query-copy {
  padding-top: var(--space-1);
}

.flotas-query-label {
  display: block;
  margin-bottom: var(--space-3);
  font-size: var(--query-label-size);
  line-height: 1;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--flotas-cream);
}

.flotas-query-copy h2 {
  margin: 0;
  max-width: 500px;
  font-size: var(--query-heading-size);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.04em;
  color: var(--flotas-cream);
}

.flotas-query-copy h2 span {
  display: block;
}

.flotas-query-copy p {
  max-width: 475px;
  margin: var(--space-4) 0 0;
  font-size: var(--query-body-size);
  line-height: 1.75;
  color: var(--flotas-cream);
}

.flotas-query-copy p + p {
  margin-top: var(--space-2);
}

.flotas-query-form-wrap,
.flotas-query-form {
  width: 100%;
}

.flotas-query-field {
  margin-bottom: var(--space-4);
}

.flotas-query-field label {
  display: block;
  margin-bottom: var(--space-1);
  font-size: var(--fs-label);
  line-height: 1;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--flotas-cream);
}

.flotas-query-field input,
.flotas-query-field textarea {
  display: block;
  width: 100%;
  padding: var(--space-2) 0;
  border: 0;
  border-bottom: 1px solid rgba(253, 244, 233, .55);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--flotas-cream);
  font-family: inherit;
  font-size: var(--fs-body);
  transition: border-color .25s ease;
}

.flotas-query-field textarea {
  min-height: 100px;
  resize: vertical;
}

.flotas-query-field input::placeholder,
.flotas-query-field textarea::placeholder {
  color: var(--flotas-cream);
  opacity: .7;
}

.flotas-query-field input:focus,
.flotas-query-field textarea:focus {
  border-bottom-color: var(--flotas-cream);
}

.flotas-query-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-3) 0;
  margin-top: var(--space-1);
  border: 0;
  border-bottom: 1px solid rgba(253, 244, 233, .8);
  background: transparent;
  color: var(--flotas-cream);
  font-family: inherit;
  font-size: var(--fs-caption);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: padding .25s ease, border-color .25s ease;
}

.flotas-query-submit:hover {
  padding-left: var(--space-1);
  padding-right: var(--space-1);
  border-color: var(--flotas-cream);
}

.flotas-query-submit-arrow {
  font-size: 21px;
  font-weight: 400;
  color: var(--flotas-cream);
}

.flotas-query-note {
  margin: var(--space-2) 0 0;
  font-size: var(--fs-label);
  line-height: 1.5;
  color: var(--flotas-cream);
}

/* Tablet */
@media (max-width: 1023px) {
  .flotas-query-container {
    grid-template-columns: 1fr;
    gap: var(--space-7);
  }
}

/* Mobile */
@media (max-width: 640px) {
  .flotas-query-container {
    width: calc(100% - 32px);
    gap: var(--space-6);
  }

  .flotas-query-copy p {
    font-size: var(--fs-body-sm);
  }
}

@media (max-width: 480px) {
  .flotas-query-container {
    width: calc(100% - 28px);
  }
}


/* =============================================================================
   17. HERO
   -----------------------------------------------------------------------------
   Fixed: heading was 32px standalone (--hero-heading-size); dashboard card
   heading was a separate 30px/25px/22px/20px scale (--dashboard-heading).
   Both now share the same --fs-h1-* progression as the rest of the site.
   Breakpoints collapsed from 1050/900/767/375 to 1024/768/480/375.
============================================================================= */

.flotas-hero {
  --hero-heading-size: var(--fs-h1-lg);
  --hero-body-size: var(--fs-body);
  --hero-label-size: var(--fs-label);

  position: relative;
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  isolation: isolate;
  background: var(--flotas-blue);
  color: var(--flotas-cream);
}

.flotas-hero-background,
.flotas-hero-video-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -5;
}

.flotas-hero-background-image,
.flotas-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.flotas-hero-video {
  opacity: 0;
  transition: opacity 1.2s ease;
}

.flotas-hero-video.is-loaded {
  opacity: 1;
}

.flotas-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: linear-gradient(
    90deg,
    rgba(98, 6, 32, .15) 0%,
    rgba(63, 3, 14, .30) 25%,
    rgba(2, 46, 75, .30) 55%,
    rgba(2, 46, 75, .40) 78%,
    rgba(2, 46, 75, .50) 100%
  );
  backdrop-filter: blur(10px) saturate(100%);
  -webkit-backdrop-filter: blur(10px) saturate(100%);
  pointer-events: none;
}

.flotas-hero-inner {
  width: min(calc(100% - 140px), 1240px);
  margin: 0 auto;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(500px, 1.35fr) minmax(380px, .65fr);
  align-items: center;
  gap: clamp(50px, 5vw, 120px);
  padding: var(--space-9) 0 var(--space-8);
}

.flotas-hero-dashboard {
  position: relative;
  width: min(100%, 520px);
  justify-self: start;
  transform: translateY(45px) rotate(-1deg);
  opacity: 0;
  animation: flotasValueFloat 6s ease-in-out infinite;
  transition:
    opacity 1s cubic-bezier(.16, 1, .3, 1),
    transform 1.2s cubic-bezier(.16, 1, .3, 1);
}

.flotas-hero-dashboard.is-visible {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

@keyframes flotasValueFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}

.flotas-hero-content {
  max-width: 700px;
  opacity: 0;
  transform: translateX(35px);
  transition:
    opacity 1s cubic-bezier(.16, 1, .3, 1) .2s,
    transform 1s cubic-bezier(.16, 1, .3, 1) .2s;
}

.flotas-hero-content.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.flotas-hero-eyebrow {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-1) 1.5;
  margin-bottom: var(--space-3);
  font-size: var(--hero-label-size);
  letter-spacing: .16em;
  color: var(--flotas-cream);
}

.flotas-hero-eyebrow-line {
  width: 34px;
  height: 1px;
  background: var(--flotas-cream);
}

.flotas-hero-heading {
  margin: 0;
  max-width: 760px;
  font-size: var(--hero-heading-size);
  line-height: .98;
  letter-spacing: -.035em;
  font-weight: 400;
  color: var(--flotas-cream);
}

.flotas-hero-heading span {
  color: var(--flotas-cream);
}

.flotas-hero-heading em {
  display: block;
  margin-top: var(--space-2);
  font-size: .54em;
  line-height: 1.12;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -.025em;
  color: var(--flotas-cream);
}

.flotas-hero-description {
  max-width: 560px;
  margin: var(--space-3) 0 0;
  font-size: var(--hero-body-size);
  line-height: 1.7;
  color: var(--flotas-cream);
}

.flotas-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.flotas-hero-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  min-width: 30px;
  flex: 0 0 30px;
  border-radius: 50%;
  background: var(--flotas-maroon);
  color: var(--flotas-cream);
  font-size: 15px;
  line-height: 1;
  transition: transform .3s ease;
}

.flotas-hero-secondary-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 15px;
  color: var(--flotas-cream);
  font-size: var(--fs-caption);
  transition: color .25s ease, transform .25s ease;
}

.flotas-hero-secondary-button:hover {
  color: var(--flotas-cream);
  transform: translateX(3px);
}

.flotas-hero-secondary-button span {
  transition: transform .25s ease;
}

.flotas-hero-secondary-button:hover span {
  transform: translateY(3px);
}

.flotas-hero-trust {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: var(--space-4);
  max-width: 500px;
  font-size: var(--fs-label);
  line-height: 1.5;
  color: var(--flotas-cream);
}

.flotas-hero-trust-dot {
  flex: 0 0 auto;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--flotas-cream);
}

.flotas-hero-scroll {
  position: absolute;
  bottom: var(--space-3);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--flotas-cream);
  z-index: 5;
}

.flotas-hero-scroll-line {
  width: 35px;
  height: 1px;
  background: var(--flotas-cream);
}

/* Tablet (≤1023px) */
@media (max-width: 1023px) {
  .flotas-hero-inner {
    width: min(calc(100% - 80px), 820px);
    gap: var(--space-6);
    padding: var(--space-9) 0 var(--space-8);
  }
  .flotas-hero-dashboard {
    width: min(100%, 560px);
    justify-self: center;
    order: 2;
  }
  .flotas-hero-content {
    order: 1;
    max-width: 800px;
    text-align: left;
  }
  .flotas-hero-description {
    max-width: 650px;
  }
}

/* Tablet 768–1023 — keep two columns */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .flotas-hero-inner {
    display: grid !important;
    grid-template-columns: .9fr 1.1fr !important;
    align-items: center;
    gap: var(--space-6);
  }
  .flotas-hero-content { order: 1; min-width: 0; }
  .flotas-hero-dashboard { order: 2; min-width: 0; width: 100%; }
}

/* Mobile (≤767px) */
@media (max-width: 767px) {
  .flotas-hero {
    align-items: flex-start;
    --hero-heading-size: var(--fs-h1-sm);
    --hero-body-size: var(--fs-body-sm);
    --hero-label-size: 11px;
  }

  .flotas-hero-inner {
    width: calc(100% - 34px);
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch;
    gap: var(--space-6);
    padding: 115px 0 var(--space-8);
  }

  .flotas-hero-content {
    order: 1;
    width: 100%;
    position: relative;
    z-index: 1;
    padding: var(--space-7) 0 0;
    justify-content: center;
    gap: 0;
  }

  .flotas-hero-content::before {
    content: "";
    position: absolute;
    inset: -120px -32px;
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(
      130% 100% at 50% 25%,
      rgba(2, 25, 40, .42) 0%,
      rgba(2, 25, 40, .20) 45%,
      rgba(2, 25, 40, 0) 78%
    );
  }

  .flotas-hero-dashboard {
    order: 2;
    width: 100%;
  }

  .flotas-hero-eyebrow {
    margin-bottom: var(--space-2);
    padding-left: var(--space-2);
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    opacity: .75;
  }

  .flotas-hero-eyebrow::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 2px;
    background: var(--flotas-cream);
    opacity: .8;
  }

  .flotas-hero-heading {
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .25);
  }

  .flotas-hero-heading em {
    margin-top: var(--space-1);
    font-size: .55em;
    opacity: .75;
  }

  .flotas-hero-description {
    margin-top: var(--space-2);
    line-height: 1.65;
    opacity: .85;
  }

  .flotas-hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: var(--space-2);
    margin-top: var(--space-4);
  }

  .flotas-hero-actions a,
  .flotas-hero-actions button {
    width: 100%;
    text-align: center;
    padding: var(--space-2) var(--space-3);
    font-size: var(--fs-body-sm);
    font-weight: 600;
    letter-spacing: .01em;
    border-radius: 26px;
    box-shadow:
      0 8px 24px rgba(0, 0, 0, .18),
      0 1px 0 rgba(255, 255, 255, .4) inset;
    transition: transform .15s ease, box-shadow .15s ease;
  }

  .flotas-hero-actions a:active,
  .flotas-hero-actions button:active {
    transform: scale(.98);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .18);
  }

  .flotas-hero-secondary-button,
  .flotas-hero-trust,
  .flotas-hero-scroll {
    display: none;
  }
}

/* Small phones (≤375px) */
@media screen and (max-width: 375px) {
  .flotas-hero-inner { gap: var(--space-5); }
}

@media (prefers-reduced-motion: reduce) {
  .flotas-hero *,
  .flotas-hero *::before,
  .flotas-hero *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}


/* =============================================================================
   18. HERO DASHBOARD (value card)
============================================================================= */

.flotas-hero-value-card {
  --dashboard-heading: var(--fs-h1-sm);
  --dashboard-body: var(--fs-body-sm);
  --dashboard-small: 9px;
  --dashboard-label: 9px;

  position: relative;
  width: 100%;
  max-width: 520px;
  padding: var(--space-3);
  box-sizing: border-box;
  border: 1px solid rgba(253, 244, 233, .25);
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(86, 7, 29, .30) 0%,
    rgba(63, 3, 14, .18) 28%,
    rgba(2, 46, 75, .35) 70%,
    rgba(2, 46, 75, .70) 100%
  );
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, .30),
    inset 0 1px 0 rgba(253, 244, 233, .20);
  overflow: hidden;
}

.flotas-hero-value-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  pointer-events: none;
  background: radial-gradient(
    circle at 35% 25%,
    rgba(253, 244, 233, .08) 0%,
    rgba(253, 244, 233, .025) 40%,
    transparent 70%
  );
}

.flotas-hero-value-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: var(--space-2);
  border-bottom: 1px solid rgba(253, 244, 233, .20);
}

.flotas-hero-value-top .flotas-hero-dashboard-title {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--flotas-cream);
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: .04em;
}

.flotas-hero-value-card .flotas-hero-status-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--flotas-blue);
  box-shadow: 0 0 0 4px rgba(2, 46, 75, .22), 0 0 14px rgba(14, 90, 140, .12);
}

.flotas-hero-value-top .flotas-hero-dashboard-time {
  font-size: 8px;
  letter-spacing: .15em;
  color: var(--flotas-cream);
  opacity: .75;
}

.flotas-hero-value-main {
  position: relative;
  padding-top: var(--space-3);
}

.flotas-hero-value-main .flotas-hero-small-label {
  display: block;
  margin-bottom: var(--space-2);
  font-size: var(--dashboard-label);
  line-height: 1;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--flotas-cream);
}

.flotas-hero-value-main h3 {
  margin: 0;
  max-width: 430px;
  font-size: var(--dashboard-heading);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -.035em;
  color: var(--flotas-cream);
  margin-bottom: var(--space-2);

}

.flotas-hero-value-main > p {
  max-width: 410px;
  margin-bottom: var(--space-2);
  font-size: var(--dashboard-body);
  line-height: 1.65;
  color: var(--flotas-cream);
}

.pointline {
  margin-bottom: var(--space-2);
    justify-content: center;
      align-items: center;



}

.flotas-hero-value-point {
  min-height: 76px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: left;
  gap: var(--space-2);
  padding: var(--space-2);
  
}


.tick {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--flotas-cream);
  color: var(--flotas-blue);
  border: .5px solid var(--flotas-cream);
  font-size: 13px;
  font-weight: 650;
}

.flotas-hero-value-point > span:last-child {
  display: block;
  font-size: var(--fs-body-sm);
  line-height: 1.35;
  color: var(--flotas-cream);
}


.flotas-hero-value-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: var(--space-2);
  padding: var(--space-2) 17px;
  border-radius: 11px;
  background: linear-gradient(
    100deg,
    #FDF4E9 0%,
    #FFFAF2 45%,
    #F4D9DF 100%
  );
  color: var(--flotas-blue);
  text-decoration: none;
  font-size: var(--fs-body-sm);
  font-weight: 600;
  transition: transform .3s ease, box-shadow .3s ease;
}

.flotas-hero-value-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(253, 244, 233, .20);
}

.flotas-hero-value-button span:first-child {
  color: var(--flotas-blue);
}

.flotas-hero-value-button span:last-child {
  font-size: var(--fs-body-sm);
  font-weight: 400;
  color: var(--flotas-maroon);
}

.flotas-hero-value-note {
  display: block;
  margin-top: var(--space-2);
  font-size: var(--dashboard-small);
  line-height: 1.5;
  text-align: center;
  color: var(--flotas-cream);
}

@media (max-width: 1023px) {
  .flotas-hero-value-card { max-width: 500px; }
}

@media (max-width: 640px) {
  .flotas-hero-value-card {
    padding: var(--space-2);
    border-radius: 18px;
  }
  /* Scale the heading DOWN on small screens, never up. */
  .flotas-hero-value-main h3 { font-size: var(--fs-h2-lg); }
  .flotas-hero-value-main > p { font-size: var(--fs-caption); }
  .flotas-hero-value-points {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .flotas-hero-value-point {
    min-height: auto;
    flex-direction: row;
    align-items: center;
    gap: var(--space-2);
    padding: 11px;
  }
  .flotas-hero-value-point > span:last-child { font-size: var(--fs-body-sm); }
  .flotas-hero-trial {
    padding: var(--space-2);
    gap: var(--space-2);
    border-radius: 11px;
  }
  .flotas-hero-trial strong { font-size: 11px; }
  .flotas-hero-trial > div > span { font-size: 9px; }
  .flotas-hero-trial-arrow { width: 27px; height: 27px; font-size: 12px; }
}

@media (max-width: 480px) {
  .flotas-hero-value-card { padding: var(--space-2); }
  .flotas-hero-value-main h3 { font-size: var(--fs-h2-md); }
}


/* =============================================================================
   19. ONBOARDING / DISPATCH PROCESS
   -----------------------------------------------------------------------------
   Breakpoints collapsed from 900/700/480 to 1024/768/480 (final breakpoint
   kept, as it genuinely needed a tighter grid gap for stacked icons).
============================================================================= */
/* =============================================================================
   ONBOARDING / DISPATCH PROCESS — flat card treatment
   -----------------------------------------------------------------------------
   No decorative circles, no divider lines, no gradients. Three equal-height
   cards on a solid navy field, with the section's outer padding doing the
   work of "breathing room" rather than tall cards.
============================================================================= */

.onboarding {
  position: relative;
  background: var(--flotas-blue);
  color: var(--flotas-cream);
  padding-top: var(--space-7);
}

.onboarding-header {
  width: 100%;
  margin: 0 0 var(--space-5);
  text-align: center;
}

.onboarding-header p {
  margin: var(--space-3) auto 0;
  max-width: 500px;
  line-height: 1.7;
}

.dispatch-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
  width: 100%;
  margin: 0;
  align-items: stretch;
}

/* Legacy elements from a previous version of this component — kept hidden
   rather than removed in case markup still references them. */
.dispatch-route,
.dispatch-marker {
  display: none;
}

/* -------------------------------------------------------------------------
   CARD
------------------------------------------------------------------------- */
.dispatch-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: var(--space-2);
  text-align: left;
  border: 1px solid rgba(253, 244, 233, .12);
  border-radius: 22px;
  background: #FDF4E9;
  color: #022E4B !important;
  transition: border-color .3s ease, background-color .3s ease;
}

/* .dispatch-step:hover {
  border-color: rgba(253, 244, 233, .28);
  background: rgba(245, 243, 239, 0.07);
} */

.dispatch-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  border: 1px solid var(--flotas-blue);
  margin-bottom: var(--space-2);
  background: var(--flotas-cream);
  color: var(--flotas-blue);
}

.dispatch-icon svg {
  display: block;
  width: 22px;
  height: 22px;
}

.dispatch-copy {
  width: 100%;
  margin: 0;
  text-align: left;
}

.dispatch-label {
  display: block;
  margin: 0 0 var(--space-2);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  opacity: .5;
}

.dispatch-copy h3 {
  margin: 0 0 var(--space-2);
  font-size: var(--fs-h5);
  line-height: 1.3;
  letter-spacing: -.02em;
  font-weight: 500;
}

.dispatch-copy p {
  margin: 0;
  max-width: none;
  font-size: var(--fs-body-sm);
  line-height: 1.65;
}

/* -------------------------------------------------------------------------
   RESULT STRIP
------------------------------------------------------------------------- */
.dispatch-result {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: var(--space-2);
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(253, 244, 233, .12);
}

.result-line {
  display: none;
}

.result-content {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-body-sm);
  white-space: nowrap;
  opacity: .7;
}

.result-time {
  font-weight: 600;
  opacity: 1;
}

.result-arrow {
  opacity: .45;
}

.result-content strong {
  font-weight: 600;
  color: var(--flotas-cream);
}

/* -------------------------------------------------------------------------
   TABLET (≤767px) — 2-up before stacking fully
------------------------------------------------------------------------- */
@media (max-width: 1023px) {
  .dispatch-process {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }
}



/* =============================================================================
   20. FOOTER
   -----------------------------------------------------------------------------
   Fixed: h2 was 30px hardcoded in three places; now uses --fs-h2-lg so it
   matches the hero/query/cta headings exactly. Breakpoints collapsed from
   900/600/380 to 1024/640/480.
============================================================================= */

.flotas-footer {
  width: 100%;
  background: var(--flotas-cream);
  color: var(--flotas-blue);
  padding: var(--space-8) 0 var(--space-4);
  overflow: hidden;
}

.flotas-footer-container {
  width: min(1040px, calc(100% - 70px));
  margin: 0 auto;
}

.flotas-footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-9);
}

.flotas-footer-intro h2 {
  max-width: 520px;
  margin: 0;
  font-size: var(--fs-h2-lg);
  line-height: .98;
  font-weight: 400;
  letter-spacing: -.055em;
  color: var(--flotas-blue);
}

.flotas-footer-intro h2 span {
  display: block;
}

.flotas-footer-intro p {
  max-width: 470px;
  margin: var(--space-4) 0 0;
  font-size: var(--fs-body);
  line-height: 1.75;
  color: var(--flotas-blue);
}

.flotas-footer-contact {
  display: flex;
  flex-direction: column;
}

.flotas-footer-contact-item {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) 0;
  border-bottom: 1px solid rgba(2, 46, 75, .16);
  color: var(--flotas-blue);
  text-decoration: none;
  transition: padding .25s ease, border-color .25s ease;
}

.flotas-footer-contact-item:first-of-type {
  border-top: 1px solid rgba(2, 46, 75, .16);
}

.flotas-footer-contact-item:hover {
  padding-left: var(--space-1);
  border-color: var(--flotas-maroon);
}

.flotas-footer-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(86, 7, 29, .45);
  border-radius: 50%;
  color: var(--flotas-maroon);
}

.flotas-footer-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flotas-footer-contact-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.flotas-footer-contact-text small {
  font-size: var(--fs-caption);
  line-height: 1;
  letter-spacing: .14em;
  color: var(--flotas-blue);
  opacity: .48;
}

.flotas-footer-contact-text strong {
  display: block;
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: var(--fs-body);
  line-height: 1.2;
  font-weight: 400;
  color: var(--flotas-blue);
}

.flotas-footer-arrow {
  margin-left: auto;
  color: var(--flotas-maroon);
  font-size: 18px;
  line-height: 1;
  opacity: .55;
  transition: transform .25s ease, opacity .25s ease;
}

.flotas-footer-contact-item:hover .flotas-footer-arrow {
  transform: translate(3px, -3px);
  opacity: 1;
}

.flotas-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-3);
  border-top: 1px solid var(--flotas-blue);
  font-size: var(--fs-body-sm);
  line-height: 1;
  letter-spacing: .05em;
  color: var(--flotas-blue);
}

.flotas-footer-bottom-left,
.flotas-footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 9px;
}

/* Tablet */
@media (max-width: 1023px) {
  .flotas-footer-top {
    grid-template-columns: 1fr;
    gap: var(--space-7);
  }
  .flotas-footer-intro h2 { max-width: 600px; }
  .flotas-footer-intro p { max-width: 600px; }
}

/* Mobile */
@media (max-width: 640px) {
  .flotas-footer {
    padding: var(--space-7) 0 var(--space-3);
  }

  .flotas-footer-container {
    width: calc(100% - 32px);
  }

  .flotas-footer-top {
    gap: var(--space-6);
  }

  .flotas-footer-intro h2 {
    font-size: var(--fs-h2-lg);
    line-height: 1;
  }

  .flotas-footer-intro p {
    margin-top: var(--space-3);
    font-size: 13px;
    line-height: 1.7;
  }

  .flotas-footer-contact-item {
    min-height: 75px;
  }

  .flotas-footer-contact-text strong {
    max-width: 210px;
    font-size: var(--fs-caption);
  }

  .flotas-footer-bottom {
    align-items: center;
    flex-direction: column;
    gap: var(--space-2);
    padding-top: var(--space-3);
    font-size: var(--fs-body-sm);
    line-height: 1.5;
    letter-spacing: .13em;
  }

  .flotas-footer-bottom-left,
  .flotas-footer-bottom-right {
    flex-wrap: wrap;
    gap: 8px;
  }
}

/* Very small phones */
@media (max-width: 480px) {
  .flotas-footer-intro h2 {
    font-size: var(--fs-h2-lg);
  }
  .flotas-footer-contact-text strong {
    max-width: 175px;
  }
}


/* =============================================================================
   21. GLOBAL — REDUCED MOTION (kept at the very end intentionally, so it
       always wins as the final override, the same as your original file)
============================================================================= */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }
  * {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}
