:root{
    /* Matched to the live portal.nws.direct dashboard design system */
    --blue:#01A56F;         /* primary brand green, from dashboard nav/buttons */
    --blue-dark:#018F5F;
    --navy:#2E3D4D;         /* dashboard's dark navy (headers, text) */
    --text:#2E3D4D;
    --pill-bg:#DFF4EB;      /* light green tint */
    --light-bg:#EEF6F2;
    --footer-bg:#E4F1EA;
    --line:#E7ECEA;
    --white:#FFFFFF;
    --orange:#FF9F43;       /* dashboard status pill: Order in Process */
    --purple:#7367F0;       /* dashboard status pill: Survey Booked */
    --muted:#99A1AF;        /* dashboard inactive nav text */
    --radius-pill:9999px;
    --radius-btn:8px;       /* dashboard's actual button radius */
    --radius-card:14px;
  }
  *{box-sizing:border-box;margin:0;padding:0;}
  html{scroll-behavior:smooth;}
  body{
    font-family:'Public Sans',system-ui,-apple-system,'Segoe UI',Roboto,Arial,sans-serif;
    color:var(--text);
    background:var(--white);
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
  }
  h1,h2,h3,h4{
    font-family:'Public Sans',sans-serif;
    font-weight:800;
    color:var(--navy);
    line-height:1.15;
  }
  a{color:inherit;text-decoration:none;}
  img{max-width:100%;display:block;}
  ul{list-style:none;}
  .wrap{max-width:1180px;margin:0 auto;padding:0 24px;}

  /* ---------- Eyebrow / section signature ---------- */
  .eyebrow{
    display:flex;align-items:center;gap:10px;
    font-family:'Public Sans',sans-serif;font-weight:800;
    color:var(--blue);text-transform:uppercase;font-size:13px;
    letter-spacing:.06em;margin-bottom:10px;
  }
  .eyebrow::before{content:"";width:28px;height:3px;background:var(--blue);border-radius:2px;display:inline-block;}

  /* ---------- Buttons ---------- */
  .btn{
    display:inline-flex;align-items:center;justify-content:center;gap:8px;
    font-family:'Public Sans',sans-serif;font-weight:700;font-size:15px;
    padding:13px 26px;border-radius:var(--radius-btn);
    border:1.5px solid transparent;cursor:pointer;transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
    white-space:nowrap;
  }
  .btn:hover{transform:translateY(-1px);}
  .btn-primary{background:var(--blue);color:#fff;box-shadow:0 8px 20px rgba(1,165,111,.25);}
  .btn-primary:hover{background:var(--blue-dark);}
  .btn-secondary{background:transparent;color:var(--blue);border-color:var(--blue);}
  .btn-secondary:hover{background:var(--pill-bg);}
  .btn-ghost{background:transparent;color:#fff;border-color:rgba(255,255,255,.6);}
  .btn-ghost:hover{background:rgba(255,255,255,.12);}
  .btn-sm{padding:8px 18px;font-size:13px;}

  /* ---------- Top bar ---------- */
  .topbar{
    background:var(--blue);color:#fff;font-size:13.5px;
  }
  .topbar .wrap{
    display:flex;align-items:center;justify-content:space-between;
    padding-top:10px;padding-bottom:10px;gap:16px;flex-wrap:wrap;
  }
  .topbar a{opacity:.95;}
  .topbar .login-hint{font-weight:700;display:flex;align-items:center;gap:6px;}
  .topbar .contact-info{display:flex;gap:22px;flex-wrap:wrap;}
  .topbar strong{font-weight:700;}

  /* ---------- Header ---------- */
  header.site{
    background:#fff;position:sticky;top:0;z-index:50;
    box-shadow:0 1px 0 var(--line);
  }
  .site-header{
    display:flex;align-items:center;justify-content:space-between;
    padding:16px 0;gap:24px;
  }
  .brand{display:flex;align-items:center;gap:14px;}
  .brand-logo{display:flex;flex-direction:column;line-height:1;}
  .brand-word{
    font-family:'Public Sans',sans-serif;font-weight:800;font-size:21px;letter-spacing:.01em;
    color:#161616;display:flex;align-items:center;
  }
  .globe-o{
    display:inline-flex;align-items:center;justify-content:center;position:relative;top:-1px;
    width:.8em;height:.8em;border-radius:50%;background:var(--blue);margin:0 1px;
  }
  .globe-o svg{width:62%;height:62%;}
  .brand-word2{
    font-family:'Public Sans',sans-serif;font-weight:800;font-size:21px;letter-spacing:.01em;
    color:var(--blue);align-self:flex-end;margin-top:-4px;
  }
  .brand-tag{
    font-size:12px;font-weight:700;color:var(--muted);text-transform:uppercase;
    letter-spacing:.08em;padding-left:14px;border-left:1px solid var(--line);
  }

  nav.main-nav{display:flex;align-items:center;gap:34px;}
  nav.main-nav a{font-weight:700;font-size:15px;color:var(--navy);}
  nav.main-nav a:hover{color:var(--blue);}
  .header-actions{display:flex;align-items:center;gap:18px;}
  .header-actions .login-link{font-weight:700;color:var(--navy);font-size:15px;}
  .nav-toggle{display:none;background:none;border:0;cursor:pointer;padding:6px;}
  .nav-toggle span{display:block;width:24px;height:2.5px;background:var(--navy);margin:5px 0;border-radius:2px;}

  /* ---------- Hero ---------- */
  .hero{
    background:linear-gradient(180deg,#F3F8FF 0%, #ffffff 65%);
    padding:64px 0 80px;
    overflow:hidden;
  }
  .hero .wrap{display:grid;grid-template-columns:1fr 1.05fr;gap:56px;align-items:center;}
  .hero-badge{
    display:inline-block;background:var(--light-bg);color:var(--blue);
    font-weight:700;font-size:13.5px;padding:8px 18px;border-radius:var(--radius-pill);
    margin-bottom:22px;
  }
  .hero h1{font-size:44px;margin-bottom:22px;letter-spacing:-.01em;}
  .hero h1 span{color:var(--blue);}
  .hero-checklist{margin-bottom:32px;}
  .hero-checklist li{
    display:flex;align-items:flex-start;gap:12px;font-size:16px;color:#3A4759;
    margin-bottom:13px;font-weight:500;
  }
  .check-dot{
    flex:0 0 auto;width:20px;height:20px;border-radius:50%;background:var(--blue);
    display:flex;align-items:center;justify-content:center;margin-top:2px;
  }
  .check-dot svg{width:11px;height:11px;}
  .hero-ctas{display:flex;gap:14px;flex-wrap:wrap;}

  /* Hero visual: a browser-chrome preview of the actual portal UI (illustrative data only) */
  .hero-visual{position:relative;}
  .app-preview{
    background:#fff;border-radius:16px;box-shadow:0 30px 70px rgba(20,40,50,.16);
    overflow:hidden;border:1px solid var(--line);
  }
  .app-preview-bar{
    display:flex;align-items:center;gap:8px;padding:12px 16px;background:#fff;border-bottom:1px solid var(--line);
  }
  .app-preview-bar .dot{width:9px;height:9px;border-radius:50%;display:inline-block;}
  .app-preview-url{
    margin-left:10px;background:#F1F3F5;color:var(--muted);font-size:12px;font-weight:500;
    padding:5px 14px;border-radius:6px;
  }
  .app-preview-body{background:#F8F8F8;padding:20px;}
  .stat-row{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-bottom:16px;}
  .stat-tile{
    border-radius:12px;padding:14px;color:#fff;display:flex;flex-direction:column;gap:10px;
  }
  .stat-tile .stat-label{font-size:10.5px;font-weight:700;text-transform:uppercase;letter-spacing:.03em;opacity:.95;}
  .stat-tile .stat-num{font-size:22px;font-weight:800;font-family:'Public Sans',sans-serif;}
  .stat-orange{background:linear-gradient(135deg,#FF9F43,#FFC078);}
  .stat-green{background:linear-gradient(135deg,#01A56F,#02BB7D);}
  .stat-mint{background:linear-gradient(135deg,#28C76F,#6EE7A8);}
  .property-card{background:#fff;border-radius:12px;overflow:hidden;box-shadow:0 4px 14px rgba(20,40,50,.06);}
  .property-head{
    background:var(--navy);color:#fff;padding:13px 16px;font-size:14px;font-weight:700;
    display:flex;align-items:center;justify-content:space-between;
  }
  .property-head .addr{display:flex;align-items:center;gap:8px;}
  .property-body{padding:6px 16px 14px;}
  .service-row{
    display:flex;align-items:center;justify-content:space-between;
    padding:12px 0;border-top:1px solid var(--line);
  }
  .service-row:first-child{border-top:none;}
  .service-name{font-size:13.5px;font-weight:700;color:var(--navy);}
  .pill{font-size:10.5px;font-weight:700;padding:5px 12px;border-radius:var(--radius-pill);white-space:nowrap;}
  .pill-green{background:#DCF6E9;color:#01A56F;}
  .pill-purple{background:#EAE8FD;color:#7367F0;}
  .pill-orange{background:#FFEEDD;color:#C97B1F;}
  .preview-caption{
    display:flex;align-items:center;gap:8px;margin-top:14px;font-size:12.5px;color:var(--muted);font-weight:500;
  }

  /* ---------- Trust line ---------- */
  .trust-line{
    text-align:center;color:#7C8CA1;font-size:14px;font-weight:500;padding:26px 0;
    border-top:1px solid var(--line);border-bottom:1px solid var(--line);
  }

  /* ---------- Features ---------- */
  .section{padding:84px 0;}
  .section-head{max-width:640px;margin-bottom:48px;}
  .section-head h2{font-size:32px;}
  .section-head p{color:#5C6B7F;margin-top:12px;font-size:16px;}

  .feature-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;}
  .feature-card{
    background:#F7FAFF;border:1px solid var(--line);border-radius:var(--radius-card);
    padding:30px 24px;
  }
  .feature-icon{
    width:46px;height:46px;border-radius:14px;background:var(--blue);
    display:flex;align-items:center;justify-content:center;margin-bottom:20px;
  }
  .feature-icon svg{width:24px;height:24px;stroke:#fff;}
  .feature-card h3{font-size:17px;margin-bottom:10px;}
  .feature-card p{font-size:14.5px;color:#5C6B7F;}

  /* ---------- How it works ---------- */
  .how{background:var(--light-bg);}
  .how-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;}
  .how-card{background:#fff;border-radius:var(--radius-card);padding:32px 26px;position:relative;}
  .how-num{
    font-family:'Public Sans',sans-serif;font-weight:800;font-size:15px;color:#fff;
    background:var(--blue);width:34px;height:34px;border-radius:50%;
    display:flex;align-items:center;justify-content:center;margin-bottom:18px;
  }
  .how-card h3{font-size:18px;margin-bottom:10px;}
  .how-card p{font-size:14.5px;color:#5C6B7F;}

  /* ---------- CTA banner ---------- */
  .cta-banner{
    background:linear-gradient(120deg,var(--blue),#02BB7D);
    padding:64px 0;text-align:center;
  }
  .cta-banner h2{color:#fff;font-size:30px;margin-bottom:14px;}
  .cta-banner p{color:rgba(255,255,255,.9);font-size:16px;margin-bottom:30px;}
  .cta-banner .hero-ctas{justify-content:center;}
  .cta-banner .btn-primary{background:#fff;color:var(--blue);box-shadow:none;}
  .cta-banner .btn-primary:hover{background:#EAF2FF;}

  /* ---------- Footer ---------- */
  footer{background:var(--footer-bg);padding:64px 0 0;}
  .footer-grid{
    display:grid;grid-template-columns:1.4fr 1fr 1fr 1.1fr;gap:40px;
    padding-bottom:44px;
  }
  .footer-grid h4{
    font-size:12px;text-transform:uppercase;letter-spacing:.06em;color:var(--navy);
    margin-bottom:16px;position:relative;padding-top:14px;
  }
  .footer-grid h4::before{content:"";position:absolute;top:0;left:0;width:26px;height:3px;background:var(--blue);border-radius:2px;}
  .footer-about p{font-size:14px;color:#4C596B;margin-top:14px;margin-bottom:20px;}
  .footer-links li{margin-bottom:11px;}
  .footer-links a{font-size:14px;color:#3A4759;font-weight:500;}
  .footer-links a:hover{color:var(--blue);}
  .footer-phone{font-family:'Public Sans',sans-serif;font-weight:800;font-size:22px;color:var(--blue);display:block;margin:6px 0 20px;}
  .hours-row{display:flex;justify-content:space-between;font-size:13.5px;padding:9px 0;border-top:1px solid rgba(45,60,81,.12);}
  .hours-row:first-of-type{border-top:none;}
  .hours-row span:last-child{font-weight:700;color:var(--navy);}
  .footer-bottom{
    border-top:1px solid rgba(45,60,81,.14);padding:22px 0;
    display:flex;justify-content:space-between;flex-wrap:wrap;gap:10px;
    font-size:13px;color:#4C596B;
  }
  .footer-bottom a{font-weight:700;color:var(--navy);}
  .footer-bottom .policies{display:flex;gap:18px;}

  /* ---------- Responsive ---------- */
  @media (max-width:900px){
    .hero .wrap{grid-template-columns:1fr;}
    .hero-visual{min-height:340px;margin-top:20px;}
    .feature-grid{grid-template-columns:repeat(2,1fr);}
    .how-grid{grid-template-columns:1fr;}
    .footer-grid{grid-template-columns:1fr 1fr;}
  }
  @media (max-width:700px){
    nav.main-nav{position:absolute;top:100%;left:0;right:0;background:#fff;flex-direction:column;align-items:flex-start;padding:20px 24px;gap:18px;box-shadow:0 12px 24px rgba(20,40,80,.1);display:none;}
    nav.main-nav.open{display:flex;}
    .nav-toggle{display:block;}
    .header-actions .login-link{display:none;}
    .brand-tag{display:none;}
    .hero h1{font-size:32px;}
    .feature-grid{grid-template-columns:1fr;}
    .footer-grid{grid-template-columns:1fr;}
    .topbar .contact-info{display:none;}
    .stat-tile .stat-num{font-size:18px;}
    .stat-tile{padding:10px;}
  }

/* ---------- Simple content pages (Terms / Privacy / Cookies) ---------- */
.page-hero{padding:48px 0 8px;}
.page-hero h1{font-size:34px;margin-bottom:8px;}
.page-hero .updated{color:var(--muted);font-size:14px;font-weight:500;}
.legal-content{padding:32px 0 80px;max-width:820px;}
.legal-content h2{font-size:20px;margin:34px 0 12px;}
.legal-content h2:first-child{margin-top:0;}
.legal-content p{font-size:15px;color:#3A4759;margin-bottom:14px;}
.legal-content ul{margin:0 0 14px 20px;}
.legal-content li{list-style:disc;font-size:15px;color:#3A4759;margin-bottom:8px;}
.legal-note{
  background:var(--light-bg);border:1px solid var(--line);border-radius:12px;
  padding:16px 20px;font-size:14px;color:#4C596B;margin-bottom:36px;
}
.legal-note strong{color:var(--navy);}
