/* CounselWolf — counselwolf.com
   Clean, professional, no-BS small business aesthetic
   Zero external CSS dependencies (Google Fonts only) */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #0f0f0f;
  --dark:    #1a1a1a;
  --mid:     #2d2d2d;
  --border:  #e2e2e2;
  --bg-alt:  #f7f7f5;
  --white:   #ffffff;
  --accent:  #c8392b;       /* CounselWolf red */
  --accent2: #a52d21;
  --text:    #1a1a1a;
  --muted:   #666666;
  --radius:  8px;
  --max:     1100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 17px;
  line-height: 1.65;
}

/* UTILS */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section-alt { background: var(--bg-alt); }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--black);
  border-bottom: 1px solid #222;
  padding: 14px 0;
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  color: var(--white);
  font-weight: 800; font-size: 20px;
  letter-spacing: -0.5px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background 0.15s;
  cursor: pointer;
}
.btn:hover { background: var(--accent2); }
.btn-sm  { padding: 9px 18px; font-size: 14px; }
.btn-lg  { padding: 16px 32px; font-size: 18px; }
.btn-order { display: block; text-align: center; margin-top: 28px; }

/* HERO */
.hero {
  background: var(--black);
  color: var(--white);
  padding: 100px 0 90px;
  text-align: center;
}
.eyebrow {
  font-size: 13px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800; line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
  max-width: 820px; margin-left: auto; margin-right: auto;
}
.hero-sub {
  font-size: 19px; color: #ccc;
  max-width: 600px; margin: 0 auto 34px;
}
.trust-line {
  margin-top: 16px;
  font-size: 14px; color: #888;
}

/* SECTIONS */
section { padding: 80px 0; }
h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800; letter-spacing: -0.8px;
  margin-bottom: 16px;
}
.section-intro {
  font-size: 18px; color: var(--muted);
  margin-bottom: 40px; max-width: 640px;
}

/* PAIN */
.pain-list {
  list-style: none;
  display: grid;
  gap: 14px;
  max-width: 680px;
}
.pain-list li {
  font-size: 17px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.pain-close {
  margin-top: 32px;
  font-size: 18px; font-weight: 600;
  color: var(--muted);
  font-style: italic;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.card-wide { grid-column: 1 / -1; }
.card-icon { font-size: 28px; display: block; margin-bottom: 12px; }
.card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.card p { font-size: 15px; color: var(--muted); }

/* WHO IT'S FOR */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 700px) { .two-col { grid-template-columns: 1fr; } }
.two-col h3 { font-size: 17px; font-weight: 700; margin-bottom: 14px; }
.two-col ul { list-style: none; display: grid; gap: 10px; }
.two-col li { font-size: 15px; }

/* CREDIBILITY */
.cred { background: var(--dark); color: var(--white); }
.cred h2 { color: var(--white); }
.cred-text p { color: #ccc; margin-bottom: 16px; max-width: 680px; }
.cred-text strong { color: var(--white); }

/* ORDER BOX */
.offer-box {
  max-width: 560px; margin: 0 auto;
  border: 2px solid var(--accent);
  border-radius: 12px;
  padding: 44px 40px;
  text-align: center;
}
.offer-price {
  font-size: 52px; font-weight: 800;
  color: var(--accent); line-height: 1;
  margin-bottom: 28px;
}
.offer-price span {
  font-size: 18px; font-weight: 400;
  color: var(--muted); display: block;
  margin-top: 4px;
}
.offer-list {
  list-style: none; text-align: left;
  display: grid; gap: 12px;
  margin-bottom: 4px;
}
.offer-list li { font-size: 16px; }
.secure-note {
  margin-top: 14px;
  font-size: 13px; color: var(--muted);
}

/* FAQ */
.faq-list { max-width: 680px; display: grid; gap: 8px; }
details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  background: var(--white);
}
details[open] { border-color: var(--accent); }
summary {
  font-weight: 600; font-size: 16px;
  cursor: pointer; list-style: none;
}
summary::-webkit-details-marker { display: none; }
details p { margin-top: 12px; font-size: 15px; color: var(--muted); }

/* FINAL CTA */
.final-cta {
  background: var(--accent);
  color: var(--white);
  text-align: center;
  padding: 80px 0;
}
.final-cta h2 { color: var(--white); margin-bottom: 28px; }
.final-cta .btn { background: var(--white); color: var(--accent); }
.final-cta .btn:hover { background: #f0f0f0; }
.contact-line { margin-top: 20px; font-size: 15px; color: rgba(255,255,255,0.8); }
.contact-line a { color: var(--white); }

/* FOOTER */
.footer {
  background: var(--black);
  color: #555; text-align: center;
  padding: 28px 0; font-size: 13px;
}

/* MOBILE */
@media (max-width: 600px) {
  .hero { padding: 60px 0; }
  .offer-box { padding: 32px 20px; }
  .btn-lg { padding: 14px 24px; font-size: 16px; }
}
