/* =====================================================
   style.css — Global light theme
   Colors: white, light-grey, green (#1a7a3c), red (#c0392b)
===================================================== */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:       #1a7a3c;
  --green-dark:  #145f2e;
  --green-light: #e8f5ee;
  --red:         #c0392b;
  --red-dark:    #962d22;
  --red-light:   #fdecea;
  --white:       #ffffff;
  --grey-50:     #f9f9f9;
  --grey-100:    #f2f2f2;
  --grey-200:    #e0e0e0;
  --grey-400:    #aaaaaa;
  --grey-600:    #666666;
  --grey-800:    #333333;
  --black:       #111111;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.08);
  --shadow-md:   0 6px 24px rgba(0,0,0,.10);
  --shadow-lg:   0 16px 48px rgba(0,0,0,.13);
  --radius:      10px;
  --transition:  0.25s ease;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--white);
  color: var(--grey-800);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: var(--green); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--green-dark); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
p  { margin-bottom: 1rem; color: var(--grey-600); }

/* ── Typography ── */
h1,h2,h3,h4,h5 { color: var(--black); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem,5vw,3.2rem); }
h2 { font-size: clamp(1.5rem,3.5vw,2.3rem); }
h3 { font-size: clamp(1.1rem,2.5vw,1.5rem); }
h4 { font-size: 1rem; }
.accent  { color: var(--green); }
.accent2 { color: var(--red); }
.section-label {
  font-size: .72rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--green); font-weight: 800; margin-bottom: .5rem; display: block;
}
.section-title    { margin-bottom: 1rem; }
.section-subtitle { color: var(--grey-600); max-width: 600px; margin-bottom: 3rem; }

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5rem 0; background: var(--white); }
.section-alt { background: var(--grey-100); }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 1.5rem; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .7rem 1.6rem; border-radius: 6px;
  font-weight: 700; font-size: .92rem; cursor: pointer;
  border: 2px solid transparent; transition: var(--transition);
  text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); color: var(--white); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline:hover { background: var(--green); color: var(--white); transform: translateY(-2px); }
.btn-red { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-red:hover { background: var(--red-dark); color: var(--white); transform: translateY(-2px); }
.btn-sm { padding: .4rem 1rem; font-size: .82rem; }
.btn-block { width: 100%; justify-content: center; }

/* ── Cards ── */
.card {
  background: var(--white); border: 1px solid var(--grey-200);
  border-radius: var(--radius); padding: 2rem;
  transition: var(--transition); position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--red));
  opacity: 0; transition: var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--grey-200); }
.card:hover::before { opacity: 1; }
.card-icon {
  width: 54px; height: 54px; border-radius: 12px;
  background: var(--green-light); display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem; margin-bottom: 1.25rem;
}
.card-compact { padding: 1.25rem; }

