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

:root {
  --primary: #16a34a;
  --primary-light: #dcfce7;
  --primary-faint: #f0fdf4;
  --foreground: #0f172a;
  --muted: #64748b;
  --muted-bg: #f8fafc;
  --card: #ffffff;
  --border: #e2e8f0;
  --background: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  --radius: 8px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--background);
  color: var(--foreground);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

/* ── HEADER ── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--foreground);
  letter-spacing: -0.03em;
}
.logo span {
  color: var(--primary);
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn {
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--foreground);
  transition:
    background 0.15s,
    color 0.15s,
    box-shadow 0.15s;
  white-space: nowrap;
}
.btn:hover {
  background: #f1f5f9;
}

.btn-outline {
  border: 1.5px solid var(--foreground);
  color: var(--foreground);
  background: transparent;
}
.btn-outline:hover {
  background: rgba(0, 0, 0, 0.05);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.4);
}

.btn-primary:hover {
  background: #15803d;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.35);
}

.btn-login {
  font-size: 0.875rem;
}

.nav-mobile {
  display: none;
}

@media (max-width: 768px) {
  nav {
    display: none;
  }
  .nav-mobile {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .hamburger-btn {
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--foreground);
  }
}
/* ── HERO ── */
.hero {
  padding: 164px 24px 48px;
  background: linear-gradient(
    135deg,
    #fff 0%,
    #fff 60%,
    rgba(22, 163, 74, 0.04) 100%
  );
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-grid-bg {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(22, 163, 74, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 163, 74, 0.07) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(600px circle at center, white, transparent);
  -webkit-mask-image: radial-gradient(
    600px circle at center,
    white,
    transparent
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 16px;
}
.hero-location svg {
  color: var(--primary);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--foreground);
}

.hero h1 .accent {
  color: var(--primary);
  position: relative;
  display: inline-block;
}
.hero h1 .accent::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(22, 163, 74, 0.2);
  border-radius: 2px;
}

.hero p {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-lg {
  font-size: 1.05rem;
  padding: 14px 28px;
  border-radius: var(--radius);
}

/* ── SECTION WRAPPER ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

section {
  padding: 72px 24px;
}

/* ── STATS SECTION ── */
.stats-section {
  background: linear-gradient(
    135deg,
    #fff 0%,
    rgba(22, 163, 74, 0.04) 50%,
    #fff 100%
  );
}

.stats-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
}

.stats-section h2 em {
  font-style: italic;
  font-weight: 900;
  transform: skewX(-6deg);
  display: inline-block;
  color: var(--foreground);
  position: relative;
}
.stats-section h2 em::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(22, 163, 74, 0.3);
  border-radius: 2px;
  transform: skewX(6deg);
}
.stats-section h2 .underline-primary {
  position: relative;
  display: inline-block;
}
.stats-section h2 .underline-primary::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

.mailer-img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  margin: 0 auto;
}

