/* ==========================================
   LocalRoot — Theme CSS
   ========================================== */

:root {
  --bg: #FAF8F5;
  --bg-alt: #F2EFE9;
  --green: #1B4332;
  --green-light: #D8F3DC;
  --orange: #E85D04;
  --orange-light: #FDE9D4;
  --stone: #6B5B4E;
  --text: #1A1A1A;
  --white: #FFFFFF;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--green);
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27, 67, 50, 0.08);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo span {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--green);
  letter-spacing: -0.02em;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-label {
  font-size: 0.8125rem;
  color: var(--stone);
  font-weight: 400;
}

.nav-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--green-light);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 100px;
}

.nav-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ── HERO ── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
  min-height: 640px;
  display: flex;
  align-items: center;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27, 67, 50, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 67, 50, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-geo {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.geo-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(216, 243, 220, 0.4) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}

.geo-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 93, 4, 0.06) 0%, transparent 70%);
  bottom: -100px;
  left: 100px;
}

.geo-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(27, 67, 50, 0.05) 0%, transparent 70%);
  top: 50%;
  right: 30%;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--stone);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-headline {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  color: var(--green);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-headline em {
  font-style: normal;
  color: var(--orange);
  position: relative;
}

.hero-lede {
  font-size: 1.0625rem;
  color: var(--stone);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cta-price {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--green);
}

.cta-detail {
  font-size: 0.875rem;
  color: var(--stone);
}

/* ── VISUAL CARD ── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 32px rgba(27, 67, 50, 0.08), 0 1px 4px rgba(27, 67, 50, 0.04);
  width: 100%;
  max-width: 340px;
  border: 1px solid rgba(27, 67, 50, 0.06);
}

.vc-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.vc-label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--green);
}

.vc-rings {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ring {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ring-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text);
}

.ring-bar {
  height: 8px;
  background: var(--bg-alt);
  border-radius: 100px;
  overflow: hidden;
}

.ring-fill {
  height: 100%;
  border-radius: 100px;
}

.rf-green { background: var(--green); }
.rf-orange { background: var(--orange); }

.ring-meta {
  font-size: 0.75rem;
  color: var(--stone);
  font-weight: 500;
}

/* ── RESULTS BAR ── */
.results-bar {
  background: var(--green);
  padding: 40px 0;
}

.results-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.result-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.result-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.25rem;
  color: var(--orange);
  letter-spacing: -0.03em;
}

.result-desc {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
  max-width: 180px;
  line-height: 1.5;
}

.result-divider {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.15);
}

/* ── SECTION HEADERS ── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--green);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 1rem;
  color: var(--stone);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── HOW IT WORKS ── */
.how-section {
  padding: 100px 0;
  background: var(--bg);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(27, 67, 50, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(27, 67, 50, 0.08);
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--orange);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.step-icon {
  margin-bottom: 20px;
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 10px;
  line-height: 1.3;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--stone);
  line-height: 1.6;
}

/* ── SERVICES ── */
.services-section {
  padding: 100px 0;
  background: var(--bg-alt);
}

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

.service-pill-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.spill {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text);
  font-weight: 500;
}

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

.services-illustration {
  width: 100%;
  max-width: 400px;
}

.services-svg {
  width: 100%;
  height: auto;
}

/* ── PRICING ── */
.pricing-section {
  padding: 100px 0;
  background: var(--bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.pricing-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(27, 67, 50, 0.08);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(27, 67, 50, 0.1);
}

.pricing-card-featured {
  background: var(--green);
  border-color: var(--green);
}

.pricing-card-featured .pc-tier,
.pricing-card-featured .pc-price,
.pricing-card-featured .pc-desc,
.pricing-card-featured .pc-features li {
  color: white;
}

.pricing-card-featured .pc-desc {
  color: rgba(255,255,255,0.75);
}

.pricing-card-featured .pc-features li span {
  color: rgba(255,255,255,0.9);
}

.pc-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: white;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.pc-top {
  margin-bottom: 28px;
}

.pc-tier {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--stone);
  display: block;
  margin-bottom: 12px;
}

.pc-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 12px;
}

.price-dollar {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--green);
}

.price-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.75rem;
  color: var(--green);
  letter-spacing: -0.04em;
}

.price-period {
  font-size: 0.875rem;
  color: var(--stone);
  font-weight: 400;
}

.pc-desc {
  font-size: 0.875rem;
  color: var(--stone);
  line-height: 1.6;
}

.pc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pc-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text);
}

.pc-features li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--stone);
}

/* ── INDUSTRIES ── */
.industries-section {
  padding: 80px 0;
  background: var(--bg-alt);
}

.industries-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: center;
}

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

.industry-card {
  background: var(--white);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(27, 67, 50, 0.06);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.industry-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(27, 67, 50, 0.08);
}

/* ── CLOSING ── */
.closing-section {
  padding: 100px 0;
  background: var(--green);
}

.closing-inner {
  text-align: center;
}

.closing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 93, 4, 0.2);
  color: var(--orange);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.closing-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.closing-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.closing-stats {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 24px 40px;
}

.cstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.cs-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--orange);
  letter-spacing: -0.03em;
}

.cs-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cstat-div {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* ── FOOTER ── */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid rgba(27, 67, 50, 0.08);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--green);
}

.footer-info {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8125rem;
  color: var(--stone);
  flex-wrap: wrap;
}

.footer-sep {
  color: rgba(27, 67, 50, 0.2);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .visual-card { max-width: 100%; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .services-right { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .industries-inner { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .results-inner { flex-direction: column; gap: 24px; }
  .result-divider { width: 48px; height: 1px; }
}

@media (max-width: 640px) {
  .hero { padding: 60px 0 80px; }
  .hero-headline { font-size: 2.25rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .closing-stats { flex-direction: column; gap: 20px; padding: 24px; }
  .cstat-div { width: 40px; height: 1px; }
  .nav-label { display: none; }
}