:root {
  --green: #0D4A3A;
  --green-mid: #12704E;
  --green-light: #E8F4EE;
  --amber: #F5A623;
  --amber-light: #FEF3DC;
  --dark: #1A1A1A;
  --mid: #5C5C5C;
  --light: #F7F7F5;
  --white: #FFFFFF;
  --border: #E0E0DC;

  --font-heading: 'DM Sans', system-ui, sans-serif;
  --font-body: 'Instrument Sans', system-ui, sans-serif;

  --radius: 8px;
  --radius-lg: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--light);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* --- HERO --- */
.hero {
  background: var(--green);
  color: var(--white);
  padding: 80px 40px 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 28px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  display: inline-block;
}

.hero-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: var(--amber);
  color: var(--dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s;
}

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

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color 0.2s;
}

.btn-ghost:hover { border-color: rgba(255,255,255,0.7); }

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

.stat-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  backdrop-filter: blur(4px);
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 6px;
}

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

/* --- PROCESS --- */
.process {
  padding: 80px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 56px;
}

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

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}

.section-sub {
  font-size: 17px;
  color: var(--mid);
  margin-top: 12px;
}

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

.process-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow 0.2s;
}

.process-card:hover {
  box-shadow: 0 8px 32px rgba(13,74,58,0.08);
}

.process-number {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: var(--amber);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.process-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.process-card p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.65;
}

/* --- SERVICES --- */
.services {
  background: var(--white);
  padding: 80px 40px;
}

.services-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

.services-desc {
  font-size: 17px;
  color: var(--mid);
  margin: 12px 0 32px;
}

.services-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.services-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.check-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
}

.services-list strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.services-list span {
  font-size: 14px;
  color: var(--mid);
}

.industry-card,
.coverage-card {
  background: var(--green-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
}

.industry-card h4,
.coverage-card h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 16px;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.industry-tag {
  display: inline-block;
  padding: 5px 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--mid);
}

.coverage-cities {
  font-size: 14px;
  color: var(--green-mid);
  line-height: 1.7;
}

/* --- PRICING --- */
.pricing {
  padding: 80px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

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

.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
}

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

.pricing-badge {
  display: inline-block;
  background: var(--amber);
  color: var(--dark);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.pricing-tier {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.featured .pricing-tier { color: rgba(255,255,255,0.6); }

.pricing-price {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 8px;
}

.featured .pricing-price { color: var(--white); }

.per-mo {
  font-size: 20px;
  font-weight: 600;
}

.pricing-tagline {
  font-size: 14px;
  color: var(--mid);
  margin-bottom: 28px;
}

.featured .pricing-tagline { color: rgba(255,255,255,0.7); }

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-features li {
  font-size: 14px;
  color: var(--mid);
  padding-left: 20px;
  position: relative;
}

.pricing-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.featured .pricing-features li { color: rgba(255,255,255,0.85); }
.featured .pricing-features li::before { color: var(--amber); }

.pricing-cta {
  display: block;
  text-align: center;
  padding: 14px 20px;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s;
}

.pricing-cta:hover { background: var(--green-mid); }

.pricing-cta.featured-cta {
  background: var(--amber);
  color: var(--dark);
}

.pricing-cta.featured-cta:hover { background: #e09510; }

/* --- TESTIMONIALS --- */
.testimonials {
  background: var(--light);
  padding: 80px 40px;
}

.testimonials-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.quote-mark {
  font-family: var(--font-heading);
  font-size: 64px;
  line-height: 0.5;
  color: var(--amber);
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 20px;
}

.author-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--dark);
}

.author-meta {
  font-size: 13px;
  color: var(--mid);
  margin-top: 2px;
}

/* --- CLOSING --- */
.closing {
  background: var(--green);
  padding: 80px 40px;
  text-align: center;
}

.closing-content {
  max-width: 640px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.closing p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 36px;
}

.closing-cta .btn-primary {
  font-size: 16px;
  padding: 16px 36px;
}

/* --- FOOTER --- */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  padding: 40px 40px 24px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  display: block;
  margin-bottom: 6px;
}

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

.footer-links {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; }
  .stat-card { flex: 1 1 140px; }
  .process-grid { grid-template-columns: 1fr; }
  .services-layout { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 600px) {
  .hero { padding: 60px 24px 80px; }
  .process, .services, .pricing, .testimonials, .closing { padding: 60px 24px; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
}
