:root{
  --bg:#ffffff;
  --ink:#0b1220;
  --muted:#5c677a;
  --line:rgba(11,18,32,.12);

  --navy:#05164d;
  --accent:#1a3cff;
  --gold:#ffb300;
  --tint:#f4f6fb;

  --shadow: 0 16px 40px rgba(0,0,0,.14);
  --radius:16px;
  --radius2:12px;

  --container: 1160px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:var(--bg);
}
img{max-width:100%; display:block}
a{color:inherit; text-decoration:none}
p{line-height:1.7}
ul{margin:0; padding-left:18px}

.container{
  width:min(var(--container), calc(100% - 32px));
  margin:0 auto;
}

/* ===== Topbar ===== */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background:var(--navy);
  color:#fff;
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
}
.topbar__inner{
  display:grid;
  grid-template-columns: auto 1fr auto;  /* left / center / right */
  align-items:center;
  gap:16px;
  padding:14px 0;
}
.brand{
  justify-self:start;
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 220px;
}
.brand__mark{
  width:42px;height:42px;
  display:grid;place-items:center;
  border-radius:12px;
  background:rgba(255,255,255,.08);
  color:#fff;
}
.brand__name{font-weight:600; letter-spacing:.2px; font-size:18px}
.brand__sub{font-weight:500; opacity:.9; font-size:12px; margin-top:2px}

.topbar__center{justify-self:end}
.topbar__right{justify-self:end}

/* ✅ Desktop top-center phone “button” (only number, no extra background panel) */
.headerCall{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.30);
  background: transparent;          /* IMPORTANT: no bg */
  color:#fff;
  font-weight:700;
  letter-spacing:.2px;
  box-shadow:none;                  /* IMPORTANT: no bg panel feel */
}
.headerCall:hover{
  background: rgba(255,255,255,.06);
}

.headerCall__num{font-size:14px}

/* ===== Hero ===== */
.hero{padding: 26px 0 10px;}
.hero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:26px;
  align-items:stretch;
}
.hero__media{
  border-radius: var(--radius);
  overflow:hidden;
  background:#e9eefc;
  box-shadow: var(--shadow);
  min-height: 360px;
}
.hero__img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* ✅ FIX GAP: make hero content a flex column and distribute content */
.hero__content{
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  padding:26px;
  display:flex;
  flex-direction:column;
  min-height: 360px; /* match hero media height */
}
.hero__top{flex:1}
.hero__bottom{padding-top:10px}

.hero__pill{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:10px 14px;
  border:1px solid var(--line);
  border-radius:999px;
  font-weight:600;
  color:var(--navy);
  background:#fff;
}
.dot{
  width:10px; height:10px;
  border-radius:50%;
  background:#22c55e;
  box-shadow:0 0 0 4px rgba(34,197,94,.18);
}
.hero__title{
  margin:16px 0 10px;
  font-size:44px;
  line-height:1.1;
  letter-spacing:-.6px;
}
.accent{color:var(--accent)}
.hero__subtitle{
  margin:0 0 18px;
  color:var(--muted);
  font-weight:600;
}

.hero__cta{display:grid; gap:10px;}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-weight:700;
  border-radius: 12px;
  padding:14px 16px;
  border:1px solid transparent;
  cursor:pointer;
  transition: transform .12s ease, filter .12s ease;
  user-select:none;
}
.btn:hover{transform: translateY(-1px); filter:brightness(1.02)}
.btn--primary{
  background: var(--gold);
  color:#1b1b1b;
  box-shadow: 0 14px 28px rgba(255,179,0,.25);
}
.hero__note{
  font-size:13px;
  color:var(--muted);
  font-weight:600;
}

.pillgrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
  margin-top:18px;
}
.pill{
  display:flex;
  align-items:center;      /* vertical center */
  justify-content:center;  /* horizontal center */
  text-align:center;
  font-weight:700;
  padding:12px 16px;
  min-height:48px;         /* consistent height */
  border-radius:999px;
  background:#0b2c92;
  color:#fff;
  box-shadow:0 10px 22px rgba(11,44,146,.18);
}
.pill:hover{filter:brightness(1.06)}
.micro{
  margin:0;
  font-size:12px;
  color:var(--muted);
  font-weight:600;
}

/* ===== Banner ===== */
.banner{margin-top:18px;}
.banner__imgWrap{
  position:relative;
  height: 320px;
  overflow:hidden;
  border-radius: var(--radius);
}
.banner__img{width:100%; height:100%; object-fit:cover; transform: scale(1.02);}
.banner__overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(5,22,77,.82), rgba(5,22,77,.25));
}
.banner__text{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:10px;
  color:#fff;
}
.banner__kicker{font-weight:800; font-size:52px; letter-spacing:-1px;}
.banner__headline{font-weight:700; font-size:26px; opacity:.95;}

