:root{
  --bg:#0b0b0e;
  --panel:#101015;
  --panel2:#14141c;
  --text:#f6f6f8;
  --muted:#b9bac6;
  --line:rgba(255,255,255,.10);
  --shadow:0 18px 40px rgba(0,0,0,.45);

  /* Fireball */
  --red:#ff3b30;
  --orange:#ff6a00;
  --yellow:#ffcc00;

  --grad:linear-gradient(135deg,var(--red),var(--orange),var(--yellow));
  --grad2:radial-gradient(600px 300px at 20% 10%, rgba(255,59,48,.22), transparent 60%),
          radial-gradient(600px 300px at 80% 20%, rgba(255,204,0,.18), transparent 60%);
	

}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--grad2), var(--bg);
  color:var(--text);
  line-height:1.5;
}
a{color:inherit}
.container{width:min(1120px,92%);margin:0 auto}
.sr-only{
  position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0
}

.skip-link{
  position:absolute;left:-999px;top:auto;width:1px;height:1px;overflow:hidden
}
.skip-link:focus{
  left:12px;top:12px;width:auto;height:auto;
  background:var(--panel);border:1px solid var(--line);
  padding:.7rem 1rem;border-radius:14px;z-index:9999;
}

.topbar{
  background:rgba(0,0,0,.35);
  border-bottom:1px solid var(--line);
}
.topbar__inner{
  display:flex;align-items:center;justify-content:space-between;gap:1rem;
  padding:.65rem 0;
}
.topbar__msg{color:var(--muted);font-size:.92rem}
.topbar__call{text-decoration:none;font-weight:900}
.topbar__call:hover{text-decoration:underline}

.header{
  position:sticky;top:0;z-index:50;
  backdrop-filter: blur(10px);
  background:rgba(11,11,14,.70);
  border-bottom:1px solid var(--line);
}
.header__inner{
  display:grid;grid-template-columns:180px 1fr auto;align-items:center;gap:1.25rem;
  padding:.95rem 0;
}
.logo{display:flex;align-items:center;gap:.6rem;text-decoration:none;min-width:180px}
.logo__mark{font-size:1.35rem}
.logo__text{font-weight:950;letter-spacing:.2px}
.logo--footer .logo__text{font-size:1.05rem}

.nav{display:flex;align-items:center;justify-content:center;gap:1.1rem;min-width:0}
.nav__link{
  text-decoration:none;color:var(--muted);font-weight:800;font-size:.95rem;
  padding:.35rem .45rem;border-radius:12px;white-space:nowrap;
}
.nav__link:hover{color:var(--text);background:rgba(255,255,255,.04)}
.nav__link.is-active{color:var(--text);border:1px solid rgba(255,255,255,.10);background:rgba(0,0,0,.22)}

/* MOBILE MENU BUTTON */
.menu-btn{
  display:none;
  align-items:center;
  justify-content:center;
  width:72px !important;
  height:72px !important;
  min-width:72px !important;
  min-height:72px !important;
  padding:0 !important;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.28);
  color:var(--text);
  border-radius:18px;
  cursor:pointer;
  flex:0 0 auto;
  -webkit-appearance:none;
  appearance:none;
}
.menu-btn > span{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:48px !important;
  height:48px !important;
  font-size:52px !important;
  line-height:1 !important;
  font-weight:800 !important;
  transform:translateY(-2px);
}
.menu-btn:hover{
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.24);
}
.menu-btn:focus-visible{
  outline:2px solid rgba(255,204,0,.55);
  outline-offset:2px;
}

.mobile-menu{
  border-top:1px solid var(--line);
  background:rgba(0,0,0,.25);
  max-height:calc(100vh - 90px);
  overflow-y:auto;
  -webkit-overflow-scrolling:touch;
}
.mobile-menu__nav{
  display:grid;
  gap:.4rem;
  padding:1rem 0 5rem;
  width:min(1120px,92%);
  margin:0 auto;
}

.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.55rem;
  padding:.95rem 1.1rem;border-radius:16px;
  font-weight:950;text-decoration:none;border:1px solid transparent;
  cursor:pointer;
}
.btn--solid{
  background:var(--grad);
  color:#0b0b0e;
  box-shadow:var(--shadow);
}
.btn--solid:hover{filter:brightness(1.03)}
.btn--ghost{
  background:transparent;
  border:1px solid rgba(255,255,255,.20);
  color:var(--text);
}
.btn--ghost:hover{border-color:rgba(255,255,255,.35)}
.btn--small{padding:.7rem .85rem;border-radius:14px}
.btn--full{width:100%}

