*{box-sizing:border-box}
:root{
  --teal:#0d8f96;
  --teal-dark:#08767e;
  --navy:#0b2a43;
  --blue:#246fbd;
  --blue-dark:#1a5ea3;
  --gold:#ffc844;
  --gold-2:#ffb82e;
  --light:#eef7f7;
  --card:#ffffff;
  --text:#17314c;
  --muted:#50677b;
  --border:#d7e3e8;
}
html,body{
  margin:0;
  padding:0;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--text);
  background:#f8fbfb;
}
a{text-decoration:none}
.hero{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 2% 2%, rgba(255,255,255,.08) 0 55px, transparent 56px),
    radial-gradient(circle at 97% 73%, rgba(255,255,255,.09) 0 76px, transparent 77px),
    linear-gradient(135deg, #12959c 0%, #0a7f87 100%);
  color:#fff;
}
.hero::after{
  content:"";
  position:absolute;
  right:5%;
  top:7%;
  width:120px;
  height:90px;
  opacity:.22;
  background-image:radial-gradient(#fff 2px, transparent 2px);
  background-size:20px 20px;
}
.hero-inner{
  width:min(1320px, calc(100% - 40px));
  margin:auto;
  min-height:575px;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  align-items:center;
  gap:70px;
  padding:55px 20px 92px;
  position:relative;
  z-index:2;
}
.hero-left h1{
  margin:0;
  font-size:68px;
  line-height:1.04;
  letter-spacing:-1.5px;
  font-weight:700;
  color:#fff;
}
.subtext{
  max-width:680px;
  font-size:20px;
  line-height:1.55;
  margin:22px 0 30px;
  color:rgba(255,255,255,.96);
}
.benefits{
  display:flex;
  gap:38px;
  flex-wrap:wrap;
  margin-bottom:34px;
}
.benefit{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:17px;
  line-height:1.35;
  font-weight:700;
}
.benefit-icon{
  width:54px;
  height:54px;
  border-radius:50%;
  background:rgba(255,255,255,.16);
  display:grid;
  place-items:center;
  font-size:25px;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.08);
}
.compare-btn{
  display:inline-flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  min-width:285px;
  padding:17px 24px;
  border-radius:10px;
  background:linear-gradient(135deg,var(--gold),var(--gold-2));
  color:#0d2337;
  font-size:20px;
  font-weight:800;
  box-shadow:0 10px 25px rgba(0,0,0,.14);
}
.compare-btn span{font-size:30px;line-height:1}
.fuel-card{
  background:#fff;
  border-radius:20px;
  padding:40px 32px 34px;
  box-shadow:0 18px 40px rgba(0,0,0,.16);
  color:var(--text);
  position:relative;
  z-index:5;
}
.fuel-card h2{
  text-align:center;
  margin:0 0 28px;
  color:var(--navy);
  font-size:28px;
}
.custom-select{
  position:relative;
  margin-bottom:24px;
}
.select-trigger{
  width:100%;
  height:64px;
  border:1px solid var(--border);
  border-radius:10px;
  padding:0 20px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-size:18px;
  color:var(--text);
  cursor:pointer;
}
.chevron{font-size:22px}
.select-menu{
  display:none;
  position:absolute;
  left:0;
  right:0;
  top:68px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 12px 25px rgba(0,0,0,.14);
  z-index:20;
}
.custom-select.open .select-menu{display:block}
.select-menu a{
  display:block;
  padding:15px 20px;
  font-size:17px;
  color:var(--text);
  background:#fff;
}
.select-menu a:hover{background:#edf6f7}
.continue-btn{
  display:block;
  text-align:center;
  padding:18px 20px;
  border-radius:10px;
  background:linear-gradient(135deg,var(--blue),var(--blue-dark));
  color:#fff;
  font-size:19px;
  font-weight:800;
}
.wave{
  position:absolute;
  left:-2%;
  right:-2%;
  bottom:-75px;
  height:145px;
  background:#f4faf9;
  border-radius:50% 50% 0 0 / 45% 45% 0 0;
}
.why{
  background:#f4faf9;
  padding:42px 40px 36px;
}
.why>h2{
  text-align:center;
  margin:0;
  font-size:34px;
  color:var(--navy);
}
.title-line{
  width:42px;
  height:3px;
  background:var(--teal);
  margin:12px auto 22px;
  border-radius:3px;
}
.cards{
  width:min(1320px,100%);
  margin:0 auto 26px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.card{
  background:#fff;
  border-radius:16px;
  padding:24px 20px;
  display:flex;
  gap:16px;
  box-shadow:0 10px 25px rgba(20,61,80,.09);
  min-height:160px;
}
.card-icon{
  width:56px;
  height:56px;
  min-width:56px;
  border-radius:50%;
  background:#e2f3f5;
  color:var(--teal-dark);
  display:grid;
  place-items:center;
  font-size:27px;
}
.card h3{
  margin:2px 0 9px;
  font-size:18px;
  color:var(--navy);
}
.card p{
  margin:0 0 15px;
  color:var(--muted);
  line-height:1.45;
  font-size:15px;
}
.quote-link{
  color:var(--teal-dark);
  font-weight:800;
  font-size:15px;
}
.ready-box{
  width:min(1320px,100%);
  margin:0 auto;
  border:1px solid #cfe1ee;
  border-radius:14px;
  background:linear-gradient(90deg,#edf7ff,#dfeffc);
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:22px;
  align-items:center;
  padding:24px 28px;
}
.ready-icon{
  width:70px;
  height:70px;
  border-radius:50%;
  background:#fff;
  color:var(--blue);
  display:grid;
  place-items:center;
  font-size:30px;
  box-shadow:0 8px 20px rgba(29,79,118,.10);
}
.ready-copy h3{
  margin:0 0 6px;
  font-size:26px;
  color:var(--navy);
}
.ready-copy p{
  margin:0;
  color:var(--muted);
}
.start-btn{
  min-width:230px;
  text-align:center;
  padding:17px 24px;
  border-radius:10px;
  background:linear-gradient(135deg,var(--blue),#0f66b5);
  color:#fff;
  font-size:18px;
  font-weight:800;
}
@media (max-width:1050px){
  .hero-inner{
    grid-template-columns:1fr;
    gap:36px;
    padding-top:45px;
  }
  .hero-left h1{font-size:56px}
  .fuel-card{width:100%;max-width:720px}
  .cards{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:680px){
  .hero-inner{
    width:calc(100% - 24px);
    padding:34px 6px 80px;
  }
  .hero-left h1{font-size:42px}
  .subtext{font-size:17px}
  .benefits{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
  }
  .benefit{font-size:14px}
  .compare-btn{width:100%;min-width:0}
  .fuel-card{padding:28px 18px 24px}
  .fuel-card h2{font-size:23px}
  .why{padding:36px 16px 28px}
  .why>h2{font-size:28px}
  .cards{grid-template-columns:1fr}
  .ready-box{
    grid-template-columns:1fr;
    text-align:center;
  }
  .ready-icon{margin:auto}
  .start-btn{width:100%;min-width:0}
}
