/* ============================================================
   ePayrollz America — Shared Styles
   Brand: green gradient mark, navy/charcoal text, gold CTA
   ============================================================ */

:root {
  /* Brand */
  --brand-green-50:  #f0fdf4;
  --brand-green-100: #dcfce7;
  --brand-green-200: #bbf7d0;
  --brand-green-400: #4ade80;
  --brand-green-500: #22c55e;
  --brand-green-600: #16a34a;
  --brand-green-700: #15803d;
  --brand-green-900: #14532d;

  /* Trust / authority */
  --navy-900: #0a2540;
  --navy-800: #0f2f4f;
  --navy-700: #1e3a5f;

  /* Premium accent */
  --gold-500: #f59e0b;
  --gold-600: #d97706;

  /* Neutrals */
  --ink-900: #0b0f17;
  --ink-700: #1f2937;
  --ink-500: #4b5563;
  --ink-400: #6b7280;
  --ink-300: #9ca3af;
  --gray-50:  #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --white:   #ffffff;

  /* Tokens */
  --radius-sm: 8px;
  --radius:   14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(10,37,64,.06), 0 1px 1px rgba(10,37,64,.04);
  --shadow:    0 10px 30px -10px rgba(10,37,64,.15);
  --shadow-lg: 0 24px 60px -20px rgba(10,37,64,.25);

  --container: 1200px;
  --header-h: 76px;

  --grad-brand: linear-gradient(135deg, #22c55e 0%, #14532d 100%);
  --grad-hero:  linear-gradient(180deg, #0a2540 0%, #0f2f4f 60%, #14532d 140%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink-900);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--brand-green-700); text-decoration: none; }
a:hover { color: var(--brand-green-600); }

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  color: var(--navy-900);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2rem, 4.4vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 1.6vw, 1.4rem); font-weight: 600; }
p { margin: 0 0 1em; color: var(--ink-700); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .98rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .18s ease;
  text-decoration: none;
  white-space: nowrap;
  font-family: inherit;
}
.btn-primary {
  background: var(--grad-brand);
  color: var(--white);
  box-shadow: 0 8px 20px -6px rgba(34,197,94,.5);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -8px rgba(34,197,94,.6);
  color: var(--white);
}
.btn-gold {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: var(--white);
  box-shadow: 0 8px 20px -6px rgba(245,158,11,.5);
}
.btn-gold:hover { transform: translateY(-1px); color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--gray-300);
}
.btn-outline:hover {
  border-color: var(--brand-green-500);
  color: var(--brand-green-700);
}
.btn-ghost-light {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-color: rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,.2);
  color: var(--white);
}
.btn-sm { padding: 10px 18px; font-size: .9rem; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--gray-200);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 20px;
}
.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-900);
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -.02em;
}
.brand-link:hover { color: var(--ink-900); }
.brand-link__mark { width: 42px; height: 42px; }
.brand-link__text { font-size: 1.25rem; line-height: 1; }
.brand-link__text .g { color: var(--brand-green-600); }
.brand-link__sub {
  font-size: .58rem;
  font-weight: 800;
  color: var(--brand-green-600);
  letter-spacing: .32em;
  margin-top: 3px;
}

