/* 01. TOKENS */
:root{--navy:#0d2240;--navy2:#132f55;--gold:#f2b705;--gold2:#d9a300;--ink:#18202c;--slate:#667085;--soft:#f4f6f8;--line:#d7dee7;--white:#fff;--shadow:0 18px 50px rgba(13,34,64,.12);--radius:20px;--max:1200px;--font:Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif}
*{box-sizing:border-box}html{scroll-behavior:smooth}body{margin:0;color:var(--ink);font-family:var(--font);line-height:1.6;background:#fff}img{max-width:100%;display:block}a{color:inherit;text-decoration:none}button,input,select,textarea{font:inherit}.shell{width:min(calc(100% - 40px),var(--max));margin-inline:auto}.narrow{max-width:900px}.sr-only{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0)}.skip-link{position:fixed;top:-100px;left:12px;background:var(--gold);color:var(--navy);padding:10px 14px;z-index:9999;font-weight:800}.skip-link:focus{top:12px}
/* 02. TYPOGRAPHY */
h1,h2,h3,p{margin-top:0}h1,h2,h3{color:var(--navy);line-height:1.08;letter-spacing:-.035em}h1{font-size:clamp(2.7rem,6vw,5.6rem);max-width:950px;margin-bottom:24px}h2{font-size:clamp(2rem,4vw,3.5rem);margin-bottom:18px}h3{font-size:1.35rem}.eyebrow{font-size:.78rem;letter-spacing:.15em;text-transform:uppercase;font-weight:900;color:var(--navy2);margin-bottom:15px}.gold{color:var(--gold)}.text-link{font-weight:800;color:var(--navy);white-space:nowrap}.text-link:hover{color:var(--gold2)}
/* 03. HEADER — APPROVED QUICK FIX GLOBAL HEADER */
.site-header.qfe-site-header{
  position:sticky;
  top:0;
  z-index:1000;
  width:100%;
  background:#fff;
  border:0;
  box-shadow:0 1px 0 rgba(13,34,64,.10);
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
}

body.admin-bar .site-header.qfe-site-header{
  top:32px;
}

/* Navy utility bar */
.qfe-utility-bar{
  width:100%;
  min-height:42px;
  background:linear-gradient(90deg,#07192f 0%,#0d2240 58%,#102e51 100%);
  color:#fff;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.qfe-utility-inner{
  min-height:42px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  padding-left:0!important;
  font-size:.78rem;
  line-height:1.2;
}

.qfe-utility-message{
  min-width:0;
  display:flex;
  align-items:center;
  gap:9px;
  color:#edf3f8;
  font-weight:650;
}

.qfe-utility-bolt{
  flex:0 0 auto;
  color:var(--gold);
  font-size:1.05rem;
  line-height:1;
}

.qfe-utility-contact{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:15px;
  white-space:nowrap;
}

.qfe-utility-contact a,
.qfe-utility-hours{
  display:inline-flex;
  align-items:center;
  gap:7px;
  color:#fff;
}

.qfe-utility-phone{
  font-weight:900;
}

.qfe-utility-phone strong{
  color:var(--gold);
}

.qfe-utility-email{
  font-weight:600;
}

.qfe-utility-contact a:hover{
  color:var(--gold);
}

.qfe-utility-divider{
  width:1px;
  height:17px;
  background:rgba(255,255,255,.34);
}

/* Main white navigation */
.qfe-main-nav-wrap{
  width:100%;
  background:#fff;
}

.qfe-main-nav{
  min-height:100px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
}

/* Logo + Quick Fix Electric wordmark */
.qfe-brand-lockup{
  min-width:285px;
  flex:0 0 auto;
  display:flex;
  align-items:center;
  gap:16px;
}

.qfe-brand-mark{
  width:76px;
  height:76px;
  flex:0 0 76px;
  display:grid;
  place-items:center;
  overflow:hidden;
  border-radius:16px;
  background:var(--navy);
  box-shadow:0 9px 26px rgba(13,34,64,.13);
}

.qfe-brand-mark img{
  display:block;
  width:100%!important;
  height:100%!important;
  max-width:100%!important;
  object-fit:contain;
}

.qfe-brand-name{
  display:flex;
  flex-direction:column;
  color:var(--navy);
  line-height:1;
}

.qfe-brand-name strong{
  font-size:1.48rem;
  line-height:1;
  font-weight:950;
  font-style:italic;
  letter-spacing:.035em;
  white-space:nowrap;
}

.qfe-brand-name span{
  margin-top:7px;
  padding-left:2px;
  font-size:.68rem;
  font-weight:850;
  letter-spacing:.43em;
}

/* Desktop navigation */
.qfe-main-navigation.main-nav{
  position:static;
  margin-left:auto;
  padding:0;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:28px;
  background:transparent;
  border:0;
  box-shadow:none;
  transform:none;
  opacity:1;
  pointer-events:auto;
  color:var(--navy);
  font-size:.86rem;
  font-weight:800;
}

.qfe-main-navigation.main-nav > a:not(.qfe-header-cta){
  position:relative;
  min-height:100px;
  padding:0!important;
  display:inline-flex;
  align-items:center;
  border:0!important;
  color:var(--navy);
  white-space:nowrap;
}

.qfe-main-navigation.main-nav > a:not(.qfe-header-cta)::after{
  content:"";
  position:absolute;
  left:50%;
  right:50%;
  bottom:19px;
  height:3px;
  border-radius:99px;
  background:var(--gold);
  transition:left .2s ease,right .2s ease;
}

.qfe-main-navigation.main-nav > a:not(.qfe-header-cta):hover::after,
.qfe-main-navigation.main-nav > a:not(.qfe-header-cta).active::after{
  left:0;
  right:0;
}

.qfe-main-navigation.main-nav > a:not(.qfe-header-cta):hover,
.qfe-main-navigation.main-nav > a:not(.qfe-header-cta).active{
  color:var(--navy2);
}

/* Yellow Request Service button */
.qfe-main-navigation.main-nav > .qfe-header-cta{
  min-width:176px;
  min-height:52px;
  padding:0 23px!important;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  border:2px solid var(--gold)!important;
  border-radius:13px;
  background:var(--gold);
  color:var(--navy);
  font-weight:900;
  line-height:1;
  white-space:nowrap;
  box-shadow:0 10px 26px rgba(242,183,5,.20);
  transition:.2s ease;
}

.qfe-main-navigation.main-nav > .qfe-header-cta:hover,
.qfe-main-navigation.main-nav > .qfe-header-cta.active{
  background:var(--gold2);
  border-color:var(--gold2)!important;
  color:var(--navy);
  transform:translateY(-1px);
}

/* Mobile menu trigger — hidden on desktop */
.qfe-menu-toggle.menu-toggle{
  display:none;
  flex:0 0 46px;
  width:46px;
  height:46px;
  padding:9px;
  border:1px solid var(--line);
  border-radius:11px;
  background:#fff;
}

.qfe-menu-toggle.menu-toggle span:not(.sr-only){
  height:2px;
  margin:5px 0;
  display:block;
  border-radius:99px;
  background:var(--navy);
}

.qfe-site-header a:focus-visible,
.qfe-menu-toggle.menu-toggle:focus-visible{
  outline:3px solid rgba(242,183,5,.55);
  outline-offset:3px;
}
/* 04. BUTTONS */
.btn{display:inline-flex;align-items:center;justify-content:center;min-height:52px;padding:0 24px;border-radius:999px;background:var(--gold);color:var(--navy);font-weight:900;border:2px solid var(--gold);transition:.2s ease;box-shadow:0 9px 24px rgba(242,183,5,.19)}.btn:hover{background:var(--gold2);border-color:var(--gold2);transform:translateY(-1px)}.btn-outline{background:transparent;color:var(--white);border-color:rgba(255,255,255,.55);box-shadow:none}.btn-outline:hover,.btn-white-outline:hover{background:white;color:var(--navy);border-color:white}.btn-white-outline{background:transparent;color:white;border-color:rgba(255,255,255,.6);box-shadow:none}.btn-small{min-height:42px;padding:0 18px;font-size:.86rem}
/* 05. HERO */
.hero{overflow:hidden}.hero-home{background:linear-gradient(120deg,var(--navy) 0%,#102b4e 54%,#183b65 100%);color:white;min-height:690px;display:flex;align-items:center;position:relative}.hero-home:before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 70% 30%,rgba(242,183,5,.16),transparent 25%),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px);background-size:auto,48px 48px,48px 48px;mask-image:linear-gradient(to left,#000,transparent 72%)}.hero-grid{display:grid;grid-template-columns:1.12fr .88fr;align-items:center;gap:70px;padding-block:80px;position:relative;z-index:2}.hero-copy h1,.hero-copy .eyebrow{color:white}.hero-copy .eyebrow{color:var(--gold)}.hero-lede{font-size:1.16rem;max-width:700px;color:#dce5ef}.hero-actions{display:flex;flex-wrap:wrap;gap:14px;margin-top:30px}.trust-row{display:flex;flex-wrap:wrap;gap:20px;margin-top:38px;font-size:.84rem;color:#c8d3e0}.trust-row span{display:flex;align-items:center;gap:8px}.trust-row span:before{content:"✓";color:var(--gold);font-weight:900}.hero-visual{height:520px;position:relative}.power-card{position:absolute;border:1px solid rgba(255,255,255,.14);background:rgba(255,255,255,.08);backdrop-filter:blur(12px);box-shadow:0 28px 70px rgba(0,0,0,.26)}.power-main{inset:70px 20px 80px 15px;border-radius:34px;padding:56px 42px;display:flex;flex-direction:column;justify-content:flex-end}.power-main:before{content:"↯";position:absolute;right:38px;top:25px;font-size:10rem;line-height:1;color:rgba(242,183,5,.2);font-weight:900}.power-main strong{font-size:2.4rem;line-height:1.05;max-width:360px}.power-main p{color:#d9e2ec;max-width:340px;margin:18px 0 0}.mini-label{font-size:.72rem;font-weight:900;color:var(--gold);letter-spacing:.16em}.power-float{z-index:3;border-radius:18px;padding:16px 20px;display:flex;flex-direction:column}.power-float strong{font-size:1rem}.power-float small{color:#c6d0dd}.float-one{right:-14px;top:32px}.float-two{left:-15px;bottom:38px;background:var(--gold);color:var(--navy);border:0}.float-two small{color:var(--navy)}.icon-bolt{font-size:1.3rem;color:var(--gold)}.circuit{position:absolute;border:1px solid rgba(242,183,5,.28);border-radius:50%}.circuit-a{width:420px;height:420px;right:-90px;top:45px}.circuit-b{width:315px;height:315px;right:-38px;top:98px}.circuit-c{width:205px;height:205px;right:17px;top:152px}
/* 06. STRIP */
.quick-strip{background:var(--gold);color:var(--navy)}.quick-grid{display:grid;grid-template-columns:repeat(3,1fr)}.quick-grid>div{display:flex;gap:16px;align-items:center;padding:22px 25px;border-right:1px solid rgba(13,34,64,.16)}.quick-grid>div:last-child{border-right:0}.quick-grid span{font-size:.73rem;font-weight:900;opacity:.66}.quick-grid strong{font-size:.95rem}
/* 07. SECTIONS */
.section{padding:100px 0}.section-soft{background:var(--soft)}.section-dark{background:var(--navy);color:#dce5ef}.section-dark h2,.section-dark h3{color:white}.section-head{display:flex;align-items:end;justify-content:space-between;gap:30px;margin-bottom:42px}.section-head>div{max-width:780px}.center-head{text-align:center;max-width:800px;margin:0 auto 48px}.split{display:grid;grid-template-columns:1.1fr .9fr;gap:80px;align-items:center}.split-copy p{max-width:680px}.dual-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:28px}.metric-stack{display:grid;gap:12px}.metric-stack>div{padding:25px 28px;border:1px solid rgba(255,255,255,.14);border-radius:16px;background:rgba(255,255,255,.055);display:flex;justify-content:space-between;gap:20px;align-items:center}.metric-stack strong{color:white;font-size:1.12rem}.metric-stack span{font-size:.88rem;color:#b9c6d7;text-align:right}.cards{display:grid;gap:18px}.service-grid{grid-template-columns:repeat(3,1fr)}.card{display:block;border:1px solid var(--line);border-radius:var(--radius);padding:32px;background:white;box-shadow:0 4px 15px rgba(13,34,64,.035);transition:.22s ease}.card:hover{transform:translateY(-4px);box-shadow:var(--shadow);border-color:#bdc9d7}.card-no{font-size:.7rem;font-weight:900;color:var(--gold2);letter-spacing:.12em}.card h2,.card h3{margin:14px 0 12px}.card p{color:var(--slate);margin-bottom:0}.card-link{display:block;margin-top:24px;font-weight:850;color:var(--navy)}.process-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}.process-grid article{padding:28px 24px;border-top:4px solid var(--gold);background:var(--soft);border-radius:0 0 var(--radius) var(--radius)}.process-grid article>span{font-size:.75rem;font-weight:900;color:var(--gold2)}.process-grid h3{margin:24px 0 10px}.process-grid p{color:var(--slate);margin:0;font-size:.92rem}.cta-section{padding-top:20px}.cta-panel{background:linear-gradient(115deg,var(--navy),#173a64);border-radius:28px;padding:54px 56px;color:#d9e3ee;display:flex;justify-content:space-between;align-items:center;gap:40px;box-shadow:var(--shadow)}.cta-panel h2{color:white;max-width:720px;margin-bottom:12px}.cta-panel p:last-child{margin-bottom:0}.cta-actions{display:flex;gap:12px;flex-wrap:wrap;justify-content:flex-end;min-width:290px}
/* 08. PAGE HERO */
.page-hero{padding:105px 0 95px;background:linear-gradient(120deg,#f7f8fa,#eef2f6);border-bottom:1px solid var(--line);position:relative;overflow:hidden}.page-hero:after{content:"↯";position:absolute;right:7%;top:50%;transform:translateY(-50%);font-size:18rem;color:rgba(13,34,64,.035);font-weight:900}.page-hero .narrow{position:relative;z-index:2}.page-hero h1{font-size:clamp(2.7rem,5.2vw,4.8rem)}.page-hero p:not(.eyebrow){font-size:1.1rem;max-width:760px;color:var(--slate)}.page-hero .btn-outline{color:var(--navy);border-color:#94a2b4}.page-hero .btn-outline:hover{background:var(--navy);color:white;border-color:var(--navy)}
/* 09. DETAIL */
.detail-list{max-width:980px}.detail-list article{display:grid;grid-template-columns:70px 1fr;gap:25px;padding:38px 0;border-bottom:1px solid var(--line);scroll-margin-top:130px}.detail-list article>span{width:48px;height:48px;border-radius:50%;display:grid;place-items:center;background:var(--gold);color:var(--navy);font-weight:900;font-size:.78rem}.detail-list h2{font-size:clamp(1.7rem,3vw,2.45rem)}.detail-list p{color:var(--slate);max-width:760px}.check-list{display:grid;gap:12px}.check-list span{background:white;border:1px solid var(--line);border-radius:14px;padding:16px 20px;font-weight:750;color:var(--navy);box-shadow:0 4px 14px rgba(13,34,64,.04)}.check-list span:before{content:"✓";color:var(--gold2);font-weight:900;margin-right:12px}.dark-list span{background:rgba(255,255,255,.06);border-color:rgba(255,255,255,.14);color:white;box-shadow:none}.value-stack{display:grid;gap:14px}.value-stack article{display:grid;grid-template-columns:48px 1fr;gap:16px;padding:22px;border:1px solid var(--line);border-radius:16px}.value-stack article>span{font-weight:900;color:var(--gold2)}.value-stack h3{margin:0 0 5px}.value-stack p{margin:0;color:var(--slate)}.area-layout{align-items:stretch}.map-card{min-height:430px;border-radius:30px;background:radial-gradient(circle at center,rgba(242,183,5,.16),transparent 38%),var(--navy);position:relative;overflow:hidden;color:white;display:flex;flex-direction:column;align-items:center;justify-content:center}.map-card strong{font-size:2.3rem;letter-spacing:.12em;z-index:2}.map-card>span{color:#cbd5e0;z-index:2}.map-ring{position:absolute;border:1px solid rgba(242,183,5,.35);border-radius:50%}.ring-one{width:130px;height:130px}.ring-two{width:240px;height:240px}.ring-three{width:360px;height:360px}.map-pin{width:62px;height:62px;border-radius:50% 50% 50% 0;background:var(--gold);color:var(--navy);transform:rotate(-45deg);display:grid;place-items:center;font-weight:900;margin-bottom:22px;z-index:3}.map-pin::first-line{transform:rotate(45deg)}
/* 10. FORM */
.form-layout{display:grid;grid-template-columns:minmax(0,1fr) 340px;gap:55px;align-items:start}.service-form{border:1px solid var(--line);border-radius:24px;padding:36px;box-shadow:var(--shadow);background:white}.form-note{background:#fff8d8;border:1px solid #f4dc79;border-radius:13px;padding:14px 16px;margin-bottom:25px;display:flex;flex-direction:column;color:var(--navy)}.form-note span{font-size:.86rem;color:#6a5e2a}.service-form label,.service-form legend{display:grid;gap:7px;font-size:.84rem;font-weight:800;color:var(--navy)}.service-form input,.service-form select,.service-form textarea{width:100%;border:1px solid #c9d2dd;border-radius:11px;padding:13px 14px;background:white;color:var(--ink);outline:0}.service-form input:focus,.service-form select:focus,.service-form textarea:focus{border-color:var(--navy2);box-shadow:0 0 0 3px rgba(19,47,85,.1)}.field-row{display:grid;grid-template-columns:1fr 1fr;gap:16px}.service-form>label,.service-form>.field-row,.service-form fieldset{margin-bottom:18px}.service-form fieldset{border:0;padding:0}.choice-row{display:flex;gap:18px;flex-wrap:wrap;margin-top:7px}.choice-row label{display:flex;grid-template-columns:auto 1fr;align-items:center;gap:7px}.choice-row input{width:auto}.form-submit{width:100%;border-radius:12px}.form-status{font-size:.88rem;margin:14px 0 0;color:var(--slate)}.contact-aside{background:var(--soft);border-radius:22px;padding:32px;position:sticky;top:140px}.contact-aside h2{font-size:2rem}.contact-aside .aside-card{background:white;border:1px solid var(--line);border-radius:15px;padding:20px;margin:25px 0}.contact-aside address{font-style:normal;margin:10px 0}.contact-aside a{font-weight:800;color:var(--navy2);word-break:break-word}.small{font-size:.85rem;color:var(--slate)}
/* 11. FOOTER — APPROVED QUICK FIX GLOBAL FOOTER */
.site-footer.qfe-site-footer{
  position:relative;
  overflow:hidden;
  padding:0;
  background:
    radial-gradient(circle at 88% 12%,rgba(38,86,137,.23),transparent 31%),
    linear-gradient(120deg,#06172c 0%,#09213e 56%,#0c2b4d 100%);
  color:#b8c6d7;
}

.site-footer.qfe-site-footer::before{
  content:"";
  position:absolute;
  right:-70px;
  bottom:-70px;
  width:275px;
  height:275px;
  border:1px solid rgba(242,183,5,.08);
  border-radius:50%;
  pointer-events:none;
}

.qfe-site-footer a{
  color:#c8d4e2;
  text-decoration:none;
}

.qfe-site-footer a:hover{
  color:#fff;
}

/* Five-column desktop layout */
.qfe-footer-main{
  position:relative;
  z-index:2;
  padding-top:70px;
  padding-bottom:52px;
  display:grid;
  grid-template-columns:1.22fr 1fr .78fr 1.13fr 1fr;
  gap:42px;
  align-items:start;
}

/* Brand column */
.qfe-footer-brand-column{
  min-width:0;
}

.qfe-footer-brand{
  width:max-content;
  max-width:100%;
  margin-bottom:22px;
  display:flex;
  align-items:center;
  gap:14px;
}

.qfe-footer-logo{
  width:66px;
  height:66px;
  flex:0 0 66px;
  display:grid;
  place-items:center;
  overflow:hidden;
  border-radius:14px;
  background:var(--navy);
}

.qfe-footer-logo img{
  display:block;
  width:100%!important;
  height:100%!important;
  max-width:100%!important;
  object-fit:contain;
}

.qfe-footer-wordmark{
  display:flex;
  flex-direction:column;
  color:#fff;
  line-height:1;
}

.qfe-footer-wordmark strong{
  font-size:1.2rem;
  line-height:1;
  font-weight:950;
  font-style:italic;
  letter-spacing:.035em;
  white-space:nowrap;
}

.qfe-footer-wordmark span{
  margin-top:6px;
  font-size:.61rem;
  font-weight:850;
  letter-spacing:.40em;
}

.qfe-footer-description{
  max-width:270px;
  margin:0 0 13px;
  color:#c3cedb;
  font-size:.89rem;
  line-height:1.7;
}

.qfe-footer-tagline{
  margin:0 0 20px;
  color:var(--gold);
  font-size:.82rem;
  font-weight:850;
}

.qfe-footer-trust{
  display:inline-flex;
  align-items:center;
  gap:9px;
  color:#edf3f8;
  font-size:.81rem;
  font-weight:800;
}

.qfe-footer-trust-mark{
  width:24px;
  height:24px;
  display:grid;
  place-items:center;
  border:1px solid rgba(242,183,5,.48);
  border-radius:50%;
  color:var(--gold);
}

/* Footer headings and links */
.qfe-footer-column{
  min-width:0;
}

.qfe-footer-column h2{
  margin:5px 0 19px;
  color:var(--gold)!important;
  font-size:.73rem!important;
  line-height:1.2!important;
  font-weight:900!important;
  letter-spacing:.15em!important;
  text-transform:uppercase;
}

.qfe-footer-column > a{
  width:max-content;
  max-width:100%;
  margin:0 0 10px;
  display:block;
  color:#c6d2df;
  font-size:.85rem;
  line-height:1.42;
}

.qfe-footer-column > a:hover{
  transform:translateX(2px);
}

/* Location */
.qfe-footer-area-copy{
  margin:0 0 19px;
  color:#c5d0dd;
  font-size:.87rem;
  line-height:1.67;
}

.qfe-footer-address{
  margin:0 0 22px;
  display:grid;
  grid-template-columns:18px minmax(0,1fr);
  gap:10px;
  color:#eef3f8;
  font-style:normal;
  font-size:.86rem;
  line-height:1.62;
}

.qfe-footer-address-icon{
  padding-top:2px;
  color:var(--gold);
  font-size:.72rem;
}

.qfe-footer-outline-button{
  width:100%!important;
  min-height:45px;
  padding:0 15px;
  display:inline-flex!important;
  align-items:center;
  justify-content:center;
  gap:8px;
  border:1px solid rgba(242,183,5,.72);
  border-radius:10px;
  color:#fff!important;
  font-size:.8rem!important;
  font-weight:850;
  text-align:center;
}

.qfe-footer-outline-button:hover{
  background:var(--gold);
  border-color:var(--gold);
  color:var(--navy)!important;
  transform:none!important;
}

/* Hours */
.qfe-footer-hour-row{
  margin-bottom:16px;
  display:flex;
  align-items:flex-start;
  gap:11px;
  color:#eef3f8;
  font-size:.88rem;
  line-height:1.5;
}

.qfe-footer-icon{
  flex:0 0 auto;
  color:var(--gold);
  font-size:1.05rem;
}

/* Footer CTA buttons */
.qfe-footer-actions{
  margin-top:25px;
  display:grid;
  gap:11px;
}

.qfe-footer-request,
.qfe-footer-call{
  width:100%;
  min-height:47px;
  padding:0 15px;
  display:inline-flex!important;
  align-items:center;
  justify-content:center;
  gap:8px;
  border-radius:10px;
  font-size:.81rem!important;
  font-weight:900;
  line-height:1.1;
  text-align:center;
}

.qfe-footer-request{
  border:1px solid var(--gold);
  background:var(--gold);
  color:var(--navy)!important;
}

.qfe-footer-request:hover{
  background:var(--gold2);
  border-color:var(--gold2);
  color:var(--navy)!important;
}

.qfe-footer-call{
  border:1px solid rgba(255,255,255,.58);
  background:rgba(255,255,255,.025);
  color:#fff!important;
}

.qfe-footer-call:hover{
  border-color:#fff;
  background:#fff;
  color:var(--navy)!important;
}

/*
 * This strip exists in the PHP so the information remains available
 * structurally, but the approved desktop design does not need a second
 * duplicate phone/email row.
 */
.qfe-footer-contact-strip{
  display:none;
}

/* Footer bottom */
.qfe-footer-bottom{
  position:relative;
  z-index:2;
  min-height:70px;
  padding:21px 0 25px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  gap:24px;
  align-items:center;
  border-top:1px solid rgba(255,255,255,.10);
  color:#98aabe;
  font-size:.75rem;
}

.qfe-footer-legal{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:11px;
  white-space:nowrap;
}

.qfe-footer-legal a{
  color:#b8c6d6;
  font-weight:700;
}

.qfe-footer-license{
  justify-self:end;
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:#dce4ed;
  font-weight:750;
  white-space:nowrap;
}

.qfe-footer-bolt{
  color:var(--gold);
  font-size:1.15rem;
}

/* New mobile bar starts hidden */
.qfe-mobile-actions{
  display:none;
}

/* Prevent the legacy mobile bar from resurfacing */
.mobile-call{
  display:none!important;
}

.qfe-site-footer a:focus-visible{
  outline:3px solid var(--gold);
  outline-offset:4px;
}
/* 12. REVEAL */
.reveal{opacity:0;transform:translateY(16px);transition:opacity .6s ease,transform .6s ease}.reveal.is-visible{opacity:1;transform:none}
/* 13. RESPONSIVE */

@media(max-width:1180px){
  .qfe-main-nav{
    gap:20px;
  }

  .qfe-brand-lockup{
    min-width:245px;
    gap:13px;
  }

  .qfe-brand-mark{
    width:65px;
    height:65px;
    flex-basis:65px;
  }

  .qfe-brand-name strong{
    font-size:1.23rem;
  }

  .qfe-main-navigation.main-nav{
    gap:18px;
    font-size:.79rem;
  }

  .qfe-main-navigation.main-nav > .qfe-header-cta{
    min-width:153px;
    padding-inline:17px!important;
  }

  .qfe-footer-main{
    grid-template-columns:1.2fr .95fr .74fr 1.08fr 1fr;
    gap:30px;
  }
}


@media(max-width:980px){

  /* HEADER */
  .qfe-utility-inner{
    padding-left:0!important;
  }

  .qfe-utility-email,
  .qfe-utility-divider{
    display:none;
  }

  .qfe-main-nav{
    min-height:82px;
  }

  .qfe-brand-lockup{
    min-width:0;
  }

  .qfe-brand-mark{
    width:60px;
    height:60px;
    flex-basis:60px;
    border-radius:13px;
  }

  .qfe-brand-name strong{
    font-size:1.08rem;
  }

  .qfe-brand-name span{
    font-size:.54rem;
  }

  .qfe-menu-toggle.menu-toggle{
    display:block;
    margin-left:auto;
  }

  .qfe-main-navigation.main-nav{
    position:fixed;
    top:124px;
    left:0;
    right:0;
    z-index:999;
    padding:12px 24px 26px;
    display:grid;
    gap:0;
    background:#fff;
    border-top:1px solid var(--line);
    box-shadow:0 20px 40px rgba(13,34,64,.16);
    transform:translateY(-135%);
    opacity:0;
    pointer-events:none;
    transition:transform .22s ease,opacity .22s ease;
  }

  body.admin-bar .qfe-main-navigation.main-nav{
    top:156px;
  }

  .qfe-main-navigation.main-nav.open{
    transform:none;
    opacity:1;
    pointer-events:auto;
  }

  .qfe-main-navigation.main-nav > a:not(.qfe-header-cta){
    min-height:51px;
    padding:0 4px!important;
    border-bottom:1px solid var(--line)!important;
  }

  .qfe-main-navigation.main-nav > a:not(.qfe-header-cta)::after{
    display:none;
  }

  .qfe-main-navigation.main-nav > a:not(.qfe-header-cta).active{
    color:var(--navy2);
  }

  .qfe-main-navigation.main-nav > a:not(.qfe-header-cta).active::before{
    content:"";
    width:4px;
    height:22px;
    margin-right:10px;
    border-radius:99px;
    background:var(--gold);
  }

  .qfe-main-navigation.main-nav > .qfe-header-cta{
    width:100%;
    min-height:50px;
    margin-top:17px;
  }

  /* EXISTING PAGE RESPONSIVE RULES */
  .hero-grid,
  .split{
    grid-template-columns:1fr;
  }

  .hero-home{
    min-height:auto;
  }

  .hero-grid{
    padding-block:70px;
  }

  .hero-visual{
    height:420px;
    max-width:620px;
    width:100%;
    margin:auto;
  }

  .service-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .process-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .form-layout{
    grid-template-columns:1fr;
  }

  .contact-aside{
    position:static;
  }

  .cta-panel{
    align-items:flex-start;
    flex-direction:column;
  }

  .cta-actions{
    justify-content:flex-start;
    min-width:0;
  }

  /* FOOTER */
  .qfe-footer-main{
    grid-template-columns:1.15fr 1fr;
    gap:44px 55px;
  }

  .qfe-footer-brand-column{
    grid-column:1/-1;
    padding-bottom:8px;
  }

  .qfe-footer-description{
    max-width:520px;
  }

  .qfe-footer-bottom{
    grid-template-columns:1fr;
    gap:13px;
  }

  .qfe-footer-legal{
    justify-content:flex-start;
  }

  .qfe-footer-license{
    justify-self:start;
  }
}


@media(max-width:782px){
  body.admin-bar .site-header.qfe-site-header{
    top:46px;
  }
}


@media(max-width:760px){

  body{
    padding-bottom:64px;
  }

  .shell{
    width:min(calc(100% - 28px),var(--max));
  }

  /* HEADER */
  .qfe-utility-bar{
    display:none;
  }

  .qfe-main-nav{
    min-height:76px;
  }

  .qfe-main-navigation.main-nav{
    top:76px;
    padding-inline:18px;
  }

  body.admin-bar .qfe-main-navigation.main-nav{
    top:122px;
  }

  .qfe-brand-lockup{
    gap:10px;
  }

  .qfe-brand-mark{
    width:54px;
    height:54px;
    flex-basis:54px;
    border-radius:11px;
  }

  .qfe-brand-name strong{
    font-size:1rem;
  }

  .qfe-brand-name span{
    margin-top:5px;
    font-size:.48rem;
    letter-spacing:.35em;
  }

  .qfe-menu-toggle.menu-toggle{
    width:44px;
    height:44px;
  }

  /* EXISTING PAGE RESPONSIVE RULES */
  .hero-grid{
    gap:24px;
  }

  .hero-home h1{
    font-size:clamp(2.55rem,12vw,4rem);
  }

  .hero-visual{
    height:370px;
  }

  .power-main{
    inset:45px 2px 52px;
    padding:35px 25px;
  }

  .power-main strong{
    font-size:2rem;
  }

  .float-one{
    right:0;
  }

  .float-two{
    left:0;
  }

  .quick-grid{
    grid-template-columns:1fr;
  }

  .quick-grid>div{
    padding:15px 10px;
    border-right:0;
    border-bottom:1px solid rgba(13,34,64,.14);
  }

  .quick-grid>div:last-child{
    border-bottom:0;
  }

  .section{
    padding:72px 0;
  }

  .section-head{
    align-items:flex-start;
    flex-direction:column;
  }

  .service-grid,
  .process-grid{
    grid-template-columns:1fr;
  }

  .card{
    padding:25px;
  }

  .cta-panel{
    padding:36px 26px;
    border-radius:22px;
  }

  .cta-actions{
    width:100%;
  }

  .cta-actions .btn{
    flex:1;
  }

  .page-hero{
    padding:72px 0 64px;
  }

  .page-hero:after{
    right:-12%;
    font-size:11rem;
  }

  .detail-list article{
    grid-template-columns:48px 1fr;
    gap:15px;
  }

  .field-row{
    grid-template-columns:1fr;
  }

  .service-form{
    padding:24px 18px;
  }

  .metric-stack>div{
    align-items:flex-start;
    flex-direction:column;
  }

  .metric-stack span{
    text-align:left;
  }

  /* FOOTER */
  .qfe-footer-main{
    padding-top:52px;
    padding-bottom:38px;
    grid-template-columns:1fr;
    gap:38px;
  }

  .qfe-footer-brand-column{
    grid-column:auto;
  }

  .qfe-footer-description{
    max-width:360px;
  }

  .qfe-footer-column h2{
    margin-bottom:15px;
  }

  .qfe-footer-services{
    display:grid;
    grid-template-columns:1fr 1fr;
    column-gap:24px;
  }

  .qfe-footer-services h2{
    grid-column:1/-1;
  }

  .qfe-footer-outline-button,
  .qfe-footer-request,
  .qfe-footer-call{
    max-width:340px;
  }

  .qfe-footer-bottom{
    padding-bottom:31px;
    align-items:start;
    font-size:.72rem;
  }

  .qfe-footer-legal{
    align-items:flex-start;
    justify-content:flex-start;
    flex-wrap:wrap;
    gap:7px 11px;
    white-space:normal;
  }

  .qfe-footer-license{
    white-space:normal;
  }

  /* New dual-action mobile bar */
  .qfe-mobile-actions{
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    z-index:1200;
    height:64px;
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    border-top:1px solid rgba(13,34,64,.20);
    box-shadow:0 -9px 25px rgba(13,34,64,.14);
  }

  .qfe-mobile-actions a{
    min-width:0;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    font-size:.8rem;
    font-weight:900;
    line-height:1;
    text-align:center;
  }

  .qfe-mobile-call{
    background:#0b213d;
    color:#fff;
  }

  .qfe-mobile-request{
    background:var(--gold);
    color:var(--navy);
  }

  .mobile-call{
    display:none!important;
  }
}


@media(max-width:420px){
  .qfe-brand-name strong{
    font-size:.92rem;
  }

  .qfe-brand-name span{
    font-size:.44rem;
  }

  .qfe-footer-services{
    grid-template-columns:1fr;
  }

  .qfe-footer-services h2{
    grid-column:auto;
  }
}


@media(prefers-reduced-motion:reduce){
  *{
    scroll-behavior:auto!important;
    transition:none!important;
  }

  .reveal{
    opacity:1;
    transform:none;
  }
}
/* 14. V5 CONTROLLED VISUAL ENHANCEMENTS */
.nav-wrap{position:relative}.main-nav{margin-left:auto}.main-nav .btn{white-space:nowrap}.hero-photo{position:absolute;inset:24px 6px 40px 8px;border-radius:34px;overflow:hidden;box-shadow:0 28px 70px rgba(0,0,0,.28);border:1px solid rgba(255,255,255,.16);background:#07162a}.hero-photo img{width:100%;height:100%;object-fit:cover}.hero-photo-shade{position:absolute;inset:0;background:linear-gradient(180deg,rgba(3,14,29,.08),rgba(3,14,29,.68))}.hero-photo-caption{position:absolute;left:28px;right:28px;bottom:26px;display:flex;flex-direction:column;gap:3px}.hero-photo-caption span{font-size:.72rem;text-transform:uppercase;letter-spacing:.14em;font-weight:900;color:var(--gold)}.hero-photo-caption strong{font-size:1.55rem;color:#fff;line-height:1.1}.image-service-card{position:relative;isolation:isolate;min-height:310px;padding:28px;overflow:hidden;border:0;background-image:linear-gradient(180deg,rgba(3,16,32,.12),rgba(3,16,32,.86)),var(--card-image);background-size:cover;background-position:center;display:flex;flex-direction:column;justify-content:flex-end;box-shadow:0 16px 42px rgba(13,34,64,.16)}.image-service-card:before{content:"";position:absolute;inset:0;background:linear-gradient(135deg,rgba(13,34,64,.02),rgba(13,34,64,.34));z-index:-1}.image-service-card h2,.image-service-card h3,.image-service-card p,.image-service-card .card-link{color:#fff}.image-service-card .card-no{color:var(--gold);font-size:.8rem}.image-service-card p{opacity:.93}.image-service-card .card-link{color:var(--gold);margin-top:18px}.image-service-card:hover{border-color:transparent;transform:translateY(-5px);box-shadow:0 22px 55px rgba(13,34,64,.24)}.process-grid article{position:relative;isolation:isolate;overflow:hidden;min-height:285px;padding:28px 24px;border-top:4px solid var(--gold);background-image:linear-gradient(180deg,rgba(5,18,36,.12),rgba(5,18,36,.88)),var(--process-image);background-size:cover;background-position:center;display:flex;flex-direction:column;justify-content:flex-end;box-shadow:0 14px 34px rgba(13,34,64,.12)}.process-grid article>span{color:var(--gold)}.process-grid h3{color:white;margin:14px 0 8px}.process-grid p{color:#eef3f8}.page-hero-image{background-image:linear-gradient(90deg,rgba(7,24,47,.93) 0%,rgba(7,24,47,.82) 46%,rgba(7,24,47,.42) 72%,rgba(7,24,47,.28) 100%),var(--hero-image);background-size:cover;background-position:center;border-bottom:0;color:#fff;min-height:440px;display:flex;align-items:center}.page-hero-image:after{display:none}.page-hero-image h1,.page-hero-image .eyebrow{color:#fff}.page-hero-image .eyebrow{color:var(--gold)}.page-hero-image p:not(.eyebrow){color:#edf3f9;max-width:720px}.page-hero-image .btn-outline{color:white;border-color:rgba(255,255,255,.72)}.page-hero-image .btn-outline:hover{background:#fff;color:var(--navy);border-color:#fff}.hero-actions>.btn,.dual-actions>.btn,.cta-actions>.btn{min-width:215px;min-height:54px;padding:0 22px}.upload-placeholder{border:2px dashed #aebccc;border-radius:14px;padding:20px;margin:4px 0 20px;background:var(--soft);display:flex;gap:14px;align-items:center}.upload-placeholder .upload-icon{width:42px;height:42px;border-radius:50%;display:grid;place-items:center;background:var(--navy);color:#fff;font-weight:900;font-size:1.4rem}.upload-placeholder strong,.upload-placeholder span{display:block}.upload-placeholder span{font-size:.84rem;color:var(--slate);margin-top:3px}.contact-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}.contact-card{padding:34px;border:1px solid var(--line);border-radius:20px;background:#fff;box-shadow:0 10px 30px rgba(13,34,64,.07)}.contact-card>span{font-size:.75rem;font-weight:900;color:var(--gold2)}.contact-card h2{font-size:1.8rem;margin:14px 0}.contact-card p{color:var(--slate)}.contact-card address{font-style:normal;font-weight:800;color:var(--navy);margin-bottom:12px}.contact-big{font-weight:900;color:var(--navy2);word-break:break-word}.policy-hero{padding:90px 0 72px;background:linear-gradient(120deg,var(--navy),#173a64);color:#dce5ef}.policy-hero h1{color:#fff;font-size:clamp(2.8rem,5vw,4.8rem)}.policy-hero .eyebrow{color:var(--gold)}.policy-hero p{max-width:760px;font-size:1.08rem}.policy-updated{font-size:.82rem;color:#c4d0de}.policy-wrap{padding-top:70px}.policy-layout{display:grid;grid-template-columns:260px minmax(0,780px);gap:70px;align-items:start}.policy-aside{position:sticky;top:145px;padding:24px;border:1px solid var(--line);border-radius:16px;background:var(--soft);display:grid;gap:8px}.policy-aside p{font-size:.9rem;color:var(--slate);margin:4px 0}.policy-aside a{font-weight:800;color:var(--navy2);font-size:.9rem;word-break:break-word}.policy-content{min-width:0}.policy-section{padding-bottom:28px;margin-bottom:28px;border-bottom:1px solid var(--line)}.policy-section:last-child{border-bottom:0}.policy-section h2{font-size:clamp(1.55rem,2.5vw,2.2rem)}.policy-section p{color:#475467}.policy-section a{color:var(--navy2);font-weight:800;text-decoration:underline}.footer-grid{grid-template-columns:1.15fr .65fr .75fr 1fr;gap:50px}.footer-tagline{color:var(--gold);font-weight:800}.footer-legal{display:flex;gap:18px;flex-wrap:wrap}.footer-bottom a{font-weight:750}.footer-grid span{font-size:.9rem;color:#afbed1}
@media(max-width:1120px){.nav-wrap{gap:16px}.brand{width:165px}.main-nav{gap:17px;font-size:.84rem}.main-nav .btn-small{padding-inline:14px}}
@media(max-width:980px){.nav-wrap{height:76px}.brand{width:155px}.menu-toggle{display:block;margin-left:auto}.main-nav{position:fixed;top:110px;left:0;right:0;background:white;border-top:1px solid var(--line);padding:18px 24px 26px;display:grid;gap:0;box-shadow:0 20px 35px rgba(13,34,64,.13);transform:translateY(-135%);opacity:0;pointer-events:none;transition:.2s ease}.main-nav.open{transform:none;opacity:1;pointer-events:auto}.main-nav>a:not(.btn){padding:13px 4px;border-bottom:1px solid var(--line)}.main-nav .btn{margin-top:15px}.hero-photo{inset:20px 30px 30px}.contact-grid{grid-template-columns:1fr 1fr}.contact-card:last-child{grid-column:1/-1}.policy-layout{grid-template-columns:1fr}.policy-aside{position:static}.footer-grid{grid-template-columns:1fr 1fr}.footer-grid>div:first-child{grid-column:1/-1}}
@media(max-width:760px){.main-nav{top:72px}.hero-photo{inset:10px 0 20px}.hero-photo-caption{left:20px;bottom:20px}.hero-photo-caption strong{font-size:1.25rem}.page-hero-image{min-height:390px;background-position:60% center}.page-hero-image{background-image:linear-gradient(90deg,rgba(7,24,47,.94),rgba(7,24,47,.72)),var(--hero-image)}.image-service-card{min-height:285px}.process-grid article{min-height:260px}.hero-actions,.dual-actions,.cta-actions{width:100%}.hero-actions>.btn,.dual-actions>.btn,.cta-actions>.btn{width:100%;min-width:0;min-height:52px}.contact-grid{grid-template-columns:1fr}.contact-card:last-child{grid-column:auto}.footer-grid{grid-template-columns:1fr}.footer-grid>div:first-child{grid-column:auto}.footer-bottom{align-items:flex-start}.policy-hero{padding:70px 0 58px}.upload-placeholder{align-items:flex-start}.footer-legal{gap:14px}}


/* 15. V5.1 APPROVED-DESIGN CORRECTIONS */
:root{--max:1200px}
@media(min-width:981px){.utility-inner{padding-left:210px}.nav-wrap{min-height:112px}}
.page-feature-media{padding:44px 0 0;background:#fff}
.page-feature-frame{margin:0;height:360px;border-radius:22px;overflow:hidden;background:var(--soft);box-shadow:0 16px 42px rgba(13,34,64,.12)}
.page-feature-frame img{width:100%;height:100%;object-fit:cover;object-position:center 30%}
.image-service-card{min-height:360px;background-position:var(--card-position,center 24%);padding:28px}
.image-service-card h2{font-size:clamp(1.7rem,2vw,2rem);line-height:1.04;min-height:2.08em;margin:11px 0 10px;letter-spacing:-.03em;overflow-wrap:normal;word-break:normal}
.image-service-card p{font-size:.94rem;line-height:1.5;min-height:4.5em;margin:0}
.image-service-card .card-link{margin-top:11px;font-size:.9rem}
.image-service-card .card-no{margin-bottom:0}
@media(max-width:1120px) and (min-width:981px){.utility-inner{padding-left:178px}.utility{font-size:.76rem}}
@media(max-width:980px){.utility-inner{padding-left:0}.page-feature-frame{height:320px}}
@media(max-width:760px){.page-feature-media{padding-top:28px}.page-feature-frame{height:245px;border-radius:16px}.image-service-card{min-height:350px}.image-service-card h2,.image-service-card p{min-height:0}}

/* 16. V5.2 FINAL POLISH — CTA SYSTEM + FEATURE CONVERSION BANNERS */
.hero-actions>.btn,.dual-actions>.btn,.cta-actions>.btn,.feature-conversion .feature-cta{
  width:250px!important;min-width:250px!important;max-width:250px!important;
  height:48px!important;min-height:48px!important;padding:0 16px!important;
  display:inline-flex!important;align-items:center!important;justify-content:center!important;
  line-height:1.1!important;text-align:center!important;white-space:nowrap!important;
}
.feature-conversion-frame{position:relative;height:520px;overflow:hidden;background:#0d2240}
.feature-conversion-frame>img{width:100%;height:100%;object-fit:cover;object-position:var(--feature-position,center 34%)}
.feature-conversion-frame:after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(8,27,51,.86) 0%,rgba(8,27,51,.58) 34%,rgba(8,27,51,.12) 67%,rgba(8,27,51,0) 100%),linear-gradient(0deg,rgba(8,27,51,.42),rgba(8,27,51,0) 48%);pointer-events:none}
.feature-conversion{position:absolute;z-index:2;left:38px;bottom:36px;width:min(500px,48%);color:#fff}
.feature-conversion .feature-eyebrow{display:block;margin:0 0 9px;color:#ffc20a;font-size:.72rem;line-height:1.2;letter-spacing:.16em;font-weight:800}
.feature-conversion h2{margin:0 0 10px!important;color:#fff!important;font-size:clamp(1.9rem,3vw,2.8rem)!important;line-height:1.02!important;letter-spacing:-.035em}
.feature-conversion p{margin:0 0 18px;max-width:440px;color:rgba(255,255,255,.92);font-size:1rem;line-height:1.5}
.feature-conversion .feature-cta{background:#ffc20a!important;border-color:#ffc20a!important;color:#0d2240!important;box-shadow:0 10px 26px rgba(0,0,0,.18)}
.feature-conversion .feature-cta:hover{background:#eeb400!important;border-color:#eeb400!important;color:#0d2240!important}
@media(max-width:980px){
  .feature-conversion-frame{height:auto;aspect-ratio:16/10}
  .feature-conversion{left:28px;bottom:26px;width:min(470px,64%)}
  .feature-conversion h2{font-size:clamp(1.65rem,4vw,2.25rem)!important}
  .feature-conversion p{font-size:.94rem}
}
@media(max-width:760px){
  .hero-actions,.dual-actions,.cta-actions{align-items:flex-start}
  .hero-actions>.btn,.dual-actions>.btn,.cta-actions>.btn,.feature-conversion .feature-cta{
    width:250px!important;min-width:250px!important;max-width:250px!important;height:48px!important;min-height:48px!important;
  }
  .feature-conversion-frame{aspect-ratio:4/3;min-height:250px;border-radius:16px}
  .feature-conversion-frame:after{background:linear-gradient(0deg,rgba(8,27,51,.92) 0%,rgba(8,27,51,.68) 40%,rgba(8,27,51,.08) 78%,rgba(8,27,51,0) 100%)}
  .feature-conversion{left:20px;right:20px;bottom:18px;width:auto}
  .feature-conversion .feature-eyebrow{font-size:.62rem;margin-bottom:6px}
  .feature-conversion h2{font-size:1.55rem!important;line-height:1.02!important;margin-bottom:7px!important}
  .feature-conversion p{font-size:.84rem;line-height:1.4;margin-bottom:12px;max-width:100%}
}
@media(max-width:390px){
  .feature-conversion-frame{aspect-ratio:1/1.08;min-height:285px}
  .feature-conversion{left:18px;right:18px;bottom:16px}
  .feature-conversion p{font-size:.8rem}
}

/* 17. PHASE 2 — JETFORMBUILDER REQUEST SERVICE INTEGRATION */
.qfe-jfb-shell .jet-form-builder{margin:0;padding:0;background:transparent}
.qfe-jfb-shell .jet-form-builder-row{margin:0 0 18px}
.qfe-jfb-shell .qfe-form-row{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:16px;margin:0}
.qfe-jfb-shell .qfe-form-row>.jet-form-builder-row{margin-bottom:18px;min-width:0}
.qfe-jfb-shell .jet-form-builder__label{margin:0 0 7px}
.qfe-jfb-shell .jet-form-builder__label-text,
.qfe-jfb-shell .jet-form-builder__label label,
.qfe-jfb-shell .jet-form-builder-row>label{font-size:.84rem;font-weight:800;color:var(--navy)}
.qfe-jfb-shell input:not([type="radio"]):not([type="checkbox"]),
.qfe-jfb-shell select,
.qfe-jfb-shell textarea,
.qfe-jfb-shell .jet-form-builder__field{width:100%;max-width:100%;border:1px solid #c9d2dd;border-radius:11px;padding:13px 14px;background:#fff;color:var(--ink);outline:0;font:inherit}
.qfe-jfb-shell textarea{min-height:150px;resize:vertical}
.qfe-jfb-shell input:not([type="radio"]):not([type="checkbox"]):focus,
.qfe-jfb-shell select:focus,
.qfe-jfb-shell textarea:focus,
.qfe-jfb-shell .jet-form-builder__field:focus{border-color:var(--navy2);box-shadow:0 0 0 3px rgba(19,47,85,.1)}
.qfe-jfb-shell .jet-form-builder__desc,
.qfe-jfb-shell .jet-form-builder-row .jet-form-builder__desc{margin-top:6px;font-size:.8rem;line-height:1.45;color:var(--slate)}
.qfe-jfb-shell .field-type-media-field,
.qfe-jfb-shell .jet-form-builder-row[class*="media"]{border:2px dashed #aebccc;border-radius:14px;padding:20px;margin:4px 0 20px;background:var(--soft)}
.qfe-jfb-shell .field-type-media-field .jet-form-builder__label-text,
.qfe-jfb-shell .jet-form-builder-row[class*="media"] .jet-form-builder__label-text{font-size:.95rem}
.qfe-jfb-shell input[type="file"]{border:0!important;padding:9px 0!important;background:transparent!important;box-shadow:none!important}
.qfe-jfb-shell .field-type-radio-field .jet-form-builder__fields-group,
.qfe-jfb-shell .field-type-radio-field .jet-form-builder__field-wrap,
.qfe-jfb-shell .jet-form-builder-row[class*="radio"] .jet-form-builder__fields-group{display:flex;gap:18px;flex-wrap:wrap;align-items:center}
.qfe-jfb-shell .field-type-radio-field label,
.qfe-jfb-shell .jet-form-builder-row[class*="radio"] label{display:inline-flex;align-items:center;gap:7px;font-size:.84rem;font-weight:800;color:var(--navy)}
.qfe-jfb-shell input[type="radio"],.qfe-jfb-shell input[type="checkbox"]{width:auto;accent-color:var(--gold)}
.qfe-jfb-shell .jet-form-builder__action-button,
.qfe-jfb-shell button[type="submit"]{width:100%;min-height:50px;border:1px solid var(--gold);border-radius:12px;padding:0 22px;background:var(--gold);color:var(--navy);font:inherit;font-weight:900;cursor:pointer;transition:.2s ease}
.qfe-jfb-shell .jet-form-builder__action-button:hover,
.qfe-jfb-shell button[type="submit"]:hover{background:var(--gold2);border-color:var(--gold2);transform:translateY(-1px)}
.qfe-jfb-shell .jet-form-builder-message{margin-top:14px;padding:12px 14px;border-radius:10px;font-size:.9rem;line-height:1.45}
.qfe-jfb-shell .jet-form-builder-message--success{background:#edf8f0;color:#195c2a;border:1px solid #b9dfc3}
.qfe-jfb-shell .jet-form-builder-message--error{background:#fff1f0;color:#8a1f17;border:1px solid #efc0bc}
.qfe-jfb-shell .jet-form-builder__required{color:#b42318}
@media(max-width:760px){.qfe-jfb-shell .qfe-form-row{grid-template-columns:1fr}.qfe-jfb-shell .qfe-form-row>.jet-form-builder-row{margin-bottom:18px}.qfe-jfb-shell .field-type-radio-field .jet-form-builder__fields-group,.qfe-jfb-shell .field-type-radio-field .jet-form-builder__field-wrap,.qfe-jfb-shell .jet-form-builder-row[class*="radio"] .jet-form-builder__fields-group{gap:12px 18px}}

/* 18. PHASE 2.1 — JETFORMBUILDER VISUAL INTEGRATION + CACHE-SAFE REFINEMENT */
.qfe-jfb-shell{font-family:Arial,Helvetica,sans-serif}
.qfe-jfb-shell .jet-form-builder,
.qfe-jfb-shell .jet-form-builder-form{width:100%;max-width:none!important}
.qfe-jfb-shell .jet-form-builder-row,
.qfe-jfb-shell .jet-form-builder__row{margin:0 0 18px!important;padding:0!important}
.qfe-jfb-shell .jet-form-builder__label,
.qfe-jfb-shell .jet-form-builder__label-text,
.qfe-jfb-shell label{color:var(--navy)!important;font-family:inherit!important}
.qfe-jfb-shell .jet-form-builder__label-text{display:block;font-size:.9rem!important;line-height:1.35!important;font-weight:800!important;margin-bottom:7px!important}
.qfe-jfb-shell input[type="text"],
.qfe-jfb-shell input[type="email"],
.qfe-jfb-shell input[type="tel"],
.qfe-jfb-shell input[type="url"],
.qfe-jfb-shell input[type="number"],
.qfe-jfb-shell input[type="date"],
.qfe-jfb-shell select,
.qfe-jfb-shell textarea,
.qfe-jfb-shell .jet-form-builder__field:not([type="radio"]):not([type="checkbox"]):not([type="file"]){
  width:100%!important;min-height:52px!important;border:1px solid #c9d2dd!important;border-radius:11px!important;
  padding:13px 14px!important;background:#fff!important;color:var(--ink)!important;font:inherit!important;box-shadow:none!important;
}
.qfe-jfb-shell textarea,
.qfe-jfb-shell textarea.jet-form-builder__field{min-height:150px!important;line-height:1.5!important;resize:vertical!important}
.qfe-jfb-shell input:focus,
.qfe-jfb-shell select:focus,
.qfe-jfb-shell textarea:focus{outline:0!important;border-color:var(--navy2)!important;box-shadow:0 0 0 3px rgba(19,47,85,.10)!important}
.qfe-jfb-shell .jet-form-builder__desc,
.qfe-jfb-shell small{color:var(--slate)!important;font-size:.8rem!important;line-height:1.45!important}

/* Upload block — visually matches the approved dashed upload placeholder. */
.qfe-jfb-shell .jet-form-builder-row:has(input[type="file"]),
.qfe-jfb-shell .field-type-media-field,
.qfe-jfb-shell [class*="media-field"]{
  border:2px dashed #aebccc!important;border-radius:14px!important;padding:20px!important;margin:4px 0 22px!important;background:var(--soft)!important;
}
.qfe-jfb-shell input[type="file"]{width:100%!important;border:0!important;background:transparent!important;padding:8px 0!important;box-shadow:none!important;color:var(--slate)!important}
.qfe-jfb-shell input[type="file"]::file-selector-button{
  min-height:42px;margin-right:12px;padding:0 18px;border:1px solid var(--navy)!important;border-radius:10px!important;
  background:var(--navy)!important;color:#fff!important;font:inherit!important;font-weight:800!important;cursor:pointer!important;
}
.qfe-jfb-shell input[type="file"]::file-selector-button:hover{background:var(--navy2)!important;border-color:var(--navy2)!important}

/* Preferred contact method — inline on desktop/tablet, comfortable stack on narrow phones. */
.qfe-jfb-shell .jet-form-builder-row:has(input[type="radio"]) .jet-form-builder__fields-group,
.qfe-jfb-shell .jet-form-builder-row:has(input[type="radio"]) .jet-form-builder__field-wrap,
.qfe-jfb-shell .field-type-radio-field .jet-form-builder__fields-group,
.qfe-jfb-shell .field-type-radio-field>.jet-form-builder__field-wrap{
  display:flex!important;flex-direction:row!important;flex-wrap:wrap!important;align-items:center!important;gap:10px 26px!important;
}
.qfe-jfb-shell .jet-form-builder-row:has(input[type="radio"]) label,
.qfe-jfb-shell .field-type-radio-field label,
.qfe-jfb-shell label:has(input[type="radio"]){
  display:inline-flex!important;flex-direction:row!important;align-items:center!important;gap:8px!important;width:auto!important;margin:0!important;
  color:var(--navy)!important;font-weight:800!important;white-space:nowrap!important;
}
.qfe-jfb-shell input[type="radio"]{appearance:auto!important;width:18px!important;height:18px!important;min-height:0!important;margin:0!important;padding:0!important;accent-color:var(--gold)!important;box-shadow:none!important}

/* Submit CTA — full-width approved gold action treatment. */
.qfe-jfb-shell .jet-form-builder__submit-wrap,
.qfe-jfb-shell .jet-form-builder-row:has(button[type="submit"]),
.qfe-jfb-shell .jet-form-builder-row:has(input[type="submit"]){width:100%!important}
.qfe-jfb-shell .jet-form-builder__action-button,
.qfe-jfb-shell .jet-form-builder__submit,
.qfe-jfb-shell button[type="submit"],
.qfe-jfb-shell input[type="submit"]{
  width:100%!important;max-width:none!important;min-height:52px!important;height:52px!important;padding:0 24px!important;
  border:1px solid var(--gold)!important;border-radius:12px!important;background:var(--gold)!important;color:var(--navy)!important;
  font:inherit!important;font-weight:900!important;line-height:1!important;text-align:center!important;cursor:pointer!important;box-shadow:none!important;
}
.qfe-jfb-shell .jet-form-builder__action-button:hover,
.qfe-jfb-shell .jet-form-builder__submit:hover,
.qfe-jfb-shell button[type="submit"]:hover,
.qfe-jfb-shell input[type="submit"]:hover{background:var(--gold2)!important;border-color:var(--gold2)!important;color:var(--navy)!important;transform:translateY(-1px)}

@media(max-width:520px){
  .qfe-jfb-shell .jet-form-builder-row:has(input[type="radio"]) .jet-form-builder__fields-group,
  .qfe-jfb-shell .jet-form-builder-row:has(input[type="radio"]) .jet-form-builder__field-wrap,
  .qfe-jfb-shell .field-type-radio-field .jet-form-builder__fields-group,
  .qfe-jfb-shell .field-type-radio-field>.jet-form-builder__field-wrap{align-items:flex-start!important;flex-direction:column!important;gap:12px!important}
}


/* 19. PHASE 2.2 — REQUEST SERVICE WIDTH + SIDEBAR BALANCE */
/* Keep the entire desktop request area inside the approved 1200px shell while
   giving the contact panel enough room for the full email address. */
@media(min-width:981px){
  .form-layout{
    grid-template-columns:minmax(0,1fr) 390px!important;
    gap:40px!important;
    width:100%!important;
    max-width:1200px!important;
  }
  .contact-aside{padding:30px!important}
  .contact-aside .aside-card{padding:20px 18px!important}
  .contact-aside .aside-card a[href^="mailto:"]{
    white-space:nowrap!important;
    word-break:normal!important;
    overflow-wrap:normal!important;
    font-size:.88rem!important;
  }
}

/* The customer preference is one clean full-width field per row.  The JFB
   groups remain in the backend, but visually collapse to a single column. */
.qfe-jfb-shell .qfe-form-row{
  display:grid!important;
  grid-template-columns:minmax(0,1fr)!important;
  gap:0!important;
  width:100%!important;
  max-width:none!important;
}
.qfe-jfb-shell .qfe-form-row>.jet-form-builder-row,
.qfe-jfb-shell .jet-form-builder-row,
.qfe-jfb-shell .jet-form-builder__row,
.qfe-jfb-shell .jet-form-builder__field-wrap,
.qfe-jfb-shell .jet-form-builder__field-wrap.checkradio-wrap,
.qfe-jfb-shell .jet-form-builder__field-wrap:not(:has(input[type="radio"])){
  width:100%!important;
  max-width:none!important;
  min-width:0!important;
}
.qfe-jfb-shell input[type="text"],
.qfe-jfb-shell input[type="email"],
.qfe-jfb-shell input[type="tel"],
.qfe-jfb-shell input[type="url"],
.qfe-jfb-shell input[type="number"],
.qfe-jfb-shell input[type="date"],
.qfe-jfb-shell select,
.qfe-jfb-shell textarea,
.qfe-jfb-shell .jet-form-builder__field:not([type="radio"]):not([type="checkbox"]):not([type="file"]){
  display:block!important;
  width:100%!important;
  max-width:none!important;
}

/* Restore the approved site CTA proportions rather than a full-width form bar. */
.qfe-jfb-shell .jet-form-builder__submit-wrap,
.qfe-jfb-shell .jet-form-builder-row:has(button[type="submit"]),
.qfe-jfb-shell .jet-form-builder-row:has(input[type="submit"]){
  width:100%!important;
  display:flex!important;
  justify-content:flex-start!important;
}
.qfe-jfb-shell .jet-form-builder__action-button,
.qfe-jfb-shell .jet-form-builder__submit,
.qfe-jfb-shell button[type="submit"],
.qfe-jfb-shell input[type="submit"]{
  width:250px!important;
  min-width:250px!important;
  max-width:250px!important;
  height:48px!important;
  min-height:48px!important;
  border-radius:999px!important;
  padding:0 22px!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
}

/* Keep a two-column page only when there is genuinely enough room. */
@media(max-width:1100px) and (min-width:981px){
  .form-layout{grid-template-columns:minmax(0,1fr) 360px!important;gap:28px!important}
  .contact-aside{padding:26px!important}
  .contact-aside .aside-card{padding:18px 16px!important}
  .contact-aside .aside-card a[href^="mailto:"]{font-size:.82rem!important}
}
@media(max-width:980px){
  .form-layout{grid-template-columns:1fr!important;gap:30px!important}
  .contact-aside{position:static!important;width:100%!important;max-width:none!important}
  .contact-aside .aside-card a[href^="mailto:"]{white-space:normal!important;word-break:normal!important;overflow-wrap:anywhere!important}
}
@media(max-width:520px){
  .qfe-jfb-shell .jet-form-builder__action-button,
  .qfe-jfb-shell .jet-form-builder__submit,
  .qfe-jfb-shell button[type="submit"],
  .qfe-jfb-shell input[type="submit"]{
    width:100%!important;min-width:0!important;max-width:none!important;
  }
}

/* 20. PHASE 2.3 — RESTORE INLINE CONTACT METHOD OPTIONS
   Phase 2.2 intentionally made normal JetForm field wrappers full width. JetFormBuilder
   also wraps each radio option in the same class, so those nested option wrappers must
   be returned to intrinsic width on desktop/tablet. */
.qfe-jfb-shell .field-type-radio-field .jet-form-builder__fields-group,
.qfe-jfb-shell .jet-form-builder-row:has(input[type="radio"]) .jet-form-builder__fields-group{
  display:flex!important;
  flex-direction:row!important;
  flex-wrap:wrap!important;
  align-items:center!important;
  gap:10px 26px!important;
  width:100%!important;
}
.qfe-jfb-shell .field-type-radio-field .jet-form-builder__fields-group > .jet-form-builder__field-wrap,
.qfe-jfb-shell .jet-form-builder-row:has(input[type="radio"]) .jet-form-builder__fields-group > .jet-form-builder__field-wrap,
.qfe-jfb-shell .field-type-radio-field .jet-form-builder__fields-group > .checkradio-wrap,
.qfe-jfb-shell .jet-form-builder-row:has(input[type="radio"]) .jet-form-builder__fields-group > .checkradio-wrap{
  width:auto!important;
  max-width:none!important;
  min-width:0!important;
  flex:0 0 auto!important;
  display:inline-flex!important;
  margin:0!important;
}
.qfe-jfb-shell .field-type-radio-field .jet-form-builder__fields-group > .jet-form-builder__field-wrap label,
.qfe-jfb-shell .jet-form-builder-row:has(input[type="radio"]) .jet-form-builder__fields-group > .jet-form-builder__field-wrap label{
  width:auto!important;
  display:inline-flex!important;
  align-items:center!important;
  white-space:nowrap!important;
  margin:0!important;
}
@media(max-width:520px){
  .qfe-jfb-shell .field-type-radio-field .jet-form-builder__fields-group,
  .qfe-jfb-shell .jet-form-builder-row:has(input[type="radio"]) .jet-form-builder__fields-group{
    flex-direction:column!important;
    align-items:flex-start!important;
    gap:12px!important;
  }
}

/* 21. PRODUCTION MICRO-FIX — POLICY CONTACT CARD WIDTH
   Keep the three policy-page information cards readable on desktop/tablet
   without changing the approved mobile stack or the 1200px content cap. */
@media(min-width:981px){
  .policy-layout{
    grid-template-columns:320px minmax(0,1fr)!important;
    gap:50px!important;
    width:100%!important;
    max-width:1200px!important;
  }
  .policy-aside{
    width:100%!important;
    min-width:0!important;
    padding:24px 22px!important;
  }
  .policy-aside a[href^="mailto:"]{
    white-space:nowrap!important;
    word-break:normal!important;
    overflow-wrap:normal!important;
    font-size:.88rem!important;
  }
}
@media(max-width:1100px) and (min-width:981px){
  .policy-layout{
    grid-template-columns:300px minmax(0,1fr)!important;
    gap:38px!important;
  }
  .policy-aside{
    padding:22px 18px!important;
  }
  .policy-aside a[href^="mailto:"]{
    font-size:.84rem!important;
  }
}
@media(max-width:980px){
  .policy-aside a[href^="mailto:"]{
    white-space:normal!important;
    word-break:normal!important;
    overflow-wrap:anywhere!important;
  }
}
