/* =========================================================
   5 Star Helpers — FINAL main.css (LOCKED) 2/1/26
   ========================================================= *

/* Reset */
* { box-sizing: border-box; }
html, body { height: 100%; }
img { display:block; max-width:100%; }

/* Tokens */
:root{
  --blueTop:#eef6ff;
  --blueMid:#dbeafe;
  --blueBottom:#ffffff;

  --gold:#f5c84c;
  --goldHover:#e6b93c;

  --ink:#0f172a;
  --text:#334155;
  --muted: rgba(15,23,42,.65);

  --panel: rgba(255,255,255,.88);
  --border: rgba(15,23,42,.12);
  --shadow: 0 20px 48px rgba(15,23,42,.14);
}

/* Page */
body.fs5{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  min-height:100vh;
  background: linear-gradient(
    180deg,
    var(--blueTop) 0%,
    var(--blueMid) 65%,
    var(--blueBottom) 100%
  );
  background-attachment: fixed;
  }

/* Layout */
.container{
  max-width:1100px;
  margin:0 auto;
  padding:0 20px;
}

/* Header */
.site-header{
  padding:18px 0 4px;
}
.header-inner{
  display:flex;
  justify-content:center;
}
.brand-logo-img{
  width:min(360px,82vw);
  margin-bottom: 6px;
}

/* Hero */
.hero{
  padding: 0 0 52px;
  background: transparent;
}

.hero-inner{
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.hero h1{
  margin: 0 auto 16px;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 18ch;
}

.hero-tagline{
  margin: 0 0 14px;
  font-size: 1.15rem;
  color: rgba(15,23,42,0.85);
}

.sub{
  margin: 0 0 10px;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--muted);
}

.hero-support{
  margin: 0 0 22px;
  font-size: 1.05rem;
  color: rgba(15,23,42,.6);
}

.buttons{
  margin-top: 18px;
  margin-bottom: 26px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

/* =========================
   BUTTONS — FINAL LOCK
   ========================= */

.fs5 a.btn,
.fs5 button.btn{
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease, border-color .15s ease;
  box-shadow: 0 12px 28px rgba(15,23,42,.14);
}

/* Primary default */
.fs5 a.btn.primary,
.fs5 button.btn.primary{
  background: var(--gold);
  color: #111827;
}

/* Primary hover */
.fs5 a.btn.primary:hover,
.fs5 button.btn.primary:hover{
  background: var(--goldHover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(15,23,42,.18);
}

/* Outline default */
.fs5 a.btn.outline,
.fs5 button.btn.outline{
  background: #fff;
  border-color: var(--border);
  color: #1e293b;
}

/* Outline hover */
.fs5 a.btn.outline:hover,
.fs5 button.btn.outline:hover{
  background: rgba(255,255,255,.95);
  border-color: rgba(30,79,216,.55);
  color: #1e4fd8;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(15,23,42,.14);
}


/* Cards */
.features{
  padding: 12px 0 54px;
  margin-top: -24px; /* pulls cards into hero to hide the seam */
}

.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.card{
  background:white;
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px;
  transition:transform .18s, box-shadow .18s;
}
.card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow);
}

/* Footer */
.site-footer{
  border-top:1px solid var(--border);
  padding:22px 0;
}

/* ===============================
   START PAGE FORM (FINAL)
   =============================== */

.start-page{
  padding:40px 0 64px;
}
.start-inner{
  max-width:820px;
}
/* Allow 2-column layout to actually have room */
.start-inner.start-split{
  max-width: 1100px;   /* match container width */
  width: 100%;
}

.lead-form{
  margin-top:18px;
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:22px;
  padding:24px;
  box-shadow:var(--shadow);
}
.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.field.full{ grid-column:1 / -1; }

.field label{
  font-weight:800;
  font-size:13px;
  margin-bottom:6px;
  display:block;
}

.lead-form input,
.lead-form textarea{
  width:100%;
  padding:14px 16px;
  font-size:16px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,.18);
}
.lead-form input{ height:54px; }
.lead-form textarea{
  min-height:110px;
  padding-bottom:18px;
  resize: vertical;
}


.lead-form input:focus,
.lead-form textarea:focus{
  outline:none;
  border-color:var(--gold);
  box-shadow:0 0 0 4px rgba(245,200,76,.25);
}


.btn-full{
  width:100%;
  margin-top:10px;
}