.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  color: var(--ink-700);
  font-weight: 500;
  font-size: .96rem;
  position: relative;
  padding: 6px 0;
}
.nav a:hover { color: var(--brand-green-700); }
.nav a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--brand-green-500);
  border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy-900);
  font-weight: 600;
  font-size: .92rem;
}
.nav-phone svg { width: 16px; height: 16px; color: var(--brand-green-600); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle svg { width: 26px; height: 26px; color: var(--navy-900); }

@media (max-width: 980px) {
  .nav, .nav-phone { display: none; }
  .nav-toggle { display: block; }
  .nav.open {
    display: flex;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 18px 24px 24px;
    box-shadow: var(--shadow);
    gap: 14px;
    border-bottom: 1px solid var(--gray-200);
  }
  .nav.open a { padding: 10px 0; border-bottom: 1px solid var(--gray-100); }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 80px 0 100px;
  background:
    radial-gradient(1200px 600px at 90% -10%, rgba(34,197,94,.18), transparent 60%),
    radial-gradient(800px 500px at -10% 110%, rgba(10,37,64,.08), transparent 60%),
    linear-gradient(180deg, #f8fbf9 0%, #ffffff 100%);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-green-50);
  color: var(--brand-green-700);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 22px;
  border: 1px solid var(--brand-green-200);
}
.hero__title { margin-bottom: 18px; }
.hero__title .accent { color: var(--brand-green-600); }
.hero__sub {
  font-size: 1.12rem;
  color: var(--ink-500);
  max-width: 540px;
  margin-bottom: 28px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.hero__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink-500);
  font-size: .92rem;
}
.avatar-stack { display: flex; }
.avatar-stack span {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: var(--grad-brand);
  margin-left: -10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: .72rem;
  font-weight: 700;
}
.avatar-stack span:first-child { margin-left: 0; }

.hero__visual {
  position: relative;
}
.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 22px;
  border: 1px solid var(--gray-200);
}
.hero-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.hero-card__title {
  font-weight: 700;
  color: var(--navy-900);
}
.dot-row { display: flex; gap: 6px; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: #fca5a5; }
.dot:nth-child(2) { background: #fde68a; }
.dot:nth-child(3) { background: #86efac; }

.hero-stat-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; margin-bottom: 18px; }
.hero-stat {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 12px 14px;
}
.hero-stat__label { font-size: .72rem; color: var(--ink-400); margin-bottom: 4px; }
.hero-stat__value { font-weight: 700; color: var(--navy-900); font-size: 1.1rem; }
.hero-stat__delta { font-size: .72rem; color: var(--brand-green-600); margin-top: 2px; }

.hero-chart {
  background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid var(--brand-green-100);
}
.hero-chart svg { width: 100%; height: 120px; }
.hero-pay-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid var(--gray-100);
  font-size: .88rem;
}
.hero-pay-row:first-of-type { border-top: 0; }
.hero-pay-row .l { color: var(--ink-500); }
.hero-pay-row .r { font-weight: 600; color: var(--navy-900); }

.hero-floating {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy-900);
  border: 1px solid var(--gray-200);
}
.hero-floating--tl { top: -10px; left: -30px; }
.hero-floating--br { bottom: -16px; right: -20px; }
.hero-floating .check {
  width: 28px; height: 28px;
  background: var(--brand-green-500);
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .hero { padding: 56px 0 70px; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-floating--tl, .hero-floating--br { display: none; }
}

/* ===== Trust strip ===== */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 22px 0;
}
.trust-strip__items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px 28px;
}
.trust-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-700);
  font-size: .92rem;
  font-weight: 500;
}
.trust-strip__item svg { width: 18px; height: 18px; color: var(--brand-green-600); flex-shrink: 0; }

/* ===== Sections ===== */
.section { padding: 90px 0; }
.section--tight { padding: 64px 0; }
.section--alt { background: var(--gray-50); }
.section--dark {
  background: var(--grad-hero);
  color: rgba(255,255,255,.92);
}
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,.78); }

.section__head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section__head--left { text-align: left; max-width: 720px; margin: 0 0 48px; }
.section__eyebrow {
  display: inline-block;
  color: var(--brand-green-700);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section--dark .section__eyebrow { color: var(--brand-green-400); }
.section__sub { color: var(--ink-500); font-size: 1.05rem; }
.section--dark .section__sub { color: rgba(255,255,255,.7); }

/* ===== Why us / cards ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
@media (max-width: 980px) {
  .grid-3, .grid-4, .grid-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all .2s ease;
}
.feature-card:hover {
  border-color: var(--brand-green-200);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.feature-card__icon {
  width: 52px; height: 52px;
  background: var(--brand-green-50);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-green-600);
  margin-bottom: 18px;
}
.feature-card__icon svg { width: 26px; height: 26px; }
.feature-card h3 { margin-bottom: 8px; }
.feature-card p { color: var(--ink-500); margin: 0; font-size: .96rem; }

/* ===== Services cards ===== */
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: all .2s ease;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.service-card:hover { border-color: var(--brand-green-200); transform: translateY(-3px); box-shadow: var(--shadow); }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 56px; height: 56px;
  background: var(--grad-brand);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  margin-bottom: 20px;
}
.service-card__icon svg { width: 28px; height: 28px; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--ink-500); margin: 0 0 18px; flex: 1; font-size: .95rem; }
.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand-green-700);
  font-weight: 600;
  font-size: .92rem;
}
.service-card .learn-more svg { width: 16px; height: 16px; transition: transform .2s; }
.service-card .learn-more:hover svg { transform: translateX(3px); }