/* ── Tags / Badges ── */
.tag {
  display: inline-block; padding: .2rem .7rem; border-radius: 50px;
  font-size: .72rem; font-weight: 700; margin: .2rem;
  background: var(--grey-100); color: var(--grey-800); border: 1px solid var(--grey-200);
}
.badge {
  display: inline-block; padding: .25rem .8rem; border-radius: 50px;
  font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
}
.badge-primary { background: var(--green-light); color: var(--green); border: 1px solid rgba(26,122,60,.3); }
.badge-success { background: var(--green-light); color: var(--green); border: 1px solid rgba(26,122,60,.3); }
.badge-warning { background: #fff8e1; color: #b45309; border: 1px solid #fcd34d; }
.badge-hot     { background: var(--red-light); color: var(--red); border: 1px solid rgba(192,57,43,.3); }

/* ── Divider ── */
.divider { height: 1px; background: var(--grey-200); margin: 2rem 0; }

/* =====================================================
   NAVBAR — light, fixed, mobile-fixed
===================================================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 2px solid var(--grey-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.5rem 1.5rem; max-width: 1200px; margin: 0 auto;
  min-height: 70px;
}
.nav-logo { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.nav-logo img { height: 56px; width: auto; }
.nav-logo-text { font-size: 1.05rem; font-weight: 800; color: var(--black); line-height: 1.3; }
.nav-logo-text span { color: var(--green); display: block; font-size: .65rem; letter-spacing: 2px; font-weight: 600; }
.nav-menu { display: flex; align-items: center; gap: .1rem; }
.nav-link {
  color: var(--grey-800); font-size: .86rem; font-weight: 600;
  padding: .45rem .75rem; border-radius: 6px; transition: var(--transition);
  white-space: nowrap; text-decoration: none;
}
.nav-link:hover, .nav-link.active { color: var(--green); background: var(--green-light); }
.nav-cta {
  background: var(--green) !important; color: var(--white) !important;
  border-radius: 6px; padding: .45rem 1rem !important;
  margin-left: .5rem;
}
.nav-cta:hover { background: var(--green-dark) !important; color: var(--white) !important; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--white); border: 1px solid var(--grey-200);
  border-radius: var(--radius); min-width: 230px;
  padding: .5rem; opacity: 0; visibility: hidden;
  transform: translateY(-6px); transition: var(--transition);
  box-shadow: var(--shadow-lg); z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu a {
  display: block; padding: .6rem 1rem; color: var(--grey-800);
  font-size: .86rem; border-radius: 6px; transition: var(--transition);
  text-decoration: none;
}
.nav-dropdown-menu a:hover { color: var(--green); background: var(--green-light); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none;
  z-index: 1100;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--grey-800); border-radius: 2px; transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV ── */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-menu {
    /* Hidden off-screen by default */
    position: fixed;
    top: 70px; left: 0; right: 0; bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 2rem;
    gap: 0;
    overflow-y: auto;
    border-top: 2px solid var(--grey-200);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    /* Hide with transform so it slides in */
    transform: translateX(100%);
    transition: transform .3s ease;
    /* Must be flex to show when open */
    display: flex;
  }
  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-menu .nav-link {
    font-size: 1rem; padding: .85rem 1rem;
    border-bottom: 1px solid var(--grey-100);
    border-radius: 0; color: var(--grey-800);
  }
  .nav-menu .nav-link:hover, .nav-menu .nav-link.active {
    color: var(--green); background: var(--green-light);
    border-radius: 8px;
  }
  .nav-menu li:last-child .nav-link { border-bottom: none; }

  /* Dropdown on mobile */
  .nav-dropdown { width: 100%; }
  .nav-dropdown > .nav-link { width: 100%; display: flex; justify-content: space-between; }
  .nav-dropdown-menu {
    position: static; opacity: 1; visibility: visible;
    transform: none; box-shadow: none;
    background: var(--grey-50); border: 1px solid var(--grey-200);
    margin: .25rem 0 .5rem; border-radius: 8px;
    padding: .25rem; display: none;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-dropdown-menu a { padding: .65rem 1.25rem; font-size: .9rem; }

  /* CTA button in mobile menu */
  .nav-cta {
    margin: 1rem 0 0 !important;
    text-align: center; justify-content: center;
    border-radius: 8px !important; padding: .85rem 1rem !important;
  }
}

/* =====================================================
   PAGE HERO (inner pages)
===================================================== */
.page-hero {
  padding: 8rem 0 4rem;
  background: var(--grey-100);
  border-bottom: 2px solid var(--grey-200);
  position: relative; overflow: hidden;
}
.page-hero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .12;
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  font-size: .82rem; color: var(--grey-400); margin-bottom: 1rem;
}
.breadcrumb a { color: var(--grey-600); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { color: var(--green); font-weight: 700; }
.text-hero { font-size: 1.05rem; color: var(--grey-600); max-width: 600px; margin-top: .75rem; }

/* =====================================================
   HIGHLIGHT BAR
===================================================== */
.highlight-bar {
  background: var(--white); border-bottom: 2px solid var(--grey-200);
  padding: 2rem 0;
}
.highlight-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 0; }
.highlight-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.25rem 1.5rem; border-right: 1px solid var(--grey-200);
}
.highlight-item:last-child { border-right: none; }
.highlight-icon { font-size: 2rem; flex-shrink: 0; }
.highlight-text h4 { font-size: .92rem; color: var(--black); margin-bottom: .15rem; }
.highlight-text p  { font-size: .78rem; color: var(--grey-600); margin: 0; }