.start-urgency{
  margin:14px 0 6px;
  text-align:center;
  font-weight:900;
}
/* Center pill micros inside the Start form only */
.start-right .lead-form .micro{
  margin-left: auto;
  margin-right: auto;
}

/* Pill micro (used intentionally) */
.micro{
  margin-top: 12px;
  margin-bottom: 10px;
  display: inline-block;
  max-width: 60ch;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(15,23,42,0.12);
  font-size: 1rem;
  line-height: 1.45;
  color: rgba(15,23,42,0.82);
  text-align: left;
}

/* Plain micro (no pill) */
.micro-plain{
  margin-top: 12px;
  margin-bottom: 10px;
  display: block;
  max-width: 60ch;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  font-size: 13px;          /* was ~13px */
  line-height: 1.45;
  font-weight: 500;         /* subtle confidence */
  color: rgba(15,23,42,.65);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
/* Trust & Policies: center the compliance pill */
.trust-page .micro{
  display: block;
  width: fit-content;
  margin: 14px auto 10px;
}

/* Start-only bigger helper text */
.start-page .micro-plain{
  font-size: 16px;
}

/* Start page: 2-column layout like the reference */
.start-inner.start-split{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(18px, 3vw, 42px);
  align-items: start;
  padding-top: clamp(18px, 3vw, 34px);
  padding-bottom: clamp(18px, 3vw, 34px);
}

.start-left h1{
  margin-top: 0;
  line-height: 1.05;
  font-size: clamp(40px, 5.2vw, 72px);
}

.start-left .sub{
  max-width: 34ch; /* makes it feel “big” without being a wall of text */
  font-size: clamp(18px, 1.4vw, 22px);
}

/* Start-left subline pill */
.start-left .sub.sub-pill{
  display: inline-block;
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(15,23,42,0.12);
  color: rgba(15,23,42,0.82);
}

.start-left .micro{
  max-width: 52ch;
}

/* Make the form card feel intentional */
.start-right .lead-form{
  max-width: 560px;
  margin-left: auto;
}


/* Mobile: stack cleanly */
@media (max-width: 900px){
  .start-inner.start-split{
    grid-template-columns: 1fr;
  }
  .start-right .lead-form{
    max-width: 100%;
    margin-left: 0;
  }
}

/* Mobile */
@media (max-width:900px){
  .cards{ grid-template-columns:1fr; }
  .features{ padding-top:12px; }
  .micro{ margin-bottom:8px; }   /* mobile-only */

}
@media (max-width:740px){
  .form-grid{ grid-template-columns:1fr; }
}

.req{
  color:#dc2626;
  font-weight:900;
  margin-left:2px;
}

/* =========================
    HOVER RESTORE
    FINAL INTERACTION LOCK
   (cards hover)
========================= */

/* Cards hover */
.fs5 .card{
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease !important;
}

.fs5 .card:hover{
  background: rgba(243,248,255,.98) !important;
  border-color: rgba(30,79,216,.28) !important;
  transform: translateY(-6px) !important;
  box-shadow: 0 18px 40px rgba(15,23,42,.14) !important;
}

/* Minimal hover polish (requested) */

.fs5 .card:hover h3 { color:#1e4fd8 !important; }



.footer-links{
  margin-top:10px;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:center;
}

.footer-link{
  color: rgba(15,23,42,.8);
  text-decoration:none;
  font-weight:800;
  font-size:14px;
}

.footer-link:hover{
  text-decoration:underline;
}

.footer-contact{
  margin-top:10px;
  text-align:center;
  font-size:13px;
  color: rgba(15,23,42,.6);
}

.footer-email{
  font-weight:700;
  color: rgba(15,23,42,.85);
}


/* FORCE start page to be 2 columns on desktop */
.start-page .start-inner.start-split{
  max-width: 1100px !important;
  width: 100% !important;
  display: grid !important;
  grid-template-columns: 1.05fr 0.95fr !important;
  gap: clamp(18px, 3vw, 42px) !important;
  align-items: start !important;
}

/* Only stack on smaller screens */
@media (max-width: 900px){
  .start-page .start-inner.start-split{
    grid-template-columns: 1fr !important;
  }
}

/* HOME HERO: center the reassurance pill (do NOT affect form pills) */
body.fs5 main.hero p.micro{
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 22px;   /* 👈 push pill down */
  margin-bottom: 22px;
}