.hero{padding:3.4rem 0 2.2rem}
.hero__grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:2rem;
  align-items:start;
}
.hero__copy h1{
  margin:.1rem 0 1rem;
  font-size:clamp(2.05rem,3.2vw,3.35rem);
  line-height:1.05;
  letter-spacing:-.02em;
}
.lead{color:var(--muted);font-size:1.08rem;max-width:70ch}
.hero__actions{display:flex;gap:.8rem;flex-wrap:wrap;margin:1.2rem 0 1.25rem}
.hero__bullets{margin:0;padding-left:1.15rem;color:var(--muted)}
.hero__bullets li{margin:.45rem 0}
.hero__bullets strong{color:var(--text)}

.card{
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(0,0,0,.12));
  border:1px solid var(--line);
  border-radius:20px;
  padding:1.2rem;
  box-shadow:var(--shadow);
}
.card--glow{
  border-color:rgba(255,204,0,.25);
  box-shadow: 0 18px 50px rgba(255,106,0,.08), var(--shadow);
}
.muted{color:var(--muted)}
.fineprint{color:rgba(255,255,255,.68);font-size:.82rem;line-height:1.35}

.callout{
  display:grid;gap:.7rem;margin:1rem 0;
}
.callout__cta{
  display:flex;justify-content:space-between;align-items:center;
  text-decoration:none;
  padding:.9rem 1rem;border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.18);
}
.callout__cta:hover{border-color:rgba(255,255,255,.25)}
.callout__label{color:var(--muted);font-weight:900}
.callout__value{font-weight:950}
.divider{height:1px;background:var(--line);margin:1rem 0}

.section{padding:2.6rem 0}
.section--alt{
  background:rgba(255,255,255,.03);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
h2{margin:0 0 .6rem;font-size:1.85rem;letter-spacing:-.01em}
h3{margin:.15rem 0 .35rem}
.grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:1rem;
  margin-top:1.2rem;
}
.grid--3{grid-template-columns: repeat(3, minmax(0,1fr));}
.tile{
  display:block;
  text-decoration:none;
  border:1px solid var(--line);
  border-radius:20px;
  padding:1.15rem;
  background:rgba(0,0,0,.18);
}
.tile:hover{border-color:rgba(255,255,255,.22);transform:translateY(-1px)}
.tile p{margin:0;color:var(--muted)}
.tile__more{display:inline-block;margin-top:.65rem;font-weight:950}
.tile--plain{background:rgba(0,0,0,.10)}

.trust{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:1rem;
}
.trust__item{
  border:1px solid var(--line);
  border-radius:20px;
  padding:1.15rem;
  background:rgba(0,0,0,.18);
}
.trust__title{font-size:1.1rem;margin:0 0 .3rem}

.steps{
  display:grid;grid-template-columns: repeat(3, minmax(0,1fr));
  gap:1rem;margin-top:1.2rem;
}
.step{
  border:1px solid var(--line);
  border-radius:20px;
  padding:1.15rem;
  background:rgba(0,0,0,.18);
}
.step__num{
  width:40px;height:40px;
  display:grid;place-items:center;
  border-radius:14px;
  background:rgba(255,59,48,.16);
  border:1px solid rgba(255,59,48,.35);
  font-weight:950;
  margin-bottom:.6rem;
}

.quote{
  border:1px solid var(--line);
  border-radius:20px;
  padding:1.15rem;
  background:rgba(0,0,0,.18);
}
.quote p{margin:0 0 .7rem}
.quote span{color:var(--muted);font-weight:900}

.page-hero{padding:2.6rem 0 1.4rem}
.page-hero__inner{
  display:grid;grid-template-columns: 1.2fr .8fr;
  gap:1.6rem;align-items:start;
}
.page-hero__card h2{font-size:1.2rem}

.checklist{margin:.9rem 0 0;padding-left:1.15rem}
.checklist li{margin:.45rem 0}
.cta-band{
  margin-top:1.4rem;
  border:1px solid rgba(255,204,0,.18);
  background:rgba(255,106,0,.06);
  border-radius:22px;
  padding:1.2rem;
  display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap;
}
.cta-band__actions{display:flex;gap:.8rem;flex-wrap:wrap}

.faq{
  border:1px solid var(--line);
  border-radius:18px;
  padding:1rem 1.1rem;
  background:rgba(0,0,0,.18);
  margin:.85rem 0;
}
.faq summary{cursor:pointer;font-weight:950}
.faq p{margin:.7rem 0 0;color:var(--muted)}

