/* =========================
   GLOBAL RESET & BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blue: #2563eb;
  --blue-dark: #1e40af;
  --green: #84cc16;
  --green-soft: #ecfccb;
  --text-dark: #0f172a;
  --text-muted: #475569;
  --border: #e2e8f0;
  --bg-soft: #f8fafc;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: #ffffff;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1280px;
  margin: auto;
  padding: 0 24px;
}

/* =========================
   HEADER / NAVBAR
========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e5e7eb;
  transition: box-shadow 0.3s ease;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 16px;
}

.logo-box {
  max-height: 72px;
  display: flex;
  align-items: center;
}

.logo-box img {
  height: 72px;
  width: auto;
  object-fit: contain;
  display: block;
}

.desktop-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.desktop-nav a {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--blue);
}

.btn-primary {
  background: var(--blue);
  color: white;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--blue-dark);
}

.btn-secondary {
  border: 1.5px solid var(--border);
  padding: 11px 22px;
  border-radius: 999px;
  color: var(--blue);
  font-weight: 600;
  font-size: 14px;
  background: white;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  border-color: var(--blue);
  background: #f0f9ff;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: all 0.3s ease;
}

.mobile-nav {
  display: none;
}

/* =========================
   HERO
========================= */
.hero {
  background:
    radial-gradient(ellipse 900px 450px at 50% -5%, #dbeafe, transparent),
    radial-gradient(ellipse 800px 450px at 85% 65%, #f7fee7, transparent);
  padding: 120px 0 140px;
  text-align: center;
}

.hero-content {
  max-width: 1100px;
  margin: 0 auto;
}

.pill {
  display: inline-block;
  background: #f7fee7;
  color: #4d7c0f;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.hero h1 {
  margin: 32px auto 24px;
  max-width: 950px;
  font-size: 64px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero h1 {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 35%, #65a30d 70%, #84cc16 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  max-width: 750px;
  margin: 0 auto;
  font-size: 19px;
  color: #475569;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Stats under hero */
.hero-content::after {
  content: "";
  display: block;
  margin-top: 80px;
}

.hero::after {
  content: "";
  display: block;
}

/* Mini stats boxes */
.hero-content > div:last-child {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 70px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================
   BRANDS
========================= */
.brands {
  background: linear-gradient(to bottom, #f0f9ff, #f7fee7);
  padding: 50px 0;
  text-align: center;
}

.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--blue);
  margin-bottom: 28px;
  font-weight: 600;
  text-transform: uppercase;
}

.brand-marquee {
  overflow: hidden;
  margin-top: 12px;
}

.brand-track {
  display: flex;
  gap: 20px;
  padding: 8px 0;
}

.brand-track span {
  background: white;
  border: 1.5px solid #cbd5e1;
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 600;
  color: var(--blue-dark);
  white-space: nowrap;
  font-size: 15px;
  transition: all 0.2s ease;
}

.brand-track span:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

/* =========================
   SERVICES
========================= */
.services {
  padding: 110px 0;
  text-align: center;
}

.services .section-eyebrow {
  color: #4d7c0f;
}

.services h2 {
  font-size: 48px;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.services h2 {
  background: linear-gradient(135deg, #475569 0%, #64748b 50%, #475569 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services > .container > p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 60px;
}

.service-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  text-align: left;
  background: white;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

.service-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-body {
  padding: 24px;
}

.service-body h3 {
  color: var(--blue-dark);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-body p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* =========================
   WHY CHOOSE US
========================= */
.why {
  padding: 110px 0;
  text-align: center;
  background: white;
}

.why .section-eyebrow {
  color: #4d7c0f;
}

.why h2 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.why h2 {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 40%, #65a30d 70%, #84cc16 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why > .container > p {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 60px;
}

.why-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-grid div {
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: left;
  background: white;
  transition: all 0.3s ease;
  position: relative;
}

.why-grid div:hover {
  border-color: var(--green);
  box-shadow: 0 8px 24px rgba(132, 204, 22, 0.1);
  transform: translateY(-4px);
}

.why-grid div::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: var(--green);
  color: white;
  border-radius: 12px;
  margin-bottom: 18px;
  font-size: 20px;
  font-weight: 700;
}

.why-grid div {
  font-weight: 600;
  font-size: 16px;
  color: var(--blue-dark);
}

.why-grid div p {
  font-weight: 400;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.5;
}

/* =========================
   APPROACH
========================= */
.approach {
  background: #f7fee7;
  padding: 110px 0;
  text-align: center;
}

.approach .section-eyebrow {
  color: #4d7c0f;
}

.approach h2 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.approach h2 {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 40%, #65a30d 70%, #84cc16 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.approach > .container > p {
  font-size: 17px;
  color: #475569;
  margin-bottom: 60px;
}

.approach-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.approach-grid div {
  border: 1.5px solid #cbd5e1;
  border-radius: 18px;
  padding: 40px 36px;
  text-align: left;
  background: white;
  transition: all 0.3s ease;
}

.approach-grid div:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.1);
  transform: translateY(-4px);
}

.approach-grid h4 {
  color: var(--blue-dark);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.approach-grid p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* =========================
   PROCESS
========================= */
.process {
  background: #f7fee7;
  padding: 110px 0;
}

.process .container {
  text-align: center;
}

.process .section-eyebrow {
  color: #4d7c0f;
}

.process h2 {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.process h2 {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 40%, #65a30d 70%, #84cc16 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.process > .container > p {
  font-size: 17px;
  color: #475569;
  margin-bottom: 60px;
}

.process-list {
  margin-top: 60px;
  max-width: 600px;
  margin-left: 40px;
  border-left: 3px solid #cbd5e1;
  text-align: left;
}

.process-list li {
  list-style: none;
  margin-bottom: 40px;
  padding-left: 32px;
  position: relative;
  font-size: 15px;
  color: var(--text-muted);
}

.process-list li:last-child {
  margin-bottom: 0;
}

.process-list li::before {
  content: "";
  width: 14px;
  height: 14px;
  background: var(--blue);
  border-radius: 50%;
  position: absolute;
  left: -8px;
  top: 5px;
  border: 3px solid #f7fee7;
}

.process-list strong {
  color: var(--blue-dark);
  font-weight: 700;
  font-size: 17px;
  display: block;
  margin-bottom: 4px;
}

/* =========================
   TESTIMONIALS
========================= */
.testimonials {
  padding: 110px 0;
  text-align: center;
  background: white;
}

.testimonials .section-eyebrow {
  color: #4d7c0f;
}

.testimonials h2 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.testimonials h2 {
  background: linear-gradient(135deg, #475569 0%, #64748b 50%, #65a30d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonials > .container > p {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 50px;
}

.testimonials blockquote {
  max-width: 900px;
  margin: 50px auto 0;
  border: 1.5px solid #e2e8f0;
  padding: 48px 52px;
  border-radius: 20px;
  background: white;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  font-size: 19px;
  line-height: 1.7;
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
}

.testimonials blockquote::before {
  content: '"';
  font-size: 72px;
  color: #cbd5e1;
  position: absolute;
  top: 20px;
  left: 32px;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonials blockquote span {
  display: block;
  margin-top: 24px;
  font-size: 15px;
  color: var(--blue-dark);
  font-weight: 600;
}

/* Testimonial dots */
.testimonials::after {
  content: "";
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
}

/* =========================
   CONTACT
========================= */
.contact {
  padding: 110px 0;
  background: #fafafa;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-box {
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  padding: 40px 36px;
  background: white;
}

.contact-box h3 {
  color: var(--blue-dark);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 28px;
}

.contact-box p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 16px;
  line-height: 1.6;
}

.contact-box strong {
  color: var(--text-dark);
  font-weight: 600;
}

.contact-box .muted {
  color: #94a3b8;
  font-size: 14px;
  margin-top: 24px;
}

.contact-cta {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: white;
  border-radius: 20px;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.contact-cta h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.contact-cta p {
  font-size: 16px;
  margin-bottom: 32px;
  opacity: 0.95;
  line-height: 1.6;
}

.contact-cta .lime {
  background: var(--green);
  color: #1a2e05;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(132, 204, 22, 0.3);
}

.contact-cta .lime:hover {
  background: #a3e635;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(132, 204, 22, 0.4);
}

/* =========================
   FOOTER
========================= */
.site-footer {
  background: #f8fafc;
  border-top: 1.5px solid #e5e7eb;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  padding: 50px 0;
  align-items: flex-start;
}

.footer-brand {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.footer-brand strong {
  display: block;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
}

.footer-links a {
  color: #64748b;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--blue);
}

.footer-bottom {
  padding: 24px 0;
  font-size: 13px;
  color: #94a3b8;
  text-align: center;
  border-top: 1px solid #e5e7eb;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-nav {
    display: none;
    flex-direction: column;
    background: white;
    border-top: 1px solid #e5e7eb;
    padding: 20px 24px;
  }

  .mobile-nav.open {
    display: flex;
  }

  .mobile-nav a {
    padding: 12px 0;
    color: #64748b;
    font-weight: 500;
    border-bottom: 1px solid #f1f5f9;
  }

  .service-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .approach-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 48px;
  }
}

@media (max-width: 640px) {
  .service-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero {
    padding: 80px 0 100px;
  }

  .services h2,
  .why h2,
  .approach h2,
  .process h2,
  .testimonials h2 {
    font-size: 32px;
  }

  .footer-top {
    flex-direction: column;
    gap: 32px;
  }
}