/* ============================================================
   GREENCLEAN GROUP — Main Stylesheet
   ============================================================ */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand Greens — del logo "Green" */
  --green-dark:   #155920;
  --green:        #1d7a2c;
  --green-mid:    #28a03c;
  --green-light:  #48c060;
  --green-pale:   #e4f5e8;

  /* Brand Navy — del logo "clean GROUP" y el trapeador */
  --navy-dark:    #0f2040;
  --navy:         #1a3668;
  --navy-mid:     #2a5090;
  --navy-light:   #4a72b5;
  --navy-pale:    #e6ecf5;

  /* Brand Cyan — de los destellos del logo */
  --cyan:         #29b8e0;
  --cyan-pale:    #e4f7fc;

  /* Neutros con tono marino */
  --black:        #0a1628;
  --dark:         #0f2040;
  --gray-900:     #1a2a45;
  --gray-700:     #364a63;
  --gray-500:     #6a7d93;
  --gray-300:     #bcc8d4;
  --gray-100:     #f0f3f7;
  --white:        #ffffff;
  --accent:       #29b8e0;

  --font-main:    'Inter', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-script:  'Satisfy', cursive;
  --radius:       10px;
  --radius-lg:    18px;
  --shadow:       0 4px 20px rgba(0,0,0,0.08);
  --shadow-md:    0 8px 40px rgba(0,0,0,0.12);
  --shadow-lg:    0 16px 60px rgba(0,0,0,0.16);
  --transition:   0.25s ease;
  --max-w:        1180px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--dark);
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; font-family: var(--font-main); font-weight: 700; color: var(--dark); }
p  { font-size: 1rem; line-height: 1.75; color: var(--gray-700); }

.highlight { color: #7df07d; }

/* --- LAYOUT --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.narrow    { max-width: 780px; }
.center    { text-align: center; }

.section { padding: 5rem 0; }
.section-light { background: var(--white); }
.section-gray  { background: var(--gray-100); }
.section-dark  { background: var(--gray-900); color: var(--white); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-green { background: var(--green); color: var(--white); }
.section-green h2, .section-green h3, .section-green h4 { color: var(--white); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* --- SECTION LABELS --- */
.section-label {
  display: inline-block;
  font-family: 'Satisfy', cursive;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--navy-mid);
  margin-bottom: 0.75rem;
}
.section-label.light { color: rgba(255,255,255,0.75); }

.section-header { margin-bottom: 3rem; }
.section-header.center { text-align: center; }
.section-desc { max-width: 640px; margin: 1rem auto 0; color: var(--gray-500); font-size: 1.05rem; }
.section-desc-lg { max-width: 680px; margin: 1rem auto 0; font-size: 1.1rem; line-height: 1.8; color: var(--gray-500); }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  letter-spacing: 0.02em;
  cursor: pointer;
}
.btn-primary {
  background: var(--green-light);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(72,192,96,0.45);
}
.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(72,192,96,0.55);
}
.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.8);
  color: var(--white);
  background: transparent;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}
.btn-white-outline {
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--white);
  background: transparent;
}
.btn-white-outline:hover { background: rgba(255,255,255,0.15); }
.btn-nav {
  background: var(--green-light);
  color: var(--white);
  padding: 0.55rem 1.25rem;
  border-radius: 6px;
  font-size: 0.9rem;
  box-shadow: 0 4px 18px rgba(72,192,96,0.45);
}
.btn-nav:hover { background: var(--green-mid); box-shadow: 0 6px 24px rgba(72,192,96,0.55); }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn-full { width: 100%; }

/* --- NAVIGATION --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.logo {
  display: flex;
  align-items: center;
}
.logo-img-nav {
  height: 44px;
  width: auto;
  display: block;
}
.logo-img-footer {
  height: 80px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a.btn-nav, .nav-links a.btn-nav:hover { color: var(--white); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* --- SERVICES DROPDOWN (MEGA MENU) --- */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-700);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color var(--transition);
}
.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle,
.nav-dropdown-toggle.active { color: var(--navy); }
.nav-dropdown-toggle i {
  font-size: 0.68rem;
  transition: transform var(--transition);
}
.nav-dropdown.open .nav-dropdown-toggle i { transform: rotate(180deg); }

