:root{
  --bg:#050505;
  --bg2:#0b0b0b;
  --card:#0f0f0f;
  --text:#f2f2f2;
  --muted:#b3b3b3;
  --line:rgba(255,255,255,.08);

  /* BRAND */
  --accent:#ff7a18;      /* orange */
  --accent-dark:#cc5f0f; /* darker orange */

  /* STATUS */
  --accent2:#4ade80;     /* green dot */

  --shadow: 0 18px 40px rgba(0,0,0,.6);
  --radius: 18px;
  --max: 1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 20% -10%, rgba(255,122,24,.18), transparent 60%),
    radial-gradient(900px 600px at 90% 10%, rgba(255,154,60,.10), transparent 55%),
    linear-gradient(180deg, var(--bg), #070b14 70%);
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}
.container{width:100%; max-width:var(--max); margin:0 auto; padding:0 20px}

.skip{position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden}
.skip:focus{left:12px; top:12px; width:auto; height:auto; padding:10px 14px; background:#000; border:1px solid var(--line); border-radius:12px; z-index:9999}

/* =========================
   HEADER / NAV
   ========================= */
header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(11,18,32,.55);
  border-bottom:1px solid var(--line);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  position: relative; /* helps mobile absolute positioning */
}

.brand{
  display:flex; align-items:center; gap:12px;
  font-weight:700; letter-spacing:.2px;
}

.links{display:flex; align-items:center; gap:18px}
.links a{
  color:var(--muted);
  font-weight:600;
  padding:8px 10px;
  border-radius:12px;
}
.links a:hover{
  color: var(--accent);
  background: transparent;
}
.links a.active{
  color: var(--accent);
  background: transparent;
  border: 1px solid transparent;
}

.cta{display:flex; gap:10px; align-items:center}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:11px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color:var(--text);
  font-weight:700;
  cursor:pointer;
  transition:.2s ease;
}
.btn:hover{transform: translateY(-1px); box-shadow: 0 10px 28px rgba(0,0,0,.28)}
.btn.primary{
  background: linear-gradient(135deg, rgba(255,122,24,.95), rgba(255,122,24,.65));
  border:1px solid rgba(255,122,24,.35);
}
.btn.primary:hover{filter: brightness(1.03)}
.btn.ghost{background:transparent}

/* green availability dot */
.btn .dot{
  width:10px; height:10px; border-radius:999px;
  background:var(--accent2);
  box-shadow:0 0 0 4px rgba(74,222,128,.12);
}

/* Hamburger */
.mobile-toggle{display:none}
.hamburger{
  width: 44px;
  height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hamburger span{
  display:block;
  width: 18px;
  height: 2px;
  background: rgba(255,255,255,.85);
  border-radius: 2px;
}
.hamburger span + span{ margin-top: 2px; }

/* Mobile dropdown menu */
.mobile-menu{
  display:none;
  border-top:1px solid var(--line);
}
.mobile-menu.open{display:block}
.mobile-menu a{
  display:block;
  padding:12px 0;
  color:var(--muted);
  font-weight:800;
}
.mobile-menu a:hover{color:var(--accent)}

/* =========================
   HERO
   ========================= */
.hero{padding:64px 0 26px}

.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:26px;
  align-items:stretch;
}

.hero h1{
  margin:0;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height:1.05;
  letter-spacing:-.8px;
}
.hero p{
  margin:14px 0 22px;
  font-size: 16.5px;
  line-height:1.65;
  color:var(--muted);
  max-width: 58ch;
}

.badges{display:flex; flex-wrap:wrap; gap:10px; margin:18px 0 22px}
.badge{
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  padding:9px 12px;
  border-radius: 999px;
  color:var(--muted);
  font-weight:700;
  font-size:13px;
}
.badge strong{color:var(--text)}

.hero-card{
  border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
  position:relative;
}

.hero-card .photo{
  height: 240px;
  position: relative;
  overflow: hidden;
  background: #0b1220;
}

/* Carousel sizing */
.hero-carousel{ position: relative; width: 100%; height: 100%; }
.carousel-viewport{ width: 100%; height: 100%; overflow: hidden; }
.carousel-track{ display: flex; height: 100%; transition: transform .6s ease; }
.carousel-slide{ min-width: 100%; height: 100%; }

.carousel-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.02);
}

