
    *{box-sizing:border-box;margin:0;padding:0}

    body{
      font-family:Arial,Helvetica,sans-serif;
      color:#151515;
      background:#fff;
      line-height:1.6;
    }

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

    .container{
      width:min(1280px,94%);
      margin:0 auto;
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      background:rgba(255,255,255,.96);
      border-bottom:1px solid rgba(0,0,0,.07);
      backdrop-filter:blur(12px);
    }

    .nav{
      min-height:74px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:30px;
    }

    .brand{
      display:flex;
      align-items:center;
      gap:11px;
      font-size:20px;
      font-weight:700;
      letter-spacing:-.02em;
    }

    .brand:before{
      content:"DL";
      width:36px;
      height:36px;
      border-radius:50%;
      background:#111;
      color:#fff;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:11px;
      font-weight:800;
    }

    .nav-links{
      display:flex;
      align-items:center;
      gap:30px;
      font-size:13px;
      font-weight:600;
    }

    .services-menu{
      position:relative;
      display:flex;
      align-items:center;
    }

    .services-trigger{
      appearance:none;
      border:0;
      background:transparent;
      font:inherit;
      font-size:13px;
      font-weight:600;
      cursor:pointer;
      padding:28px 0;
    }

    .services-dropdown{
      position:absolute;
      top:calc(100% - 5px);
      left:50%;
      transform:translate(-50%,10px);
      width:285px;
      padding:6px;
      background:rgba(255,255,255,.78);
      border:1px solid rgba(255,255,255,.55);
      border-radius:8px;
      box-shadow:0 18px 45px rgba(0,0,0,.13);
      backdrop-filter:blur(18px);
      opacity:0;
      visibility:hidden;
      pointer-events:none;
      transition:.18s ease;
    }

    .services-menu:hover .services-dropdown,
    .services-menu:focus-within .services-dropdown{
      opacity:1;
      visibility:visible;
      pointer-events:auto;
      transform:translate(-50%,0);
    }

    .services-dropdown a{
      display:block;
      padding:8px 10px;
      border-radius:6px;
    }

    .services-dropdown a:hover{
      background:rgba(255,255,255,.6);
    }

    .services-dropdown strong{
      display:block;
      font-size:12px;
      line-height:1.15;
    }

    .services-dropdown span{
      display:block;
      margin-top:2px;
      font-size:10px;
      color:#777;
    }

    .header-signin{
      background:#111;
      color:#fff;
      padding:12px 19px;
      border-radius:6px;
      font-size:13px;
      font-weight:700;
    }

    .hero{
      padding:90px 0 70px;
      background:
        linear-gradient(90deg,rgba(255,255,255,.98),rgba(255,255,255,.84)),
        #f5f3ee;
    }

    .hero-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:60px;
      align-items:center;
    }

    .eyebrow{
      color:#a47b3c;
      font-size:10px;
      font-weight:800;
      letter-spacing:.18em;
      text-transform:uppercase;
      margin-bottom:16px;
    }

    h1{
      font-size:clamp(48px,5.5vw,76px);
      line-height:1;
      letter-spacing:-.05em;
      font-weight:500;
    }

    .hero p{
      margin-top:24px;
      max-width:650px;
      color:#5f6162;
      font-size:17px;
      line-height:1.7;
    }

    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:30px;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:50px;
      padding:0 24px;
      border-radius:6px;
      font-size:14px;
      font-weight:700;
    }

    .btn-dark{
      background:#111;
      color:#fff;
    }

    .btn-light{
      border:1px solid #cfcfcb;
      background:#fff;
    }

    .photo-placeholder{
      min-height:460px;
      border-radius:16px;
      background:
        linear-gradient(135deg,rgba(0,0,0,.06),rgba(0,0,0,.02)),
        #e9e8e4;
      display:flex;
      align-items:center;
      justify-content:center;
      text-align:center;
      color:#777;
      font-size:13px;
      letter-spacing:.08em;
      text-transform:uppercase;
      padding:20px;
      overflow:hidden;
    }

    .section{
      padding:85px 0;
    }

    .section-soft{
      background:#f7f6f3;
    }

    .section-label{
      color:#a47b3c;
      font-size:10px;
      font-weight:800;
      letter-spacing:.18em;
      text-transform:uppercase;
      margin-bottom:15px;
    }

    .section-title{
      font-size:clamp(36px,4vw,56px);
      line-height:1.04;
      letter-spacing:-.045em;
      font-weight:500;
      max-width:820px;
    }

    .section-intro{
      margin-top:18px;
      max-width:760px;
      color:#666;
      font-size:16px;
      line-height:1.7;
    }

    .benefits{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:0;
      margin-top:42px;
      border-top:1px solid #e3e1dc;
      border-bottom:1px solid #e3e1dc;
    }

    .benefit{
      padding:30px;
      border-right:1px solid #e3e1dc;
    }

    .benefit:last-child{
      border-right:0;
    }

    .benefit h3{
      font-size:20px;
      margin-bottom:10px;
    }

    .benefit p{
      color:#666;
      font-size:14px;
      line-height:1.65;
    }

    .split{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:65px;
      align-items:center;
    }

    .service-list{
      margin-top:24px;
      border-top:1px solid #e5e3df;
    }

    .service-list div{
      padding:14px 0;
      border-bottom:1px solid #e5e3df;
      font-size:14px;
      font-weight:600;
    }

    .cta{
      padding:85px 0;
      text-align:center;
      background:#111;
      color:#fff;
    }

    .cta h2{
      font-size:clamp(38px,4.5vw,58px);
      font-weight:500;
      line-height:1.04;
      letter-spacing:-.045em;
    }

    .cta p{
      max-width:680px;
      margin:16px auto 27px;
      color:#b8b8b8;
      font-size:16px;
    }

    .cta .btn{
      background:#fff;
      color:#111;
    }

    footer{
      background:#090909;
      color:#aaa;
      padding:50px 0 28px;
      font-size:14px;
    }

    .footer-grid{
      display:grid;
      grid-template-columns:1.4fr 1fr 1fr;
      gap:50px;
    }

    .footer-brand{
      color:#fff;
      font-size:22px;
      font-weight:700;
      margin-bottom:10px;
    }

    .footer-links{
      display:grid;
      gap:9px;
    }

    footer h3{
      color:#fff;
      font-size:14px;
      margin-bottom:14px;
    }

    .copyright{
      margin-top:40px;
      padding-top:22px;
      border-top:1px solid #222;
      text-align:center;
      font-size:12px;
    }

    @media(max-width:760px){
      .nav-links{
        display:none;
      }

      .brand{
        font-size:17px;
      }

      .header-signin{
        padding:11px 14px;
        font-size:12px;
      }

      .hero{
        padding:62px 0 55px;
      }

      .hero-grid,
      .split{
        grid-template-columns:1fr;
        gap:35px;
      }

      h1{
        font-size:47px;
      }

      .photo-placeholder{
        min-height:280px;
      }

      .section{
        padding:60px 0;
      }

      .benefits{
        grid-template-columns:1fr;
      }

      .benefit{
        border-right:0;
        border-bottom:1px solid #e3e1dc;
        padding:24px 0;
      }

      .benefit:last-child{
        border-bottom:0;
      }

      .footer-grid{
        grid-template-columns:1fr;
        gap:30px;
      }
    }
