/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  color: #0f172a;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── CSS VARIABLES ──────────────────────────────────────────── */
:root {
  --primary: #22c55e;
  --primary-dark: #16a34a;
  --primary-light: #4ade80;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #020617;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
.font-display { font-family: 'Montserrat', sans-serif; }
h1,h2,h3,h4 { font-family: 'Montserrat', sans-serif; line-height: 1.1; }
.text-primary { color: var(--primary); }
.text-white { color: #fff; }

/* ── LAYOUT HELPERS ─────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 640px)  { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ── URGENCY BAR ────────────────────────────────────────────── */
#urgency-bar {
  background: var(--slate-900);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  padding: 0.5rem 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  max-height: 3rem;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
}
#urgency-bar.hidden { max-height: 0; padding: 0; opacity: 0; }
.pulse-dot {
  display: inline-block;
  width: 0.5rem; height: 0.5rem;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
  vertical-align: middle;
  margin-right: 0.375rem;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.urgency-slots { color: #fbbf24; font-weight: 700; }

/* ── NAVBAR ─────────────────────────────────────────────────── */
#navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: rgba(15,23,42,0.7);
  backdrop-filter: blur(8px);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
#navbar.scrolled {
  background: #fff;
  border-color: var(--slate-200);
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  transition: padding 0.3s;
}
#navbar.scrolled .nav-inner { padding: 0.5rem 0; }
.nav-logo img { height: 3rem; width: auto; object-fit: contain; transition: height 0.3s; }
#navbar.scrolled .nav-logo img { height: 2.5rem; }

/* Desktop nav links */
.nav-links { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-link {
  position: relative;
  padding: 0.5rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #e2e8f0;
  border-radius: 0.375rem;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0.75rem; right: 0.75rem;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); opacity: 1; }
.nav-link.active { color: var(--primary); }
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.1); }
#navbar.scrolled .nav-link { color: var(--slate-700); }
#navbar.scrolled .nav-link:hover { color: var(--primary); background: var(--slate-50); }
#navbar.scrolled .nav-link.active { color: var(--primary); }

/* Nav CTAs */
.nav-ctas { display: none; align-items: center; gap: 0.75rem; }
@media (min-width: 768px) { .nav-ctas { display: flex; } }
.btn-call-nav {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.625rem 1rem;
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  font-weight: 700; font-size: 0.875rem;
  border-radius: 0.5rem;
  transition: all 0.2s;
}
.btn-call-nav:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
#navbar.scrolled .btn-call-nav { border-color: var(--slate-300); color: var(--slate-700); }
#navbar.scrolled .btn-call-nav:hover { border-color: var(--primary); color: var(--primary); }
.btn-wa-nav {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: var(--primary); color: #fff;
  font-weight: 700; font-size: 0.875rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 14px rgba(34,197,94,0.3);
  transition: all 0.2s;
}
.btn-wa-nav:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* Mobile controls */
.nav-mobile-controls { display: flex; align-items: center; gap: 0.5rem; }
@media (min-width: 768px) { .nav-mobile-controls { display: none; } }
.btn-icon-nav {
  padding: 0.5rem; border-radius: 0.5rem;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff; transition: all 0.2s;
}
#navbar.scrolled .btn-icon-nav { border-color: var(--slate-300); color: var(--slate-700); }
.btn-icon-nav.green { background: var(--primary); border-color: var(--primary); }
.hamburger {
  padding: 0.5rem; border-radius: 0.5rem;
  color: #fff; transition: all 0.2s; background: none;
}
#navbar.scrolled .hamburger { color: var(--slate-700); }