/* Dots */
.carousel-dots{
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.carousel-dot{
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
}
.carousel-dot.active{ background: var(--accent); }

/* Disable carousel arrows (as requested previously) */
.carousel-btn{ display:none !important; }

.hero-card .overlay{
  position:absolute; inset:0;
  background: radial-gradient(600px 260px at 20% 20%, rgba(255,122,24,.22), transparent 65%),
              linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.62));
}

.hero-card .info{position:relative; padding:18px}

.kpi{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin-top:12px;
}
.kpi .box{
  border:1px solid var(--line);
  border-radius: 16px;
  padding:12px;
  background: rgba(255,255,255,.04);
}
.kpi .num{font-size:18px; font-weight:900}
.kpi .lbl{font-size:12px; color:var(--muted); font-weight:700; margin-top:4px}

/* =========================
   SECTIONS / CARDS
   ========================= */
.section{padding:54px 0}
.section h2{font-size:28px; margin:0 0 10px; letter-spacing:-.4px}
.section .sub{margin:0 0 20px; color:var(--muted); line-height:1.6; max-width: 70ch}

.grid{display:grid; grid-template-columns: repeat(3, 1fr); gap:16px}

.card{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  padding:18px;
  box-shadow: 0 10px 26px rgba(0,0,0,.22);
}
.card:hover{border-color: rgba(255,122,24,.25)}
.card h3{margin:0 0 8px; font-size:18px}
.card p{margin:0; color:var(--muted); line-height:1.6}
.card .meta{margin-top:12px; display:flex; gap:10px; flex-wrap:wrap}
.pill{
  font-size:12px; font-weight:800;
  padding:7px 10px;
  border:1px solid var(--line);
  border-radius: 999px;
  color:var(--muted);
  background: rgba(255,255,255,.03);
}

/* Keep list bullets/numbers aligned LEFT always */
.card ul,
.card ol{
  text-align:left;
  padding-left:18px;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

/* Split cards */
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  align-items:start;
}

/* Service Area (no bullet) */
.card.service-area{
  text-align: center;
}
.card.service-area ul{
  list-style: none;
  padding-left: 0;
  margin: 10px 0 0;
}
.card.service-area li::marker{ content:""; }

.note{
  margin-top:14px;
  padding:14px;
  border-radius: 16px;
  border:1px solid rgba(255,122,24,.22);
  background: rgba(255,122,24,.08);
  color: var(--text);
  font-weight:700;
}

/* =========================
   SERVICES CTA BAND (FIXED)
   ========================= */
.cta-band{
  border:1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(135deg, rgba(255,122,24,.12), rgba(255,154,60,.08));
  box-shadow: var(--shadow);

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 24px;

  padding: 28px 32px;
  width: 100%;
  box-sizing: border-box;
}

.cta-band > div:first-child{
  flex: 1;
  min-width: 240px;
}

.cta-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap: 14px;
  flex: 0 0 auto;
  white-space: nowrap;
}

.cta-band h3{margin:0; font-size:18px}
.cta-band p{margin:6px 0 0; color:var(--muted); line-height:1.5}

/* =========================
   FORMS
   ========================= */
.form{
  display:grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap:12px;
  margin-top:14px;
}
.field{
  display:flex;
  flex-direction:column;
  gap:8px;
  position: relative;
  min-width: 0;
}
.field label{font-weight:800; font-size:13px}
.field input,.field textarea,.field select{
  background: rgba(255,255,255,.05);
  border:1px solid var(--line);
  border-radius: 14px;
  padding:12px;
  color:var(--text);
  outline:none;
  width:100%;
  min-width:0;
}
.field input:focus,.field textarea:focus,.field select:focus{
  border-color: rgba(255,122,24,.35);
  box-shadow: 0 0 0 4px rgba(255,122,24,.12);
}
.field textarea{min-height:120px; resize:vertical}
.form .full{grid-column: 1 / -1}

