:root{
  /* Light, welcoming theme */
  --text:#0b1220;
  --muted:rgba(11,18,32,.65);
  --panel:rgba(255,255,255,.72);
  --card:rgba(255,255,255,.82);
  --line:rgba(11,18,32,.10);

  --accent:#1873ff;
  --accent2:#10b981;

  --shadow:0 18px 55px rgba(10,22,45,.14);
  --radius:16px;
  --max:1120px;

  /* Global background image (pick one) */
  --site-bg: url("./images/bg-1.jpg");
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
  color:var(--text);
  background:#eef3fb;
  position:relative;
  overflow-x:hidden;
}

/* FULL-SITE BACKGROUND IMAGE */

body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-2;

  /* darker overlay = stronger background image */
  background-image:
    linear-gradient(180deg,
      rgba(255,255,255,.42) 0%,
      rgba(255,255,255,.62) 55%,
      rgba(245,248,255,.78) 100%
    ),
    var(--site-bg);

  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  transform:scale(1.02);
  filter:saturate(1.10) contrast(1.08);
}

/* Soft highlight so it feels airy, not flat */
body::after{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  background:
    radial-gradient(900px 520px at 12% 6%, rgba(24,115,255,.14), transparent 60%),
    radial-gradient(820px 520px at 88% 10%, rgba(16,185,129,.10), transparent 55%);
  pointer-events:none;
}

.wrap{width:min(var(--max),calc(100% - 40px));margin:0 auto}

.link{
  color:var(--accent);
  text-decoration:underline;
  text-decoration-color:rgba(24,115,255,.35)
}
.link:hover{ text-decoration-color:rgba(24,115,255,.75) }

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.72);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
}
.header--compact .nav,.header--compact .hamburger{display:none}
.header__row{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:14px 0}

.brand{display:flex;gap:12px;align-items:center;text-decoration:none;color:var(--text)}
.brand__mark{
  width:38px;height:38px;border-radius:12px;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  box-shadow:0 10px 30px rgba(24,115,255,.18)
}
.brand__name{font-weight:900;letter-spacing:.2px;display:block;line-height:1.05}
.brand__sub{display:block;color:var(--muted);font-size:12.5px;margin-top:2px}

.nav{display:flex;gap:16px}
.nav a{color:rgba(11,18,32,.68);text-decoration:none;font-weight:700;font-size:14px}
.nav a:hover{color:var(--text)}

.header__cta{display:flex;gap:10px;align-items:center}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:10px 14px;border-radius:12px;
  border:1px solid rgba(24,115,255,.28);
  background:rgba(24,115,255,.10);
  color:var(--text);
  text-decoration:none;
  font-weight:850;
  letter-spacing:.1px;
  cursor:pointer;
}
.btn:hover{border-color:rgba(24,115,255,.42);background:rgba(24,115,255,.14)}
.btn--ghost{border:1px solid var(--line);background:rgba(255,255,255,.55);color:rgba(11,18,32,.72)}
.btn--ghost:hover{background:rgba(255,255,255,.70)}
.btn--lg{padding:12px 16px;border-radius:14px}

.hamburger{
  display:none;width:42px;height:42px;border-radius:12px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.55);
  cursor:pointer
}
.hamburger span{display:block;height:2px;width:18px;background:var(--text);margin:4px auto;opacity:.9}

.mobileNav{border-top:1px solid var(--line);padding:12px 0 18px}
.mobileNav a{display:block;padding:10px 0;color:rgba(11,18,32,.72);text-decoration:none;font-weight:800}
.mobileNav__cta{display:flex;gap:10px;padding-top:8px}

/* Hero */
.hero{position:relative;padding:70px 0 36px;overflow:hidden}
.hero__bg{display:none} /* IMPORTANT: we’re using the full-site background instead */
.hero__content{position:relative}
.hero h1{margin:12px 0 10px;font-size:clamp(34px,4vw,52px);line-height:1.06;letter-spacing:-.4px}
.lead{margin:0 0 18px;color:var(--muted);font-size:16.5px;line-height:1.55;max-width:720px}