.footer-cta{
  padding:2.2rem 0;
  background:rgba(0,0,0,.22);
  border-top:1px solid var(--line);
}
.footer-cta__inner{
  width:min(1120px,92%);margin:0 auto;
  display:flex;justify-content:space-between;align-items:center;gap:1.2rem;flex-wrap:wrap;
}
.footer-cta__title{margin:0;font-size:1.35rem}
.footer-cta__text{margin:.25rem 0 0;color:var(--muted)}
.footer-cta__form{
  display:flex;gap:.65rem;flex-wrap:wrap;
}
input, textarea, select{
  width:100%;
  padding:.85rem .95rem;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.25);
  color:var(--text);
  outline:none;
}
input:focus, textarea:focus, select:focus{border-color:rgba(255,204,0,.45)}
.footer-cta__form input{
  width:220px;
}
.form{
  display:grid;gap:.55rem;margin-top:.9rem;
}
label{font-weight:900;color:var(--text);font-size:.95rem}
.form-status{margin:.2rem 0 0;font-weight:900}

.footer{
  padding:2rem 0 2.2rem;
  background:rgba(0,0,0,.25);
  border-top:1px solid var(--line);
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.3fr .7fr 1fr;
  gap:1.3rem;
  align-items:start;
}
.footer__nav{
  display:grid;gap:.45rem;
}
.footer__nav a{
  text-decoration:none;color:var(--muted);font-weight:900;
}
.footer__nav a:hover{color:var(--text)}
.footer__link{display:block;text-decoration:none;font-weight:950;margin:.25rem 0}
.footer__link:hover{text-decoration:underline}

.contact-cards{display:flex;gap:.8rem;flex-wrap:wrap;margin-top:1rem}
.contact-card{
  border:1px solid var(--line);
  background:rgba(0,0,0,.18);
  border-radius:18px;
  padding:1rem 1.1rem;
  text-decoration:none;
  min-width:260px;
}
.contact-card:hover{border-color:rgba(255,255,255,.25)}
.contact-card__label{display:block;color:var(--muted);font-weight:900}
.contact-card__value{display:block;font-weight:950;font-size:1.08rem}

.states-grid{
  display:flex;flex-wrap:wrap;gap:.55rem;margin-top:1rem
}
.state-pill{
  text-decoration:none;
  border:1px solid var(--line);
  background:rgba(0,0,0,.18);
  padding:.55rem .75rem;
  border-radius:999px;
  font-weight:900;
  color:var(--muted);
}
.state-pill:hover{color:var(--text);border-color:rgba(255,255,255,.25)}
.state{padding:1.1rem 0;border-bottom:1px solid var(--line)}
.state__cta{display:flex;gap:.8rem;flex-wrap:wrap;margin-top:.8rem}