/* select styling */
.field select{
  appearance: none;
  background-color: rgba(255,255,255,.05);
  background-image:
    linear-gradient(45deg, transparent 50%, var(--accent) 50%),
    linear-gradient(135deg, var(--accent) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(1em + 2px),
    calc(100% - 13px) calc(1em + 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 34px;
}
select option{ background-color:#fff; color:#111; }

/* optional input icon */
.field .input-icon{
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.toast{display:none !important}

/* =========================
   FOOTER
   ========================= */
.footer{border-top:1px solid var(--line); padding:28px 0; color:var(--muted)}
.footer-grid{display:grid; grid-template-columns: 1.4fr .8fr .8fr; gap:16px}
.footer a{color:var(--muted)}
.footer a:hover{color:var(--text)}
.mini{font-size:12px; margin-top:10px; color:rgba(169,182,204,.85)}
hr.soft{border:0; height:1px; background: var(--line); margin:20px 0}

/* =========================
   RESPONSIVE BREAKPOINTS
   ========================= */
@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr}
  .grid{grid-template-columns: 1fr 1fr}
  .footer-grid{grid-template-columns: 1fr}
  .split{grid-template-columns: 1fr}
  .form{grid-template-columns: 1fr}
}

@media (max-width: 768px){
  /* CTA band stacks nicely */
  .cta-band{
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    padding: 22px 18px;
  }
  .cta-actions{
    justify-content: center;
    flex-wrap: wrap;
    white-space: normal;
  }
  .cta-actions .btn{
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 720px){
  /* hide desktop links, show hamburger */
  .links{display:none}
  .mobile-toggle{display:inline-flex}

  .grid{grid-template-columns: 1fr}
  .kpi{grid-template-columns: 1fr}

  /* center hero content on mobile (ONLY hero) */
  .hero-grid{ text-align: center; }
  .hero p{ margin-left:auto; margin-right:auto; }
  .badges{ justify-content: center; }

  .mini{ text-align: center; }
}

/* =========================================================
   MOBILE HEADER FINAL (Option A)
   Logo centered | Call left | Hamburger right
   Request hidden on mobile | hamburger does NOT jump
   ========================================================= */
@media (max-width: 720px){

  header .nav{
    position: relative;
    min-height: 64px;
    padding: 12px 0;
    align-items: center;
  }

  /* hide Request Service on mobile */
  header .cta .btn.primary{
    display:none !important;
  }

  /* Call Now left */
  header .cta .btn.ghost{
    position:absolute;
    left:14px;
    top:50%;
    transform: translateY(-50%) !important;
    padding: 9px 12px;
    border-radius: 999px;
    white-space: nowrap;
  }

  /* Logo dead center */
  header .brand{
    position:absolute;
    left:50%;
    top:50%;
    transform: translate(-50%, -50%) !important;
    margin:0 !important;
    z-index:5;
  }
  header .brand img{
    height:28px !important;
    width:auto;
    display:block;
  }

  /* Hamburger right (no box / no jump) */
  header .mobile-toggle{
    position:absolute;
    right:14px;
    top:50%;
    transform: translateY(-50%) !important;

    width:44px;
    height:44px;
    padding:0;

    background: transparent !important;
    border:0 !important;
    box-shadow:none !important;

    transition:none !important;
  }
  header .mobile-toggle:hover,
  header .mobile-toggle:active,
  header .mobile-toggle:focus,
  header .mobile-toggle:focus-visible{
    transform: translateY(-50%) !important;
    box-shadow:none !important;
    outline:none !important;
  }
}
/* ===== FIX: hide hamburger on desktop, show only on mobile ===== */

/* Desktop default */
header .mobile-toggle{
  display: none !important;
}

/* Mobile only */
@media (max-width: 720px){
  header .mobile-toggle{
    display: inline-flex !important;
  }
}
/* =========================
   SECTION BOX SPACING FIX
   ========================= */

/* Add vertical spacing between stacked cards */
.section .card {
  margin-bottom: 28px;
}

/* Increase spacing inside grids */
.section .grid {
  row-gap: 28px;
}

/* Increase spacing for split layouts */
.section .split {
  gap: 28px;
}

/* If cards are stacked directly (no grid) */
.section > .card {
  margin-bottom: 28px;
}

/* Mobile: slightly tighter but still clean */
@media (max-width: 768px) {
  .section .card {
    margin-bottom: 22px;
  }

  .section .grid {
    row-gap: 22px;
  }

  .section .split {
    gap: 22px;
  }
}
/* Center "Florida Statewide" text inside Service Area card */
.card.service-area p,
.card.service-area li {
  text-align: center;
}

/* If it's a paragraph (not a list item), make it stand out */
.card.service-area p {
  font-weight: 600;
}
/* Nudge "Florida Statewide" upward slightly */
.card.service-area p:first-of-type,
.card.service-area li {
  margin-top: -13px;
}
/* =====================================
   CONTACT PAGE: FORM FIRST, CONTACT BELOW
   ===================================== */

/* Force vertical stacking */
.contact-page .split {
  display: flex !important;
  flex-direction: column !important;
  gap: 28px;
}

/* Make sure form stays on top */
.contact-page #serviceForm {
  order: 1;
}

/* Contact box goes underneath */
.contact-page #contactBox {
  order: 2;
}
/* =====================================
   CONTACT PAGE – MAKE SERVICE FORM BIGGER
   ===================================== */

/* Let the form card dominate the width */
.contact-page #serviceForm {
  width: 100%;
  max-width: 860px;          /* makes it feel premium & roomy */
  margin-left: auto;
  margin-right: auto;
}

