:root{
  /* ProFleet Capital brand */
  --pc-blue:#0B2A45;      /* deep blue */
  --pc-steel:#5F6A72;     /* steel gray */
  --pc-orange:#FF6A00;    /* safety orange */

  --pc-bg:#0B1118;
  --pc-surface:#0F1A24;
  --pc-surface-2:#132233;
  --pc-text:#EAF0F6;
  --pc-muted:#B7C3CE;
  --pc-border:rgba(255,255,255,.12);

  --radius:14px;
  --shadow:0 12px 30px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--pc-text);
  background:
    radial-gradient(1200px 700px at 15% -10%, rgba(255,106,0,.18), transparent 55%),
    radial-gradient(900px 600px at 90% 0%, rgba(11,42,69,.65), transparent 55%),
    linear-gradient(180deg, #070b10 0%, var(--pc-bg) 100%);
}

a{color:inherit; text-decoration:none}
a:hover{color:var(--pc-orange)}
.container{width:min(1120px, 92vw); margin:0 auto}

.skip-link{
  position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:16px; top:16px; width:auto; height:auto; padding:10px 12px;
  background:var(--pc-surface); border:1px solid var(--pc-border); border-radius:10px;
  z-index:9999;
}

header{
  position:sticky; top:0; z-index:1000;
  backdrop-filter: blur(10px);
  background: rgba(7,11,16,.68);
  border-bottom:1px solid var(--pc-border);
}
.navbar{
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 0;
  gap:16px;
}
.brand{
  display:flex; align-items:center; gap:12px;
  min-width: 240px;
}
.brand img{height:78px; width:auto; display:block}
.brand .name{display:flex; flex-direction:row; align-items:baseline; gap:12px; line-height:1.05; flex-wrap:wrap}
.brand .name strong{letter-spacing:1.4px; font-size:20px; white-space:nowrap}
.brand .name span{color:var(--pc-muted); font-size:13px; font-weight:800}

.nav{
  display:flex; align-items:center; gap:18px;
  flex-wrap:wrap;
}
.nav a{
  color:var(--pc-muted);
  font-weight:600;
  font-size:14px;
  padding:10px 10px;
  border-radius:10px;
}
.nav a.active, .nav a:focus, .nav a:hover{
  color:var(--pc-text);
  background: rgba(255,255,255,.06);
  outline:none;
}

.cta{
  display:flex; align-items:center; gap:10px;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:11px 14px;
  border-radius:12px;
  border:1px solid var(--pc-border);
  background: rgba(255,255,255,.04);
  color:var(--pc-text);
  font-weight:800;
  font-size:14px;
  letter-spacing:.2px;
  cursor:pointer;
  transition: transform .08s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{background: rgba(255,255,255,.07)}
.btn:active{transform: translateY(1px)}
.btn.primary{background:#FF6A00;color:#0B2A45;border-color:#FF6A00}
.btn.primary:hover{background: linear-gradient(135deg, rgba(255,106,0,1), rgba(255,140,64,.9))}
.badge{
  display:inline-flex; align-items:center;
  gap:8px;
  padding:8px 10px;
  border:1px solid var(--pc-border);
  background: rgba(255,255,255,.04);
  border-radius:999px;
  color:var(--pc-muted);
  font-weight:700;
  font-size:12px;
}

.hero{
  padding:56px 0 26px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:26px;
  align-items:stretch;
}
@media (max-width: 920px){
  .hero-grid{grid-template-columns:1fr}
  .brand{min-width:auto}
}
.h1{
  font-size: clamp(34px, 4vw, 52px);
  line-height:1.05;
  margin:14px 0 10px;
  letter-spacing:-.6px;
}
.lead{
  color:var(--pc-muted);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height:1.55;
  margin:0 0 18px;
  max-width: 62ch;
}

.panel{
  background: linear-gradient(180deg, rgba(19,34,51,.82), rgba(15,26,36,.78));
  border:1px solid var(--pc-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
}
.kpis{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.kpi{
  border:1px solid var(--pc-border);
  background: rgba(255,255,255,.03);
  border-radius: 12px;
  padding:14px;
}
.kpi strong{display:block; font-size:16px}
.kpi span{color:var(--pc-muted); font-size:12px}

.section{
  padding:28px 0;
}
.section h2{
  margin:0 0 10px;
  font-size:22px;
  letter-spacing:-.2px;
}
.section p{margin:0; color:var(--pc-muted); line-height:1.6}

.cards{
  margin-top:16px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
@media (max-width: 920px){
  .cards{grid-template-columns:1fr}
}
.card{
  border:1px solid var(--pc-border);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding:16px;
}
.card .icon{
  width:40px; height:40px;
  border-radius:12px;
  display:grid; place-items:center;
  background: rgba(255,106,0,.15);
  border: 1px solid rgba(255,106,0,.25);
  margin-bottom:10px;
}
.card h3{margin:0 0 6px; font-size:16px}
.card p{margin:0; color:var(--pc-muted); font-size:14px}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  margin-top:16px;
}
@media (max-width: 920px){ .split{grid-template-columns:1fr} }

.list{
  margin:10px 0 0;
  padding-left: 18px;
  color: var(--pc-muted);
  line-height:1.75;
  font-size:14px;
}
hr.sep{
  border:none;
  border-top:1px solid var(--pc-border);
  margin: 22px 0;
}

.form{
  display:grid;
  gap:10px;
  margin-top: 12px;
}
.field{
  display:grid;
  gap:6px;
}
label{font-size:12px; color:var(--pc-muted); font-weight:800; letter-spacing:.3px}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 12px;
  border: 1px solid var(--pc-border);
  background: rgba(0,0,0,.22);
  color: var(--pc-text);
  outline:none;
}
input:focus, textarea:focus{
  border-color: rgba(255,106,0,.55);
  box-shadow: 0 0 0 3px rgba(255,106,0,.18);
}
textarea{min-height:120px; resize:vertical}

.footer{
  padding:28px 0 40px;
  color: var(--pc-muted);
  border-top: 1px solid var(--pc-border);
  margin-top: 28px;
}
.footer-grid{
  display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap;
}
.small{font-size:12px}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 10px;
  border:1px solid var(--pc-border);
  border-radius:999px;
  background: rgba(255,255,255,.03);
  color: var(--pc-muted);
  font-size:12px;
  font-weight:800;
}


.table-wrap{overflow:auto;}

/* Header layout: left-heavy brand */
.brand{flex: 0 0 60%; max-width:60%;}
.nav{flex: 0 0 25%; justify-content:flex-end;}
.cta{flex: 0 0 15%; justify-content:flex-end;}
@media (max-width: 920px){
  .brand,.nav,.cta{flex: 1 1 auto; max-width:none;}
  .cta{width:100%; justify-content:flex-start;}
}

/* Hero lockup (traditional) */
.hero-lockup{
  display:flex; align-items:center; gap:14px;
  margin: 0 0 14px;
}
.hero-lockup img{
  height:72px; width:auto; display:block;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.35));
}
.hero-lockup .lockup-text{
  display:flex; flex-direction:column; line-height:1.05;
}
.hero-lockup .lockup-text strong{
  font-size:16px; letter-spacing:1.6px;
}
.hero-lockup .lockup-text span{
  color:var(--pc-muted); font-size:13px; font-weight:700;
}