/* ===== How it works ===== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  position: relative;
}
.step__num {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--grad-brand);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 18px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { color: var(--ink-500); font-size: .94rem; margin: 0; }

/* ===== Coverage map ===== */
.coverage {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 980px) { .coverage { grid-template-columns: 1fr; } }
.coverage__map {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--gray-200);
}
.coverage__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 26px; }
.cov-stat {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.cov-stat__num { font-weight: 800; font-size: 1.4rem; color: var(--brand-green-700); font-family: 'Space Grotesk', sans-serif; }
.cov-stat__label { font-size: .85rem; color: var(--ink-500); margin-top: 2px; }

/* ===== Testimonials ===== */
.testimonial {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.t-stars { color: #f59e0b; margin-bottom: 12px; }
.t-quote { color: var(--ink-700); font-size: 1rem; line-height: 1.6; margin: 0 0 22px; flex: 1; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.t-name { font-weight: 600; color: var(--navy-900); font-size: .95rem; }
.t-meta { color: var(--ink-400); font-size: .82rem; }

/* ===== Stats counter strip ===== */
.stats-strip {
  background: var(--grad-hero);
  color: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 60px 0 0;
}
@media (max-width: 760px) { .stats-strip { grid-template-columns: repeat(2, 1fr); padding: 30px; } }
.stat-item { text-align: center; }
.stat-item__num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-item__label { color: rgba(255,255,255,.7); font-size: .88rem; margin-top: 4px; }

/* ===== Industries ===== */
.industries { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
@media (max-width: 980px) { .industries { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .industries { grid-template-columns: repeat(2, 1fr); } }
.industry-tile {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 22px 14px;
  text-align: center;
  transition: all .15s ease;
}
.industry-tile:hover { border-color: var(--brand-green-200); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.industry-tile__icon {
  width: 42px; height: 42px;
  background: var(--brand-green-50);
  color: var(--brand-green-700);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
}
.industry-tile__icon svg { width: 22px; height: 22px; }
.industry-tile__name { font-weight: 600; font-size: .9rem; color: var(--navy-900); }

/* ===== Pricing ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card--featured {
  border-color: var(--brand-green-500);
  box-shadow: 0 30px 60px -20px rgba(34,197,94,.3);
  transform: scale(1.02);
}
.price-card__badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--grad-brand);
  color: white;
  padding: 5px 16px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.price-card__name { font-weight: 700; color: var(--navy-900); font-size: 1.15rem; }
.price-card__price { font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: 2.4rem; color: var(--navy-900); margin: 14px 0 4px; }
.price-card__price .cents { font-size: 1rem; color: var(--ink-400); font-weight: 600; }
.price-card__period { color: var(--ink-400); font-size: .9rem; margin-bottom: 22px; }
.price-card__features { list-style: none; padding: 0; margin: 0 0 26px; flex: 1; }
.price-card__features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 7px 0;
  color: var(--ink-700);
  font-size: .94rem;
}
.price-card__features svg { width: 18px; height: 18px; color: var(--brand-green-600); flex-shrink: 0; margin-top: 2px; }
.price-card .btn { width: 100%; }

/* ===== FAQ accordion ===== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item__q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-900);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.faq-item__q svg {
  width: 20px; height: 20px;
  color: var(--brand-green-600);
  transition: transform .2s;
  flex-shrink: 0;
}
.faq-item.open .faq-item__q svg { transform: rotate(180deg); }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}
.faq-item__a-inner {
  padding: 0 24px 22px;
  color: var(--ink-500);
  font-size: .96rem;
  line-height: 1.6;
}
.faq-item.open .faq-item__a { max-height: 600px; }

/* ===== Lead Form ===== */
.lead-section {
  background:
    radial-gradient(800px 400px at 80% 20%, rgba(34,197,94,.12), transparent 60%),
    var(--gray-50);
  padding: 90px 0;
}
.lead-wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: start;
}
@media (max-width: 980px) { .lead-wrap { grid-template-columns: 1fr; } }
.lead-info h2 { margin-bottom: 14px; }
.lead-info p { font-size: 1.05rem; color: var(--ink-500); }
.lead-info__perks { list-style: none; padding: 0; margin: 30px 0 0; }
.lead-info__perks li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 10px 0;
  color: var(--ink-700);
  font-weight: 500;
  font-size: .98rem;
}
.lead-info__perks svg {
  width: 22px; height: 22px;
  color: var(--brand-green-600);
  background: var(--brand-green-50);
  padding: 3px;
  border-radius: 6px;
  flex-shrink: 0;
}
.lead-info__contact {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-top: 30px;
}
.lead-info__contact a { color: var(--navy-900); font-weight: 600; display: block; margin: 4px 0; }

.lead-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}
.lead-form h3 { font-size: 1.25rem; margin-bottom: 6px; }
.lead-form__sub { color: var(--ink-500); font-size: .92rem; margin-bottom: 22px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; }
.form-group--full { grid-column: 1 / -1; }
.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 6px;
}
.form-group label .req { color: #ef4444; }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: inherit;
  font-size: .95rem;
  padding: 11px 14px;
  border: 1px solid var(--gray-300);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink-900);
  transition: border-color .15s, box-shadow .15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-green-500);
  box-shadow: 0 0 0 3px rgba(34,197,94,.15);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.phone-row { display: grid; grid-template-columns: 110px 1fr; gap: 10px; }

.checkboxes { display: flex; flex-direction: column; gap: 10px; padding: 12px 0; }
.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 14px; }
@media (max-width: 560px) { .checkbox-grid { grid-template-columns: 1fr; } }
.check-row {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: .92rem;
  color: var(--ink-700);
  cursor: pointer;
  padding: 6px 0;
  line-height: 1.45;
}
.check-row input { margin-top: 3px; accent-color: var(--brand-green-600); }
.check-row a { color: var(--brand-green-700); text-decoration: underline; }

.radio-row {
  display: flex; gap: 16px; flex-wrap: wrap;
}
.radio-row label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .94rem;
  font-weight: 500;
  color: var(--ink-700);
  cursor: pointer;
}
.radio-row input { accent-color: var(--brand-green-600); }

