@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

:root {
  --green: #059669;
  --green-dark: #047857;
  --green-light: #ECFDF5;
  --green-mid: #065F46;
  --amber: #F59E0B;
  --amber-dark: #D97706;
  --charcoal: #111827;
  --charcoal-mid: #1F2937;
  --slate: #374151;
  --text: #1F2937;
  --text-light: #6B7280;
  --border: #E5E7EB;
  --bg: #F9FAFB;
  --white: #FFFFFF;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
a { color: inherit; }

/* ---- NAV ---- */
.nav {
  background: var(--white);
  border-bottom: 3px solid var(--green);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 20px; height: 20px; fill: white; }
.logo-wordmark { display: flex; flex-direction: column; line-height: 1; }
.logo-top { font-size: 0.65rem; font-weight: 700; color: var(--green); letter-spacing: 1.5px; text-transform: uppercase; }
.logo-bottom { font-size: 1rem; font-weight: 900; color: var(--charcoal); letter-spacing: -0.3px; }
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--slate);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
  transition: color 0.2s;
  text-transform: uppercase;
}
.nav-links a:hover, .nav-links a.active { color: var(--green); }
.nav-right { display: flex; align-items: center; gap: 1.25rem; }
.nav-phone {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--charcoal);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-phone svg { color: var(--green); }
.btn-nav {
  background: var(--amber);
  color: var(--charcoal);
  padding: 0.55rem 1.35rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
}
.btn-nav:hover { background: var(--amber-dark); transform: translateY(-1px); color: var(--charcoal); }

/* Hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.25rem; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; }
.nav-mobile { display: none; background: var(--white); border-top: 1px solid var(--border); padding: 1rem 1.5rem 1.5rem; }
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; display: flex; flex-direction: column; }
.nav-mobile a { text-decoration: none; color: var(--text); font-weight: 600; font-size: 0.9rem; padding: 0.7rem 0; display: block; border-bottom: 1px solid var(--border); text-transform: uppercase; letter-spacing: 0.3px; }
.nav-mobile .btn-nav { margin-top: 1rem; display: inline-block; }

/* ---- BUTTONS ---- */
.btn-primary {
  background: var(--amber);
  color: var(--charcoal);
  padding: 0.9rem 2.25rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--amber-dark); color: var(--charcoal); transform: translateY(-1px); }
.btn-white-outline {
  background: transparent;
  color: white;
  padding: 0.9rem 2.25rem;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.5);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.2s;
  display: inline-block;
}
.btn-white-outline:hover { border-color: white; background: rgba(255,255,255,0.1); color: white; }
.btn-green {
  background: var(--green);
  color: white;
  padding: 0.9rem 2.25rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background 0.2s;
  display: inline-block;
}
.btn-green:hover { background: var(--green-dark); color: white; }
.btn-green-outline {
  background: transparent;
  color: var(--green);
  padding: 0.9rem 2.25rem;
  border-radius: 6px;
  border: 2px solid var(--green);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.2s;
  display: inline-block;
}
.btn-green-outline:hover { background: var(--green); color: white; }

/* ---- HERO ---- */
.hero {
  background: var(--green);
  color: white;
  padding: 90px 1.5rem 130px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 64px), 0 100%);
  margin-bottom: -64px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0.03) 0px,
    rgba(255,255,255,0.03) 1px,
    transparent 1px,
    transparent 40px
  );
  pointer-events: none;
}
.hero-inner { max-width: 820px; margin: 0 auto; position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 1.1rem;
  border-radius: 20px;
  margin-bottom: 1.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 1.25rem;
}
.hero h1 em { color: var(--amber); font-style: normal; }
.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.25rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
  font-weight: 500;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- STATS ---- */