@media (max-width: 980px){
  .header__inner{display:flex;align-items:center;justify-content:space-between;gap:1rem}
  .nav{display:none}
  .menu-btn{display:inline-flex !important}
  .hero__grid{grid-template-columns:1fr}
  .page-hero__inner{grid-template-columns:1fr}
  .trust{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
  .grid{grid-template-columns:1fr}
  .grid--3{grid-template-columns:1fr}
  .footer__grid{grid-template-columns:1fr}
  .footer-cta__form input{width: min(320px, 100%)}
}

.logo{
  display:flex;
  align-items:center;
  gap:.6rem;
  text-decoration:none;
  min-width: 0;
}

@media (max-width: 980px){
  
}

/* GLOBAL LOGO SIZE – FINAL */
.header 

.logo--footer 

/* FB:JOTFORM_EMBED */
.jotform-embed{
  margin-top: 1rem;
}
.jotform-embed iframe{
  width: 100%;
  min-height: 760px;
  border: 0;
  border-radius: 8px;
  background: #ffffff;
}
@media (max-width: 680px){
  .jotform-embed iframe{min-height: 860px;}
}

/* ===== LOGO SIZE (GLOBAL) ===== */
.logo{
  display:flex;
  align-items:center;
  gap:.6rem;
  text-decoration:none;
  min-width:0;
}
.logo__img{
  display:block;
  height:151px; /* ~15% larger than 44px */
  width:auto;
  max-width:260px;
  object-fit:contain;

}
.header .logo {
display:flex;
  align-items:center;
  gap:.6rem;
  text-decoration:none;
  min-width:0;
	}
.header .logo__img {
	  display:block;
  height:100px; /* ~15% larger than 44px */
	margin-right: -324;
  width:auto;
  max-width:260px;
  object-fit:contain;
	
}
.Footer .logo {
display:flex;
  align-items:center;
  gap:.6rem;
  text-decoration:none;
  min-width:0;
	}
.footer .logo__img {
	  display:block;
  height:150px; /* ~15% larger than 44px */
	margin-left: 40px;
	margin-top: -20px;
  width:auto;
  max-width:260px;
  object-fit:contain;
	
}
@media (max-width: 980px){
  .logo__img{height:48px;}
}



/* Edmund Trust Section */
.edmund-section--light {
  background: #ffffff;
  padding: 72px 0;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}
.edmund-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: center;
}
.edmund-photo-wrap { position: relative; }
.edmund-photo-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(196,30,30,0.25), 0 16px 48px rgba(0,0,0,0.12);
}
.edmund-photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.edmund-photo-frame img {
  display: block;
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: top center;
}
.edmund-photo-placeholder {
  width: 100%;
  height: 380px;
  background: linear-gradient(160deg, #f0f0f0 0%, #e5e5e5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
}
.edmund-name-plate {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 22px 18px;
  z-index: 2;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
}
.edmund-name-plate .name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 3px;
}
.edmund-name-plate .title {
  font-size: 11px;
  color: #ff6b6b;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin: 0;
}
.edmund-accent-bar {
  height: 3px;
  background: linear-gradient(90deg, #c41e1e 0%, #ff4444 50%, transparent 100%);
  border-radius: 0 0 2px 2px;
  margin-top: -1px;
}
.edmund-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #c41e1e;
  font-weight: 700;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.edmund-eyebrow::after {
  content: '';
  display: block;
  height: 1px;
  width: 40px;
  background: #c41e1e;
  opacity: 0.4;
}
.edmund-headline--light {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  color: #111111;
  line-height: 1.25;
  margin: 0 0 20px;
}
.edmund-headline--light em { font-style: normal; color: #c41e1e; }
.edmund-body--light {
  font-size: 16px;
  line-height: 1.75;
  color: #444444;
  margin: 0 0 20px;
}
.edmund-body--light strong { color: #111111; font-weight: 600; }
.edmund-trust-list--light {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.edmund-trust-list--light li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #333333;
  line-height: 1.5;
}
.edmund-trust-list--light li::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23c41e1e'%3E%3Cpath fill-rule='evenodd' d='M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z' clip-rule='evenodd'/%3E%3C/svg%3E") center / contain no-repeat;
}
.edmund-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.edmund-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #c41e1e;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 3px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(196,30,30,0.25);
}
.edmund-btn-primary:hover { background: #e02020; transform: translateY(-1px); }
.edmund-btn-secondary--light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #111111;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 3px;
  text-decoration: none;
  border: 1px solid #cccccc;
  letter-spacing: 0.02em;
  transition: border-color 0.2s, background 0.2s;
}
.edmund-btn-secondary--light:hover {
  border-color: #c41e1e;
  color: #c41e1e;
  background: rgba(196,30,30,0.04);
}
@media (max-width: 780px) {
  .edmund-inner { grid-template-columns: 1fr; gap: 36px; }
  .edmund-photo-frame img, .edmund-photo-placeholder { height: 300px; }
  .edmund-photo-wrap { max-width: 300px; margin: 0 auto; }
}


.nav__item--dropdown{position:relative}
.nav__toggle{background:transparent;border:0;color:var(--muted);font:inherit;font-weight:800;font-size:.95rem;padding:.35rem .45rem;border-radius:12px;cursor:pointer;white-space:nowrap}
.nav__toggle:hover,.nav__item--dropdown:focus-within .nav__toggle{color:var(--text);background:rgba(255,255,255,.04)}
.nav__dropdown{display:none;position:absolute;top:calc(100% + 12px);left:0;min-width:240px;background:#15151c;border:1px solid var(--line);border-radius:14px;box-shadow:var(--shadow);padding:.4rem 0;z-index:1000}
.nav__dropdown a{display:block;padding:.7rem .95rem;color:var(--text);text-decoration:none;font-weight:700}
.nav__dropdown a:hover{background:rgba(255,255,255,.05)}
.nav__item--dropdown:hover .nav__dropdown,.nav__item--dropdown:focus-within .nav__dropdown{display:block}
.header__cta{white-space:nowrap}
.mobile-subnav{display:flex;flex-direction:column;gap:.15rem}
.mobile-subnav__toggle{display:flex;align-items:center;justify-content:space-between;width:100%;background:transparent;border:0;text-align:left;cursor:pointer}
.mobile-subnav__toggle::after{content:'+';font-size:1.5rem;line-height:1;color:var(--muted)}
.mobile-subnav__toggle[aria-expanded="true"]::after{content:'–'}
.mobile-subnav__panel{display:flex;flex-direction:column;gap:.15rem;padding:.2rem 0 .35rem .85rem}
/* Ensure the subnav panel stays hidden when the 'hidden' attribute is present */
.mobile-subnav__panel[hidden] {
  display: none !important;
}
.nav__link--sub{font-size:.92rem;padding:.3rem .45rem}