.form-submit { width: 100%; margin-top: 6px; padding: 16px; font-size: 1rem; }
.form-foot {
  text-align: center;
  font-size: .8rem;
  color: var(--ink-400);
  margin-top: 14px;
}
.form-success {
  background: var(--brand-green-50);
  border: 1px solid var(--brand-green-200);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  color: var(--brand-green-900);
}
.form-success svg { width: 44px; height: 44px; color: var(--brand-green-600); margin: 0 auto 10px; }
.form-success h3 { color: var(--brand-green-900); margin-bottom: 6px; }

/* ===== Final CTA banner ===== */
.cta-banner {
  background: var(--grad-hero);
  color: white;
  padding: 70px 0;
  text-align: center;
}
.cta-banner h2 { color: white; max-width: 720px; margin: 0 auto 26px; }
.cta-banner p { color: rgba(255,255,255,.8); max-width: 640px; margin: 0 auto 28px; font-size: 1.05rem; }

/* ===== Footer ===== */
.site-footer {
  background: #060b13;
  color: rgba(255,255,255,.7);
  padding: 70px 0 30px;
  font-size: .94rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.site-footer h4 {
  color: white;
  font-size: .95rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}
.site-footer a { color: rgba(255,255,255,.65); display: block; padding: 5px 0; }
.site-footer a:hover { color: var(--brand-green-400); }
.footer-brand .brand-link { color: white; }
.footer-brand .brand-link__text { color: white; }
.footer-brand p { color: rgba(255,255,255,.55); margin: 16px 0 18px; font-size: .92rem; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.06);
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0;
}
.socials a:hover { background: var(--brand-green-600); color: white; }
.socials svg { width: 18px; height: 18px; }

.footer-newsletter input {
  width: 100%;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: white;
  font-family: inherit;
  font-size: .92rem;
  margin-bottom: 10px;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,.4); }
.footer-newsletter button {
  width: 100%;
  background: var(--grad-brand);
  color: white;
  border: 0;
  padding: 11px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

.trust-badges {
  display: flex; flex-wrap: wrap;
  gap: 12px;
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 24px;
}
.trust-badges span {
  background: rgba(255,255,255,.06);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  font-weight: 500;
  border: 1px solid rgba(255,255,255,.08);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}
.footer-bottom__links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom a { display: inline; padding: 0; color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--brand-green-400); }