.pillRow{display:flex;flex-wrap:wrap;gap:10px}
.pill{
  font-size:12.5px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.62);
  padding:8px 10px;
  border-radius:999px;
  color:rgba(11,18,32,.78);
}
.hero__cta{display:flex;gap:12px;flex-wrap:wrap;margin-top:10px}

.trustRow{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;margin-top:18px;max-width:720px}
.trust{
  border:1px solid var(--line);
  background:rgba(255,255,255,.70);
  border-radius:14px;
  padding:12px;
  box-shadow:0 10px 30px rgba(10,22,45,.08);
}
.trust__num{font-weight:950;font-size:18px;display:block}
.trust__label{color:var(--muted);font-size:12.5px}

/* Sections */
.section{padding:52px 0}
.section--alt{
  background:rgba(255,255,255,.35);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(10px);
}

.sectionHead h2{margin:0 0 8px;font-size:28px}
.sectionHead p{margin:0 0 18px;color:var(--muted)}

.steps,.grid3{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
.steps{grid-template-columns:repeat(4,minmax(0,1fr))}

.card{
  border:1px solid var(--line);
  background:var(--card);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:var(--shadow);
  backdrop-filter:blur(10px);
}
.card h3{margin:8px 0 8px}
.card p{margin:0;color:var(--muted);line-height:1.5}

.icon{
  width:34px;height:34px;border-radius:12px;
  display:grid;place-items:center;
  border:1px solid rgba(24,115,255,.25);
  background:rgba(24,115,255,.10);
  font-weight:900;
  color:rgba(11,18,32,.85);
}

/* Trades cards with images */
.card--image{padding:14px}
.cardImg{
  height:160px;
  border-radius:14px;
  border:1px solid var(--line);
  background-size:cover;
  background-position:center;
  margin-bottom:12px;
  box-shadow:0 10px 30px rgba(10,22,45,.10);
}

/* Use YOUR local images (these fix the blank boxes) */
.cardImg--paint{background-image:url("./images/bg-1.jpg")}
.cardImg--drywall{background-image:url("./images/bg-2.jpg")}
.cardImg--combo{background-image:url("./images/bg-3.jpg")}

.ctaStrip{
  margin-top:18px;
  border:1px solid rgba(16,185,129,.22);
  background:rgba(255,255,255,.70);
  border-radius:var(--radius);
  padding:16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  box-shadow:0 12px 34px rgba(10,22,45,.10);
  backdrop-filter:blur(10px);
}
.ctaStrip h3{margin:0 0 6px}
.ctaStrip p{margin:0;color:var(--muted)}
.ctaStrip__actions{display:flex;gap:10px;flex-wrap:wrap}

/* FAQ */
.faq details{
  border:1px solid var(--line);
  background:rgba(255,255,255,.70);
  border-radius:14px;
  padding:12px 14px;
  margin-bottom:10px;
  box-shadow:0 10px 26px rgba(10,22,45,.08);
  backdrop-filter:blur(10px);
}
.faq summary{cursor:pointer;font-weight:900}
.faq p{margin:10px 0 0;color:var(--muted);line-height:1.55}

/* Footer */
.footer{border-top:1px solid var(--line);padding:26px 0;background:rgba(255,255,255,.40);backdrop-filter:blur(10px)}
.footer__grid{display:grid;grid-template-columns:1.2fr .8fr 1fr;gap:18px;align-items:start}
.footer__brand{font-weight:950}
.footer__links a{display:block;color:rgba(11,18,32,.70);text-decoration:none;padding:6px 0;font-weight:800}
.footer__links a:hover{color:var(--text)}
.footer__legal{font-size:12.5px;color:rgba(11,18,32,.62)}

/* Pages + forms */
.page{padding:26px 0 60px}
.pageHead{margin:10px 0 18px}

.formCard{
  border:1px solid var(--line);
  background:rgba(255,255,255,.80);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
  backdrop-filter:blur(10px);
}
.formGrid{margin-top:14px;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
.formGrid label{display:flex;flex-direction:column;gap:6px;color:rgba(11,18,32,.68);font-weight:850;font-size:13.5px}
.formGrid input,.formGrid select,.formGrid textarea{
  border:1px solid var(--line);
  background:rgba(255,255,255,.92);
  color:var(--text);
  border-radius:12px;
  padding:10px 10px;
  font-size:14.5px;
  outline:none
}
.formGrid input:focus,.formGrid select:focus,.formGrid textarea:focus{
  border-color:rgba(24,115,255,.55);
  box-shadow:0 0 0 3px rgba(24,115,255,.14)
}
.full{grid-column:1 / -1}

.checkbox{
  flex-direction:row !important;
  align-items:flex-start;
  gap:10px !important;
  padding:10px 12px;
  border:1px dashed rgba(24,115,255,.32);
  border-radius:14px;
  background:rgba(24,115,255,.06)
}
.checkbox input{margin-top:3px}

.notice{
  margin-top:14px;
  border:1px solid rgba(245,158,11,.22);
  background:rgba(245,158,11,.08);
  border-radius:14px;
  padding:12px;
  color:rgba(11,18,32,.88)
}
.formActions{display:flex;gap:10px;margin-top:14px;flex-wrap:wrap}

.hidden{display:none}
.muted{color:var(--muted)}

/* Responsive */
@media (max-width:960px){
  .steps{grid-template-columns:repeat(2,minmax(0,1fr))}
  .grid3{grid-template-columns:1fr}
  .trustRow{grid-template-columns:1fr}
  .footer__grid{grid-template-columns:1fr}
  .nav{display:none}
  .hamburger{display:inline-block}
  .formGrid{grid-template-columns:1fr}
}
/* ===========================
   Layout v2 (mobile cleanup)
   =========================== */

/* Make sections more solid so the background doesn't wash everything out */
.section{
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-top: 1px solid rgba(15,23,42,0.06);
  border-bottom: 1px solid rgba(15,23,42,0.06);
}

.section--alt{
  background: rgba(248,250,252,0.95);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Header a bit more solid */
.header{
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Cards slightly stronger */
.card{
  background: rgba(255,255,255,0.92);
}

/* Mobile fixes */
@media (max-width: 960px){

  /* Biggest problem: hide header CTA buttons on mobile (use hamburger menu instead) */
  .header__cta{ display:none !important; }

  /* Make brand tighter */
  .brand__sub{ display:none; }

  /* Hero buttons should stack cleanly */
  .hero__cta{
    flex-direction: column;
    align-items: stretch;
  }
  .hero__cta .btn{
    width: 100%;
    justify-content: center;
  }

  /* Trust row: stack */
  .trustRow{
    grid-template-columns: 1fr;
  }

  /* How-it-works steps: make 1-column + nicer row layout */
  .steps{
    grid-template-columns: 1fr;
  }
  .steps .card{
    display: flex;
    gap: 12px;
    align-items: flex-start;
  }
  .steps .icon{
    margin: 0;
    flex: 0 0 auto;
  }
  .steps .card h3{
    margin-top: 2px;
  }
  .steps .card p{
    margin: 6px 0 0;
  }

  /* CTA strip: stack + full width buttons */
  .ctaStrip{
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .ctaStrip__actions{
    width: 100%;
    flex-direction: column;
  }
  .ctaStrip__actions .btn{
    width: 100%;
    justify-content: center;
  }

  /* Footer: stack sections + 2-column links */
  .footer__grid{
    grid-template-columns: 1fr;
  }
  .footer__links{
    columns: 2;
    column-gap: 16px;
  }
  .footer__links a{
    display: inline-block;
    margin: 6px 0;
    break-inside: avoid;
  }
}

@media (max-width: 420px){
  .footer__links{ columns: 1; }
}

