/* LeadLocal Landing Page Styles */

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

:root {
  --bg: #F9F6F1;
  --bg-alt: #FFFFFF;
  --fg: #1A1A1A;
  --fg-muted: #5C5C5C;
  --accent: #1B4D3E;
  --accent-light: #2A6B57;
  --gold: #D4920A;
  --gold-light: #F59E0B;
  --border: #E0DBD4;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* — NAV — */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(249, 246, 241, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--accent);
  letter-spacing: -0.5px;
}

.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* — HERO — */
.hero {
  padding: 140px 32px 80px;
  background: var(--bg);
  overflow: hidden;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--fg);
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-graphic {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.graphic-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(27, 77, 62, 0.15);
}

.graphic-ring-1 { width: 200px; height: 200px; animation: spin-slow 20s linear infinite; }
.graphic-ring-2 { width: 260px; height: 260px; animation: spin-slow 30s linear infinite reverse; border-color: rgba(212, 146, 10, 0.15); }
.graphic-ring-3 { width: 300px; height: 300px; animation: spin-slow 40s linear infinite; border-style: dashed; border-color: rgba(27, 77, 62, 0.08); }

.graphic-center {
  width: 90px;
  height: 90px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 0 0 8px rgba(27, 77, 62, 0.1), 0 20px 60px rgba(27, 77, 62, 0.2);
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* — HERO CTA BUTTON (injected by site-settings) — */
.hero-cta-btn {
  display: inline-block;
  padding: 14px 28px;
  background: var(--site-accent, var(--accent));
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.15s;
}
.hero-cta-btn:hover { opacity: 0.88; }

/* — SERVICES — */
.services {
  padding: 80px 32px;
  background: var(--bg-alt);
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  letter-spacing: -1px;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--bg);
  padding: 40px 36px;
  border: 1px solid var(--border);
  transition: background 0.2s ease;
}

.service-card:hover {
  background: var(--bg-alt);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 24px;
}

.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* — HOW — */
.how {
  padding: 100px 32px;
  background: var(--accent);
  color: white;
}

.how-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.how .section-label { color: rgba(255,255,255,0.5); }
.how .section-title { color: white; }

.how-body {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 20px;
}

.how-stat {
  margin-top: 40px;
  padding: 32px;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
}

.stat-number {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--gold-light);
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.how-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 40px;
}

.how-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.how-step:last-child { border-bottom: none; }

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-light);
  background: rgba(245, 158, 11, 0.15);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.how-step h4 {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}

.how-step p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* — TESTIMONIALS — */
.testimonials {
  padding: 100px 32px;
  background: var(--bg);
}

.testimonials-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.testimonials-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--fg);
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

.testimonial-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 60px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.problem-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  text-align: left;
}

.problem-icon {
  width: 36px;
  height: 36px;
  background: #FEE2E2;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #DC2626;
  margin-bottom: 16px;
}

.problem-card p {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--fg);
  margin-bottom: 8px;
}

.problem-card span {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* — CLOSING — */
.closing {
  padding: 100px 32px;
  background: var(--accent);
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* — FOOTER — */
.site-footer {
  background: var(--fg);
  padding: 40px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: white;
  display: block;
  margin-bottom: 6px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
}

.footer-meta p {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
}

/* — RESPONSIVE — */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-right { display: none; }
  .hero-sub { margin: 0 auto; }
  .services-grid { grid-template-columns: 1fr; }
  .how-inner { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .nav-tagline { display: none; }
  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
}