/* Section divider with monogram */
.divider{
  display:flex; align-items:center; gap:14px;
  margin: 22px 0;
}
.divider::before, .divider::after{
  content:"";
  height:1px;
  flex:1;
  background: var(--pc-border);
}
.divider img{
  width:28px; height:28px;
  opacity:.95;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.25));
}

/* Footer seal */
.footer-seal{
  display:flex; justify-content:center; margin-bottom:12px;
}
.footer-seal img{
  width:44px; height:44px;
  opacity:.95;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,.28));
}

.brand .name span::before{content:"•"; margin-right:10px; color:rgba(255,255,255,.22)}


.acknowledgements .field input[type="checkbox"]{
  order:2;
  margin-top:3px;
}
.acknowledgements .field span{
  order:1;
  flex:1;
}


/* Acknowledgements: checkbox left, text immediately right */
.acknowledgements .field label{
  display:flex;
  align-items:flex-start;
  gap:10px;
}
.acknowledgements .field input[type="checkbox"]{
  margin-top:3px;
}
.acknowledgements .field span{
  line-height:1.5;
}


/* Header background */
.header{
  background:#FF6A00;
}
.header .nav a,
.header .brand .name strong,
.header .brand .name span{
  color:#0B2A45;
}


/* FORCE header to safety orange */
header.header,
.header,
.site-header{
  background-color:#FF6A00 !important;
}

/* Ensure readable contrast */
.header a,
.header .nav a,
.header .brand .name strong,
.header .brand .name span{
  color:#0B2A45 !important;
}

/* Absolute fallback: make navbar orange */
.container.navbar{
  background:#FF6A00 !important;
}


/* Make logo dominant in header */
.brand{
  flex: 0 0 50% !important;
  max-width:50% !important;
}
.brand img{
  height:96px !important;
  max-height:96px;
}
@media (max-width: 900px){
  .brand{
    flex: 1 1 auto !important;
    max-width:none !important;
  }
  .brand img{
    height:72px !important;
  }
}


/* Lock header height */
header.header{
  height:140px !important;
  min-height:140px !important;
}
.container.navbar{
  height:140px !important;
  min-height:140px !important;
  align-items:center;
}
@media (max-width: 900px){
  header.header,
  .container.navbar{
    height:110px !important;
    min-height:110px !important;
  }
}


/* Nav: keep in one line on all screen sizes (no stacking) */
.nav{
  flex-wrap:nowrap !important;
  white-space:nowrap;
  overflow-x:auto;
  overflow-y:hidden;
  -webkit-overflow-scrolling:touch;
  gap:14px;
}
.nav a{white-space:nowrap;}
@media (max-width: 900px){
  .nav{gap:10px;}
  .nav a{font-size:13px;}
}
@media (max-width: 520px){
  .nav{gap:8px;}
  .nav a{font-size:12px;}
}
/* Hide nav scrollbar (still scrollable) */
.nav::-webkit-scrollbar{height:0px;}
.nav{scrollbar-width:none;}
/* Rebalance header now that CTA button is removed */
.nav{flex: 1 1 auto;}
.cta{flex: 0 0 auto;}


/* Checklist: ensure left alignment */
.checklist-list{ text-align:left; }
.checklist-list li{ text-align:left; }


/* Header: hide any leftover brand name text (logo already contains wordmark) */
.brand .name,
.brand .brand-text{display:none !important;}
