:root{
  --font-sans: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
  --brand-navy:#254E80;     /* page background */
  --brand-blue:#2362A1;     /* header bar / sections */
  --brand-accent:#ECAE1A;   /* CTA */
  --text:#FFFFFF;
  --text-muted:#C5D0DA;

  --radius:12px;
  --gutter:16px;
  --container:960px;
}

/* Base */
html,body{height:100%}
body{
  margin:0;
  background:var(--brand-blue); /* page background (mockup tone) */
  color:var(--text);
   font-family: var(--font-sans);
}
 body:not([class*=elementor-page-]) .site-main {
        padding-inline-end: 0px;
        padding-inline-start: 0px;
    }

    .page-header .entry-title, .site-footer .footer-inner, .site-footer:not(.dynamic-footer), .site-header .header-inner, .site-header:not(.dynamic-header), body:not([class*=elementor-page-]) .site-main {
        max-width: none!important ;
    }
/* Header bar you already render via JS */
#app-header{position:sticky;top:0;z-index:10;background:#1F4D7E}
.header-inner{max-width:var(--container);margin:0 auto;padding:14px var(--gutter);
  display:flex;align-items:center;justify-content:space-between;gap:12px}
.brand{display:flex;align-items:center;gap:10px}
.brand img{height:40px}
.brand-title{
  color:#fff;
  font-weight:700;
  letter-spacing:.2px;
  text-transform:uppercase;
  font-size:14px;            /* adjust to taste */
  line-height:1;
}
.brand-title .accent{ color: var(--brand-accent); }
.header-cta{background:var(--brand-accent);color:#1a1a1a;padding:8px 12px;border-radius:8px;text-decoration:none}
.header-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--brand-accent);
  color: #1a1a1a;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  line-height: 1;
  transition: transform .15s ease, box-shadow .15s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,.18);
}
.header-link .arrow{
  display:inline-block;
  transform: translateX(0);
  transition: transform .18s ease;
}
.header-link:hover .arrow,
.header-link:focus-visible .arrow{
  transform: translateX(4px); /* subtle slide on hover/focus */
}
.header-link:hover,
.header-link:focus-visible{
  box-shadow: 0 6px 16px rgba(0,0,0,.24);
}

/* If you still want to hide it while wizard is active: */
body.wizard-active .header-link{ display:none; }

.site-main { padding: 0; }

/* Full-bleed hero regardless of parent width */
.hero{
  /* this trick makes the element span the full viewport width even inside a centered wrapper */
  margin: 0 calc(50% - 50vw);
}
.hero-img{
  display:block;
  width:100vw;               /* truly edge-to-edge */
  height: clamp(180px, 36vh, 430px);  /* tweak to taste */
  object-fit: cover;
  vertical-align: middle;    /* kill image baseline gap */
}

/* Content container starts right after hero */
.container{
  max-width: var(--container, 960px);
  margin: 0 auto;
  padding: 24px 22px;
}
.container.home-hero{
    display: flex;
    flex-direction: column;
  padding-top: 16px;
  text-align: center;                  /* center headline + CTA */
}

.home-hero{padding-top:8px}
.home-hero h1{
  font-family: var(--font-sans);
  font-weight: 500;          
  font-size: 20px;
  line-height: 20px;         
  letter-spacing: 0.05em;     
  text-transform: uppercase;
  margin: 12px 0;
  text-align: center;
}
.home-hero h1 span{ color: var(--brand-accent); }
.home-hero ol{
  font-family: var(--font-sans);
  font-weight: 400;           
  font-size: 16px;
  line-height: normal;          
  letter-spacing: 0;
  text-align: left;
  display: inline-block;      
  max-width: 34rem;
  padding-left: 20px;
  margin: 12px auto 20px;
}
.home-hero li{ margin: 10px 0; } 
.home-hero .btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 267px;           
  height: 42px;               
  padding: 0 20px;           
  font-family: var(--font-sans);
  font-weight: 600;
  text-transform: none;
  border: 0;
  background: var(--brand-accent);
  color: #1a1a1a;
  cursor: pointer;
  margin: 6px auto 0;
}


/* -------- Modal (used ONLY for location prompt) -------- */
.modal-backdrop{
  position:fixed;inset:0;background:rgba(0,0,0,.45);
  display:none;align-items:center;justify-content:center;z-index:1000;
}
.modal-backdrop.is-open{display:flex}