.nav-mega {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.2rem 2.5rem;
  min-width: 520px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.6rem 1.8rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 200;
}
.nav-mega::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background: var(--white);
  border-left: 1px solid var(--gray-100);
  border-top: 1px solid var(--gray-100);
}
.nav-dropdown.open .nav-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-mega-col { display: flex; flex-direction: column; }
.nav-mega-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green);
  padding-bottom: 0.6rem;
  margin-bottom: 0.5rem;
  border-bottom: 2px solid var(--green-pale);
}
.nav-mega-head.commercial { color: var(--navy); border-bottom-color: var(--navy-pale); }
.nav-mega-col > a:not(.nav-mega-head) {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  padding: 0.5rem 0.55rem;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.nav-mega-col > a:not(.nav-mega-head):hover {
  background: var(--green-pale);
  color: var(--green-dark);
  transform: translateX(3px);
}
.nav-mega-col:last-of-type > a:not(.nav-mega-head):hover {
  background: var(--navy-pale);
  color: var(--navy);
}
.nav-mega-foot {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green);
}
.nav-mega-foot:hover { color: var(--green-dark); gap: 0.7rem; }

/* --- MEGA MENU: TWO-LEVEL (categories + services per category) --- */
.nav-mega-split {
  grid-template-columns: 240px 1fr;
  gap: 0.4rem 1.4rem;
  min-width: 660px;
  max-width: min(740px, calc(100vw - 24px));
  padding: 1rem 1.1rem;
}

/* left rail: the 4 categories */
.nav-mega-cats {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  border-right: 1px solid var(--gray-100);
  padding-right: 0.9rem;
}
.nav-cat {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gray-700);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 0.72rem 0.8rem;
  border-radius: 10px;
  transition: background var(--transition), color var(--transition);
}
.nav-cat-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition);
}
.nav-cat-txt { flex: 1; }
.nav-cat-arrow {
  font-size: 0.7rem;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity var(--transition), transform var(--transition);
}
.nav-cat:hover,
.nav-cat.is-active { background: var(--green-pale); color: var(--green-dark); }
.nav-cat:hover .nav-cat-arrow,
.nav-cat.is-active .nav-cat-arrow { opacity: 1; transform: translateX(0); }
.nav-cat:hover .nav-cat-ic,
.nav-cat.is-active .nav-cat-ic { background: var(--green); color: var(--white); }

/* per-category accent colors */
.nav-cat.commercial:hover, .nav-cat.commercial.is-active { background: var(--navy-pale); color: var(--navy); }
.nav-cat.commercial:hover .nav-cat-ic, .nav-cat.commercial.is-active .nav-cat-ic { background: var(--navy); color: var(--white); }
.nav-cat.hoa:hover, .nav-cat.hoa.is-active { background: var(--cyan-pale); color: var(--cyan); }
.nav-cat.hoa:hover .nav-cat-ic, .nav-cat.hoa.is-active .nav-cat-ic { background: var(--cyan); color: var(--white); }
.nav-cat.property:hover, .nav-cat.property.is-active { background: var(--green-pale); color: var(--green-mid); }
.nav-cat.property:hover .nav-cat-ic, .nav-cat.property.is-active .nav-cat-ic { background: var(--green-mid); color: var(--white); }

/* right side: service panels, one visible at a time */
.nav-mega-panels {
  position: relative;
  min-height: 240px;
  padding-top: 0.72rem; /* alinea el encabezado del panel con el 1er item de la columna izquierda */
}
.nav-mega-panel { display: none; }
.nav-mega-panel.is-active {
  display: block;
  animation: navPanelIn 0.18s ease;
}
@keyframes navPanelIn {
  from { opacity: 0; transform: translateX(6px); }
  to   { opacity: 1; transform: translateX(0); }
}
.nav-panel-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green);
  padding-bottom: 0.6rem;
  margin-bottom: 0.5rem;
  border-bottom: 2px solid var(--green-pale);
}
.nav-panel-head.commercial { color: var(--navy); border-bottom-color: var(--navy-pale); }
.nav-panel-head.hoa { color: var(--cyan); border-bottom-color: var(--cyan-pale); }
.nav-panel-head.property { color: var(--green-mid); border-bottom-color: var(--green-pale); }
.nav-panel-links {
  column-count: 2;       /* dos columnas que fluyen, sin filas rígidas que dejen huecos */
  column-gap: 0.6rem;
}
.nav-panel-links a {
  display: block;
  break-inside: avoid;   /* evita que un enlace se parta entre columnas */
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-700);
  padding: 0.48rem 0.55rem;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.nav-panel-links a:hover {
  background: var(--green-pale);
  color: var(--green-dark);
  transform: translateX(3px);
}

