/* Go Lead Guys — goleadguys.com */
:root {
  --navy: #0e1a2b;
  --navy-2: #16263c;
  --blue: #1d4ed8;
  --orange: #ff7a1a;
  --orange-dark: #e5690f;
  --green: #16a34a;
  --ink: #17212e;
  --muted: #5b6b7d;
  --line: #e4e9ef;
  --bg-soft: #f4f7fa;
  --radius: 14px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background: #fff;
}
img { max-width: 100%; }
a { color: var(--blue); }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

/* Header */
header {
  background: var(--navy);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 3px solid var(--orange);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  flex-wrap: wrap;
}
.brand {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}
.brand .slash { color: var(--orange); font-weight: 900; }
.nav-links { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.nav-links a {
  color: #cfd9e4;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-phone {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Buttons */
.btn {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 10px;
  border: 0;
  font-size: 1rem;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn.secondary { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.btn.secondary:hover { background: rgba(255,255,255,0.1); }
.btn.blue { background: var(--blue); }
.btn.blue:hover { background: #1a44be; }
.btn:disabled { opacity: 0.6; cursor: wait; transform: none; }

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 60%, #1b3a5c 100%);
  color: #fff;
  padding: 84px 0 92px;
  text-align: center;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  font-weight: 800;
  max-width: 820px;
  margin: 0 auto 18px;
}
.hero h1 em { color: var(--orange); font-style: normal; }
.hero p.sub {
  font-size: 1.2rem;
  color: #c6d3e0;
  max-width: 640px;
  margin: 0 auto 34px;
}
.hero .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Sections */
section { padding: 68px 0; }
section.soft { background: var(--bg-soft); }
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 10px;
}
h2.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-lead { color: var(--muted); font-size: 1.1rem; max-width: 680px; }
.center { text-align: center; }
.center .section-lead { margin: 0 auto; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; margin-top: 40px; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: 0 1px 3px rgba(14, 26, 43, 0.06);
}
.card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.98rem; }
.card .num {
  display: inline-flex;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  background: var(--navy);
  color: var(--orange);
  border-radius: 10px;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.card .btn { margin-top: 18px; }

/* Guarantee */
.guarantee {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 44px 38px;
  border: 2px solid var(--green);
}
.guarantee .badge {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.guarantee h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; margin-bottom: 14px; }
.guarantee p { color: #d3dee9; font-size: 1.08rem; max-width: 720px; }
.guarantee p strong { color: #fff; }
.guarantee .cash { color: #4ade80; font-weight: 800; }

/* Plans */
.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 18px; margin-top: 40px; }
.plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(14, 26, 43, 0.06);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.plan.popular { border: 2px solid var(--orange); position: relative; }
.plan.popular::before {
  content: "Most popular";
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.plan .price { font-size: 2rem; font-weight: 800; color: var(--navy); }
.plan .price span { font-size: 0.95rem; font-weight: 600; color: var(--muted); }
.plan .links { color: var(--muted); font-weight: 600; font-size: 0.95rem; }
.plan .btn { margin-top: auto; padding: 11px 10px; font-size: 0.95rem; }

/* Forms */
.form-shell {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 34px;
  box-shadow: 0 2px 10px rgba(14, 26, 43, 0.07);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
label { font-weight: 700; font-size: 0.9rem; display: block; margin-bottom: 6px; }
label .req { color: var(--orange); }
input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #c9d3de;
  border-radius: 9px;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  color: var(--ink);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.15);
}
textarea { resize: vertical; min-height: 120px; }
.form-shell .btn { width: 100%; margin-top: 22px; }
.form-note { text-align: center; color: var(--muted); font-size: 0.88rem; margin-top: 14px; }
.form-msg { display: none; margin-top: 18px; padding: 14px 16px; border-radius: 9px; font-weight: 600; }
.form-msg.ok { display: block; background: #e8f7ee; color: #14602f; border: 1px solid #b7e4c7; }
.form-msg.err { display: block; background: #fdecec; color: #8f1d1d; border: 1px solid #f3c1c1; }
.hp { position: absolute; left: -9999px; top: -9999px; height: 0; width: 0; overflow: hidden; }

/* Page hero (interior pages) */
.page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  text-align: center;
  padding: 56px 0;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; margin-bottom: 10px; }
.page-hero p { color: #c6d3e0; font-size: 1.1rem; max-width: 620px; margin: 0 auto; }

/* Steps / checklist */
.check-list { list-style: none; margin-top: 22px; display: grid; gap: 12px; }
.check-list li { padding-left: 34px; position: relative; font-size: 1.05rem; }
.check-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  width: 24px; height: 24px;
  background: var(--green);
  color: #fff;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 800;
}

/* Footer */
footer { background: var(--navy); color: #9fb0c2; padding: 44px 0; font-size: 0.92rem; }
footer .foot { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; align-items: center; }
footer a { color: #cfd9e4; text-decoration: none; }
footer a:hover { color: #fff; }
footer .foot-links { display: flex; gap: 18px; flex-wrap: wrap; }

@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
  .nav { justify-content: center; }
  .hero { padding: 60px 0; }
}