/* ===== Micro grid ===== */
.microgrid{padding: 26px 0 8px;}
.microgrid__inner{display:grid; grid-template-columns: repeat(3, 1fr); gap:18px;}
.microItem{
  border:1px solid var(--line);
  border-radius: var(--radius2);
  padding:16px;
  background:#fff;
}
.microItem__title{font-weight:800; color:var(--navy); font-size:18px;}
.microItem__sub{color:var(--muted); font-weight:600; margin-top:6px;}

/* ===== Laurel call ===== */
.laurelCall{padding: 16px 0 10px;}
.laurelCall__inner{
  display:grid;
  grid-template-columns: 140px 1fr 140px;
  align-items:center;
  gap:10px;
  padding: 18px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.laurel{color:#0b2c92; opacity:.9;}
.laurelCall__center{text-align:center;}
.laurelCall__title{font-size:34px; font-weight:800; letter-spacing:-.6px;}
.laurelCall__sub{color:var(--muted); font-weight:700; margin-top:6px;}

.callPill{
  display:inline-flex;
  align-items:center;
  gap:12px;
  margin-top:14px;
  padding:14px 22px;
  border-radius:999px;
  background:#0b7a6c;
  color:#fff;
  font-weight:800;
  box-shadow: 0 16px 34px rgba(11,122,108,.22);
}
.callPill__icon{
  width:40px; height:40px;
  display:grid; place-items:center;
  border-radius:999px;
  background: rgba(0,0,0,.15);
}
.callPill__text{font-size:18px;}

/* ===== Sections ===== */
.section{padding: 46px 0;}
.section__head{max-width: 820px; margin-bottom: 18px;}
.section__head.center{text-align:center; margin-left:auto; margin-right:auto;}
.section__head h2{margin:0 0 8px; font-size:34px; letter-spacing:-.6px;}
.section__head p{margin:0; color:var(--muted); font-weight:700;}

/* ===== About ===== */
.about{
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap:22px;
  align-items:start;
  margin-top: 18px;
}
.logoBox{
  border-radius: 14px;
  overflow:hidden;
  background:#eef2ff;
  aspect-ratio: 16/9;
  border:1px solid var(--line);
  box-shadow: 0 12px 26px rgba(0,0,0,.08);
}
.logoBox__img{width:100%; height:100%; object-fit:cover;}
.about__text h3{margin:0 0 8px; font-size:22px;}
.lead{margin:0 0 14px; font-size:18px; font-weight:800;}
.lead a{color:var(--accent);}

/* ===== Reasons strip ===== */
.reasons{
  background: var(--navy);
  color:#fff;
  padding: 34px 0;
}
.reasons__inner{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:22px;
  align-items:center;
}
.reasons__copy h3{margin:0 0 10px; font-size:24px; letter-spacing:-.3px;}
.reasons__grid{display:grid; grid-template-columns: 1fr 1fr; gap: 10px 22px;}
.reasons__grid li{margin:8px 0; font-weight:700; opacity:.95;}

.reasons__callBox{
  justify-self:end;
  width:min(420px, 100%);
  border-radius: 10px;
  overflow:hidden;
  box-shadow: 0 14px 30px rgba(0,0,0,.25);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
}
.reasons__callTop{
  display:flex;
  align-items:center;
  gap:12px;
  padding:18px;
  background: rgba(255,179,0,.95);
  color:#1b1b1b;
  font-weight:900;
  font-size:22px;
}
.phoneIcon{
  width:44px; height:44px;
  border-radius:999px;
  display:grid; place-items:center;
  background: rgba(0,0,0,.10);
}
.reasons__callBar{height:6px; background: rgba(0,0,0,.15)}

/* ===== Cards ===== */
.cards{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:16px;
  margin-top: 18px;
}
.card{
  border:1px solid var(--line);
  border-radius: 14px;
  overflow:hidden;
  background:#fff;
  box-shadow: 0 12px 24px rgba(0,0,0,.07);
}
.card__img{
  background:#eef2ff;
  aspect-ratio: 16/10;
  overflow:hidden;
}
.card__img img{width:100%; height:100%; object-fit:cover;}
.card__body{padding:14px 14px 16px;}
.card__body h3{margin:0 0 8px; font-size:18px; font-weight:900; color: var(--navy);}
.card__body p{margin:0; color:var(--muted); font-weight:600; font-size:14px;}

/* ===== Footer ===== */
/* .footer{
  padding: 28px 0 100px;
  background:#fff;
  border-top:1px solid rgba(11,18,32,.08);
} */
.sep{opacity:.6}
.disclaimer{
  margin-top:16px;
  padding-top:16px;
  border-top:1px solid rgba(11,18,32,.08);
  color:var(--muted);
}
.disclaimer h4{margin:14px 0 6px; color:var(--ink); font-weight:900;}
.disclaimer p, .disclaimer li{font-weight:600; font-size:13px;}
/* .footer__bottom{margin-top:16px; color:var(--muted); font-weight:700; font-size:13px;} */

/* ===== Scroll to top ===== */
.toTop{
  position: fixed;
  right: 14px;
  bottom: 86px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 0;
  background: #0b2c92;
  color:#fff;
  font-weight:900;
  display:none;
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
  cursor:pointer;
  align-content: center;
}

/* ===== Sticky call ===== */
.stickyCall{
  position: fixed;
  left:0; right:0;
  bottom: 14px;
  display:flex;
  justify-content:center;
  z-index:60;
  pointer-events:none;
}
.stickyCall__btn{
  pointer-events:auto;
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding: 14px 22px;
  border-radius: 999px;
  background: #0b7a6c;
  color:#fff;
  font-weight:900;
  box-shadow: 0 18px 38px rgba(11,122,108,.28);
  border:1px solid rgba(255,255,255,.14);
}
.stickyCall__icon{
  width:34px; height:34px;
  display:grid; place-items:center;
  border-radius:999px;
  background: rgba(0,0,0,.16);
}

/* ===== Responsive ===== */
@media (max-width: 980px){
  /* ✅ Mobile: hide hero image completely */
  .hero__media{display:none;}

  .hero__grid{grid-template-columns: 1fr;}
  .hero__content{min-height:auto;}

  /* hide top center phone on mobile (keep sticky call instead) */
  .topbar__center{display:none;}

  .banner__kicker{font-size:40px;}
  .microgrid__inner{grid-template-columns:1fr;}
  .laurelCall__inner{grid-template-columns: 70px 1fr 70px;}
  .about{grid-template-columns:1fr;}
  .reasons__inner{grid-template-columns:1fr;}
  .reasons__callBox{justify-self:start;}
  .cards{grid-template-columns: 1fr;}
}

@media (max-width: 520px){
  .brand__text{display:none;}
  .banner__imgWrap{height: 260px;}
  .banner__kicker{font-size:30px;}
  .banner__headline{font-size:18px;}
  .hero__title{font-size:34px;}
  .laurelCall__inner{grid-template-columns: 1fr;}
  .laurel{display:none;}
}


/* ===== Countdown inside hero pill ===== */
.countdown{
  margin-left: 10px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding-left: 12px;
  border-left: 1px solid rgba(11,18,32,.14);
}

.countdown__label{
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}

.countdown__time{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .5px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,179,0,.18);
  color: #1b1b1b;
  line-height: 1;
}

/* Optional: red when last 20s */
.countdown__time.is-urgent{
  background: rgba(255, 0, 0, .12);
  color: #b00020;
}

/* Mobile: keep pill clean */
@media (max-width: 520px){
  .countdown__label{display:none;}
  .countdown{
    border-left: 0;
    padding-left: 0;
    margin-left: 8px;
  }
}
/* ===== Mobile: align logo to LEFT ===== */
@media (max-width: 520px){

  .topbar__inner{
    display: flex;
    justify-content: flex-start; /* left align */
  }

  .brand{
    justify-content: flex-start;
  }

  /* Show full logo text (if previously hidden) */
  .brand__text{
    display: block !important;
  }

  /* Hide desktop center phone on mobile */
  .topbar__center{
    display: none;
  }

  /* Hide spacer */
  .topbar__right{
    display: none;
  }
}
/* ===== Sticky call (Desktop = floating pill) ===== */
.stickyCall{
  position: fixed;
  left:0; 
  right:0;
  bottom: 14px;
  display:flex;
  justify-content:center;
  z-index:60;
  pointer-events:none;
}

.stickyCall__btn{
  pointer-events:auto;
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding: 14px 22px;
  border-radius: 999px;
  background: #0b7a6c;
  color:#fff;
  font-weight:600;
  box-shadow: 0 18px 38px rgba(11,122,108,.28);
  border:1px solid rgba(255,255,255,.14);
}

/* ===== MOBILE: full width strip ===== */
@media (max-width: 520px){

  .stickyCall{
    bottom: 0;
    padding: 0;
    justify-content: stretch;
  }

  .stickyCall__btn{
    width: 100%;
    justify-content: center;
    border-radius: 0;        /* remove pill */
    padding: 18px 16px;
    box-shadow: 0 -6px 20px rgba(0,0,0,.18);
  }

  /* make footer safe above strip */
  .footer{
    padding-bottom: 110px;
  }

  /* move scroll-to-top above strip */
  .toTop{
    bottom: 90px;
  }
}