/* Keep contact box slightly narrower */
.contact-page #contactBox {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Add more internal padding to the form card */
.contact-page #serviceForm.card {
  padding: 28px 28px 30px;
}

/* Make the textarea noticeably taller */
.contact-page #serviceForm textarea {
  min-height: 180px;
}

/* Give inputs more breathing room */
.contact-page #serviceForm .field {
  margin-bottom: 14px;
}

/* Desktop: allow form to visually dominate */
@media (min-width: 981px) {
  .contact-page .split {
    align-items: stretch;
  }
}
/* =====================================
   CONTACT PAGE – CENTER HEADER TEXT
   ===================================== */

.contact-page .section > h2,
.contact-page .section > p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
/* Center the Contact page header (Request Service + subtitle) */
body.contact-page main.section .container > h2,
body.contact-page main.section .container > .sub,
body.contact-page main.section .container > p.sub {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
/* Center + constrain Contact box width */
#contactBox {
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}
#contactBox {
  text-align: center;
}
/* =========================================================
   MOBILE CLEANUP (CENTER EVERYTHING EXCEPT LISTS)
   + FIX HAMBURGER + MOBILE MENU
   ========================================================= */
@media (max-width: 720px){

  /* ---------- 1) CENTER MOST THINGS ---------- */
  .container{ text-align: center; }

  h1,h2,h3,p,.sub,.mini{ text-align: center; }

  /* Center pills/badges/meta rows */
  .badges,
  .meta{
    justify-content: center;
  }

  /* Center buttons rows */
  .cta-actions,
  .cta-band{
    text-align: center;
  }

  /* Center cards generally */
  .card{
    text-align: center;
  }

  /* ---------- 2) BUT KEEP LISTS LEFT-ALIGNED ---------- */
  ul, ol,
  .card ul, .card ol,
  .list{
    text-align: left !important;
    margin-left: 0 !important;
    padding-left: 18px !important;
    list-style-position: outside !important;
  }

  /* If you have list items inside a centered card, keep them left */
  li{
    text-align: left !important;
  }

  /* ---------- 3) HAMBURGER: LOCK IT (NO JUMP) ---------- */
  header .mobile-toggle{
    display: inline-flex !important;
    position: absolute !important;
    right: 14px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;

    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;

    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;

    transition: none !important; /* kill hover movement */
  }

  /* Stop the global .btn:hover translateY from affecting hamburger */
  header .mobile-toggle:hover,
  header .mobile-toggle:active,
  header .mobile-toggle:focus,
  header .mobile-toggle:focus-visible{
    transform: translateY(-50%) !important;
    box-shadow: none !important;
    outline: none !important;
  }

  /* Make sure the hamburger bars are centered */
  header .hamburger{
    display: grid !important;
    place-items: center !important;
  }

  /* ---------- 4) MOBILE MENU LOOKS CLEAN + CENTERED ---------- */
  .mobile-menu{
    text-align: center;
    padding: 10px 0;
  }

  .mobile-menu a{
    padding: 12px 0;
    display: block;
    font-weight: 800;
  }
}
/* =========================================================
   MOBILE HEADER + HERO CENTERING (Fix hamburger spacing + true centering)
   ========================================================= */