/* open the menu on hover (desktop only) */
@media (min-width: 769px) {
  .nav-dropdown:hover .nav-mega {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  .nav-dropdown:hover .nav-dropdown-toggle { color: var(--navy); }
  .nav-dropdown:hover .nav-dropdown-toggle i { transform: rotate(180deg); }
}

/* --- HERO (HOME) --- */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--green-dark) 0%, var(--green) 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(41,184,224,0.15) 0%, transparent 60%);
}
.hero > .container {
  position: relative;
  z-index: 3;
  width: 100%;
}
.hero-content {
  padding-top: 5rem;
  padding-bottom: 5rem;
  max-width: min(600px, 54%);
}
.hero-image-wrap {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 48vw;
  max-width: 48vw;
  z-index: 2;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.hero-team-img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom right;
  filter: drop-shadow(-20px 0 60px rgba(0,0,0,0.4));
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-headline {
  color: var(--white);
  font-size: clamp(1.9rem, 3.6vw, 3.1rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  max-width: 560px;
}
.hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.75;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}
.badge-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
}

/* --- TRUST BAR --- */
.trust-bar {
  background: var(--navy);
  padding: 2rem 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.trust-item { padding: 0.75rem; }
.trust-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  font-family: var(--font-display);
}
.trust-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.3rem;
}

/* --- VISUAL CARDS --- */
.visual-card {
  background: var(--green);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
}
.visual-card.dark {
  background: var(--gray-900);
  border: 1px solid rgba(255,255,255,0.06);
}
.big-quote {
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--white);
  margin-bottom: 1.25rem;
  font-family: var(--font-display);
}
.dark-quote { color: var(--white); }
.quote-attr { font-size: 0.85rem; color: rgba(255,255,255,0.6); font-weight: 600; display: block; }
.light-attr { color: var(--cyan); }

.values-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.value-chip {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
}
.divider-line {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 1.5rem 0;
}

/* --- CHECK LIST --- */
.check-list { margin: 1rem 0 1.5rem; }
.check-list li {
  padding: 0.45rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: var(--gray-700);
  font-size: 0.98rem;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* --- SERVICES GRID (HOME) --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}
.service-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.service-card h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}
.service-card p { color: rgba(255,255,255,0.72); font-size: 0.95rem; margin-bottom: 1.25rem; }
.link-arrow {
  color: var(--cyan);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap var(--transition);
}
.link-arrow:hover { color: #6dd6f0; }

/* --- WHY GRID --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.why-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.why-card h4 { margin-bottom: 0.6rem; font-size: 1.05rem; }
.why-card p { font-size: 0.93rem; color: var(--gray-500); }

/* --- BEFORE & AFTER --- */
.before-after {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: start;
}
.ba-title {
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  display: inline-block;
}
.ba-title.before { background: rgba(220,50,50,0.15); color: #ff8a8a; }
.ba-title.after  { background: rgba(90,200,90,0.15); color: #7de498; }
.ba-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.97rem;
}
.x-icon { color: #ff6b6b; font-size: 1.1rem; flex-shrink: 0; }
.check-icon { color: #6be07a; font-size: 1.1rem; flex-shrink: 0; }
.ba-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 3rem;
}
.ba-arrow {
  font-size: 2rem;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
}

/* --- INDUSTRIES GRID --- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.industry-item {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.industry-item span { font-size: 2rem; }
.industry-item:hover {
  background: var(--navy-pale);
  border-color: var(--navy-mid);
  color: var(--navy-dark);
}

/* --- PROCESS STEPS --- */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  text-align: center;
  padding: 0 1rem;
}
.step-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
}
.step h4 { margin-bottom: 0.5rem; font-size: 1rem; }
.step p  { font-size: 0.9rem; color: var(--gray-500); }
.step-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--green-mid), var(--cyan));
  margin-top: 3rem;
  flex-shrink: 0;
}