.stat-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 769px) {
  .stat-cards {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  flex: 1;
  min-width: 140px;
  max-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: box-shadow 0.2s;
}
.stat-card:hover {
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .stat-card {
    max-width: 100%;
    flex-direction: row;
    text-align: left;
    padding: 16px 20px;
  }
}

.stat-icon {
  width: 40px;
  height: 40px;
  background: rgba(22, 163, 74, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stat-icon svg {
  color: var(--primary);
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 4px;
}
.stat-value a {
  color: var(--muted);
  font-size: 0.75rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ── WHY SECTION ── */
.why-section {
  background: var(--muted-bg);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(22, 163, 74, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 163, 74, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(800px circle at center, white, transparent);
  -webkit-mask-image: radial-gradient(
    800px circle at center,
    white,
    transparent
  );
}

.why-section .container {
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

.section-title .accent {
  color: var(--primary);
  position: relative;
  display: inline-block;
}
.section-title .accent::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(22, 163, 74, 0.2);
  border-radius: 2px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto 40px;
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
}

.check-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.check-icon svg {
  color: #16a34a;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--foreground);
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.section-cta {
  text-align: center;
  margin-top: 8px;
}

/* ── TARGETING SECTION ── */
.targeting-section {
  background: var(--muted-bg);
  position: relative;
  overflow: hidden;
}
.targeting-section::before {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(22, 163, 74, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 163, 74, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(800px circle at center, white, transparent);
  -webkit-mask-image: radial-gradient(
    800px circle at center,
    white,
    transparent
  );
}

.targeting-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .targeting-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.targeting-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.targeting-text h2 .block-accent {
  color: var(--primary);
  display: block;
}

.targeting-icon-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.target-icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(22, 163, 74, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.target-icon-wrap svg {
  color: var(--primary);
}
.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(22, 163, 74, 0.2), transparent);
}

.targeting-body {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.targeting-body strong {
  color: var(--foreground);
}
.targeting-body .zip-highlight {
  color: var(--primary);
  font-weight: 700;
}

.coverage-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(22, 163, 74, 0.05);
  border: 1px solid rgba(22, 163, 74, 0.15);
  border-radius: 10px;
  margin-bottom: 24px;
}
.coverage-badge svg {
  color: var(--primary);
  flex-shrink: 0;
}
.coverage-badge h3 {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.coverage-badge p {
  font-size: 0.8rem;
  color: var(--muted);
}

.map-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.map-placeholder {
  width: 100%;
  height: 380px;
  background: linear-gradient(135deg, #e0f2fe 0%, #dcfce7 50%, #fef9c3 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  padding: 20px;
  text-align: center;
}
.map-placeholder svg {
  color: var(--primary);
  opacity: 0.5;
}
.map-glow-1 {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 80px;
  height: 80px;
  background: rgba(22, 163, 74, 0.1);
  border-radius: 50%;
  filter: blur(20px);
}
.map-glow-2 {
  position: absolute;
  bottom: -24px;
  left: -24px;
  width: 128px;
  height: 128px;
  background: rgba(22, 163, 74, 0.06);
  border-radius: 50%;
  filter: blur(32px);
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  background: #fafafa;
}

.testimonials-section h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

.rotate-accent {
  display: inline-block;
  position: relative;
  transform: rotate(1deg);
  font-weight: 900;
}
.rotate-accent::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  transform: rotate(-1deg);
  border-radius: 1px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}
.star {
  color: var(--primary);
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.testimonial-author {
  font-weight: 700;
  font-size: 0.9rem;
}

/* ── CTA SECTION ── */
.cta-section {
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(22, 163, 74, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 163, 74, 0.07) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(600px circle at center, white, transparent);
  -webkit-mask-image: radial-gradient(
    600px circle at center,
    white,
    transparent
  );
}

.cta-card {
  max-width: 580px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-card h2 {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 12px;
}
.skew-title {
  display: inline-block;
  transform: skewX(-3deg);
  position: relative;
}
.skew-title::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  transform: skewX(3deg);
}

.cta-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.cta-full {
  width: 100%;
  font-weight: bold;
  font-size: 1.5rem;
}

.cta-footnote {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 10px;
}

/* ── FOOTER ── */
footer {
  padding: 28px 24px;
  background: #fff;
  border-top: 1px solid #e5e7eb;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--foreground);
}
.footer-logo span {
  color: var(--primary);
}

.footer-copy {
  font-size: 0.8rem;
  color: #4b5563;
}

.footer-fb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f3f4f6;
  border: 2px solid var(--primary);
  transition: background 0.2s;
  color: var(--primary);
}
.footer-fb:hover {
  background: var(--primary);
  color: #fff;
}
.footer-fb svg {
  transition: color 0.2s;
}
.footer-fb:hover svg {
  color: #fff;
}

/* ── SVG ICONS (inline helpers) ── */
svg {
  flex-shrink: 0;
}