/* =====================================================
   TEAM CARDS
===================================================== */
.team-card {
  background: var(--white); border: 1px solid var(--grey-200);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-card-header {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  padding: 2rem; text-align: center;
}
.team-card-header h3 { color: var(--white); }
.team-avatar {
  width: 90px; height: 90px; border-radius: 50%; margin: 0 auto 1rem;
  background: rgba(255,255,255,.2); border: 3px solid rgba(255,255,255,.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; font-weight: 900; color: var(--white);
}
.team-card-body { padding: 1.5rem; }

/* =====================================================
   PROCESS STEPS
===================================================== */
.process-steps { display: flex; flex-direction: column; gap: 1rem; }
.process-step {
  display: flex; gap: 1.25rem; padding: 1.25rem;
  background: var(--white); border: 1px solid var(--grey-200);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.process-step:hover { border-color: var(--green); box-shadow: var(--shadow-md); }
.step-num {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--green); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem;
}
.step-content h4 { font-size: .95rem; margin-bottom: .3rem; color: var(--black); }
.step-content p  { margin: 0; font-size: .88rem; color: var(--grey-600); }

/* =====================================================
   PRICING
===================================================== */
.pricing-card {
  background: var(--white); border: 2px solid var(--grey-200);
  border-radius: var(--radius); padding: 2rem;
  box-shadow: var(--shadow-sm); transition: var(--transition);
  position: relative; overflow: hidden;
}
.pricing-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--green);
}
.pricing-card.featured { border-color: var(--green); box-shadow: var(--shadow-lg); }
.pricing-card.featured::before { background: linear-gradient(90deg, var(--green), var(--red)); }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-range { font-size: 1.6rem; font-weight: 900; color: var(--green); margin: .5rem 0; }
.price-period { font-size: .8rem; color: var(--grey-600); font-weight: 400; }
.pricing-features { margin: 1.5rem 0; }
.pricing-features li { padding: .4rem 0; font-size: .9rem; display: flex; align-items: center; gap: .5rem; color: var(--grey-800); }
.pricing-features li::before { content: '✓'; color: var(--green); font-weight: 800; flex-shrink: 0; }
.pricing-card .btn { width: 100%; justify-content: center; margin-top: .5rem; }