/* --- TESTIMONIALS --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 1rem; }
.testimonial-text {
  font-size: 0.97rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 42px;
  height: 42px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--dark); }
.testimonial-author span  { font-size: 0.8rem; color: var(--gray-500); }

/* --- CTA BANNER --- */
.cta-banner {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 5rem 0;
  text-align: center;
}
.cta-content h2 { color: var(--white); margin-bottom: 1rem; }
.cta-content p  { color: rgba(255,255,255,0.75); max-width: 580px; margin: 0 auto 2rem; font-size: 1.05rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* --- SITE FOOTER --- */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.75);
  padding-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-top: 1rem; color: rgba(255,255,255,0.55); }
.footer-tagline { font-style: italic; color: var(--cyan) !important; margin-top: 1rem !important; }
.footer-nav h4, .footer-services h4, .footer-contact h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-family: var(--font-main);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}
.footer-nav ul li, .footer-services ul li, .footer-contact ul li {
  margin-bottom: 0.6rem;
}
.footer-nav a, .footer-services a, .footer-contact a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-nav a:hover, .footer-services a:hover, .footer-contact a:hover { color: var(--cyan); }
.footer-contact li { display: flex; align-items: flex-start; gap: 0.5rem; }
.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }

/* --- PAGE HERO --- */
.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--green-dark) 0%, var(--green) 100%);
  overflow: hidden;
}
.page-hero.page-hero-short { min-height: 42vh; }
.page-hero-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.13;
  z-index: 0;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(41,184,224,0.15) 0%, transparent 65%);
  z-index: 1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 1.5rem;
}
.page-hero-content h1 { color: var(--white); max-width: 680px; }
.page-hero-content p  { color: rgba(255,255,255,0.75); max-width: 560px; margin: 1rem 0 2rem; font-size: 1.1rem; }

/* --- SERVICE BADGE --- */
.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--navy-pale);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  border: 1px solid rgba(26,54,104,0.2);
}