/* Mobile menu */
#mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid var(--slate-100);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
#mobile-menu.open { display: block; }
.mobile-menu-inner { padding: 0.75rem 1rem 1.5rem; }
.mobile-nav-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-size: 1rem; font-weight: 600;
  color: var(--slate-700);
  transition: all 0.2s;
  margin-bottom: 0.25rem;
}
.mobile-nav-link:hover, .mobile-nav-link.active { background: rgba(34,197,94,0.1); color: var(--primary); }
.mobile-ctas { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--slate-100); }
.mobile-cta-call {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem; border-radius: 0.75rem;
  border: 2px solid var(--slate-200); color: var(--slate-700);
  font-weight: 700; font-size: 0.875rem; transition: all 0.2s;
}
.mobile-cta-call:hover { border-color: var(--primary); color: var(--primary); }
.mobile-cta-wa {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem; border-radius: 0.75rem;
  background: var(--primary); color: #fff;
  font-weight: 700; font-size: 0.875rem; transition: all 0.2s;
}
.mobile-cta-wa:hover { background: var(--primary-dark); }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  background: var(--slate-950);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.45;
}
.hero-overlay-lr {
  position: absolute; inset: 0;
  background: linear-gradient(to right, #020617, rgba(2,6,23,0.75), rgba(15,23,42,0.3));
}
.hero-overlay-tb {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(2,6,23,0.9), transparent);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0; opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M0 0h80v1H0zM0 0v80h1V0z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-accent-line {
  position: absolute; top: 0; left: 0; right: 0; height: 4px; z-index: 10;
  background: linear-gradient(to right, var(--primary), #4ade80, var(--primary));
}
.hero-content {
  position: relative; z-index: 10;
  padding: 7rem 0;
  width: 100%;
}
.hero-label {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem;
}
.hero-label-line { width: 2rem; height: 2px; background: var(--primary); }
.hero-label-text {
  color: var(--primary); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.75rem;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.hero-title-green {
  background: linear-gradient(to right, var(--primary), #4ade80, #86efac);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.125rem;
  color: #cbd5e1;
  max-width: 40rem;
  margin-bottom: 1rem;
  line-height: 1.7;
  font-weight: 500;
}
.hero-trust {
  color: var(--slate-400);
  font-size: 0.875rem;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-trust svg { color: var(--primary); flex-shrink: 0; }
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--primary); color: #fff;
  font-weight: 900; font-size: 0.875rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  border-radius: 0.5rem;
  box-shadow: 0 4px 20px rgba(34,197,94,0.3);
  transition: all 0.2s;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(34,197,94,0.4); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 2rem;
  background: rgba(255,255,255,0.1); color: #fff;
  font-weight: 700; font-size: 0.875rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
  transition: all 0.2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); }
.hero-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
}
.hero-stat { margin-right: 2rem; }
.hero-stat-val { font-size: 1.5rem; font-weight: 900; color: var(--primary); font-family: 'Montserrat', sans-serif; }
.hero-stat-label { font-size: 0.7rem; font-weight: 700; color: var(--slate-400); text-transform: uppercase; letter-spacing: 0.1em; }

/* ── PROOF STRIP ────────────────────────────────────────────── */
.proof-strip { background: var(--slate-900); border-bottom: 1px solid var(--slate-800); }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 1024px) { .proof-grid { grid-template-columns: repeat(4, 1fr); } }
.proof-item {
  padding: 2.5rem 2rem;
  text-align: center;
  border-right: 1px solid var(--slate-800);
}
.proof-item:last-child { border-right: none; }
@media (max-width: 1023px) {
  .proof-item:nth-child(2) { border-right: none; }
  .proof-item:nth-child(3) { border-top: 1px solid var(--slate-800); }
  .proof-item:nth-child(4) { border-top: 1px solid var(--slate-800); border-right: none; }
}
.proof-val {
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
  margin-bottom: 0.75rem;
  white-space: pre-line;
}
.proof-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: pre-line;
  line-height: 1.4;
}

