.container {
  margin-inline-start: auto;
  margin-inline-end: auto;
  width: 87.5%;
  max-width: 1260px;
}

section {
  padding-top: 128px;
  padding-bottom: 128px;
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 734px) {
  section {
    padding-top: 96px;
    padding-bottom: 96px;
    padding-left: 0;
    padding-right: 0;
  }
}



/* Hero Section */
.hero {
  padding-top: 5rem;
  padding-bottom: 5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: center;
}

/* LEFT COLUMN */
.hero-left {
  text-align: left;
}


.hero-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin: 0 0 2rem;
  display: inline-block;
  /* shrink to content */
  position: relative;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.5;
  color: #555;
  max-width: 600px;
  margin: 0 0 2rem;
}

.hero-cta {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  background: #22b7f2;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}

.hero-cta:hover {
  background: #1a9cd8;
}

.hero-right {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  width: 90%;
  height: auto;
  max-width: 90%;
  margin-inline-start: auto;
  object-fit: contain;
  border-radius: 20px;
}


.rotate-container {
  display: inline-block;
  position: relative;
  height: 1.1em;
  overflow: hidden;
  vertical-align: bottom;
}


.rotate {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  animation: rotateWords 24s infinite;
}


.sizer {
  visibility: hidden;
  white-space: nowrap;
}


.rotate:nth-child(2) {
  animation-delay: 0s;
}

.rotate:nth-child(3) {
  animation-delay: 4s;
}

.rotate:nth-child(4) {
  animation-delay: 8s;
}

.rotate:nth-child(5) {
  animation-delay: 12s;
}

.rotate:nth-child(6) {
  animation-delay: 16s;
}

.rotate:nth-child(7) {
  animation-delay: 20s;
}

@keyframes rotateWords {

  /* start hidden below */
  0%,
  3% {
    transform: translateY(100%);
    opacity: 0;
  }

  /* slide up into place */
  3%,
  6% {
    transform: translateY(0);
    opacity: 1;
  }

  6%,
  16% {
    transform: translateY(0);
    opacity: 1;
  }

  /* slide up out of view */
  16%,
  19% {
    transform: translateY(-100%);
    opacity: 0;
  }

  /* remain hidden until next loop */
  19%,
  100% {
    transform: translateY(-100%);
    opacity: 0;
  }
}



@media (max-width: 734px) {

  .hero {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    min-height: calc(2.5rem * 1.2);
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-image {
    max-width: 90%;
    margin-inline-start: auto;
    margin-inline-end: auto;
  }
}




/* Stacks */
.hStack {
  display: flex;
  flex-direction: row;
  /* Align children horizontally */
  align-items: center;
  /* Align children vertically in the center */
}

.vStack {
  display: flex;
  flex-direction: column;
  /* Align children vertically */
  align-items: flex-start;
  /* Align children to the start horizontally */
  justify-content: center;
  /* Align children in the center vertically */
}

.navBar {
  width: 100%;
  height: 100%;
  max-width: 80rem;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
}

.logo {
  height: 4rem;
  width: auto;
}

/* Navigation Styles */
.navigation {
  display: flex;
  flex: 1;
  position: static;
  float: right;
  margin-left: 1.5rem;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

.nav-link {
  display: flex;
  align-items: center;
  font-family: 'Gotham Bold';
  text-decoration: none;
  color: rgb(124, 124, 124);
  padding: 0.75rem 0rem 0.75rem 1rem;
  font-size: 1rem;
  transition: color 0.3s ease;
  align-items: center;
}

.nav-link-home {
  padding-right: 1rem;
  color: black;
}

.nav-link svg {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 5px;
  margin-right: 1rem;
}

.nav-item {
  position: relative;
}

.nav-link:hover {
  color: var(--accent-color);
  /* Highlight color */
}

.navbar-spacer {
  height: 5rem;
  position: relative;
}

.nav-buttons {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  column-gap: .75rem;
  row-gap: .75rem;
  align-items: center;
  display: flex;
}

.get-started-button {
  column-gap: .1rem;
  padding-left: 1.5rem;
  padding-right: 1rem;
  text-align: center;
  white-space: nowrap;
  border-radius: 8rem;
  padding: .625rem 1.125rem;
  font-size: 1rem;
  line-height: 1.5;
  text-decoration: none;
  background-color: black;
  color: white;
  display: flex;
  transition: all .3s;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}

.nav-dropdown {
  width: 20rem;
  border: 1px solid rgb(255, 255, 255);
  background-color: rgb(255, 255, 255);
  border-radius: .75rem;
  padding: .75rem;
  display: block;
  position: absolute;
  top: 100%;
  /* Positions the dropdown right below the parent */
  right: -100%;
  box-shadow: 0 12px 16px 3px rgba(0, 0, 0, .08), 0 4px 6px -2px rgba(16, 24, 40, .03);
  box-sizing: border-box;
  z-index: 10000;
}

.nav-dropdown-list {
  column-gap: 0px;
  row-gap: .5rem;
  grid-template-rows: max-content;
  grid-template-columns: 1fr;
  grid-auto-rows: max-content;
  grid-auto-columns: 1fr;
  display: grid;
}

.nav-dropdown-item {
  column-gap: 1rem;
  row-gap: 0px;
  border-radius: .5rem;
  grid-template-rows: auto;
  grid-template-columns: max-content 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  padding: .75rem;
  text-decoration: none;
  transition: all .3s;
  display: grid;
  color: black;
}

/* Hamburger Menu Styles */
.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  position: absolute;
  top: 1rem;
  /* Adjust as needed */
  right: 1rem;
  /* Adjust as needed */
}

.hamburger {
  width: 30px;
  height: 3px;
  background-color: #333;
  position: relative;
  transform: translateY(-50%);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #333;
  left: 0;
  transition: transform 0.3s ease;
}

.hamburger::before {
  top: -10px;
}

.hamburger::after {
  top: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .navigation {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 60px;
    /* Below the header */
    left: 0;
    z-index: 1000;
    /* Ensure it's above other content */
  }



  .nav-expanded {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
  }

  .nav-item {
    margin-left: 0;
    margin-top: 5px;
  }

  .nav-link {
    padding: 10px;
    text-align: left;
  }

  /* Hamburger Animation */
  .nav-expanded .hamburger {
    background: transparent;
  }

  .nav-expanded .hamburger::before {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-expanded .hamburger::after {
    transform: rotate(-45deg) translate(7px, -8px);
  }
}

.header {
  background-color: white;
  display: flex;
  position: fixed;
  align-items: center;
  min-height: 5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  border-bottom: 1px solid rgba(242, 244, 247);
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar-spacer {
  height: 5rem;
  position: relative;
}


.bikeIcon {
  margin: 0;
  padding: 0;
}

.road {
  margin: 0;
  padding: 0;
}



#unrivalled-exposure h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 36px;
}

.roadInfoText {
  display: flex;
  justify-content: space-between;
  margin: 0 20px;
}

.roadInfoText h1 {
  font-size: clamp(1.2rem, 5vw, 2rem);
  color: black;
}

.roadInfoText h3 {
  font-size: clamp(0.7rem, 3vw, 1rem);
  color: #86868b;
}

.roadInfoText div {
  opacity: 0;
  margin: 0px 5px;
}


/* Footer */
.footer {
  width: 87.5%;
  max-width: 80rem;
  align-items: center;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.footer-logo {
  height: 100px;
}

.footer-bottom-banner {
  color: rgb(102, 112, 133);
  font-size: 14px;
  font-weight: 500;
  justify-content: space-between;
}

.footer-terms-links a {
  color: rgb(102, 112, 133);
  text-decoration: none;
}

.footer-social-links {
  display: flex;
  gap: 20px;
}

.footer-social-links a {
  color: rgb(152, 162, 179);
  text-decoration: none;
}

.footer-link-list {
  align-items: flex-start;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  font-size: 17px;
  font-weight: 500;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  align-items: flex-start;
  justify-items: start;
}

.footer-link-list-title {
  color: black;
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 550;
}

.footer-link-list-body {
  text-decoration: none;
  color: rgb(124, 124, 124);
  font-size: 16px;
  line-height: 24px;
  padding: 8px 0px 8px 0px;
}

.footer-site-links {
  column-gap: 2rem;
  row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  justify-items: start;
  display: grid;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .footer {
    width: 87.5%;
    margin-inline-start: auto;
    margin-inline-end: auto;
  }

  /* TOP LINKS: one column, left-aligned */
  .footer-site-links {
    display: grid !important;
    grid-template-columns: 1fr !important;
    row-gap: 2rem;
    justify-items: start;
    text-align: left;
  }

  /* Logo above links, flush left */
  .footer-logo {
    height: 80px;
    margin: 0 0 1rem 0;
  }

  /* EACH LINK GROUP: left-aligned */
  .footer-link-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .footer-link-list-title,
  .footer-link-list-body {
    text-align: left;
    width: 100%;
    margin: 0;
  }

  /* BOTTOM BANNER: vertical stack, left-aligned */
  .footer-bottom-banner {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 2rem;
  }
  .footer-bottom-banner > * {
    width: 100%;
    text-align: left;
    margin: 0;
  }

  /* Terms and social links flush left */
  .footer-terms-links,
  .footer-social-links {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
  }
}


/* Dividers */
.dividerHorizontal {
  height: 0.5px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

.dividerVertical {
  width: 0.5px;
  height: calc(100%-10px);
  background-color: rgba(0, 0, 0, 0.2);
}

.getstarted-text {
  font-size: 62px;
}


/*Triple Approach*/
#triple-approach-desktop { display: block; }
  #triple-approach-mobile  { 
    display: none; 
    
  }

  /* ON SMALL SCREENS, HIDE DESKTOP & SHOW A VERTICAL STACK */
  @media screen and (max-width: 767px) {
    #triple-approach-desktop { display: none !important; }
    #triple-approach-mobile  { display: flex !important; flex-direction: column; align-items: center; 
      width: 87.5%;
      margin-inline-start: auto;
      margin-inline-end: auto;}

    /* Mobile Title */
    #triple-approach-mobile .triple-approach-title {
      width: 87.5%;
      text-align: center;
      margin-bottom: 80px;
      padding: 0px 32px 0px 32px;
    }

    /* Each Mobile Item = Image + Text, Stacked */
    #triple-approach-mobile .triple-approach-mobile-item {
      margin-inline-start: auto;
      margin-inline-end: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .mobile-image {
      width: 100%;
      height: auto;
      border-radius: 18px;
      margin-bottom: 1em;
      aspect-ratio: 1792/1024;
      object-fit: cover
    }
    #triple-approach-mobile h4 {
      font-size: 1.5rem;
      line-height: 1.2;
      margin: 0;
      margin-top: 48px;
      color: rgb(29,29,31);
      text-align: left;
      width: 100%;
      margin-bottom: 32px;
    }

    #triple-approach-mobile p {
      font-size: 1rem;
      line-height: 1.4;
      font-weight: 600;
      letter-spacing: -0.022em;
      color: #86868b;
      margin: 0;
      margin-bottom: 128px;
      text-align: left;
    }

  
  }

  /* —— DESKTOP STYLES (UNCHANGED) —— */
  #triple-approach-desktop {
    display: block;
    margin-bottom: 10em;
  }
  .triple-approach-title {
    text-align: center;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.022em;
    color: #6e6e73;
    margin-top: 32px;
    margin-inline-start: auto;
    margin-inline-end: auto;
    width: min(58.3333333333vw, 1120px);
  }
  .triple-approach-title strong { color: #000; }

  .triple-approach-content {
    margin-top: 220px;
    width: 87.5%;
    margin-inline-start: auto;
    margin-inline-end: auto;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: center;
    position: relative;
  }
  .triple-approach-content-image-stack { display: grid; }
  .triple-approach-content-image-stack > * { grid-area: 1 / 1 / 2 / 2; }
  .triple-approach-content-image {
    width: min(36.4583333333vw, 700px);
    aspect-ratio: 1792/1024;
    border-radius: 18px;
    opacity: 0;
    object-fit: cover;
  }
  .triple-approach-content-image:nth-child(1) { opacity: 1; }
  .triple-approach-content-item {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .triple-approach-content-items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    list-style-type: none;
    opacity: 0;
  }
  .triple-approach-content-items:nth-child(1) { opacity: 1; }
  .triple-approach-content-text {
    width: min(36.4583333333vw, 700px);
  }
  .triple-approach-content-text h4 {
    font-size: 32px;
    line-height: 1.125;
    font-weight: 600;
    letter-spacing: .004em;
    color: rgb(29, 29, 31);
    padding-inline-end: 20px;
    margin-block-start: 1.33em;
    margin-block-end: 1.33em;
  }
  
  .triple-approach-content-text p {
    padding-inline-end: 20px;
    color: #86868b;
    margin-top: 32px;
    font-size: 17px;
    line-height: 1.4705882353;
    font-weight: 600;
    letter-spacing: -0.022em;
  }
  .triple-approach-content-text strong { color: #000; }

.brand-image-container {
  background-color: rgb(245, 245, 247);
  padding: 50px 0px;
}

#brand-image {
  margin-inline-start: auto;
  margin-inline-end: auto;
  width: 87.5%;
  max-width: 1680px;
  display: block;
  background-color: #fff;
  padding: min(7.2915666667vw, 140px);
  box-sizing: border-box;
  border-radius: 18px;
  overflow: hidden;
}

.brand-image-title {
  margin-inline-start: 0;
  color: black;
  width: min(60vw, 1400px);
  font-size: 40px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: 0em;
  margin-block-start: 0.83em;
  margin-block-end: 0.83em;
  margin: 0;
  padding: 0;
  padding-bottom: 36px;
}

.brand-image-subtitle {
  color: #86868b;
  margin: 10px 0;
  margin-inline-start: 0;
  width: min(60, 1400px);
  font-size: 17px;
  line-height: 1.2353641176;
  font-weight: 600;
  letter-spacing: -0.022em;
  padding: 0;
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-end: 0px;
}

.brand-image-content {
  margin-top: 16px;
  margin-inline-start: 0;
  display: grid;
  grid-gap: 16px;
  gap: 16px;
  --tile-columns: 3;
  grid-template-columns: repeat(var(--tile-columns), 1fr);
  width: 100%;
}

@media (max-width: 900px) {
  .brand-image-content {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width: 600px) {
  .brand-image-content {
    grid-template-columns: 1fr;
  }
}

.brand-image-tile {
  min-height: 220px;
  grid-gap: 10px;
  gap: 10px;
  padding-inline: 8px;
  background: rgb(245, 245, 247);
  border-radius: 18px;
  padding: 28px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  width: 100%;
}

.brand-image-tile p {
  color: #86868b;
  font-size: 14px;
  line-height: 1.4285914286;
  font-weight: 600;
  letter-spacing: -0.016em;
  display: block;
  margin: 0;
  padding: 0;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}

.material-symbols-outlined {
  font-size: 56px;
  padding: 0;
  margin: 0;
  font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 48;
  /* adjust this to match your font size */
}

/* If you want to target a specific icon, you can use a combined selector */
.brand-image-icon.material-symbols-outlined {
  font-size: 56px;
  padding: 0;
  margin: 0;
  font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 48;
}

.brand-image-tile strong {
  color: black;
  font-weight: 600;
}





/* ─── Container & Headline ─────────────────────────────────────────────────── */
.reporting-container h2 {
  font-size: 64px;
  line-height: 1.0625;
  font-weight: 600;
  letter-spacing: -0.009em;
  margin: 0 0 40px;
  text-align: left;
  padding: 0 8.3333%; /* matches your margin-inline-start/end */
  max-width: 91.6667%;
}

/* the white "card" wrapper */
#reporting {
  margin-inline: auto;
  width: 87.5%;
  max-width: 1680px;
  background: linear-gradient(rgba(245,245,247,1),rgba(245,245,247,1),rgba(245,245,247,1),#fff);
  padding: min(2.5vw,140px);
  border-radius: 18px 18px 0 0;
  box-sizing: border-box;
  overflow: hidden;
}

/* ─── Top-four Tiles: 4→2 grid ─────────────────────────────────────────────── */
.reporting-content {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4,1fr);
}
@media (max-width: 900px) {
  .reporting-content {
    grid-template-columns: repeat(2,1fr);
  }
}

/* individual tile styling */
.reporting-tile {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}

/* ─── Fluid typography for top tiles ──────────────────────────────────────── */
.reporting-tile h4 {
  /* 14px max → shrink to 12px at very small */
  font-size: clamp(12px, 2vw, 14px);
  line-height: 1.4286;
  font-weight: 500;
  color: #86868b;
  margin: 0 0 8px;
}

.reporting-tile h1 {
  /* 32px max → shrink to 24px */
  font-size: clamp(20px, 4vw, 32px);
  line-height: 1.2;
  font-weight: 600;
  color: #000;
  margin: 0;
  white-space: nowrap;
}

/* ─── Horizontal GP Tiles (swarm details) ─────────────────────────────────── */
.reporting-horizontal-tile {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  margin-top: 16px;
  gap: 8px;
}

/* Plate / GP code */
.reporting-horizontal-tile h3 {
  /* 20px max → shrink to 16px */
  font-size: clamp(16px, 3vw, 20px);
  line-height: 1.4286;
  font-weight: 600;
  color: #000;
  text-align: start;
  margin: 0;
  flex: 1;
}

/* inner label/value pairs */
.reporting-horizontal-tile-content {
  flex: 1;                      /* equal width for each block */
  display: flex;
  flex-direction: column;
  justify-content: flex-start; 
  height: 100%;
  gap: 8px;
}



.reporting-horizontal-tile-content h4 {
  /* 14px max → shrink to 12px */
  font-size: clamp(12px, 2vw, 14px);
  line-height: 1.4286;
  font-weight: 500;
  color: #86868b;
  margin: 0;
}

.reporting-horizontal-tile-content h1 {
  /* 26px max → shrink to 20px */
  font-size: clamp(16px, 3vw, 26px);
  line-height: 1.2;
  font-weight: 600;
  color: #000;
  margin: 0;
  margin-top: auto;
}

/* ─── Bottom Text ─────────────────────────────────────────────────────────── */
.reporting-bottom-text {
  text-align: center;
  font-size: clamp(14px, 2vw, 17px);
  font-weight: 600;
  letter-spacing: -0.022em;
  color: #6e6e73;
  margin: 48px auto 0;
  max-width: min(58.3333vw, 1120px);
}

.reporting-bottom-text strong {
  color: #000;
}



/* Economical Value */
#economical-value {
  margin-inline: auto;
  width: 87.5%;
  max-width: 1680px;
  overflow: hidden;
}