/* --- SERVICE VISUAL CARDS (SERVICES PAGE) --- */
.service-visual-card {
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
}
/* LEFT cards — tonos verdes */
.service-visual-card.green  { background: #1d7a2c; }
.service-visual-card.orange { background: #28a03c; }
.service-visual-card.teal   { background: #155920; }
/* RIGHT cards — tonos azul/marino */
.service-visual-card.blue   { background: #1a3668; }
.service-visual-card.purple { background: #0f2040; }
.service-icon-lg { font-size: 4rem; margin-bottom: 1.25rem; }
.service-visual-card h3 { color: var(--white); margin-bottom: 1rem; font-size: 1.1rem; }
.simple-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.simple-list li::before { content: '→'; color: rgba(255,255,255,0.5); }
.service-highlight {
  background: var(--navy-pale);
  border-left: 4px solid var(--navy);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
  font-size: 0.93rem;
  color: var(--navy-dark);
  line-height: 1.65;
}

/* --- ECO GRID (SERVICES PAGE) --- */
.eco-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.eco-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
}
.eco-card:hover { background: rgba(255,255,255,0.15); transform: translateY(-3px); }
.eco-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.eco-card h4 { color: var(--white); margin-bottom: 0.75rem; }
.eco-card p  { color: rgba(255,255,255,0.75); font-size: 0.92rem; }

/* --- CARDS ON LIGHT BACKGROUNDS (service detail pages & services hub) --- */
.section-light .service-card,
.section-gray  .service-card,
.section-light .eco-card,
.section-gray  .eco-card {
  background: var(--white);
  border-color: var(--gray-100);
  box-shadow: var(--shadow);
}
.section-light .service-card:hover,
.section-gray  .service-card:hover,
.section-light .eco-card:hover,
.section-gray  .eco-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.section-light .service-card h3,
.section-gray  .service-card h3,
.section-light .eco-card h4,
.section-gray  .eco-card h4 { color: var(--navy); }
.section-light .service-card p,
.section-gray  .service-card p,
.section-light .eco-card p,
.section-gray  .eco-card p { color: var(--gray-500); }
.section-light .service-icon,
.section-gray  .service-icon,
.section-light .eco-icon,
.section-gray  .eco-icon { color: var(--green); }

/* --- STATS CARD (SERVICES PAGE) --- */
.stats-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}
.stat-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.stat-item:last-child { border-bottom: none; }
.stat-icon { font-size: 1.75rem; flex-shrink: 0; }
.stat-item strong { display: block; font-size: 0.95rem; color: var(--dark); margin-bottom: 0.2rem; }
.stat-item span   { font-size: 0.85rem; color: var(--gray-500); }

/* --- FAQ --- */
.faq-list { border-top: 1px solid var(--gray-100); }
.faq-item { border-bottom: 1px solid var(--gray-100); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition);
}
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--navy);
  font-weight: 300;
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-question[aria-expanded="true"] { color: var(--navy); }
.faq-question[aria-expanded="true"]::after {
  content: '−';
  transform: none;
}
.faq-question:hover { color: var(--navy); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer.open { max-height: 400px; padding-bottom: 1.25rem; }
.faq-answer p { padding: 0 1rem; color: var(--gray-700); font-size: 0.97rem; line-height: 1.75; }

/* --- ABOUT PAGE --- */
.team-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1.75rem 0;
}
.tv-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gray-100);
  padding: 0.65rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--dark);
}

/* MVV Grid */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.mvv-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: all var(--transition);
}
.mvv-card.featured {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.3);
  transform: scale(1.02);
}
.mvv-icon { font-size: 2.5rem; margin-bottom: 1.25rem; }
.mvv-card h3 { color: var(--white); margin-bottom: 0.75rem; font-size: 1.25rem; }
.mvv-card p  { color: rgba(255,255,255,0.8); font-size: 0.97rem; line-height: 1.7; }

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  text-align: center;
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--navy-pale); }
.value-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--navy-pale);
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.value-card h4 { margin-bottom: 0.6rem; color: var(--navy); font-size: 1rem; }
.value-card p  { font-size: 0.87rem; color: var(--gray-500); line-height: 1.65; }

/* Eco Benefits */
.eco-benefits {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.eco-benefits h4 { margin-bottom: 0.75rem; }
.eco-benefits p  { font-size: 0.93rem; color: var(--gray-500); margin-bottom: 1.5rem; }
.eco-stat { margin-bottom: 1.25rem; }
.eco-stat span { font-size: 0.85rem; color: var(--gray-500); display: block; margin-bottom: 0.35rem; }
.eco-stat-bar {
  height: 8px;
  background: var(--gray-100);
  border-radius: 50px;
  overflow: hidden;
}
.eco-stat-bar::after {
  content: '';
  display: block;
  height: 100%;
  width: var(--bar-width, 50%);
  background: linear-gradient(90deg, var(--green), var(--cyan));
  border-radius: 50px;
}
.eco-disclaimer { font-size: 0.78rem !important; color: var(--gray-300) !important; margin-top: 1.5rem !important; }

/* Impact Grid */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.impact-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  text-align: center;
}
.impact-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.impact-card h4 { margin-bottom: 0.6rem; }
.impact-card p  { font-size: 0.92rem; color: var(--gray-500); }

