* {
  box-sizing: border-box;
}

:root {
  --green: #29b100;
  --green-dark: #168500;
  --green-soft: #eefbe8;
  --yellow: #ffd200;
  --yellow-soft: #fff7cc;
  --ink: #101418;
  --text: #1a1f26;
  --muted: #647082;
  --line: #e8edf2;
  --bg: #f7f9fb;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(16, 24, 40, 0.08);
  --radius: 22px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
}

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

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

.container {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  color: var(--white);
  font-weight: 800;
}

.topbar-inner {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar-call {
  background: var(--yellow);
  color: var(--ink);
  padding: 0.78rem 1.05rem;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(0,0,0,0.10);
}

.site-header {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 40;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 88px;
}

.brand-logo {
  width: min(240px, 42vw);
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-weight: 700;
  color: #334155;
}

.nav-links a:hover {
  color: var(--green-dark);
}

.hero {
  padding: 4.5rem 0 3.5rem;
  background:
    radial-gradient(circle at top right, rgba(41,177,0,0.16), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f5fbf1 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 900;
  color: var(--green-dark);
}

.eyebrow.green {
  color: var(--green-dark);
}

.eyebrow.gold {
  color: #9b7c00;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  max-width: 8ch;
  color: var(--ink);
}

.hero-text {
  max-width: 58ch;
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--muted);
  margin: 1rem 0 1.5rem;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 1.3rem;
}

.hero-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-badges span {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.8rem 1rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.04);
}

.hero-panel {
  display: grid;
  gap: 1rem;
}

.mini-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.mini-label {
  display: inline-block;
  background: var(--yellow-soft);
  color: #735b00;
  font-weight: 900;
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  margin-bottom: 0.8rem;
  font-size: 0.84rem;
}

.mini-card h2 {
  margin: 0 0 0.6rem;
  font-size: 2rem;
  line-height: 1;
}

.mini-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.15rem;
  box-shadow: 0 12px 25px rgba(16,24,40,0.05);
}

.stat-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.95rem 1.35rem;
  font-weight: 900;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 12px 25px rgba(255, 210, 0, 0.22);
}

.btn-primary:hover {
  background: #ffe56b;
}

.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}

.btn-lg {
  padding: 1rem 1.45rem;
}

.btn-xl {
  padding: 1.05rem 1.7rem;
  font-size: 1.03rem;
}

.btn-block {
  width: 100%;
}

.proof-strip {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 1rem 0;
}

.proof-item {
  padding: 0.85rem 0.75rem;
}

.proof-item strong {
  display: block;
  margin-bottom: 0.3rem;
}

.proof-item span {
  color: var(--muted);
}

.section {
  padding: 5rem 0;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading.center {
  text-align: center;
}

.section-heading h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  max-width: 64ch;
}

.services {
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--green);
  border-radius: 22px;
  padding: 1.45rem;
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.05);
}

.service-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.15rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.process {
  background: linear-gradient(180deg, #f3fde9 0%, #e8f9dd 100%);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.step-card {
  background: var(--white);
  border: 1px solid #dceccf;
  border-radius: 22px;
  padding: 1.45rem;
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.04);
}

.step-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 900;
  margin-bottom: 0.9rem;
}

.step-card h3 {
  margin: 0 0 0.45rem;
}

.step-card p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
}

.areas {
  background: var(--white);
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.areas-grid span {
  background: var(--green-soft);
  color: #215f16;
  border: 1px solid #d6efcb;
  border-radius: 999px;
  padding: 0.8rem 1rem;
  font-weight: 700;
}

.cta-section {
  background: var(--bg);
}

.cta-box {
  background: linear-gradient(135deg, #ffffff, #f4fbef);
  border: 1px solid #deedd3;
  border-radius: 28px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  box-shadow: var(--shadow);
}

.cta-box h2 {
  margin: 0.2rem 0 0.55rem;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.02;
}

.cta-box p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  background: #fbfcfd;
  border-top: 1px solid var(--line);
  padding: 2rem 0 5.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr auto auto;
  gap: 1rem;
  align-items: center;
}

.footer-logo {
  width: 185px;
  height: auto;
  margin-bottom: 0.6rem;
}

.footer-brand p {
  margin: 0;
  color: var(--muted);
  max-width: 34ch;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-weight: 700;
  color: #475467;
}

.mobile-callbar {
  display: none;
}

@media (max-width: 980px) {
  .hero-grid,
  .services-grid,
  .steps-grid,
  .proof-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1160px, calc(100% - 1.2rem));
  }

  .topbar-inner,
  .nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.85rem 0;
  }

  .nav-links {
    display: none;
  }

  .nav-call,
  .topbar-call,
  .hero-actions .btn,
  .cta-box .btn {
    width: 100%;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

  .mobile-callbar {
    display: flex;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 100;
    justify-content: center;
    align-items: center;
    background: var(--yellow);
    color: var(--ink);
    border-radius: 999px;
    padding: 1rem 1.2rem;
    font-weight: 900;
    box-shadow: 0 18px 35px rgba(0,0,0,0.18);
  }

  .site-footer {
    padding-bottom: 6.5rem;
  }

  .brand-logo {
    width: min(220px, 72vw);
  }
}



.panel-btn {
  width: 100%;
}

@media (max-width: 720px) {
  .topbar-call,
  .desktop-call,
  .hero-card {
    display: none !important;
  }

  .hero {
    padding: 2.75rem 0 3.25rem;
  }

  .hero-copy h1 {
    font-size: 2.75rem;
    max-width: 10ch;
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .hero-actions {
    width: 100%;
    gap: 0.7rem;
    margin-bottom: 1rem;
  }

  .hero-actions .btn {
    padding: 0.9rem 1rem;
  }

  .hero-badges span {
    padding: 0.65rem 0.85rem;
    font-size: 0.92rem;
  }

  .callout-box {
    padding: 1.4rem;
  }
}



@media (max-width: 720px) {
  .hero-actions .btn-primary {
    display: none !important;
  }
}