/* ===== Floating mobile buttons ===== */
.float-mobile-actions {
  display: none;
  position: fixed;
  bottom: 20px; right: 20px;
  z-index: 80;
  flex-direction: column;
  gap: 10px;
}
.float-mobile-actions a {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--brand-green-500);
  color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 30px -6px rgba(34,197,94,.5);
}
.float-mobile-actions a svg { width: 24px; height: 24px; }
@media (max-width: 700px) { .float-mobile-actions { display: flex; } }

/* ===== Cookie banner ===== */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px; right: 20px;
  max-width: 880px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 18px 22px;
  z-index: 90;
  display: none;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-banner.show { display: flex; }
.cookie-banner p { margin: 0; font-size: .9rem; color: var(--ink-700); flex: 1; min-width: 260px; }
.cookie-banner .btn { padding: 8px 18px; font-size: .88rem; }

/* ===== Sub-page hero ===== */
.page-hero {
  background:
    radial-gradient(800px 400px at 90% 0%, rgba(34,197,94,.15), transparent 60%),
    var(--grad-hero);
  color: white;
  padding: 80px 0 80px;
  text-align: center;
}
.page-hero h1 { color: white; max-width: 800px; margin: 0 auto 16px; }
.page-hero p { color: rgba(255,255,255,.78); max-width: 640px; margin: 0 auto; font-size: 1.1rem; }
.page-hero .crumbs {
  display: inline-flex; gap: 6px;
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  margin-bottom: 16px;
}
.page-hero .crumbs a { color: rgba(255,255,255,.85); }

/* ===== Service detail ===== */
.svc-detail { display: grid; grid-template-columns: 1fr 1.4fr; gap: 50px; padding: 60px 0; border-bottom: 1px solid var(--gray-200); }
.svc-detail:last-child { border-bottom: 0; }
@media (max-width: 900px) { .svc-detail { grid-template-columns: 1fr; gap: 30px; } }
.svc-detail__head .icon {
  width: 64px; height: 64px;
  background: var(--grad-brand);
  border-radius: 16px;
  color: white;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.svc-detail__head .icon svg { width: 32px; height: 32px; }
.svc-detail ul { padding-left: 0; list-style: none; }
.svc-detail li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 8px 0;
  color: var(--ink-700);
  font-size: .98rem;
}
.svc-detail li svg {
  width: 20px; height: 20px;
  color: var(--brand-green-600);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== Resources / Blog grid ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .2s;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.blog-card__cover {
  height: 180px;
  background: var(--grad-brand);
  position: relative;
  overflow: hidden;
}
.blog-card__cover svg { position: absolute; bottom: -10px; right: -10px; width: 140px; height: 140px; opacity: .25; }
.blog-card__cover .tag {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(255,255,255,.92);
  color: var(--brand-green-700);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.blog-card__body { padding: 24px; }
.blog-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.blog-card p { color: var(--ink-500); font-size: .92rem; margin-bottom: 14px; }
.blog-card__meta { color: var(--ink-400); font-size: .82rem; }

/* ===== Legal pages ===== */
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 { font-size: 1.4rem; margin: 36px 0 14px; padding-bottom: 6px; border-bottom: 1px solid var(--gray-200); }
.legal-content h3 { font-size: 1.1rem; margin: 22px 0 10px; }
.legal-content p, .legal-content li { font-size: .98rem; color: var(--ink-700); line-height: 1.65; }
.legal-content ul { padding-left: 20px; }
.legal-content li { margin-bottom: 6px; }

/* ===== Team grid ===== */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 26px;
  text-align: center;
}
.team-card__avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1.6rem;
  margin: 0 auto 14px;
  font-family: 'Space Grotesk', sans-serif;
}
.team-card__name { font-weight: 700; color: var(--navy-900); }
.team-card__role { color: var(--brand-green-700); font-size: .88rem; font-weight: 600; margin: 4px 0 8px; }
.team-card p { font-size: .9rem; color: var(--ink-500); margin: 0; }

/* ===== Utilities ===== */
.tcenter { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.muted { color: var(--ink-400); }
.small { font-size: .88rem; }

/* Note callout */
.callout {
  background: var(--brand-green-50);
  border-left: 4px solid var(--brand-green-500);
  border-radius: 8px;
  padding: 18px 22px;
  color: var(--brand-green-900);
  font-weight: 500;
  margin: 30px 0;
}

/* Print-friendly tweaks (small) */
@media print {
  .site-header, .site-footer, .float-mobile-actions, .cookie-banner { display: none !important; }
}
