:root{
      --bg:#f6f8fb;
      --surface:#ffffff;
      --surface2:#f3f6fb;
      --text:#0f172a;
      --muted:#475569;
      --line:rgba(15,23,42,.10);
      --accent:#2bd4a8;
      --accentDark:#18b892;
      --shadow: 0 12px 34px rgba(15,23,42,.12);
      --radius:18px;
      --max:1120px;
      --pad:20px;
      --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
    }

    *{ box-sizing:border-box; }
    body{
      margin:0;
      font-family:var(--font);
      background:
        radial-gradient(1100px 650px at 10% -10%, rgba(43,212,168,.16), transparent 60%),
        radial-gradient(900px 600px at 95% 0%, rgba(43,212,168,.10), transparent 55%),
        linear-gradient(180deg, #ffffff, var(--bg) 60%, var(--bg));
      color:var(--text);
    }
    a{ color:inherit; text-decoration:none; }
    .wrap{ max-width:var(--max); margin:0 auto; padding:0 var(--pad); }

    /* Topbar */
    .topbar{
      border-bottom:1px solid var(--line);
      background:rgba(255,255,255,.82);
      backdrop-filter: blur(10px);
      position: sticky;
      top: 0;
      z-index: 20;
    }
    .toprow{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:12px 0;
      gap:12px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:10px;
      font-weight:800;
      letter-spacing:.2px;
    }
    .logoMark{
      width:28px; height:28px;
      border-radius:10px;
      background:
        radial-gradient(12px 12px at 35% 30%, rgba(255,255,255,.75), transparent 60%),
        linear-gradient(135deg, var(--accent), #6fe8cf 55%, #b7f4e7);
      box-shadow: 0 10px 24px rgba(43,212,168,.22);
    }
    .phone{
      display:flex;
      align-items:center;
      gap:8px;
      font-weight:700;
      color:var(--text);
      white-space:nowrap;
    }
    .pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:9px 12px;
      border:1px solid var(--line);
      border-radius:999px;
      background:rgba(255,255,255,.9);
      box-shadow: 0 8px 18px rgba(15,23,42,.06);
    }

    /* Menu */
    .menu{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      padding:10px 0 14px;
    }
    .menu a{
      padding:10px 14px;
      border-radius:999px;
      border:1px solid var(--line);
      background:#fff;
      color:rgba(15,23,42,.88);
      font-weight:700;
      font-size:14px;
      transition: transform .12s ease, background .12s ease, border-color .12s ease, box-shadow .12s ease;
    }
    .menu a:hover{
      transform: translateY(-1px);
      border-color:rgba(43,212,168,.35);
      box-shadow: 0 10px 20px rgba(15,23,42,.07);
    }

    /* Hero */
    .hero{
      padding:48px 0 22px;
    }
    .heroGrid{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:18px;
      align-items:stretch;
    }
    @media (max-width: 900px){
      .heroGrid{ grid-template-columns: 1fr; }
    }
    .heroCard{
      border:1px solid var(--line);
      background: linear-gradient(180deg, #fff, var(--surface2));
      border-radius:var(--radius);
      box-shadow:var(--shadow);
      padding:26px;
      overflow:hidden;
      position:relative;
    }
    .heroCard::before{
      content:"";
      position:absolute; inset:-120px -140px auto auto;
      width:380px; height:380px;
      background: radial-gradient(circle at 35% 35%, rgba(43,212,168,.20), transparent 60%);
      transform: rotate(18deg);
      pointer-events:none;
    }
    h1{
      margin:0 0 10px;
      font-size: clamp(28px, 3vw, 40px);
      line-height:1.15;
      letter-spacing:-.3px;
    }
    .sub{
      margin:0 0 18px;
      color:var(--muted);
      max-width: 62ch;
      line-height:1.55;
    }
    .zipRow{
      display:flex;
      gap:10px;
      align-items:center;
      flex-wrap:wrap;
      margin-top:14px;
    }
    .input{
      display:flex;
      align-items:center;
      gap:10px;
      padding:12px 14px;
      border:1px solid rgba(15,23,42,.14);
      border-radius:14px;
      background:#fff;
      min-width: 260px;
      flex:1;
      box-shadow: 0 10px 22px rgba(15,23,42,.06);
    }
    .input input{
      width:100%;
      border:none;
      outline:none;
      background:transparent;
      color:var(--text);
      font-size:15px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:12px 16px;
      border:none;
      border-radius:14px;
      background: linear-gradient(135deg, var(--accent), var(--accentDark));
      color:white;
      font-weight:800;
      cursor:pointer;
      box-shadow: 0 14px 30px rgba(43,212,168,.22);
      transition: transform .12s ease, filter .12s ease, box-shadow .12s ease;
    }
    .btn:hover{ transform: translateY(-1px); filter:saturate(1.05); box-shadow: 0 18px 36px rgba(43,212,168,.26); }
    .btn:active{ transform: translateY(0px); }

    .heroSide{
      border:1px solid var(--line);
      background:#fff;
      border-radius:var(--radius);
      padding:20px;
      box-shadow:var(--shadow);
    }
    .miniTitle{
      font-weight:900;
      font-size:14px;
      letter-spacing:.2px;
      color:rgba(15,23,42,.92);
      margin:0 0 10px;
    }
    .miniCopy{
      margin:0 0 14px;
      color:var(--muted);
      line-height:1.55;
      font-size:14px;
    }
    .checks{
      display:grid;
      gap:10px;
      margin-top:12px;
    }
    .check{
      display:flex; gap:10px; align-items:flex-start;
      color:rgba(15,23,42,.88);
      font-size:14px;
      line-height:1.35;
    }
    .dot{
      width:18px; height:18px;
      border-radius:6px;
      background:rgba(43,212,168,.14);
      border:1px solid rgba(43,212,168,.28);
      display:inline-flex;
      align-items:center;
      justify-content:center;
      margin-top:1px;
      flex:0 0 auto;
    }
    .dot svg{ width:12px; height:12px; }

    /* Tiles */
    .tiles{
      padding:10px 0 40px;
    }
    .tileGrid{
      display:grid;
      grid-template-columns: repeat(6, 1fr);
      gap:12px;
    }
    @media (max-width: 980px){
      .tileGrid{ grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 520px){
      .tileGrid{ grid-template-columns: repeat(2, 1fr); }
    }
    .tile{
      border:1px solid var(--line);
      background:#fff;
      border-radius:16px;
      padding:16px 14px;
      transition: transform .12s ease, border-color .12s ease, box-shadow .12s ease;
      cursor:pointer;
      min-height:84px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      box-shadow: 0 10px 24px rgba(15,23,42,.06);
    }
    .tile:hover{
      transform: translateY(-2px);
      border-color:rgba(43,212,168,.35);
      box-shadow: 0 16px 34px rgba(15,23,42,.10);
    }
    .tileTop{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
    }
    .tileIcon{
      width:34px; height:34px;
      border-radius:14px;
      background: rgba(43,212,168,.14);
      border:1px solid rgba(43,212,168,.25);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .tileIcon svg{ width:18px; height:18px; opacity:.95; }
    .tileName{
      font-weight:900;
      letter-spacing:.15px;
      font-size:14px;
    }
    .tileHint{
      color:var(--muted);
      font-size:12px;
      margin-top:10px;
    }

    /* Generic section styles */
    section{ padding:40px 0; }
    .sectionHead{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:18px;
      margin-bottom:16px;
    }
    h2{
      margin:0;
      font-size:22px;
      letter-spacing:-.2px;
    }
    .sectionSub{
      margin:0;
      color:var(--muted);
      line-height:1.55;
      max-width: 70ch;
      font-size:14px;
    }

    /* Carrier wall */
    .carrierWall{
      border:1px solid var(--line);
      background:#fff;
      border-radius:var(--radius);
      padding:18px;
      box-shadow: 0 10px 24px rgba(15,23,42,.06);
    }
    .logoGrid{
      display:grid;
      grid-template-columns: repeat(6, 1fr);
      gap:10px;
    }
    @media (max-width: 980px){
      .logoGrid{ grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 520px){
      .logoGrid{ grid-template-columns: repeat(2, 1fr); }
    }
    .logoBox{
      border:1px dashed rgba(15,23,42,.18);
      background:rgba(246,248,251,.9);
      border-radius:14px;
      height:58px;
      display:flex;
      align-items:center;
      justify-content:center;
      color:rgba(15,23,42,.55);
      font-weight:800;
      font-size:12px;
      letter-spacing:.3px;
      text-transform:uppercase;
    }

    /* Steps */
    .stepsGrid{
      display:grid;
      grid-template-columns: repeat(5, 1fr);
      gap:12px;
    }
    @media (max-width: 980px){
      .stepsGrid{ grid-template-columns: 1fr; }
    }
    .step{
      border:1px solid var(--line);
      background:#fff;
      border-radius:16px;
      padding:16px;
      box-shadow: 0 10px 24px rgba(15,23,42,.06);
    }
    .stepNum{
      width:34px; height:34px;
      border-radius:14px;
      background: rgba(43,212,168,.14);
      border:1px solid rgba(43,212,168,.25);
      display:flex; align-items:center; justify-content:center;
      font-weight:900;
      margin-bottom:10px;
      color: rgba(15,23,42,.86);
    }
    .stepTitle{ font-weight:900; margin:0 0 6px; }
    .stepCopy{ margin:0; color:var(--muted); line-height:1.55; font-size:14px; }

    /* Articles */
    .articleGrid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:12px;
    }
    @media (max-width: 980px){
      .articleGrid{ grid-template-columns: 1fr; }
    }
    .article{
      border:1px solid var(--line);
      background:#fff;
      border-radius:16px;
      overflow:hidden;
      transition: transform .12s ease, border-color .12s ease, box-shadow .12s ease;
      box-shadow: 0 10px 24px rgba(15,23,42,.06);
    }
    .article:hover{
      transform: translateY(-2px);
      border-color:rgba(43,212,168,.35);
      box-shadow: 0 16px 34px rgba(15,23,42,.10);
    }
    .thumb{
      height:110px;
      background: linear-gradient(135deg, rgba(43,212,168,.22), rgba(43,212,168,.08));
      border-bottom:1px solid var(--line);
    }
    .articleBody{ padding:14px; }
    .kicker{
      font-size:12px;
      color:rgba(15,23,42,.60);
      letter-spacing:.28px;
      text-transform:uppercase;
      margin:0 0 8px;
      font-weight:800;
    }
    .articleTitle{
      margin:0 0 8px;
      font-weight:900;
      letter-spacing:-.15px;
    }
    .articleCopy{
      margin:0 0 12px;
      color:var(--muted);
      line-height:1.55;
      font-size:14px;
    }
    .readMore{
      display:inline-flex;
      gap:8px;
      align-items:center;
      color:rgba(15,23,42,.90);
      font-weight:900;
      font-size:13px;
    }

    /* CTA */
    .cta{
      padding:40px 0 56px;
    }
    .ctaBox{
      border:1px solid rgba(15,23,42,.10);
      background: linear-gradient(135deg, rgba(43,212,168,.16), rgba(43,212,168,.06));
      border-radius:var(--radius);
      padding:22px;
      box-shadow:var(--shadow);
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:16px;
      flex-wrap:wrap;
    }
    .ctaBox h3{
      margin:0 0 6px;
      font-size:20px;
      letter-spacing:-.15px;
    }
    .ctaBox p{
      margin:0;
      color:rgba(15,23,42,.78);
      line-height:1.55;
      max-width:70ch;
      font-size:14px;
    }
    .ctaActions{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      align-items:center;
    }
    .btnSecondary{
      background: #fff;
      border:1px solid rgba(15,23,42,.14);
      box-shadow: 0 10px 22px rgba(15,23,42,.06);
      font-weight:900;
      color: rgba(15,23,42,.88);
    }
    .btnSecondary:hover{
      border-color:rgba(43,212,168,.35);
    }

    /* Footer */
    footer{
      border-top:1px solid var(--line);
      background:#fff;
      padding:26px 0;
      color:rgba(15,23,42,.84);
    }
    .footGrid{
      display:grid;
      grid-template-columns: 1.2fr .8fr .8fr;
      gap:18px;
    }
    @media (max-width: 980px){
      .footGrid{ grid-template-columns: 1fr; }
    }
    .footTitle{ font-weight:900; margin:0 0 8px; }
    .footCopy{ margin:0; color:rgba(15,23,42,.72); line-height:1.6; font-size:13px; }
    .links{
      display:grid;
      gap:8px;
      font-size:13px;
      color:rgba(15,23,42,.78);
    }
    .links a{ opacity:.95; }
    .links a:hover{ opacity:1; text-decoration:underline; }
    .fineprint{
      margin-top:16px;
      padding-top:14px;
      border-top:1px solid var(--line);
      color:rgba(15,23,42,.62);
      font-size:12px;
      line-height:1.6;
    }

    /* lock header height behavior */
.toprow{
  display:grid;
  grid-template-columns: auto 1fr auto; /* brand | menu | phone */
  align-items:center;
  min-height:48px;
  padding:12px 0;
  gap:12px;
}
/* make the bird small and non-influential */
.brandBird{
  height:60px;              /* key change */
  width:auto;
  display:block;
  flex-shrink:0;
}
  
    /* Inline menu between brand and phone */
    .inlineMenu{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      flex:1;
      padding:0; /* override menu padding when inline */
}
    .inlineMenu a{
      white-space:nowrap;
    }
    .phone{
      }
/*For Agents*/
.phoneInline{
  display:flex;
  align-items:center;
  gap:10px;
  white-space:nowrap;
}

.agentLink{
  font-size:12px;
  font-weight:800;
  letter-spacing:.25px;
  color: rgba(15,23,42,.65);
  text-transform:uppercase;
}

.agentLink:hover{
  color: rgba(15,23,42,.92);
  text-decoration:underline;
}

/* Mobile-only header simplification */
@media (max-width: 900px){
  /* Phone pill: icon only */
  .phoneText{
    display:none;
  }
@media (min-width: 901px){
  .agentLink{
    text-transform: uppercase;
  }
}
@media (max-width: 900px){
  .agentLink{
    text-transform: none;
  }
}
  /* Hide header "For Agents" on mobile */
  .agentDesktop{
    display:none !important;
  }

  /* Optional: tighten pill since it's icon-only */
  .pill{
    padding:9px 10px;
  }

  /* Make the menu "For Agents" stand out as the bottom action */
  .agentMobile{
    border-color: rgba(43,212,168,.35);
  }
}

/* Desktop vs mobile visibility */
.desktopOnly{ display:flex; }
.mobileOnly{ display:none; }

@media (max-width: 900px){
  .desktopOnly{ display:none !important; }
  .mobileOnly{ display:inline-flex !important; }
}

.toprow{ position: relative; }

@media (max-width: 900px){
  .toprow{
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    column-gap: 10px;
  }
}

/* Burger button */
.burger{
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.9);
  box-shadow: 0 8px 18px rgba(15,23,42,.06);
  cursor:pointer;
  transition: transform .12s ease, border-color .12s ease, box-shadow .12s ease;
}
.burger:hover{
  transform: translateY(-1px);
  border-color:rgba(43,212,168,.35);
  box-shadow: 0 10px 20px rgba(15,23,42,.07);
}

/* Mobile dropdown panel */
.mobileMenu{
  position:absolute;
  top: calc(100% + 10px);
  right: 0;
  left: auto;

  width: min(520px, calc(100vw - (var(--pad) * 2)));
  padding: 10px;

  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);

  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:10px;
  z-index: 30;
}

/* Make sure the dropdown anchors look like your pills */
.mobileMenu a{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  font-weight:800;
  font-size:14px;
  color:rgba(15,23,42,.88);
  text-align:center;
  white-space:nowrap;
}

@media (max-width: 420px){
  .mobileMenu{ grid-template-columns: 1fr; }
}
@media (max-width: 900px){
  .mobileMenu{
    position: static;        /* key: stop floating */
    width: 100%;
    margin: 10px 0 0;
    top: auto; right: auto; left: auto;
  }
}

@media (max-width: 900px){
  .mobileMenu{
    transition: grid-template-rows .18s ease, opacity .18s ease;
  }
}
.mobileMenu[hidden]{ display:none !important; }

/* Ensure positioning context for the dropdown */

/* ===== Header layout override: keep phone + burger on the right (mobile + desktop) ===== */
.toprow{
  display:grid !important;
  grid-template-columns: auto 1fr auto !important; /* brand | nav/space | actions */
  align-items:center !important;
  gap:12px !important;
}

/* Right-side cluster: phone + burger */
.actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
  white-space:nowrap;
}

/* On mobile, hide the number text (icon only) and keep burger next to it */
@media (max-width: 900px){
  .actions{ gap:8px; }
  .phoneText{ display:none; }
  .agentDesktop{ display:none !important; }
}
/* Keep actions pinned to the RIGHT column even when the middle nav is display:none on mobile */
.actions{
  grid-column: 3;
  justify-self: end;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
}