.stats-strip {
  background: var(--charcoal);
  padding: 2.5rem 1.5rem;
  position: relative;
  z-index: 1;
}
.stats-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-num { font-size: 2.25rem; font-weight: 900; color: var(--amber); letter-spacing: -0.5px; }
.stat-lbl { font-size: 0.8rem; color: #9CA3AF; margin-top: 0.25rem; font-weight: 500; letter-spacing: 0.3px; }

/* ---- SECTION ---- */
.section { padding: 88px 1.5rem; }
.section-alt { background: var(--bg); }
.section-green { background: var(--green); color: white; }
.section-dark { background: var(--charcoal); color: white; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green);
  margin-bottom: 0.75rem;
}
.section-green .eyebrow { color: var(--amber); }
.section-dark .eyebrow { color: var(--amber); }
.section h2 {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--charcoal);
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.section-green h2, .section-dark h2 { color: white; }
.section p.lead {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
  font-weight: 500;
}
.section-green p.lead, .section-dark p.lead { color: rgba(255,255,255,0.8); }

/* ---- INDUSTRIES GRID ---- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.industry-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.35rem 1rem;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  cursor: default;
}
.industry-card:hover {
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(5,150,105,0.12);
  transform: translateY(-2px);
}
.ind-icon { font-size: 1.75rem; margin-bottom: 0.5rem; }
.industry-card h4 { font-size: 0.8rem; font-weight: 800; color: var(--charcoal); line-height: 1.3; letter-spacing: 0.1px; }

/* ---- HOW WE WORK ---- */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.how-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  border-left: 4px solid var(--green);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.how-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.75rem;
  opacity: 0.25;
}
.how-card h3 { font-size: 1rem; font-weight: 800; color: var(--charcoal); margin-bottom: 0.5rem; }
.how-card p { font-size: 0.875rem; color: var(--text-light); line-height: 1.7; }