/* ── ENGINEER STRIP ─────────────────────────────────────────── */
.engineer-strip { background: var(--primary); }
.engineer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
}
@media (min-width: 768px) { .engineer-inner { flex-direction: row; } }
.engineer-info { display: flex; align-items: center; gap: 1rem; color: #fff; }
.engineer-icon {
  width: 2.5rem; height: 2.5rem;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.engineer-title { font-weight: 900; font-size: 1.125rem; line-height: 1.2; }
.engineer-sub { font-size: 0.875rem; color: #dcfce7; }
.engineer-btns { display: flex; gap: 0.75rem; flex-shrink: 0; }
.btn-engineer-call {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #fff; color: var(--slate-900);
  font-weight: 900; font-size: 0.875rem;
  border-radius: 0.5rem; transition: all 0.2s;
}
.btn-engineer-call:hover { background: var(--slate-100); }
.btn-engineer-wa {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--slate-900); color: #fff;
  font-weight: 700; font-size: 0.875rem;
  border-radius: 0.5rem; transition: all 0.2s;
}
.btn-engineer-wa:hover { background: var(--slate-800); }

/* ── PARTNERS ───────────────────────────────────────────────── */
.partners-section { background: var(--slate-50); border-bottom: 1px solid var(--slate-200); padding: 3rem 0; }
.section-eyebrow {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--slate-400);
  margin-bottom: 2rem;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: center;
}
@media (min-width: 640px)  { .partners-grid { grid-template-columns: repeat(5, 1fr); } }
@media (min-width: 768px)  { .partners-grid { grid-template-columns: repeat(9, 1fr); } }
.partner-card {
  display: flex; align-items: center; justify-content: center;
  padding: 0.75rem;
  background: #fff;
  border: 1px solid var(--slate-100);
  border-radius: 0.75rem;
  aspect-ratio: 3/2;
  transition: all 0.2s;
}
.partner-card:hover { border-color: rgba(34,197,94,0.4); box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.partner-card img {
  max-height: 2.5rem; max-width: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.6;
  transition: all 0.2s;
}
.partner-card:hover img { filter: grayscale(0); opacity: 1; }

/* ── WHY CHOOSE US ──────────────────────────────────────────── */
.why-section { padding: 6rem 0; background: #fff; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) { .why-grid { grid-template-columns: 1fr 1fr; } }
.why-images { position: relative; }
.why-img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.why-img-tall { border-radius: 1rem; width: 100%; object-fit: cover; aspect-ratio: 3/4; box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
.why-img-right { display: flex; flex-direction: column; gap: 1rem; padding-top: 2rem; }
.why-img-sq { border-radius: 1rem; width: 100%; object-fit: cover; aspect-ratio: 1/1; box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
.why-badge {
  background: var(--slate-900); border-radius: 1rem; padding: 1.25rem;
  color: #fff; display: flex; flex-direction: column; justify-content: center;
}
.why-badge-num { font-size: 1.875rem; font-weight: 900; color: var(--primary); font-family: 'Montserrat', sans-serif; margin-bottom: 0.25rem; }
.why-badge-label { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--slate-300); }

.section-label {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem;
}
.label-line { width: 2rem; height: 2px; background: var(--primary); }
.label-text {
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--primary);
}
.section-title { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 900; color: var(--slate-900); margin-bottom: 0.5rem; line-height: 1.1; }
.section-title-line { height: 4px; width: 3.5rem; background: var(--primary); border-radius: 2px; margin-bottom: 2rem; }
.why-list { display: flex; flex-direction: column; gap: 1rem; }
.why-item {
  display: flex; gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid transparent;
  transition: all 0.2s;
}
.why-item:hover { background: var(--slate-50); border-color: var(--slate-100); }
.why-icon {
  width: 3.5rem; height: 3.5rem;
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-icon.blue { background: #eff6ff; color: #2563eb; }
.why-icon.green { background: #f0fdf4; color: #16a34a; }
.why-icon.purple { background: #faf5ff; color: #9333ea; }
.why-icon.amber { background: #fffbeb; color: #d97706; }
.why-item-title { font-weight: 800; color: var(--slate-900); margin-bottom: 0.25rem; font-size: 0.95rem; }
.why-item-desc { font-size: 0.875rem; color: var(--slate-600); line-height: 1.6; }

/* ── SOLUTIONS ──────────────────────────────────────────────── */
.solutions-section {
  padding: 6rem 0;
  background: var(--slate-950);
  position: relative; overflow: hidden;
}
.solutions-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M0 0h80v1H0zM0 0v80h1V0z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.04;
}
.solutions-header { text-align: center; margin-bottom: 4rem; position: relative; z-index: 1; }
.solutions-eyebrow {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.solutions-title { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 900; color: #fff; margin-bottom: 1rem; line-height: 1.1; }
.solutions-sub { color: var(--slate-400); max-width: 40rem; margin: 0 auto; font-size: 1rem; }
.solutions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative; z-index: 1;
}
@media (min-width: 768px) { .solutions-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .solutions-grid { grid-template-columns: repeat(4, 1fr); } }
.solution-card {
  padding: 2rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s;
  position: relative; overflow: hidden;
}
.solution-card:hover { border-color: rgba(34,197,94,0.5); background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.solution-icon {
  width: 3.5rem; height: 3.5rem;
  background: rgba(34,197,94,0.15);
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}
.solution-card:hover .solution-icon { background: var(--primary); color: #fff; transform: scale(1.1); }
.solution-title { font-size: 1.125rem; font-weight: 900; color: #fff; margin-bottom: 0.75rem; }
.solution-desc { font-size: 0.875rem; color: var(--slate-400); line-height: 1.7; margin-bottom: 1.5rem; }
.solution-link {
  display: inline-flex; align-items: center; gap: 0.25rem;
  font-size: 0.875rem; font-weight: 700;
  color: var(--primary); transition: color 0.2s;
}
.solution-link:hover { color: #4ade80; }
.solutions-ctas {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 1rem; margin-top: 3.5rem;
  position: relative; z-index: 1;
}
.btn-wa-solutions {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--primary); color: #fff;
  font-weight: 900; font-size: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 20px rgba(34,197,94,0.3);
  transition: all 0.2s;
}
.btn-wa-solutions:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-outline-white {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 1rem 2rem;
  border: 2px solid rgba(255,255,255,0.2);
  color: #fff; font-weight: 700; font-size: 1rem;
  border-radius: 0.5rem; transition: all 0.2s;
}
.btn-outline-white:hover { border-color: rgba(255,255,255,0.5); }

/* ── INDUSTRIES ─────────────────────────────────────────────── */
.industries-section { padding: 6rem 0; background: #fff; }
.industries-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) { .industries-grid { grid-template-columns: 1fr 1fr; } }
.industries-desc { font-size: 1.125rem; color: var(--slate-600); line-height: 1.7; margin-bottom: 2rem; }
.ind-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .ind-list { grid-template-columns: repeat(2, 1fr); } }
.ind-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem;
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: 0.5rem;
}
.ind-item svg { color: var(--primary); flex-shrink: 0; }
.ind-item span { font-weight: 700; font-size: 0.875rem; color: var(--slate-800); }
.btn-outline-primary {
  display: inline-flex; align-items: center; gap: 0.375rem;
  padding: 0.875rem 1.5rem;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 900; font-size: 0.875rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  border-radius: 0.5rem; transition: all 0.2s;
}
.btn-outline-primary:hover { background: var(--primary); color: #fff; }
.industries-images { position: relative; }
.ind-img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ind-img { border-radius: 1rem; width: 100%; object-fit: cover; aspect-ratio: 1/1; box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
.ind-img:last-child { margin-top: 2rem; }
.ind-overlay {
  position: absolute; bottom: 1rem; left: 1rem; right: 1rem;
  background: rgba(15,23,42,0.9);
  backdrop-filter: blur(4px);
  border-radius: 0.75rem;
  padding: 1rem;
  border: 1px solid var(--slate-700);
}
.ind-overlay-title { color: #fff; font-weight: 700; font-size: 0.875rem; margin-bottom: 0.25rem; }
.ind-overlay-sub { color: var(--slate-400); font-size: 0.75rem; }

/* ── CTA BANNER ─────────────────────────────────────────────── */
.cta-banner { background: var(--slate-900); padding: 2.5rem 1rem; }
.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
@media (min-width: 768px) { .cta-inner { flex-direction: row; } }
.cta-text { text-align: center; }
@media (min-width: 768px) { .cta-text { text-align: left; } }
.cta-heading { font-size: 1.25rem; font-weight: 800; color: #fff; margin-bottom: 0.25rem; }
.cta-sub { font-size: 0.875rem; color: var(--slate-300); }
.cta-urgency { color: #fbbf24; font-size: 0.75rem; font-weight: 700; margin-top: 0.375rem; display: flex; align-items: center; gap: 0.375rem; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; flex-shrink: 0; }
.btn-cta-call {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: #fff; color: var(--slate-900);
  font-weight: 700; font-size: 0.875rem;
  border-radius: 9999px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: all 0.2s;
}
.btn-cta-call:hover { background: var(--slate-100); transform: translateY(-1px); }
.btn-cta-wa {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: var(--primary); color: #fff;
  font-weight: 700; font-size: 0.875rem;
  border-radius: 9999px;
  box-shadow: 0 4px 16px rgba(34,197,94,0.3);
  transition: all 0.2s;
}
.btn-cta-wa:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-cta-consult {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border: 2px solid var(--slate-600); color: var(--slate-300);
  font-weight: 700; font-size: 0.875rem;
  border-radius: 9999px; transition: all 0.2s;
}
.btn-cta-consult:hover { border-color: #fff; color: #fff; transform: translateY(-1px); }

/* ── PROJECT EXPERIENCE ─────────────────────────────────────── */
.projects-section {
  background: var(--slate-50);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
  padding: 4rem 0;
}
.projects-eyebrow {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.projects-header { text-align: center; margin-bottom: 3rem; }
.projects-title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 900; color: var(--slate-900); }
.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .projects-grid { grid-template-columns: repeat(3, 1fr); } }
.project-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid var(--slate-200);
  border-left-width: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s;
}
.project-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.08); }
.project-card.orange { border-left-color: #f97316; }
.project-card.blue { border-left-color: #3b82f6; }
.project-card.green { border-left-color: var(--primary); }
.project-tag {
  display: inline-block;
  font-size: 0.7rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--primary);
  background: rgba(34,197,94,0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}
.project-title { font-weight: 800; color: var(--slate-900); font-size: 1rem; line-height: 1.4; margin-bottom: 0.75rem; }
.project-detail { font-size: 0.75rem; color: var(--slate-500); line-height: 1.6; }

/* ── CONTACT ────────────────────────────────────────────────── */
.contact-section {
  padding: 6rem 0;
  background: var(--slate-950);
  color: #fff;
  position: relative; overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M0 0h80v1H0zM0 0v80h1V0z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.04;
}
.contact-glow-1 {
  position: absolute; top: -8rem; left: -8rem;
  width: 31rem; height: 31rem;
  background: var(--primary); border-radius: 50%;
  filter: blur(80px); opacity: 0.15;
}
.contact-glow-2 {
  position: absolute; bottom: 0; right: 0;
  width: 37rem; height: 37rem;
  background: #1d4ed8; border-radius: 50%;
  filter: blur(80px); opacity: 0.15;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
  position: relative; z-index: 1;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-title { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 900; color: #fff; margin-bottom: 0.5rem; }
.contact-desc { font-size: 1.125rem; color: var(--slate-300); margin-bottom: 2rem; line-height: 1.7; }
.contact-cta-phone {
  display: flex; align-items: center; gap: 1rem;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 0.75rem; padding: 1.25rem;
  margin-bottom: 1.5rem;
  transition: background 0.2s;
}
.contact-cta-phone:hover { background: rgba(34,197,94,0.2); }
.contact-cta-icon {
  width: 3.5rem; height: 3.5rem;
  background: var(--primary); border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform 0.2s;
}
.contact-cta-phone:hover .contact-cta-icon { transform: scale(1.05); }
.contact-phone-num { font-weight: 900; font-size: 1.25rem; color: #fff; }
.contact-phone-sub { font-size: 0.875rem; color: var(--slate-400); }
.contact-cta-wa {
  display: flex; align-items: center; gap: 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.75rem; padding: 1.25rem;
  margin-bottom: 2rem; transition: background 0.2s;
}
.contact-cta-wa:hover { background: rgba(255,255,255,0.08); }
.contact-cta-wa .contact-cta-icon { background: #16a34a; }
.contact-cta-wa:hover .contact-cta-icon { transform: scale(1.05); }
.contact-wa-num { font-weight: 900; font-size: 1.125rem; color: #fff; }
.contact-wa-sub { font-size: 0.875rem; color: var(--slate-400); }
.contact-checkpoints { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-checkpoint { display: flex; align-items: flex-start; gap: 0.75rem; }
.contact-checkpoint svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.checkpoint-title { font-weight: 700; font-size: 0.875rem; color: #fff; }
.checkpoint-sub { font-size: 0.875rem; color: var(--slate-400); }

/* ── LEAD FORM ──────────────────────────────────────────────── */
.lead-form-wrap {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 1rem;
  padding: 2rem;
}
.form-eyebrow { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--primary); margin-bottom: 0.25rem; }
.form-title { font-size: 1.5rem; font-weight: 900; color: #fff; margin-bottom: 0.25rem; font-family: 'Montserrat', sans-serif; }
.form-sub { font-size: 0.875rem; color: var(--slate-300); margin-bottom: 1.5rem; }
.form-field { margin-bottom: 1rem; }
.form-label { display: block; font-size: 0.875rem; font-weight: 700; color: #e2e8f0; margin-bottom: 0.375rem; }
.form-input, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: #fff; font-size: 0.875rem;
  outline: none; transition: all 0.2s;
  font-family: 'Open Sans', sans-serif;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--slate-400); }
.form-input:focus, .form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
}
.form-textarea { resize: none; }
.btn-form-submit {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 1rem;
  background: var(--primary); color: #fff;
  font-weight: 900; font-size: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 20px rgba(34,197,94,0.2);
  transition: all 0.2s; margin-top: 0.5rem;
}
.btn-form-submit:hover { background: var(--primary-dark); box-shadow: 0 8px 28px rgba(34,197,94,0.35); }
.form-footer-note { text-align: center; font-size: 0.75rem; color: var(--slate-400); margin-top: 0.75rem; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer { background: var(--slate-950); border-top: 4px solid var(--primary); padding: 4rem 0 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-logo { height: 3rem; width: auto; object-fit: contain; filter: brightness(0) invert(1); margin-bottom: 1.5rem; }
.footer-desc { font-size: 0.875rem; color: var(--slate-400); line-height: 1.7; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  width: 2.25rem; height: 2.25rem;
  background: var(--slate-900); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--slate-400); transition: all 0.2s;
}
.footer-social a:hover { background: var(--primary); color: #fff; }
.footer-heading { font-size: 1.125rem; font-weight: 700; color: #fff; font-family: 'Montserrat', sans-serif; margin-bottom: 1.5rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { color: var(--slate-300); font-size: 0.875rem; transition: color 0.2s; display: flex; align-items: center; }
.footer-links a:hover { color: var(--primary); }
.footer-services { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-services li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--slate-300); }
.footer-services li::before { content: ''; width: 0.5rem; height: 0.5rem; border: 1px solid var(--primary); border-radius: 50%; flex-shrink: 0; }
.footer-contacts { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.footer-contact-item svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span, .footer-contact-item a { font-size: 0.875rem; color: var(--slate-300); line-height: 1.5; }
.footer-contact-item a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid var(--slate-800);
  padding-top: 2rem;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--slate-500);
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a:hover { color: #fff; transition: color 0.2s; }

/* ── FLOATING WHATSAPP ──────────────────────────────────────── */
.float-wa {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 100;
  width: 3.5rem; height: 3.5rem;
  background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.2s;
  animation: float-wa-pulse 3s infinite;
}
.float-wa:hover { background: #1ebe5d; transform: scale(1.1); }
@keyframes float-wa-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.7); }
}

/* ── FADE-IN ANIMATIONS ─────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── UTILITY ────────────────────────────────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ════════════════════════════════════════════════════════════════
   INNER PAGES — SHARED COMPONENTS
   ════════════════════════════════════════════════════════════════ */

/* ── PAGE HERO (listing pages) ───────────────────────────────── */
.page-hero {
  position: relative;
  height: 22rem;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2,6,23,.85) 0%, rgba(2,6,23,.35) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 3rem;
}
.page-hero-title {
  font-size: clamp(2rem,5vw,3.2rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: .75rem;
}
.page-hero-sub {
  color: rgba(255,255,255,.8);
  font-size: 1.1rem;
  max-width: 40rem;
}

/* ── DETAIL HERO (solution/product pages) ───────────────────── */
.detail-hero {
  position: relative;
  min-height: 32rem;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}
.detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(2,6,23,.9) 0%, rgba(2,6,23,.5) 60%, transparent 100%);
}
.detail-hero-content {
  position: relative;
  z-index: 1;
  padding-top: 8rem;
  padding-bottom: 4rem;
  max-width: 48rem;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-bottom: 1rem;
  font-size: .8rem;
  font-weight: 600;
}
.breadcrumb-link { color: #22c55e; }
.breadcrumb-link:hover { text-decoration: underline; }
.breadcrumb-sep { color: rgba(255,255,255,.4); }
.breadcrumb-cur { color: rgba(255,255,255,.7); }
.detail-hero-title {
  font-size: clamp(2.5rem,7vw,4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}
.hero-green { color: #22c55e; }
.detail-hero-sub {
  color: rgba(255,255,255,.8);
  font-size: 1.15rem;
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 36rem;
}
.detail-hero-btns { display: flex; flex-wrap: wrap; gap: .75rem; }
.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #22c55e;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: .875rem 2rem;
  border-radius: 999px;
  box-shadow: 0 8px 25px rgba(34,197,94,.4);
  transition: all .2s;
}
.btn-primary-hero:hover { background: #16a34a; transform: translateY(-2px); }
.btn-ghost-hero {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: .875rem 2rem;
  border-radius: 999px;
  transition: all .2s;
}
.btn-ghost-hero:hover { background: rgba(255,255,255,.2); }

/* ── OVERVIEW SECTION ────────────────────────────────────────── */
.overview-section { padding: 6rem 0; background: #fff; }
.overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .overview-grid { grid-template-columns: 1fr 1fr; }
}
.section-eyebrow {
  display: block;
  color: #22c55e;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .8rem;
  margin-bottom: .75rem;
}
.section-eyebrow-light {
  display: block;
  color: #4ade80;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .8rem;
  margin-bottom: .75rem;
}
.section-h2 {
  font-size: clamp(1.6rem,3.5vw,2.2rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.section-h2-light {
  font-size: clamp(1.5rem,3vw,2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.section-h2-center {
  font-size: clamp(1.6rem,3.5vw,2.2rem);
  font-weight: 800;
  color: #0f172a;
  text-align: center;
  margin-bottom: .75rem;
}
.section-bar {
  height: 4px;
  width: 3.5rem;
  background: #22c55e;
  border-radius: 99px;
  margin: 0 auto 1.5rem;
}
.section-sub-center {
  color: #64748b;
  font-size: 1.05rem;
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.7;
}
.section-body {
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.section-body-light {
  color: #94a3b8;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.section-header { text-align: center; margin-bottom: 3rem; }
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .65rem;
  margin-top: 1.75rem;
}
@media (min-width: 480px) { .benefits-grid { grid-template-columns: 1fr 1fr; } }
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .9rem;
  color: #334155;
  font-weight: 600;
  line-height: 1.45;
}
.benefit-item svg { flex-shrink: 0; margin-top: .1rem; }
.overview-img-wrap {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
}
.overview-img {
  width: 100%;
  height: 22rem;
  object-fit: cover;
  border-radius: 1.25rem;
}
.partner-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-radius: .75rem;
  padding: .75rem 1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}

/* ── APPS SECTION ────────────────────────────────────────────── */
.apps-section { padding: 5rem 0; background: #f8fafc; }
.apps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px)  { .apps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .apps-grid { grid-template-columns: repeat(3, 1fr); } }
.app-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.75rem;
  border: 1px solid #f1f5f9;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  transition: all .2s;
}
.app-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  transform: translateY(-3px);
  border-color: #e2e8f0;
}
.app-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(34,197,94,.1);
  border-radius: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #22c55e;
  margin-bottom: 1rem;
}
.app-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: .5rem;
}
.app-desc { color: #64748b; font-size: .9rem; line-height: 1.6; }

/* ── DARK SECTION ────────────────────────────────────────────── */
.dark-section { background: #0f172a; padding: 5rem 0; }
.dark-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) { .dark-grid { grid-template-columns: 1fr 1fr; } }

/* ── SPECS GRID ──────────────────────────────────────────────── */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 480px) { .specs-grid { grid-template-columns: repeat(3, 1fr); } }
.spec-item {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: .75rem;
  padding: 1rem;
}
.spec-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #64748b;
  margin-bottom: .35rem;
}
.spec-value { color: #fff; font-weight: 600; font-size: .9rem; }

/* ── PROCESS BOX ─────────────────────────────────────────────── */
.process-box {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 1.25rem;
  padding: 2rem;
}
.process-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: .5rem;
}
.process-sub { color: #64748b; font-size: .875rem; margin-bottom: 1.75rem; }
.process-steps { display: flex; flex-direction: column; gap: 1.25rem; }
.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.step-num {
  width: 2.25rem;
  height: 2.25rem;
  background: rgba(34,197,94,.15);
  border: 1px solid rgba(34,197,94,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #22c55e;
  font-size: .7rem;
  font-weight: 800;
  flex-shrink: 0;
}
.step-title { color: #fff; font-weight: 700; font-size: .9rem; margin-bottom: .2rem; }
.step-desc { color: #64748b; font-size: .825rem; line-height: 1.55; }

/* ── FORM SECTION ────────────────────────────────────────────── */
.form-section { padding: 6rem 0; background: #f8fafc; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-grid-title {
  font-size: clamp(1.5rem,3vw,2rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: .75rem;
  line-height: 1.2;
}
.form-grid-bar {
  height: 4px;
  width: 3.5rem;
  background: #22c55e;
  border-radius: 99px;
  margin-bottom: 1.25rem;
}
.form-grid-sub { color: #475569; font-size: 1rem; line-height: 1.7; margin-bottom: 2rem; }
.form-offer-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.form-offer-item svg { flex-shrink: 0; margin-top: .1rem; }
.inline-form-box {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2.5rem;
  border: 1px solid #f1f5f9;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.form-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: .5rem;
}
.form-sub { color: #64748b; font-size: .9rem; margin-bottom: 1.75rem; }

/* ── SOLUTION CARD (solutions & industries pages) ────────────── */
.sol-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  border: 1px solid #f1f5f9;
  transition: box-shadow .2s;
}
.sol-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.1); }
@media (min-width: 768px) {
  .sol-card { flex-direction: row; min-height: 22rem; }
  .sol-card > .sol-card-img { width: 45%; }
  .sol-card > .sol-card-body { width: 55%; }
}
.sol-card-img {
  position: relative;
  min-height: 16rem;
  overflow: hidden;
}
.sol-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sol-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2,6,23,.3), transparent);
  z-index: 1;
}
.sol-card-icon {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}
.ind-tag {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  background: rgba(34,197,94,.9);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .3rem .75rem;
  border-radius: 999px;
}
.sol-card-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sol-card-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: .75rem;
}
.sol-card-bar {
  width: 2.5rem;
  height: 4px;
  background: #22c55e;
  border-radius: 99px;
  margin-bottom: 1.25rem;
}
.sol-card-desc {
  color: #475569;
  font-size: .975rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.sol-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.75rem; }
.sol-tag {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #334155;
  font-size: .75rem;
  font-weight: 600;
  padding: .3rem .75rem;
  border-radius: 999px;
}
.sol-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #22c55e;
  font-weight: 700;
  font-size: .95rem;
  transition: gap .2s;
}
.sol-link:hover { gap: .85rem; }

/* ── RELATED SOLUTIONS BUTTON ────────────────────────────────── */
.rel-sol-btn {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  padding: .6rem 1.5rem;
  border-radius: 999px;
  transition: all .2s;
}
.rel-sol-btn:hover { background: rgba(255,255,255,.25); }

/* ── ABOUT PAGE ──────────────────────────────────────────────── */
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media (min-width: 640px) { .about-stats-grid { grid-template-columns: repeat(4, 1fr); } }
.about-stat {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.25);
}
.about-stat:last-child { border-right: none; }
.about-stat-val {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.25rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: .4rem;
}
.about-stat-label { color: rgba(255,255,255,.8); font-size: .85rem; font-weight: 600; }
.two-col-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) { .two-col-section { grid-template-columns: 1fr 1fr; } }
.two-col-img-wrap { border-radius: 1.25rem; overflow: hidden; }
.two-col-img { width: 100%; height: 22rem; object-fit: cover; border-radius: 1.25rem; }
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px)  { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }
.value-card {
  background: #f8fafc;
  border-radius: 1rem;
  padding: 1.75rem;
  border: 1px solid #f1f5f9;
  transition: all .2s;
}
.value-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.07); transform: translateY(-3px); }
.value-icon {
  width: 3rem;
  height: 3rem;
  border-radius: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.value-title { font-size: 1rem; font-weight: 700; color: #0f172a; margin-bottom: .5rem; }
.value-desc { color: #64748b; font-size: .875rem; line-height: 1.6; }
.team-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #f8fafc;
  border-radius: .875rem;
  padding: 1.25rem;
  border: 1px solid #f1f5f9;
}
.team-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
}
.team-name { font-weight: 700; color: #0f172a; font-size: .95rem; }
.team-role { color: #22c55e; font-size: .8rem; font-weight: 600; margin-bottom: .35rem; }
.team-desc { color: #64748b; font-size: .825rem; line-height: 1.55; }
.cities-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.city-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: .75rem;
  padding: 1.25rem 1.75rem;
  min-width: 8rem;
  text-align: center;
}

/* ── CONTACT PAGE ────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 5fr 7fr; } }

/* ── PARTNER LOGOS GRID ──────────────────────────────────────── */
.partner-logos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) { .partner-logos-grid { grid-template-columns: repeat(4, 1fr); } }
.partner-logo-card {
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  transition: all .2s;
}
.partner-logo-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.08); transform: translateY(-3px); }
.partner-logo-card img { height: 3rem; object-fit: contain; margin: 0 auto 1rem; max-width: 9rem; }
.partner-name { font-weight: 700; color: #0f172a; font-size: .9rem; margin-bottom: .35rem; }
.partner-desc { color: #64748b; font-size: .8rem; line-height: 1.5; }

/* ── IMTEX PAGE ──────────────────────────────────────────────── */
.imtex-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .imtex-gallery { grid-template-columns: repeat(3, 1fr); } }
.imtex-gallery-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.imtex-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.imtex-gallery-item:hover img { transform: scale(1.04); }
.imtex-gallery-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75), transparent);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  padding: 1.25rem .875rem .875rem;
}
.imtex-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) { .imtex-two-col { grid-template-columns: 1fr 1fr; } }
.imtex-partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.imtex-partner-card {
  position: relative;
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 1rem;
  padding: 1.75rem 1rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  transition: all .2s;
  color: inherit;
}
.imtex-partner-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.08); transform: translateY(-3px); }
.imtex-booth-badge {
  display: inline-block;
  background: #22c55e;
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: .2rem .5rem;
  border-radius: 999px;
  margin-bottom: .75rem;
}
.imtex-team-box {
  background: #0f172a;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 1.25rem;
  padding: 2.5rem;
}
.imtex-team-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: .75rem;
  padding: 1rem 1.25rem;
}
.imtex-venue-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) { .imtex-venue-grid { grid-template-columns: 1fr 1fr 1fr; } }

/* ── FOOTER SERVICES LINKS ───────────────────────────────────── */
.footer-services a {
  color: #94a3b8;
  font-size: .875rem;
  transition: color .2s;
}
.footer-services a:hover { color: #22c55e; }