@media (max-width: 720px){

  /* ----- HEADER LAYOUT: reserve equal left/right space so logo is TRUE centered ----- */
  header .nav{
    position: relative !important;
    min-height: 64px !important;
  }

  /* Put Call Now on the left */
  header .cta .btn.ghost{
    position: absolute !important;
    left: 14px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    white-space: nowrap !important;
  }

  /* Hide Request Service on mobile (as you wanted earlier) */
  header .cta .btn.primary{
    display: none !important;
  }

  /* Hamburger locked on the right */
  header .mobile-toggle{
    position: absolute !important;
    right: 14px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    transition: none !important;
    display: grid !important;
    place-items: center !important;
  }

  /* Stop hover/tap from moving it */
  header .mobile-toggle:hover,
  header .mobile-toggle:active,
  header .mobile-toggle:focus,
  header .mobile-toggle:focus-visible{
    transform: translateY(-50%) !important;
    box-shadow: none !important;
    outline: none !important;
  }

  /* Logo DEAD CENTER (ignores left/right button widths) */
  header .brand{
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    z-index: 5 !important;
  }
  header .brand img{
    height: 52px !important;
    width: auto !important;
    display: block !important;
  }

  /* ----- HAMBURGER ICON: tighten line spacing ----- */
  header .hamburger{
    width: 44px !important;
    height: 44px !important;
    display: grid !important;
    place-items: center !important;
  }

  header .hamburger span{
    width: 18px !important;
    height: 2px !important;
    border-radius: 2px !important;
    background: rgba(255,255,255,.85) !important;
    display: block !important;
    margin: 0 !important;           /* remove inherited spacing */
  }

  /* tighter gap between lines */
  header .hamburger span + span{
    margin-top: 3px !important;     /* change to 2px if you want even tighter */
  }

  /* ----- HERO: center pills + buttons properly ----- */
  .hero-grid{
    text-align: center !important;
  }

  .badges{
    justify-content: center !important;
  }

  /* Center the hero buttons row (your inline flex div) */
  .hero-grid > div:first-child > div[style*="display:flex"]{
    justify-content: center !important;
  }

  /* Make hero buttons align nicely */
  .hero-grid .btn{
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
/* ===== FORCE hamburger line spacing (mobile only) ===== */
@media (max-width: 720px){

  /* target the EXACT button in your HTML: <button class="btn mobile-toggle hamburger"> */
  header .cta button.hamburger{
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 4px !important;          /* <-- controls spacing */
  }

  header .cta button.hamburger span{
    margin: 0 !important;         /* kill any inherited margin */
    height: 2px !important;
    width: 18px !important;
    display: block !important;
  }

  /* nuke the old margin-top rule no matter what */
  header .cta button.hamburger span + span{
    margin-top: 0 !important;
  }
}
/* Mobile: center "Florida Statewide" only */
@media (max-width: 720px){
  .card.service-area li,
  .card.service-area p {
    text-align: center;
  }
}
@media (max-width: 720px){
  .card.service-area li:first-child,
  .card.service-area p:first-of-type {
    text-align: center;
  }
}
/* Mobile: center the Service Area card text (guaranteed hit) */
@media (max-width: 720px){
  .card.service-area{
    text-align: center !important;
  }

  /* If any lists exist inside, center the items too */
  .card.service-area ul,
  .card.service-area ol{
    list-style: none !important;
    padding-left: 0 !important;
    margin: 10px 0 0 !important;
  }

  .card.service-area li{
    text-align: center !important;
    margin: 0 !important;
  }
}
/* Mobile: nudge "Florida Statewide" up slightly */
@media (max-width: 720px){
  .card.service-area{
    text-align: center !important;
  }

  /* Move the main line up */
  .card.service-area *{
    margin-top: 0;
  }

  .card.service-area p,
  .card.service-area div,
  .card.service-area span{
    margin-top: 10px !important;  /* adjust: -4px / -6px / -8px */
  }
}
/* Desktop: center all section sub-headers */
@media (min-width: 769px){
  .section .sub{
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}
/* Desktop: center page titles + sub-headers */
@media (min-width: 769px){
  .section h2,
  .section .sub{
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}
/* Mobile: shrink Call Now button to avoid logo overlap */
@media (max-width: 720px){
  header .cta .btn.ghost{
    padding: 6px 10px !important;   /* smaller tap target */
    font-size: 12px !important;     /* slightly smaller text */
    line-height: 1 !important;
    border-radius: 999px !important;
    max-width: 120px;               /* prevents stretching */
    white-space: nowrap;
  }

  /* Optional: slightly reduce dot size inside button */
  header .cta .btn.ghost .dot{
    width: 8px;
    height: 8px;
    box-shadow: 0 0 0 3px rgba(74,222,128,.12);
  }
}
@media (max-width: 720px){
  header .cta .btn.ghost{
    left: -14px !important; /* was 14px */
  }
}
/* Desktop: make navbar logo bigger */
@media (min-width: 769px){
  header .brand img{
    height: 44px;          /* increase size (was ~34px) */
    width: auto;
  }
}