.modal-card{
  width:min(92vw,420px);
  background:#fff;color:#223; border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,.35);
  padding:18px;
}
.modal-card h3{margin:0 0 10px;font-size:18px;color:#0f243a}
.modal-actions{display:flex;gap:10px;margin-top:12px}
.modal-actions .btn{background:#1f6fb2;color:#fff}
.modal-actions .btn.alt{background:#e8eef5;color:#0f243a}

/* ---------- Wizard global ---------- */

#wizard-root{
  display:none;                 /* shown only in wizard-active */
  background:var(--brand-blue);
  position:relative;
  overflow:hidden;
  width:100vw;
  /* use svh for stable mobile height (no address bar jump) */
  min-height:calc(100svh - var(--header-h,64px));
}
body.wizard-active #wizard-root{ display:block; }

/* horizontal track we slide left/right */
.wiz-track{
  display:flex;
  width:100%;
  height:100%;
  will-change: transform;
  transform: translateX(0);
  transition: transform .25s ease;
}

/* each slide is one full “screen” */
.wiz-stage{
  flex: 0 0 100vw;                     /* full viewport width */
  min-height:calc(100svh - var(--header-h,64px));
  display:flex; align-items:center; justify-content:center;
  padding:24px 16px 80px;              /* room for back button */
  box-sizing:border-box;
}

.wiz-card{ width:100%; max-width:480px; text-align:center; }

.wiz-title{
  font-family: var(--font-sans);
  font-weight:500;
  font-size:20px;
  line-height:24px;                    /* 100% */
  letter-spacing:.05em;                /* 5% */
  text-transform:uppercase;
  color:#fff;
  margin:0 0 24px;
}

.wiz-actions{ display:flex; flex-direction:column; gap:12px; }
.wiz-btn{
  height:42px; border:0; border-radius:10px;
  font-weight:600; font-family:var(--font-sans);
  display:flex; align-items:center; justify-content:center;
  padding:0 20px; cursor:pointer;
}
.wiz-btn.yes{ background:var(--brand-accent); color:#1a1a1a; }
.wiz-btn.no { background:#1F4D7E; color:#fff; }

/* hide page content during wizard */
body.wizard-active .hero,
body.wizard-active .container.home-hero { display:none !important; }

/* Back button: only visible during wizard */
#wiz-back{ display:none; }
body.wizard-active #wiz-back{
  position:fixed; left:12px; bottom:12px; z-index:20;
  display:inline-flex; align-items:center; gap:8px;
  height:38px; padding:0 12px;
  border-radius:8px; border:1px solid rgba(255,255,255,.2);
  background:#1F4D7E; color:#fff;
  font-family:var(--font-sans); font-weight:600;
}

/* Hide header link while wizard is active */
body.wizard-active .header-link{ display:none; }

/* Full-page modal over the wizard */
.wiz-modal{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}
.wiz-modal.open{ display:flex; }

.wiz-modal-card{
  width: min(92vw, 420px);
  background: #fff;
  color: #1d2b3a;
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(0,0,0,.35);
  padding: 18px;
  text-align: center;
}
.wiz-modal-card h3{
  margin: 6px 0 10px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
}
.wiz-modal-actions{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}
.wiz-modal-actions .btn-yes{
  height: 42px; border: 0; border-radius: 10px;
  background: var(--brand-accent); color:#1a1a1a; font-weight:600;
}
.wiz-modal-actions .btn-no{
  height: 42px; border: 0; border-radius: 10px;
  background: #e9eff6; color:#223; font-weight:600;
}
/* End screen visuals */
.wiz-end-icon{
  width:64px; height:64px; margin:0 auto 14px;
  border-radius:50%; background:#1F4D7E;
  display:flex; align-items:center; justify-content:center;
  font-size:28px; color:#fff;
}
.wiz-end-text{ margin:8px 0 16px; font-size:16px; line-height:1.3; }
.wiz-actions.row { flex-direction:row; gap:10px; justify-content:center; }
.wiz-btn.secondary{ background:#e9eff6; color:#223; }
/* Floating CTA (shown only when the real CTA is off-screen) */

.fab-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 40;

  height: 42px;
  border: 0;
  border-radius: 10px;
  background: var(--brand-accent);
  color: #1a1a1a;
  font: 600 16px var(--font-sans);
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  display: flex;
  align-items: center;
  justify-content: center;

  /* smooth fade, no layout shift */
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
}

.fab-cta.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Prevent mobile Safari layout recalculation */
html, body {
  height: 100%;
  overflow-x: hidden;
  overscroll-behavior: none;
}



#cta-main{
    border-radius: 10px;
}