.hourly2-hero .hourly2-eyebrow{font-size:12px!important;}
.hourly2-fleet-card:nth-child(4){min-height:230px;display:flex;flex-direction:column;justify-content:flex-end;background:linear-gradient(180deg,rgba(0,0,0,.08),rgba(0,0,0,.78)),url("/images/hourly-stretch-limo.png") center center/cover no-repeat;color:#fff;border-color:transparent}
.hourly2-fleet-card:nth-child(4) span{color:rgba(255,255,255,.75)}
.hourly2-fleet-card:nth-child(4) p{color:rgba(255,255,255,.82)}
.hourly2-final{background:linear-gradient(rgba(0,0,0,.70),rgba(0,0,0,.78)),url("/images/hourly-final-background.png") center center/cover no-repeat!important}

.hourly2-fleet-grid{grid-template-columns:repeat(4,1fr)!important;gap:25px!important}
.hourly2-fleet-card{min-height:0!important;padding:0!important;background:transparent!important;border:0!important;color:#222!important;text-align:center!important;display:block!important}
.hourly2-fleet-card::before{content:"";display:block;height:135px;margin-bottom:15px;background-position:center;background-repeat:no-repeat;background-size:contain}
.hourly2-fleet-card:nth-child(1)::before{background-image:url("/images/fleet-luxury-sedan-chauffeur-service.jpg.png")}
.hourly2-fleet-card:nth-child(2)::before{background-image:url("/images/fleet-luxury-suv-chauffeur-service.png")}
.hourly2-fleet-card:nth-child(3)::before{background-image:url("/images/fleet-executive-sprinter-van.png")}
.hourly2-fleet-card:nth-child(4)::before{background-image:url("/images/hourly-stretch-limo.png")}
.hourly2-fleet-card>span{display:none!important}
.hourly2-fleet-card h3{margin:0 0 5px!important;font-family:inherit!important;font-size:13px!important;font-weight:600!important;color:#222!important}
.hourly2-fleet-card p{margin:0!important;color:#858585!important;font-size:11px!important;line-height:1.5!important}
@media(max-width:900px){.hourly2-fleet-grid{grid-template-columns:repeat(2,1fr)!important;gap:38px 25px!important}}
@media(max-width:540px){.hourly2-fleet-grid{grid-template-columns:1fr!important;gap:38px!important}.hourly2-fleet-card::before{height:175px}}

.hourly2-final .hourly2-container{transform:translateY(90px)}

.hourly2-final .hourly2-btn{min-height:42px!important;padding:0 20px!important;border-radius:999px!important;background:#fff!important;border:1px solid #fff!important;color:#111!important;font-size:12px!important}

.hourly2-final .hourly2-btn span{display:none!important}

@media(min-width:761px){.hourly2-final .hourly2-label{font-size:10px!important}.hourly2-final h2{font-size:clamp(42px,5vw,60px)!important}.hourly2-final p{font-size:15px!important}}

.hourly2-final .hourly2-label{font-size:7px!important}
.hourly2-final h2{font-size:clamp(29px,3.5vw,42px)!important}
.hourly2-final p{font-size:11px!important}

@media(min-width:761px){.hourly2-final .hourly2-label{font-size:10px!important}.hourly2-final h2{font-size:clamp(42px,5vw,60px)!important}.hourly2-final p{font-size:15px!important}}

@media(max-width:760px){.hourly2-final .hourly2-btn{position:relative;top:-15px}}

  


.mobile-simple-menu{display:none}

@media(max-width:760px){

.nav-links,.header-signin{display:none!important}

.site-header,
.site-header .container,
.site-header .nav{overflow:visible!important}

.mobile-simple-menu{
 display:block!important;
 position:relative;
 margin-left:auto;
 z-index:5000;
}

.mobile-simple-btn{
 width:42px;height:42px;min-width:42px;
 padding:0;border:0;cursor:pointer;
 display:flex;flex-direction:column;
 align-items:center;justify-content:center;
 gap:5px;
 background:linear-gradient(#111,#111) center/23px 2px no-repeat;
}

.mobile-simple-btn:before,
.mobile-simple-btn:after{
 content:"";
 display:block;
 width:23px;height:2px;
 background:#111;
 border-radius:2px;
}

.mobile-simple-btn span{display:none}

.mobile-simple-dropdown{
 position:absolute;
 top:49px;right:0;
 width:min(290px,calc(100vw - 28px));
 max-height:calc(100vh - 90px);
 overflow:hidden;
 padding:8px;
 background:rgba(255,255,255,.99);
 border:1px solid rgba(0,0,0,.09);
 border-radius:12px;
 box-shadow:0 20px 55px rgba(0,0,0,.16);
 opacity:0;
 visibility:hidden;
 pointer-events:none;
 transform:translateY(-6px);
 transition:.16s ease;
}

.mobile-simple-menu.open .mobile-simple-dropdown{
 opacity:1;
 visibility:visible;
 pointer-events:auto;
 transform:translateY(0);
}

.mobile-simple-dropdown > a,
.mobile-services-open{
 display:flex!important;
 width:100%!important;
 align-items:center!important;
 justify-content:space-between!important;
 padding:13px 12px!important;
 color:#222!important;
 background:transparent!important;
 border:0!important;
 border-bottom:1px solid #ecece8!important;
 border-radius:0!important;
 font-family:inherit!important;
 font-size:14px!important;
 font-weight:600!important;
 text-decoration:none!important;
 text-align:left!important;
}

.mobile-services-open{cursor:pointer}

.mobile-services-panel{
 position:absolute;
 inset:0;
 padding:8px;
 background:#fff;
 border-radius:12px;
 overflow-y:auto;
 transform:translateX(105%);
 transition:transform .18s ease;
 z-index:2;
}

.mobile-simple-menu.services-open .mobile-services-panel{
 transform:translateX(0);
}

.mobile-services-back{
 display:flex;
 width:100%;
 align-items:center;
 gap:8px;
 padding:12px 10px 13px;
 background:transparent;
 color:#111;
 border:0;
 border-bottom:1px solid #ecece8;
 font-family:inherit;
 font-size:13px;
 font-weight:700;
 cursor:pointer;
}

.mobile-services-panel a{
 display:block!important;
 padding:11px 10px!important;
 color:#333!important;
 font-size:13px!important;
 font-weight:500!important;
 text-decoration:none!important;
 border-bottom:1px solid #f0f0ed!important;
}

}
.hourly2-hero .hourly2-eyebrow{font-size:12px!important;}
.hourly2-fleet-card:nth-child(4){min-height:230px;display:flex;flex-direction:column;justify-content:flex-end;background:linear-gradient(180deg,rgba(0,0,0,.08),rgba(0,0,0,.78)),url("/images/hourly-stretch-limo.png") center center/cover no-repeat;color:#fff;border-color:transparent}
.hourly2-fleet-card:nth-child(4) span{color:rgba(255,255,255,.75)}
.hourly2-fleet-card:nth-child(4) p{color:rgba(255,255,255,.82)}
.hourly2-final{background:linear-gradient(rgba(0,0,0,.70),rgba(0,0,0,.78)),url("/images/hourly-final-background.png") center center/cover no-repeat!important}

.hourly2-fleet-grid{grid-template-columns:repeat(4,1fr)!important;gap:25px!important}
.hourly2-fleet-card{min-height:0!important;padding:0!important;background:transparent!important;border:0!important;color:#222!important;text-align:center!important;display:block!important}
.hourly2-fleet-card::before{content:"";display:block;height:135px;margin-bottom:15px;background-position:center;background-repeat:no-repeat;background-size:contain}
.hourly2-fleet-card:nth-child(1)::before{background-image:url("/images/fleet-luxury-sedan-chauffeur-service.jpg.png")}
.hourly2-fleet-card:nth-child(2)::before{background-image:url("/images/fleet-luxury-suv-chauffeur-service.png")}
.hourly2-fleet-card:nth-child(3)::before{background-image:url("/images/fleet-executive-sprinter-van.png")}
.hourly2-fleet-card:nth-child(4)::before{background-image:url("/images/hourly-stretch-limo.png")}
.hourly2-fleet-card>span{display:none!important}
.hourly2-fleet-card h3{margin:0 0 5px!important;font-family:inherit!important;font-size:13px!important;font-weight:600!important;color:#222!important}
.hourly2-fleet-card p{margin:0!important;color:#858585!important;font-size:11px!important;line-height:1.5!important}
@media(max-width:900px){.hourly2-fleet-grid{grid-template-columns:repeat(2,1fr)!important;gap:38px 25px!important}}
@media(max-width:540px){.hourly2-fleet-grid{grid-template-columns:1fr!important;gap:38px!important}.hourly2-fleet-card::before{height:175px}}

.hourly2-final .hourly2-container{transform:translateY(90px)}

.hourly2-final .hourly2-btn{min-height:42px!important;padding:0 20px!important;border-radius:999px!important;background:#fff!important;border:1px solid #fff!important;color:#111!important;font-size:12px!important}

.hourly2-final .hourly2-btn span{display:none!important}

@media(min-width:761px){.hourly2-final .hourly2-label{font-size:10px!important}.hourly2-final h2{font-size:clamp(42px,5vw,60px)!important}.hourly2-final p{font-size:15px!important}}

.hourly2-final .hourly2-label{font-size:7px!important}
.hourly2-final h2{font-size:clamp(29px,3.5vw,42px)!important}
.hourly2-final p{font-size:11px!important}

@media(min-width:761px){.hourly2-final .hourly2-label{font-size:10px!important}.hourly2-final h2{font-size:clamp(42px,5vw,60px)!important}.hourly2-final p{font-size:15px!important}}

@media(max-width:760px){.hourly2-final .hourly2-btn{position:relative;top:-15px}}




/* Page-only redesign. Existing header, footer, menus and scripts are preserved. */
.hourly2-main{
  --hourly-ink:#181818;
  --hourly-muted:#6f706f;
  --hourly-soft:#f3f2ee;
  --hourly-line:#deddd7;
  --hourly-gold:#a9834f;
  overflow:hidden;
  background:#fff;
  color:var(--hourly-ink);
}

.hourly2-container{
  width:min(1240px,calc(100% - 48px));
  margin:0 auto;
}

.hourly2-main .hourly2-label{
  margin-bottom:18px;
  color:var(--hourly-gold);
  font-size:10px;
  font-weight:700;
  letter-spacing:.20em;
  text-transform:uppercase;
}

.hourly2-main h1,
.hourly2-main h2{
  font-family:Georgia,"Times New Roman",serif;
  font-weight:400;
}

.hourly2-main h2{
  margin:0;
  font-size:clamp(40px,4.3vw,62px);
  line-height:1.02;
  letter-spacing:-.045em;
}

.hourly2-main p{
  color:var(--hourly-muted);
}

.hourly2-btn{
  display:inline-flex;
  min-height:54px;
  align-items:center;
  justify-content:center;
  gap:28px;
  padding:0 25px;
  border:1px solid transparent;
  border-radius:3px;
  font-size:13px;
  font-weight:700;
  transition:transform .2s ease,background .2s ease,color .2s ease;
}

.hourly2-btn:hover{transform:translateY(-2px)}
.hourly2-btn-light{background:#fff;color:#161616}
.hourly2-hero .hourly2-btn-light{min-height:42px;padding:0 19px;border-radius:999px;background:rgba(255,255,255,.50);border:1px solid rgba(255,255,255,.55);color:#111;font-size:12px;backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px)}
.hourly2-hero .hourly2-btn-light span{display:none!important}
.hourly2-hero .hourly2-btn-light{background:#fff!important;color:#111!important;border-color:#fff!important;backdrop-filter:none!important;-webkit-backdrop-filter:none!important}
.hourly2-btn-dark{background:#191919;color:#fff}
.hourly2-btn-outline{border-color:#c9c8c2;background:transparent;color:#222}

/* Hero */
.site-header{
  position:absolute!important;
  top:0!important;
  left:0!important;
  width:100%!important;
}

.site-header .brand,
.site-header .nav-links > a,
.site-header .services-trigger{
  color:#fff!important;
}

.site-header .brand:before{
  background:#fff!important;
  color:#111!important;
}

.hourly2-hero{
  position:relative;
  min-height:100vh;
  min-height:100svh;
  display:flex;
  align-items:center;
  color:#fff;
  background:
    linear-gradient(90deg,rgba(8,8,8,.68) 0%,rgba(8,8,8,.42) 38%,rgba(8,8,8,.14) 70%,rgba(8,8,8,.03) 100%),
    url("/images/hourly-chauffeur-service-hero-desktop.png") center center/cover no-repeat;
}

.hourly2-hero-inner{
  width:100%;
  padding:155px 0 85px;
}

.hourly2-hero-copy{max-width:720px;margin-left:clamp(30px,5vw,85px)}

.hourly2-hero .hourly2-label{color:rgba(255,255,255,.68)}

.hourly2-hero h1{
  margin:0;
  font-size:clamp(32px,3.4vw,44px);
  line-height:.96;
  letter-spacing:-.055em;
}

.hourly2-hero p{
  max-width:610px;
  margin:26px 0 0;
  color:rgba(255,255,255,.78);
  font-size:16px;
  line-height:1.75;
}

.hourly2-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:34px;
}

.hourly2-hero .hourly2-btn-outline{
  border-color:rgba(255,255,255,.48);
  color:#fff;
}

.hourly2-hero-note{
  display:flex;
  flex-wrap:wrap;
  gap:0;
  margin-top:54px;
}

.hourly2-hero-note span{
  padding:0 16px;
  border-right:1px solid rgba(255,255,255,.25);
  color:rgba(255,255,255,.64);
  font-size:9px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.hourly2-hero-note span:first-child{padding-left:0}
.hourly2-hero-note span:last-child{border-right:0}

/* Intro and benefits */
.hourly2-intro{
  padding:105px 0 112px;
  background:#f7f7f5;
}

.hourly2-intro-head{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:100px;
  align-items:end;
}

.hourly2-intro-head p{
  max-width:480px;
  font-size:15px;
  line-height:1.8;
}

.hourly2-benefits{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  margin-top:68px;
  border-top:1px solid var(--hourly-line);
  border-bottom:1px solid var(--hourly-line);
}

.hourly2-benefit{
  min-height:260px;
  padding:34px 38px 38px;
  border-right:1px solid var(--hourly-line);
}

.hourly2-benefit:last-child{border-right:0}

.hourly2-benefit-number{
  display:block;
  margin-bottom:55px;
  color:#aaa9a3;
  font-size:11px;
  letter-spacing:.14em;
}

.hourly2-benefit h3{
  margin:0 0 12px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:25px;
  font-weight:400;
}

.hourly2-benefit p{font-size:13px;line-height:1.75}

/* Chauffeur availability */
.hourly2-available{padding:120px 0;background:#fff}

.hourly2-available-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:88px;
  align-items:center;
}

.hourly2-available-photo{
  min-height:620px;
  background:url("/images/hourly-chauffeur-service-focus.png") center center/cover no-repeat;
  border-radius:3px;
}

.hourly2-available-copy{max-width:530px}

.hourly2-available-copy > p{
  margin-top:25px;
  font-size:15px;
  line-height:1.85;
}

.hourly2-details{
  margin-top:38px;
  border-top:1px solid var(--hourly-line);
}

.hourly2-detail{
  display:grid;
  grid-template-columns:145px 1fr;
  gap:22px;
  padding:18px 0;
  border-bottom:1px solid var(--hourly-line);
}

.hourly2-detail strong{font-size:12px}
.hourly2-detail span{color:#747474;font-size:13px;line-height:1.65}

/* Use cases */
.hourly2-uses{padding:110px 0;background:#191919;color:#fff}

.hourly2-uses-head{
  display:flex;
  justify-content:space-between;
  gap:60px;
  align-items:end;
}

.hourly2-uses-head h2{max-width:720px}
.hourly2-uses-head p{max-width:380px;color:#aaa;font-size:14px;line-height:1.75}

.hourly2-use-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  margin-top:65px;
  border-top:1px solid rgba(255,255,255,.16);
}

.hourly2-use{
  padding:30px 28px 34px 0;
  border-bottom:1px solid rgba(255,255,255,.16);
}

.hourly2-use:nth-child(odd){margin-right:28px}
.hourly2-use h3{margin:0 0 8px;font-size:15px;font-weight:600}
.hourly2-use p{color:#969696;font-size:12px;line-height:1.65}

/* Fleet */
.hourly2-fleet{padding:110px 0;background:var(--hourly-soft)}

.hourly2-fleet-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:50px;
}

.hourly2-fleet-head p{max-width:410px;font-size:14px;line-height:1.75}

.hourly2-fleet-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-top:58px;
}

.hourly2-fleet-card{
  padding:28px 25px;
  background:#fff;
  border:1px solid #e4e2dd;
}

.hourly2-fleet-card span{
  display:block;
  margin-bottom:45px;
  color:#a5a39c;
  font-size:10px;
  letter-spacing:.14em;
}

.hourly2-fleet-card h3{
  margin:0 0 7px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:24px;
  font-weight:400;
}

.hourly2-fleet-card p{font-size:12px;line-height:1.6}
.hourly2-fleet-action{margin-top:38px}

/* Process */
.hourly2-process{padding:112px 0;background:#fff}
.hourly2-process h2{max-width:720px}

.hourly2-process-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:45px;
  margin-top:60px;
}

.hourly2-step{padding-top:22px;border-top:1px solid #cac9c3}
.hourly2-step span{color:var(--hourly-gold);font-size:10px;letter-spacing:.14em}
.hourly2-step h3{margin:30px 0 9px;font-size:19px}
.hourly2-step p{font-size:13px;line-height:1.7}

/* FAQ */
.hourly2-faq{padding:110px 0;background:#f7f7f5}

.hourly2-faq-grid{
  display:grid;
  grid-template-columns:.72fr 1.28fr;
  gap:100px;
}

.hourly2-faq-list{border-top:1px solid var(--hourly-line)}

.hourly2-faq details{border-bottom:1px solid var(--hourly-line)}
.hourly2-faq summary{
  position:relative;
  padding:23px 45px 23px 0;
  cursor:pointer;
  list-style:none;
  font-size:14px;
  font-weight:600;
}
.hourly2-faq summary::-webkit-details-marker{display:none}
.hourly2-faq summary::after{
  content:"+";
  position:absolute;
  top:20px;
  right:4px;
  color:#8b8b87;
  font-size:22px;
  font-weight:300;
}
.hourly2-faq details[open] summary::after{content:"–"}
.hourly2-faq details p{padding:0 45px 24px 0;font-size:13px;line-height:1.75}

/* Final CTA */
.hourly2-final{
  padding:118px 0;
  text-align:center;
  background:#111;
  color:#fff;
}
.hourly2-final h2{max-width:800px;margin:0 auto}
.hourly2-final p{max-width:650px;margin:22px auto 30px;color:#aaa;font-size:15px;line-height:1.75}

@media(max-width:900px){
  .hourly2-intro-head,
  .hourly2-available-grid,
  .hourly2-faq-grid{grid-template-columns:1fr;gap:48px}
  .hourly2-benefits{grid-template-columns:1fr}
  .hourly2-benefit{min-height:auto;border-right:0;border-bottom:1px solid var(--hourly-line)}
  .hourly2-benefit:last-child{border-bottom:0}
  .hourly2-benefit-number{margin-bottom:28px}
  .hourly2-use-grid,.hourly2-fleet-grid{grid-template-columns:repeat(2,1fr)}
}

@media(max-width:760px){
  .hourly2-container{width:calc(100% - 38px)}
  .hourly2-hero{
    background:
      linear-gradient(180deg,rgba(8,8,8,.18) 0%,rgba(8,8,8,.38) 42%,rgba(8,8,8,.88) 100%),
      url("/images/hourly-chauffeur-service-hero-mobile.png") center center/cover no-repeat;
  }
  .hourly2-hero-inner{padding:145px 0 58px;align-self:flex-end}
  .hourly2-hero h1{font-size:clamp(30px,8vw,36px);letter-spacing:-.05em}
  .hourly2-hero-copy{margin-left:0}
  .hourly2-hero p{font-size:14px;line-height:1.7}
  .hourly2-hero-actions{margin-top:27px}
  .hourly2-hero .hourly2-btn-outline{display:none}
  .hourly2-hero-note{margin-top:35px}
  .hourly2-hero-note span{padding:0 10px;font-size:8px}
  .hourly2-intro,.hourly2-available,.hourly2-uses,.hourly2-fleet,.hourly2-process,.hourly2-faq{padding:78px 0}
  .hourly2-intro-head{gap:28px}
  .hourly2-benefits{margin-top:45px}
  .hourly2-benefit{padding:28px 4px}
  .hourly2-available-photo{min-height:440px;order:2}
  .hourly2-detail{grid-template-columns:115px 1fr}
  .hourly2-uses-head,.hourly2-fleet-head{display:block}
  .hourly2-uses-head p,.hourly2-fleet-head p{margin-top:22px}
  .hourly2-use-grid,.hourly2-fleet-grid,.hourly2-process-grid{grid-template-columns:1fr}
  .hourly2-use-grid{margin-top:45px}
  .hourly2-use:nth-child(odd){margin-right:0}
  .hourly2-fleet-grid{margin-top:42px}
  .hourly2-fleet-card span{margin-bottom:28px}
  .hourly2-process-grid{gap:28px;margin-top:44px}
  .hourly2-faq-grid{gap:38px}
  .hourly2-final{padding:88px 0}
}

@media(max-width:420px){
  .hourly2-hero h1{font-size:32px}
  .hourly2-hero-note{display:none}
  .hourly2-main h2{font-size:38px}
}
.hourly2-hero .hourly2-eyebrow{font-size:12px!important;}
.hourly2-fleet-card:nth-child(4){min-height:230px;display:flex;flex-direction:column;justify-content:flex-end;background:linear-gradient(180deg,rgba(0,0,0,.08),rgba(0,0,0,.78)),url("/images/hourly-stretch-limo.png") center center/cover no-repeat;color:#fff;border-color:transparent}
.hourly2-fleet-card:nth-child(4) span{color:rgba(255,255,255,.75)}
.hourly2-fleet-card:nth-child(4) p{color:rgba(255,255,255,.82)}
.hourly2-final{background:linear-gradient(rgba(0,0,0,.70),rgba(0,0,0,.78)),url("/images/hourly-final-background.png") center center/cover no-repeat!important}

.hourly2-fleet-grid{grid-template-columns:repeat(4,1fr)!important;gap:25px!important}
.hourly2-fleet-card{min-height:0!important;padding:0!important;background:transparent!important;border:0!important;color:#222!important;text-align:center!important;display:block!important}
.hourly2-fleet-card::before{content:"";display:block;height:135px;margin-bottom:15px;background-position:center;background-repeat:no-repeat;background-size:contain}
.hourly2-fleet-card:nth-child(1)::before{background-image:url("/images/fleet-luxury-sedan-chauffeur-service.jpg.png")}
.hourly2-fleet-card:nth-child(2)::before{background-image:url("/images/fleet-luxury-suv-chauffeur-service.png")}
.hourly2-fleet-card:nth-child(3)::before{background-image:url("/images/fleet-executive-sprinter-van.png")}
.hourly2-fleet-card:nth-child(4)::before{background-image:url("/images/hourly-stretch-limo.png")}
.hourly2-fleet-card>span{display:none!important}
.hourly2-fleet-card h3{margin:0 0 5px!important;font-family:inherit!important;font-size:13px!important;font-weight:600!important;color:#222!important}
.hourly2-fleet-card p{margin:0!important;color:#858585!important;font-size:11px!important;line-height:1.5!important}
@media(max-width:900px){.hourly2-fleet-grid{grid-template-columns:repeat(2,1fr)!important;gap:38px 25px!important}}
@media(max-width:540px){.hourly2-fleet-grid{grid-template-columns:1fr!important;gap:38px!important}.hourly2-fleet-card::before{height:175px}}

.hourly2-final .hourly2-container{transform:translateY(90px)}

.hourly2-final .hourly2-btn{min-height:42px!important;padding:0 20px!important;border-radius:999px!important;background:#fff!important;border:1px solid #fff!important;color:#111!important;font-size:12px!important}

.hourly2-final .hourly2-btn span{display:none!important}

@media(min-width:761px){.hourly2-final .hourly2-label{font-size:10px!important}.hourly2-final h2{font-size:clamp(42px,5vw,60px)!important}.hourly2-final p{font-size:15px!important}}

.hourly2-final .hourly2-label{font-size:7px!important}
.hourly2-final h2{font-size:clamp(29px,3.5vw,42px)!important}
.hourly2-final p{font-size:11px!important}

@media(min-width:761px){.hourly2-final .hourly2-label{font-size:10px!important}.hourly2-final h2{font-size:clamp(42px,5vw,60px)!important}.hourly2-final p{font-size:15px!important}}

@media(max-width:760px){.hourly2-final .hourly2-btn{position:relative;top:-15px}}