/* Trust Reasons */
.trust-reasons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.trust-reason {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
}
.tr-icon {
  font-size: 1.1rem;
  color: var(--cyan);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.trust-reason strong { display: block; color: var(--white); font-size: 0.97rem; margin-bottom: 0.25rem; }
.trust-reason p { font-size: 0.87rem; color: rgba(255,255,255,0.55); margin: 0; }

/* --- CONTACT PAGE --- */
.contact-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}
.form-header h2 { margin-bottom: 0.5rem; }
.form-header p  { color: var(--gray-500); font-size: 0.95rem; margin-bottom: 2rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.88rem; font-weight: 600; color: var(--dark); }
.required { color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,54,104,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-300); }
.form-check {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}
.form-check input { width: auto; flex-shrink: 0; margin-top: 3px; }
.form-check label { font-size: 0.88rem; color: var(--gray-500); font-weight: 400; }
.form-note { font-size: 0.8rem; color: var(--gray-300); text-align: center; margin-top: 0.5rem; }
.form-success {
  text-align: center;
  padding: 3rem 2rem;
}
.success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 { margin-bottom: 1rem; }
.form-success p { color: var(--gray-500); }

/* --- QUOTE FORM (multi-section) --- */
.form-intro {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.form-section-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding-bottom: 0.6rem;
  margin-top: 0.75rem;
  border-bottom: 2px solid var(--green-pale);
}
.form-row-3 { grid-template-columns: 1fr 1fr 1fr; }
.field-hint {
  font-size: 0.78rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin-top: 0.15rem;
}
.field-sub {
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--gray-500);
}
.check-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0.25rem 0;
}
.check-group.input-error {
  border-left: 3px solid #e05252;
  padding-left: 0.75rem;
}
.check-option {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 400 !important;
  color: var(--gray-700) !important;
  cursor: pointer;
}
.check-option input {
  width: auto !important;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--green);
}
.file-input {
  padding: 0.7rem 1rem;
  cursor: pointer;
  background: var(--gray-100) !important;
  border-style: dashed !important;
}
.file-input::file-selector-button {
  margin-right: 0.75rem;
  border: none;
  background: var(--green);
  color: #fff;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
}

/* Sidebar */
.contact-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.sidebar-card.green-card { background: var(--navy); color: var(--white); }
.sidebar-card.green-card h3 { color: var(--white); }
.sidebar-card h3 { font-family: var(--font-main); font-size: 1rem; margin-bottom: 1.25rem; }
.contact-info-list { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.ci-icon { font-size: 1.25rem; flex-shrink: 0; }
.contact-info-list strong { display: block; font-size: 0.85rem; color: var(--dark); margin-bottom: 0.1rem; }
.contact-info-list a, .contact-info-list span { font-size: 0.88rem; color: var(--gray-500); }
.contact-info-list a:hover { color: var(--navy); }
.why-contact-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.9);
}
.why-contact-list span { color: rgba(255,255,255,0.6); font-weight: 700; }
.services-quick-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.services-quick-list li:last-child { border-bottom: none; }
.services-quick-list a {
  font-size: 0.9rem;
  color: var(--gray-700);
  transition: color var(--transition);
  font-weight: 500;
}
.services-quick-list a:hover { color: var(--green); }
.sidebar-testimonial {
  background: var(--navy-pale);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border-left: 4px solid var(--navy);
}
.sidebar-testimonial p {
  font-size: 0.9rem;
  font-style: italic;
  margin: 0.5rem 0;
  color: var(--dark);
}
.sidebar-testimonial span { font-size: 0.8rem; color: var(--gray-500); font-weight: 600; }

/* Trust Strip */
.trust-strip {
  background: var(--gray-100);
  border-top: 1px solid var(--gray-300);
  border-bottom: 1px solid var(--gray-300);
  padding: 1.5rem 0;
}
.trust-strip-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.ts-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}
.ts-icon { font-size: 1.25rem; }
.ts-divider { width: 1px; height: 24px; background: var(--gray-300); }

/* --- PHOTO WRAPS (reusable) --- */
.photo-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.photo-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.photo-wrap:hover img { transform: scale(1.03); }

/* --- SERVICE VISUAL CARD WITH PHOTO --- */
.service-visual-card { padding: 0; overflow: hidden; }
.svc-card-photo {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}
.svc-card-body { padding: 1.75rem 2rem; }