/* section headline */
#economical-value h2 {
  font-size: 64px;
  line-height: 1.0625;
  font-weight: 600;
  letter-spacing: -0.009em;
  margin: 0 0 40px;
  text-align: left;
}

/* responsive 4→2→1 layout */
.economical-value-content {
  display: grid;
  gap: 16px;
  row-gap: 32px;
  /* each tile min 250px, expand to fill */
  grid-template-columns: repeat(
    auto-fit,
    minmax(250px, 1fr)
  );
}

/* left-align each tile's content */
.economical-value-content-item {
  text-align: left;
}

/* icon */
.economical-value-content-item img {
  display: block;
  margin: 0 0 16px;
  width: 56px;
  height: 56px;
}

/* multiplier */
.economical-value-content-item h1 {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 600;
  margin: 0 0 8px;
  color: #000;
}

/* descriptor */
.economical-value-content-item h4 {
  font-size: 17px;
  line-height: 1.235;
  font-weight: 600;
  letter-spacing: -0.022em;
  margin: 0;
  color: #86868b;
  width: auto;   /* allow wrapping */
}

.economical-value-text {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

/* FAQ Section styles */


.faq-section-title {
  text-align: center;
  font-size: 64px;
  line-height: 1.0625;
  font-weight: 600;
  letter-spacing: -0.009em;
}

.faq-section-accordion {
  list-style: none;
  padding: 0;
  margin: 0;
}

.accordion-item {
  border-bottom: 1px solid #d2d2d7;
}

.accordion-button {
  width: 100%;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.accordion-title {
  font-size: 24px;
  line-height: 1.1666666667;
  font-weight: 600;
  letter-spacing: 0;
  color: #1d1d1f;
  max-width: 83.3333333333%;
}

.material-symbols-outlined {
  font-size: 24px;
  color: #86868b;
  transition: transform 0.3s ease;
}

.accordion-content {
  display: none;
  padding: 0 0 24px;
}

.accordion-content p {
  margin: 0;
  padding: 0;
  font-size: 17px;
  line-height: 1.4705882353;
  font-weight: 400;
  letter-spacing: -0.022em;
  color: #1d1d1f;
  max-width: 83.3333333333%;
}

.accordion-content p+p {
  margin-top: 16px;
}

/* Active states */
.accordion-item.active .material-symbols-outlined {
  transform: rotate(45deg);
}


/* Hover effects */
.accordion-button:hover .accordion-title {
  color: black;
}

.accordion-button:hover .material-symbols-outlined {
  color: black;
}

@media (max-width: 734px) {
  .faq-section-title {
    font-size: 40px;
  }

  .accordion-title {
    font-size: 19px;
  }
}

/* =====================
   How It Works Section
   ===================== */
.how-it-works {
  background: #ffffff;
  padding: 80px 20px;
}

.how-it-works__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.how-it-works__title {
  font-size: 64px;
  line-height: 1.0625;
  font-weight: 600;
  letter-spacing: -0.009em;
  margin: 0;
  margin-bottom: 40px;
  color: black;
}

.how-it-works__subtitle {
  font-size: 17px;
  line-height: 1.2353641176;
  font-weight: 600;
  letter-spacing: -0.022em;
  color: #86868b;
  margin-bottom: 3rem;
}

.how-it-works__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.step {
  background: #f9f9f9;
  border-radius: 18px;
  padding: 2rem 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.step-symbol {
  font-size: 56px;
}

.step-title {
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0em;
  color: black;
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 14px;
  line-height: 1.4285914286;
  font-weight: 500;
  letter-spacing: -0.016em;
  color: #86868b;
}

/* == Driver Upliftment Section == */
.driver-upliftment-tabs {
  background: #fff;
  padding: 60px 20px;
}

.du-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.du-title {
  font-size: 64px;
  line-height: 1.0625;
  font-weight: 600;
  letter-spacing: -0.009em;
  margin-bottom: 40px;
  color: black;
}

/* Nav row */
.du-nav {
  display: flex;
  flex-wrap: wrap;            /* allow new lines */
  justify-content: center;
  gap: 1rem 0;            
  padding: 0 1rem;            /* give a little side-padding on mobile */
  list-style: none;
}

.du-nav__item {
  flex: 1 1 45%;              /* each takes up around half the row */
  text-align: center;
  padding: 0.5rem 0;          /* shrink padding a bit */
  font-size: 14px;            /* slightly smaller on mobile */
}

@media (min-width: 600px) {
  .du-nav {
    flex-wrap: nowrap;        /* back to one row on tablet+ */
    gap: 0 1.5rem;
    padding: 0;
  }
  .du-nav__item {
    flex: none;
    font-size: 17px;
    padding: 0.75rem 1.5rem;
    border-bottom: 3px solid #d2d2d7;
  }
}

.du-nav__item:hover {
  color: black;
}

.du-nav__item--active {
  color: black;
  border-bottom: 3px solid black;
}

/* Panels */
.du-content {
  margin-top: 2rem;
}

.du-panel {
  display: none;
  font-size: 14px;
  line-height: 1.4285914286;
  font-weight: 500;
  letter-spacing: -0.016em;
  color: #86868b;
}

.du-panel--active {
  display: block;
}

.driver-upliftment-intro {
  background: #fff;
  text-align: center;
  width: 87.5%;
  margin-inline-start: auto;
  margin-inline-end: auto;
}

.du-intro__title {
  font-size: 64px;
  line-height: 1.0625;
  font-weight: 600;
  letter-spacing: -0.009em;
  margin: 0;
  margin-bottom: 40px;
  color: black;
}

.du-intro__text {
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.2353641176;
  font-weight: 600;
  letter-spacing: -0.022em;
  color: #86868b;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ================================
   Our Fleet & Workshop (Apple Style)
   ================================ */
.fleet-workshop-apple {
  background: #fff;
  text-align: center;
  width: 87.5%;
  margin-inline-start: auto;
  margin-inline-end: auto;
}

.fw-inner {
  max-width: 900px;
  margin: 0 auto;
}

.fw-title {
  font-size: 64px;
  line-height: 1.0625;
  font-weight: 600;
  letter-spacing: -0.009em;
  margin: 0;
  margin-bottom: 40px;
  color: black;
}

.fw-subtitle {
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.2353641176;
  font-weight: 600;
  letter-spacing: -0.022em;
  color: #86868b;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

.fw-subtitle a {
  color: #22b7f2;
  text-decoration: none;
}

.fw-subtitle a:hover {
  text-decoration: underline;
}

.fw-features {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.fw-feature {
  flex: 1 ;
  text-align: left;
}

.fw-feature__title {
  font-size: 18px;
  line-height: 1.4285914286;
  font-weight: 600;
  letter-spacing: -0.016em;
  margin-bottom: 0.5rem;
  color: black;
}

.fw-feature__desc {
  font-size: 14px;
  line-height: 1.4285914286;
  font-weight: 500;
  letter-spacing: -0.016em;
  color: #86868b;
}

/* Responsive */
@media (max-width: 800px) {
  .fw-features {
    flex-direction: column;
  }

  .fw-feature {
    text-align: center;
  }
}
/* container padding */
.contact-section {
  margin-top: 6rem;
  margin-bottom: 6rem;
}

/* the floating card wrapper */
.contact-card {
  width: 87.5%;
  max-width: 600px;
  margin-inline-start: auto;
  margin-inline-end: auto;
  border-radius: 16px;
}

/* center and space your headline + sub-copy */
.contact-section__inner {
  text-align: center;
  margin-bottom: 1.5rem;
}
.contact-section__inner h2 {
  font-size: 64px;
  line-height: 1.0625;
  font-weight: 600;
  letter-spacing: -0.009em;
  margin: 0;
  color: black;
}
.contact-section__inner p {
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.2353641176;
  font-weight: 600;
  letter-spacing: -0.022em;
  color: #86868b;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

/* your existing .contact-form-2 styles */
.contact-form-2 {
  width: 100%;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
}
.contact-form-2 .input-group {
  position: relative;
  margin-bottom: 1rem;
}
.contact-form-2 .input-group i {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: #22b7f2;
}
.contact-form-2 input,
.contact-form-2 textarea {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 3rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  box-sizing: border-box;
}
.contact-form-2 .textarea-group textarea {
  padding-top: 1rem;
}
.btn-secondary {
  display: block;
  width: 100%;
  padding: 0.85rem;
  background: #22b7f2;
  border: 2px solid #22b7f2;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-secondary:hover {
  background: #22b7f2;
  color: #fff;
}

@media (max-width: 734px) {
  .reporting-container h2 {
    font-size: 40px;
  }

  #economical-value h2 {
    font-size: 40px;
  }

  .du-intro__title {
    font-size: 40px;
  }

  .fw-title {
    font-size: 40px;
  }

  .how-it-works__title {
    font-size: 40px;
  }

  .faq-section-title {
    font-size: 40px;
  }

  .contact-section__inner h2 {
    font-size: 40px;
  }

}