/* ---- WHY US ---- */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.why-text h2 { font-size: 2rem; font-weight: 900; color: white; letter-spacing: -0.3px; margin-bottom: 1rem; }
.why-text p { font-size: 0.95rem; color: rgba(255,255,255,0.8); line-height: 1.8; margin-bottom: 1rem; font-weight: 500; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.why-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}
.why-list li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background: var(--amber);
  color: var(--charcoal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  flex-shrink: 0;
}
.why-panel {
  background: white;
  border-radius: 16px;
  padding: 2.25rem;
}
.why-panel h4 { font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.2px; color: var(--text-light); margin-bottom: 1.25rem; }
.why-row { display: flex; align-items: center; gap: 1rem; padding: 0.85rem 0; border-bottom: 1px solid var(--border); }
.why-row:last-child { border-bottom: none; }
.why-row-icon { width: 42px; height: 42px; background: var(--green-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.why-row-text strong { display: block; font-size: 0.875rem; font-weight: 700; color: var(--charcoal); }
.why-row-text span { font-size: 0.78rem; color: var(--text-light); }

/* ---- TESTIMONIALS ---- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testi {
  background: white;
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  position: relative;
}
.testi::before { content: '\201C'; font-size: 4rem; color: var(--green); opacity: 0.15; position: absolute; top: 0.5rem; left: 1.25rem; line-height: 1; font-family: Georgia, serif; }
.testi-stars { color: var(--amber); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 0.75rem; }
.testi p { font-size: 0.875rem; color: var(--text); line-height: 1.75; margin-bottom: 1.25rem; position: relative; z-index: 1; }
.testi-author strong { font-size: 0.875rem; font-weight: 800; color: var(--charcoal); display: block; }
.testi-author span { font-size: 0.78rem; color: var(--text-light); font-weight: 500; }

/* ---- CTA ---- */
.cta-section {
  background: var(--charcoal);
  color: white;
  text-align: center;
  padding: 88px 1.5rem;
}
.cta-section h2 { color: white; font-size: 2.5rem; font-weight: 900; letter-spacing: -0.5px; margin-bottom: 0.75rem; }
.cta-section h2 em { color: var(--amber); font-style: normal; }
.cta-section p { color: #9CA3AF; font-size: 1rem; max-width: 520px; margin: 0 auto 2.25rem; font-weight: 500; line-height: 1.75; }
.cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ---- PAGE HERO ---- */
.page-hero {
  background: var(--green);
  color: white;
  padding: 56px 1.5rem 80px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 0 100%);
  margin-bottom: -40px;
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-bottom: 0.75rem; font-weight: 600; }
.breadcrumb a { color: var(--amber); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.page-hero h1 { font-size: 2.5rem; font-weight: 900; letter-spacing: -0.5px; margin-bottom: 0.6rem; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1rem; max-width: 580px; font-weight: 500; }

/* ---- ABOUT ---- */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-text .eyebrow { color: var(--green); }
.about-text h2 { font-size: 2rem; font-weight: 900; color: var(--charcoal); letter-spacing: -0.3px; margin-bottom: 1rem; }
.about-text p { font-size: 0.95rem; color: var(--text-light); line-height: 1.8; margin-bottom: 1rem; font-weight: 500; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 0.5rem; }
.about-stat-box { background: var(--green-light); border-radius: 10px; padding: 1.25rem; text-align: center; }
.about-stat-box .num { font-size: 2rem; font-weight: 900; color: var(--green); }
.about-stat-box .lbl { font-size: 0.78rem; color: var(--slate); font-weight: 600; margin-top: 0.2rem; }

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.value-box { text-align: center; padding: 2rem 1rem; }
.value-icon { font-size: 2.25rem; margin-bottom: 0.75rem; }
.value-box h4 { font-size: 0.9rem; font-weight: 800; color: var(--charcoal); margin-bottom: 0.4rem; }
.value-box p { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; font-weight: 500; }

/* ---- INDUSTRIES PAGE ---- */
.industries-page-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.ind-block {
  background: white;
  border-radius: 10px;
  padding: 1.75rem;
  border: 1px solid var(--border);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ind-block:hover { border-color: var(--green); box-shadow: 0 4px 16px rgba(5,150,105,0.1); }
.ind-block-icon {
  width: 48px;
  height: 48px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.ind-block-text h3 { font-size: 0.95rem; font-weight: 800; color: var(--charcoal); margin-bottom: 0.35rem; }
.ind-block-text p { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; font-weight: 500; }

/* ---- CONTACT ---- */
.contact-layout { display: grid; grid-template-columns: 300px 1fr; gap: 3rem; align-items: start; }
.contact-aside { display: flex; flex-direction: column; gap: 1rem; }
.contact-card { background: var(--bg); border-radius: 10px; padding: 1.25rem; border: 1px solid var(--border); }
.contact-card h4 { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--green); margin-bottom: 0.5rem; }
.contact-card p { font-size: 0.875rem; color: var(--text); line-height: 1.65; font-weight: 500; }
.contact-card a { color: var(--green); text-decoration: none; font-weight: 700; }
.contact-card a:hover { text-decoration: underline; }
.contact-form-box { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; min-height: 650px; }
.ghl-wrap { width: 100%; min-height: 650px; }

/* ---- FOOTER ---- */
.footer { background: var(--charcoal); color: #9CA3AF; padding: 4rem 1.5rem 1.5rem; }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 0.65fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-col ul li a { font-size: 0.8rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.75; max-width: 260px; margin-top: 1rem; font-weight: 500; }
.footer-logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.footer-logo .logo-bottom { color: white; }
.footer-logo .logo-top { color: var(--amber); }
.footer-col h5 { color: white; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a { font-size: 0.85rem; color: #9CA3AF; text-decoration: none; transition: color 0.2s; font-weight: 500; }
.footer-col ul li a:hover { color: var(--amber); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; color: #4B5563; font-weight: 500; }
.footer-bottom a { color: #6B7280; text-decoration: none; }
.footer-bottom a:hover { color: var(--amber); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .industries-grid { grid-template-columns: repeat(4, 1fr); }
  .hero h1 { font-size: 2.75rem; }
  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-panel { max-width: 500px; }
  .about-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-right { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 70px 1.5rem 110px; }
  .hero h1 { font-size: 2.1rem; }
  .stats-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .how-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .industries-page-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-hero h1 { font-size: 1.9rem; }
  .section h2 { font-size: 1.8rem; }
  .cta-section h2 { font-size: 2rem; }
}

@media (max-width: 480px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-btns, .cta-btns { flex-direction: column; align-items: center; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}