/* --- BEFORE / AFTER PHOTOS --- */
.ba-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.ba-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
}
.ba-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.ba-photo-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  color: var(--white);
  padding: 1.25rem 1rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-image-wrap { width: 44vw; max-width: 44vw; opacity: 0.65; }
  .hero-content    { max-width: min(520px, 50%); }
  .services-grid   { grid-template-columns: repeat(2, 1fr); }
  .why-grid        { grid-template-columns: repeat(2, 1fr); }
  .eco-grid        { grid-template-columns: repeat(2, 1fr); }
  .impact-grid     { grid-template-columns: repeat(2, 1fr); }
  .values-grid     { grid-template-columns: repeat(3, 1fr); }
  .trust-grid      { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(4, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .mvv-grid        { grid-template-columns: 1fr; gap: 1rem; }
  .mvv-card.featured { transform: none; }
  .trust-reasons   { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .section { padding: 3.5rem 0; }
  .hero-content { max-width: 100%; }
  .hero-image-wrap { display: none; }
  .ba-photos { grid-template-columns: 1fr; }

  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow-md);
    z-index: 99;
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  /* Dropdown on mobile: expands inline within the stacked menu */
  .nav-dropdown { width: 100%; }
  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    font-size: 0.95rem;
  }
  .nav-mega {
    position: static;
    transform: none;
    min-width: 0;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0.5rem 0 0.25rem 0.75rem;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
  }
  .nav-mega::before { display: none; }
  .nav-dropdown.open .nav-mega { display: grid; transform: none; }
  .nav-mega-foot { margin-top: 0.25rem; padding-top: 0.75rem; }

  /* Two-level mega menu stacks on mobile */
  .nav-mega-split {
    grid-template-columns: 1fr;
    gap: 0.4rem;
    min-width: 0;
    padding: 0.5rem 0 0.25rem 0.5rem;
  }
  .nav-mega-cats {
    border-right: none;
    padding-right: 0;
    gap: 0.1rem;
  }
  .nav-cat { padding: 0.6rem 0.45rem; }
  .nav-cat-arrow { opacity: 1; transform: rotate(90deg); }
  .nav-cat.is-active .nav-cat-arrow { transform: rotate(90deg); }
  .nav-mega-panels { min-height: 0; padding-top: 0; }
  .nav-mega-panel.is-active { animation: none; }
  .nav-panel-head { margin: 0.25rem 0 0.35rem; }
  .nav-panel-links { column-count: 1; padding-left: 0.4rem; }

  .two-col       { grid-template-columns: 1fr; gap: 2rem; }
  .two-col.reverse { direction: ltr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid      { grid-template-columns: 1fr; }
  .eco-grid      { grid-template-columns: 1fr 1fr; }
  .impact-grid   { grid-template-columns: 1fr 1fr; }
  .values-grid   { grid-template-columns: 1fr 1fr; }
  .trust-grid    { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; gap: 2rem; }

  .before-after { grid-template-columns: 1fr; gap: 1.5rem; }
  .ba-divider   { justify-content: flex-start; padding: 0; }
  .ba-arrow     { transform: rotate(90deg); }

  .process-steps { flex-direction: column; align-items: center; gap: 1rem; }
  .step-connector { width: 2px; height: 30px; }
  .step { text-align: center; }

  .contact-layout { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }

  .cta-buttons { flex-direction: column; align-items: center; }

  .hero-cta { flex-direction: column; }
  .hero-headline { font-size: 2rem; }

  .team-values { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .values-grid   { grid-template-columns: 1fr; }
  .eco-grid      { grid-template-columns: 1fr; }
  .impact-grid   { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .trust-strip-content { flex-direction: column; gap: 0.75rem; }
  .ts-divider { display: none; }
}

/* --- WORK WITH US MODAL --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 25, 40, 0.6);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.modal {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px) scale(0.98);
  transition: transform var(--transition);
}
.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}
.modal-body { padding: 2.5rem; }
.modal-body .form-header p { margin-bottom: 1.5rem; }
.modal-close {
  position: absolute;
  top: 0.85rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--gray-300);
  cursor: pointer;
  transition: color var(--transition);
  z-index: 1;
}
.modal-close:hover { color: var(--dark); }
body.modal-open { overflow: hidden; }

@media (max-width: 480px) {
  .modal-body { padding: 2rem 1.5rem; }
}