/* =====================================================
   BLOG / PORTFOLIO CARDS
===================================================== */
.post-card {
  background: var(--white); border: 1px solid var(--grey-200);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.post-card-img {
  height: 200px; background: var(--grey-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; position: relative; overflow: hidden;
}
.post-card-body { padding: 1.5rem; }
.post-meta { font-size: .78rem; color: var(--grey-400); margin-bottom: .75rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.post-card h3 { font-size: 1.05rem; margin-bottom: .6rem; color: var(--black); }
.post-card p  { font-size: .88rem; color: var(--grey-600); margin-bottom: 1rem; }

/* =====================================================
   CONTACT
===================================================== */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start; }
.contact-form {
  background: var(--white); border: 1px solid var(--grey-200);
  border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .86rem; font-weight: 700; margin-bottom: .4rem; color: var(--grey-800); }
.form-control {
  width: 100%; padding: .75rem 1rem;
  background: var(--grey-50); border: 1px solid var(--grey-200);
  border-radius: 8px; color: var(--black); font-size: .95rem;
  transition: var(--transition); font-family: inherit;
}
.form-control:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(26,122,60,.12); background: var(--white); }
.form-control::placeholder { color: var(--grey-400); }
textarea.form-control { resize: vertical; min-height: 140px; }
.field-error { display: block; font-size: .78rem; color: var(--red); margin-top: .3rem; min-height: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-info-icon {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: var(--green-light); display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.contact-info-text h4 { font-size: .9rem; margin-bottom: .2rem; color: var(--black); }
.contact-info-text p, .contact-info-text a { font-size: .88rem; color: var(--grey-600); margin: 0; }
.contact-info-text a:hover { color: var(--green); }
.form-status { display: none; padding: 1rem 1.25rem; border-radius: 8px; margin-bottom: 1.25rem; font-size: .92rem; font-weight: 700; }
.form-status.success { display: block; background: var(--green-light); border: 1px solid rgba(26,122,60,.3); color: var(--green); }
.form-status.error   { display: block; background: var(--red-light); border: 1px solid rgba(192,57,43,.3); color: var(--red); }

/* =====================================================
   FOOTER
===================================================== */
.footer { background: var(--grey-800); color: #ccc; padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { font-size: .88rem; color: #aaa; margin: 1rem 0 1.5rem; max-width: 280px; }
.footer-logo { display: flex; align-items: center; gap: .75rem; margin-bottom: .5rem; }
.footer-logo img { height: 52px; border-radius: 6px; }
.footer-logo-text { font-size: .95rem; font-weight: 800; color: var(--white); }
.footer-logo-text span { color: #6ee89a; display: block; font-size: .62rem; letter-spacing: 2px; }
.footer-col h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: 2px; color: #6ee89a; margin-bottom: 1.25rem; font-weight: 800; }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a { color: #aaa; font-size: .86rem; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem; font-size: .8rem; color: #888;
}
.social-links { display: flex; gap: .75rem; }
.social-link {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: #aaa; font-size: .88rem; transition: var(--transition);
}
.social-link:hover { background: var(--green); border-color: var(--green); color: var(--white); }

/* =====================================================
   CTA SECTION
===================================================== */
.cta-section {
  background: var(--green); padding: 5rem 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -60%; right: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p  { color: rgba(255,255,255,.85); max-width: 550px; margin: 0 auto 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-section .btn-primary { background: var(--white); color: var(--green); border-color: var(--white); }
.cta-section .btn-primary:hover { background: var(--grey-100); color: var(--green-dark); }
.cta-section .btn-outline { border-color: rgba(255,255,255,.7); color: var(--white); }
.cta-section .btn-outline:hover { background: var(--white); color: var(--green); }

/* =====================================================
   MISC COMPONENTS
===================================================== */
.accordion-item { border: 1px solid var(--grey-200); border-radius: var(--radius); margin-bottom: .75rem; overflow: hidden; }
.accordion-header { padding: 1.1rem 1.5rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; background: var(--white); transition: var(--transition); }
.accordion-header:hover { background: var(--grey-50); }
.accordion-header h4 { font-size: .95rem; margin: 0; color: var(--black); }
.accordion-icon { color: var(--green); font-size: 1.2rem; transition: var(--transition); }
.accordion-body { padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s ease; }
.accordion-body.open { max-height: 500px; padding: 1.25rem 1.5rem; }
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.map-placeholder { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--grey-200); height: 350px; background: var(--grey-100); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.map-placeholder .map-icon { font-size: 3rem; }
.case-studies-list { display: flex; flex-direction: column; gap: 3rem; }
.case-study-card { display: grid; grid-template-columns: 1fr 2fr; gap: 2rem; align-items: start; }
.case-study-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-bottom: 1.5rem; }
.case-study-visual { background: var(--grey-100); border-radius: 10px; height: 200px; display: flex; align-items: center; justify-content: center; font-size: 4rem; border: 1px solid var(--grey-200); }
.two-col-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.two-col-layout-wide { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: center; }
.highlight-box { padding: 1rem; background: var(--green-light); border-radius: 8px; border-left: 3px solid var(--green); }
.highlight-box h4 { font-size: .92rem; margin-bottom: .3rem; color: var(--black); }
.highlight-box p  { font-size: .85rem; color: var(--grey-600); margin: 0; }
.subscribe-card { max-width: 500px; margin: 3rem auto 0; text-align: center; }
.subscribe-form { display: flex; gap: .75rem; margin-top: 1rem; }
.subscribe-form .form-control { flex: 1; }
.stat-row { display: flex; gap: 2rem; flex-wrap: wrap; margin-top: 2rem; }
.stat-item { text-align: center; }
.stat-num { font-size: 1.8rem; font-weight: 900; color: var(--green); line-height: 1; }
.stat-label { font-size: .72rem; color: var(--grey-600); text-transform: uppercase; letter-spacing: 1px; }
.team-contact { font-size: .85rem; color: var(--grey-600); margin: 0; }
.team-contact + .team-contact { margin-top: .25rem; }
.section-heading { margin-bottom: 2rem; }
.section-heading-sm { margin-bottom: 1.25rem; font-size: 1.05rem; }
.job-card-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; }
.job-card-inner h4 { margin-bottom: .25rem; color: var(--black); }
.job-card-inner p  { font-size: .85rem; color: var(--grey-600); margin: 0; }
.grid-2-narrow { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 1rem; margin-top: 1.5rem; }
.step-list { display: flex; flex-direction: column; gap: .75rem; }
.step-item { display: flex; gap: .75rem; align-items: flex-start; font-size: .9rem; color: var(--grey-800); }
.step-num-label { color: var(--green); font-weight: 800; flex-shrink: 0; min-width: 1.5rem; }
.checklist { display: flex; flex-direction: column; gap: .4rem; margin: 1rem 0; }
.checklist li { font-size: .9rem; display: flex; gap: .5rem; align-items: center; color: var(--grey-800); }
.checklist li::before { content: '✓'; color: var(--green); font-weight: 800; flex-shrink: 0; }
.process-steps-wrap { max-width: 700px; margin: 2rem auto 0; }
.card-accent-green { border-color: rgba(26,122,60,.3); }

/* Utility */
.mt-0{margin-top:0}.mt-sm{margin-top:.5rem}.mt-md{margin-top:1rem}.mt-lg{margin-top:1.5rem}.mt-xl{margin-top:2rem}
.mb-0{margin-bottom:0}.mb-sm{margin-bottom:.5rem}.mb-md{margin-bottom:1rem}.mb-lg{margin-bottom:1.5rem}.mb-xl{margin-bottom:2rem}
.text-accent{color:var(--green)}.text-muted{color:var(--grey-600)}.text-white{color:var(--white)}
.text-sm{font-size:.9rem}.text-xs{font-size:.82rem}.font-bold{font-weight:700}.uppercase{text-transform:uppercase;letter-spacing:1px}
.w-full{width:100%}.max-w-sm{max-width:500px}.max-w-md{max-width:600px}.max-w-lg{max-width:800px}.max-w-xl{max-width:900px}
.mx-auto{margin-left:auto;margin-right:auto}.h-full{height:100%}
.flex{display:flex}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}
.items-center{align-items:center}.items-start{align-items:flex-start}
.justify-center{justify-content:center}.justify-between{justify-content:space-between}
.gap-xs{gap:.5rem}.gap-sm{gap:.75rem}.gap-md{gap:1rem}.gap-lg{gap:1.5rem}.gap-xl{gap:2rem}
.flex-shrink-0{flex-shrink:0}

/* Scroll animation */
.animate-on-scroll { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* =====================================================
   RESPONSIVE — non-mobile nav already handled above
===================================================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .case-study-card { grid-template-columns: 1fr; }
  .two-col-layout, .two-col-layout-wide { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form { padding: 1.5rem; }
  .case-study-stats { grid-template-columns: repeat(3,1fr); gap: .5rem; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .highlight-grid { grid-template-columns: 1fr 1fr; }
  .process-step { flex-direction: column; gap: 1rem; }
  .page-hero { padding: 6rem 0 3rem; }
  .subscribe-form { flex-direction: column; }
}
@media (max-width: 480px) {
  .section { padding: 3rem 0; }
  .container { padding: 0 1rem; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  .card { padding: 1.25rem; }
  .highlight-grid { grid-template-columns: 1fr; }
  .case-study-stats { grid-template-columns: 1fr; }
}
