/* ===================================================
   INSIGHTS DIGITAL — Main Stylesheet
   Color Palette:
     Primary:  #0F2B46 (deep navy)
     Accent:   #2563EB (vibrant blue)
     Accent 2: #06B6D4 (cyan)
     Surface:  #F8FAFC (light gray)
     Text:     #1E293B
   =================================================== */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1E293B;
  line-height: 1.7;
  background: #fff;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color .25s; }
ul { list-style: none; }

/* ---------- UTILITY ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, #2563EB15, #06B6D415);
  color: #2563EB;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0F2B46;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: #64748B;
  max-width: 600px;
  margin: 0 auto;
}
.section-header { text-align: center; margin-bottom: 64px; }

.gradient-text {
  background: linear-gradient(135deg, #2563EB, #06B6D4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: .95rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all .3s ease;
}
.btn-primary {
  background: linear-gradient(135deg, #2563EB, #1D4ED8);
  color: #fff;
  padding: 14px 32px;
  box-shadow: 0 4px 15px rgba(37,99,235,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,99,235,.45);
}
.btn-outline {
  background: transparent;
  color: #0F2B46;
  padding: 14px 32px;
  border: 2px solid #CBD5E1;
}
.btn-outline:hover { border-color: #2563EB; color: #2563EB; }
.btn-white {
  background: #fff;
  color: #0F2B46;
  padding: 14px 32px;
  box-shadow: 0 4px 15px rgba(0,0,0,.1);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,.15); }
.btn-nav {
  background: linear-gradient(135deg, #2563EB, #1D4ED8);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: .9rem;
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(37,99,235,.35); }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all .35s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(0,0,0,.08);
  padding: 10px 0;
}
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.logo-img { height: 40px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: #0F2B46;
  position: relative;
  transition: color .25s;
}
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: #2563EB;
  transition: width .25s;
}
.nav-links a:not(.btn):hover::after { width: 100%; }
.nav-links a:not(.btn):hover { color: #2563EB; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px; height: 2.5px;
  background: #0F2B46;
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(160deg, #F0F7FF 0%, #E8F4FD 40%, #F8FAFC 100%);
  overflow: hidden;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: .07;
}
.shape-1 {
  width: 600px; height: 600px;
  background: #2563EB;
  top: -200px; right: -100px;
}
.shape-2 {
  width: 400px; height: 400px;
  background: #06B6D4;
  bottom: -100px; left: -100px;
}
.shape-3 {
  width: 200px; height: 200px;
  background: #2563EB;
  top: 50%; left: 50%;
}
.hero-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-tag {
  display: inline-block;
  background: rgba(37,99,235,.1);
  color: #2563EB;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero h1 { font-size: 3.5rem; font-weight: 800; color: #0F2B46; line-height: 1.15; margin-bottom: 24px; }
.hero-desc { font-size: 1.15rem; color: #475569; max-width: 520px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 40px; }
.stat-item { text-align: center; }
.stat-number { font-size: 2.2rem; font-weight: 800; color: #0F2B46; }
.stat-suffix { font-size: 1.5rem; font-weight: 700; color: #2563EB; }
.stat-label { display: block; font-size: .8rem; color: #64748B; margin-top: 4px; }
.hero-visual { display: flex; justify-content: center; }
.hero-img { width: 100%; max-width: 520px; }

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}
.hero-scroll a { color: #2563EB; font-size: 1.2rem; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---------- ABOUT ---------- */
.about { background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual img { width: 100%; max-width: 480px; }
.about-content p { color: #475569; margin-bottom: 16px; }
.about-features { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.about-feature { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon {
  width: 48px; height: 48px; min-width: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2563EB15, #06B6D415);
  display: flex; align-items: center; justify-content: center;
  color: #2563EB;
  font-size: 1.1rem;
}
.about-feature h4 { font-size: 1rem; font-weight: 600; color: #0F2B46; margin-bottom: 4px; }
.about-feature p { font-size: .9rem; color: #64748B; margin: 0; }

/* ---------- SERVICES ---------- */
.services { background: #F8FAFC; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  border: 1px solid #E2E8F0;
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, #2563EB, #06B6D4);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,.08); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2563EB10, #06B6D410);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: #2563EB;
  margin-bottom: 20px;
}
.service-card h3 { font-size: 1.2rem; font-weight: 700; color: #0F2B46; margin-bottom: 12px; }
.service-card p { font-size: .95rem; color: #64748B; margin-bottom: 20px; }
.service-link {
  font-size: .9rem;
  font-weight: 600;
  color: #2563EB;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-link:hover { gap: 12px; }

/* ---------- PLATFORMS ---------- */
.platforms { background: #fff; }
.platforms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.platform-card {
  background: #F8FAFC;
  border-radius: 16px;
  padding: 40px 32px;
  border: 1px solid #E2E8F0;
  transition: all .35s ease;
  position: relative;
}
.platform-card.featured {
  background: linear-gradient(160deg, #0F2B46, #1E3A5F);
  color: #fff;
  border: none;
  transform: scale(1.03);
}
.platform-card.featured h3 { color: #fff; }
.platform-card.featured p { color: #94A3B8; }
.platform-card.featured .platform-features li { color: #CBD5E1; }
.platform-card.featured .platform-features i { color: #06B6D4; }
.platform-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2563EB, #06B6D4);
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: 20px;
  letter-spacing: .5px;
}
.platform-logo {
  width: 60px; height: 60px;
  margin-bottom: 20px;
}
.platform-logo img { width: 100%; height: 100%; }
.platform-card h3 { font-size: 1.4rem; font-weight: 700; color: #0F2B46; margin-bottom: 12px; }
.platform-card > p { font-size: .95rem; color: #64748B; margin-bottom: 24px; }
.platform-features { display: flex; flex-direction: column; gap: 10px; }
.platform-features li { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: #475569; }
.platform-features i { color: #2563EB; font-size: .8rem; }
.platform-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,.07); }
.platform-card.featured:hover { transform: scale(1.03) translateY(-4px); }

/* ---------- PROCESS ---------- */
.process { background: #F8FAFC; }
.process-timeline { max-width: 700px; margin: 0 auto; position: relative; }
.process-timeline::before {
  content: '';
  position: absolute;
  left: 36px; top: 0;
  width: 2px; height: 100%;
  background: linear-gradient(180deg, #2563EB, #06B6D4);
  opacity: .2;
}
.process-step { display: flex; gap: 28px; margin-bottom: 40px; align-items: flex-start; }
.step-number {
  min-width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563EB, #06B6D4);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 800; color: #fff;
  position: relative;
  z-index: 1;
}
.step-content h3 { font-size: 1.15rem; font-weight: 700; color: #0F2B46; margin-bottom: 8px; }
.step-content p { font-size: .95rem; color: #64748B; }

/* ---------- TESTIMONIALS ---------- */
.testimonials { background: #fff; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
  background: #F8FAFC;
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid #E2E8F0;
  transition: all .35s ease;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,.06); }
.testimonial-stars { color: #F59E0B; margin-bottom: 16px; font-size: .9rem; display: flex; gap: 2px; }
.testimonial-text { font-size: 1rem; color: #475569; font-style: italic; margin-bottom: 24px; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563EB, #06B6D4);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: .85rem;
}
.testimonial-author strong { display: block; font-size: .95rem; color: #0F2B46; }
.testimonial-author span { font-size: .8rem; color: #94A3B8; }

/* ---------- CTA ---------- */
.cta-section { padding: 0; background: #F8FAFC; }
.cta-box {
  background: linear-gradient(135deg, #0F2B46, #1E3A5F);
  border-radius: 24px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(37,99,235,.15);
  top: -200px; right: -100px;
}
.cta-box h2 { font-size: 2.2rem; font-weight: 800; color: #fff; margin-bottom: 16px; position: relative; }
.cta-box p { font-size: 1.1rem; color: #94A3B8; margin-bottom: 36px; position: relative; }

/* ---------- CONTACT ---------- */
.contact { background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info p { color: #64748B; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-item i {
  width: 44px; height: 44px; min-width: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2563EB10, #06B6D410);
  display: flex; align-items: center; justify-content: center;
  color: #2563EB;
  font-size: 1rem;
}
.contact-item strong { display: block; font-size: .95rem; color: #0F2B46; margin-bottom: 2px; }
.contact-item span { font-size: .9rem; color: #64748B; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: #F1F5F9;
  display: flex; align-items: center; justify-content: center;
  color: #475569;
  font-size: .95rem;
  transition: all .25s;
}
.social-links a:hover { background: #2563EB; color: #fff; transform: translateY(-2px); }

.contact-form-wrap {
  background: #F8FAFC;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid #E2E8F0;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: #0F2B46; margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  font-family: inherit;
  font-size: .95rem;
  color: #1E293B;
  background: #fff;
  transition: border-color .25s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: #2563EB; box-shadow: 0 0 0 3px rgba(37,99,235,.1); }
.form-group textarea { resize: vertical; }

/* ---------- FOOTER ---------- */
.footer {
  background: #0F2B46;
  padding: 80px 0 30px;
  color: #94A3B8;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer-logo { height: 36px; margin-bottom: 16px; }
.footer-brand p { font-size: .9rem; color: #64748B; line-height: 1.7; }
.footer-links h4 { font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 20px; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: .9rem; color: #64748B; transition: color .25s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; text-align: center; }
.footer-bottom p { font-size: .85rem; color: #475569; }

/* ---------- PAGE HERO (Sub-pages) ---------- */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  background: linear-gradient(160deg, #0F2B46 0%, #1E3A5F 100%);
  overflow: hidden;
  text-align: center;
}
.page-hero .hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.page-hero .shape-1 { opacity: .05; }
.page-hero .shape-2 { opacity: .04; }
.page-hero .shape-3 { opacity: .03; }
.page-hero h1 { font-size: 3rem; font-weight: 800; color: #fff; margin-bottom: 16px; }
.page-hero p { font-size: 1.15rem; color: #94A3B8; max-width: 600px; margin: 0 auto; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; margin-bottom: 20px; font-size: .85rem; }
.breadcrumb a { color: #60A5FA; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: #64748B; }

/* ---------- ACTIVE NAV LINK ---------- */
.nav-links a.active:not(.btn) { color: #2563EB; }
.nav-links a.active:not(.btn)::after { width: 100%; }

/* ---------- MAP CONTAINER ---------- */
.map-container { border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.map-container iframe { display: block; }

/* ---------- DETAIL SECTIONS (Sub-pages) ---------- */
.detail-section { padding: 80px 0; }
.detail-section:nth-child(even) { background: #F8FAFC; }
.detail-section:nth-child(odd) { background: #fff; }

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.detail-grid.reverse { direction: rtl; }
.detail-grid.reverse > * { direction: ltr; }
.detail-content h2 { font-size: 2rem; font-weight: 800; color: #0F2B46; margin-bottom: 16px; }
.detail-content h3 { font-size: 1.3rem; font-weight: 700; color: #0F2B46; margin-bottom: 12px; }
.detail-content p { color: #475569; margin-bottom: 16px; line-height: 1.8; }

.detail-icon-box {
  width: 80px; height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, #2563EB15, #06B6D415);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: #2563EB;
  margin-bottom: 24px;
}

.checklist { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.checklist li {
  display: flex; align-items: center; gap: 12px;
  font-size: .95rem; color: #475569;
}
.checklist li i { color: #2563EB; font-size: .8rem; min-width: 16px; }

.duration-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #2563EB10, #06B6D410);
  color: #2563EB;
  font-size: .85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  margin-top: 20px;
}

/* ---------- VALUES / FEATURES GRID ---------- */
.values-grid, .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value-card, .feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  border: 1px solid #E2E8F0;
  transition: all .35s ease;
  text-align: center;
}
.value-card:hover, .feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,.06);
}
.value-card .card-icon, .feature-card .card-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, #2563EB15, #06B6D415);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: #2563EB;
  margin: 0 auto 20px;
}
.value-card h3, .feature-card h3 { font-size: 1.15rem; font-weight: 700; color: #0F2B46; margin-bottom: 10px; }
.value-card p, .feature-card p { font-size: .9rem; color: #64748B; }

/* ---------- TEAM GRID ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.team-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 24px;
  border: 1px solid #E2E8F0;
  text-align: center;
  transition: all .35s ease;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,.06); }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563EB, #06B6D4);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 2rem;
  margin: 0 auto 20px;
}
.team-card h3 { font-size: 1.05rem; font-weight: 700; color: #0F2B46; margin-bottom: 4px; }
.team-card .role { font-size: .85rem; color: #2563EB; font-weight: 600; margin-bottom: 12px; display: block; }
.team-card p { font-size: .85rem; color: #64748B; line-height: 1.6; }

/* ---------- MISSION/VISION CARDS ---------- */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.mv-card {
  background: #fff;
  border-radius: 16px;
  padding: 48px 36px;
  border: 1px solid #E2E8F0;
  transition: all .35s ease;
}
.mv-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,.06); }
.mv-card.mission { border-top: 4px solid #2563EB; }
.mv-card.vision { border-top: 4px solid #06B6D4; }
.mv-card h3 { font-size: 1.4rem; font-weight: 700; color: #0F2B46; margin-bottom: 16px; }
.mv-card p { font-size: .95rem; color: #64748B; line-height: 1.7; }

/* ---------- ENGAGEMENT MODELS ---------- */
.engagement-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.engagement-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 32px;
  border: 1px solid #E2E8F0;
  text-align: center;
  transition: all .35s ease;
}
.engagement-card.featured {
  background: linear-gradient(160deg, #0F2B46, #1E3A5F);
  border: none;
}
.engagement-card.featured h3 { color: #fff; }
.engagement-card.featured p { color: #94A3B8; }
.engagement-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,.07); }
.engagement-card h3 { font-size: 1.2rem; font-weight: 700; color: #0F2B46; margin-bottom: 12px; }
.engagement-card p { font-size: .9rem; color: #64748B; line-height: 1.7; }

/* ---------- PLATFORM DETAIL SECTIONS ---------- */
.platform-detail {
  padding: 80px 0;
  position: relative;
}
.platform-detail:nth-child(odd) { background: #fff; }
.platform-detail:nth-child(even) { background: #F8FAFC; }
.platform-detail-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}
.platform-detail-header img { width: 64px; height: 64px; }
.platform-detail-header h2 { font-size: 2rem; font-weight: 800; color: #0F2B46; }
.platform-description p { color: #475569; margin-bottom: 16px; max-width: 800px; line-height: 1.8; }
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.capability-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 24px;
  border: 1px solid #E2E8F0;
  transition: all .3s ease;
}
.capability-card:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(0,0,0,.06); }
.capability-card .cap-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2563EB10, #06B6D410);
  display: flex; align-items: center; justify-content: center;
  color: #2563EB;
  font-size: 1rem;
  margin-bottom: 14px;
}
.capability-card h4 { font-size: 1rem; font-weight: 600; color: #0F2B46; margin-bottom: 8px; }
.capability-card p { font-size: .85rem; color: #64748B; }

.platform-services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
  max-width: 700px;
}
.platform-services-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem; color: #475569;
}
.platform-services-list li i { color: #2563EB; font-size: .75rem; }

/* ---------- COMPARISON TABLE ---------- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.comparison-table th {
  background: #0F2B46;
  color: #fff;
  padding: 16px 20px;
  text-align: left;
  font-size: .9rem;
  font-weight: 600;
}
.comparison-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #E2E8F0;
  font-size: .9rem;
  color: #475569;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: #F8FAFC; }

/* ---------- INDUSTRIES GRID ---------- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.industry-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  border: 1px solid #E2E8F0;
  text-align: center;
  transition: all .35s ease;
}
.industry-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,.06); }
.industry-card .ind-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2563EB15, #06B6D415);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: #2563EB;
  margin: 0 auto 16px;
}
.industry-card h3 { font-size: 1.05rem; font-weight: 700; color: #0F2B46; margin-bottom: 8px; }
.industry-card p { font-size: .85rem; color: #64748B; }

/* ---------- METHODOLOGY GRID ---------- */
.methodology-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ---------- IMAGE PLACEHOLDERS ---------- */
.img-placeholder {
  width: 100%;
  min-height: 320px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
  border: 3px dashed rgba(37,99,235,.25);
  cursor: pointer;
  transition: all .4s ease;
}
.img-placeholder:hover {
  border-color: #2563EB;
  transform: scale(1.02);
}
.img-placeholder .placeholder-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,.85);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: #2563EB;
  box-shadow: 0 8px 24px rgba(37,99,235,.15);
  transition: transform .3s;
}
.img-placeholder:hover .placeholder-icon { transform: scale(1.1); }
.img-placeholder .placeholder-text {
  font-size: .85rem;
  font-weight: 600;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(255,255,255,.8);
  padding: 6px 18px;
  border-radius: 20px;
}

/* Gradient backgrounds for placeholders */
.img-placeholder.grad-blue {
  background: linear-gradient(135deg, #EFF6FF, #DBEAFE, #BFDBFE);
}
.img-placeholder.grad-cyan {
  background: linear-gradient(135deg, #ECFEFF, #CFFAFE, #A5F3FC);
}
.img-placeholder.grad-purple {
  background: linear-gradient(135deg, #F5F3FF, #EDE9FE, #DDD6FE);
}
.img-placeholder.grad-green {
  background: linear-gradient(135deg, #ECFDF5, #D1FAE5, #A7F3D0);
}
.img-placeholder.grad-amber {
  background: linear-gradient(135deg, #FFFBEB, #FEF3C7, #FDE68A);
}
.img-placeholder.grad-rose {
  background: linear-gradient(135deg, #FFF1F2, #FFE4E6, #FECDD3);
}
.img-placeholder.grad-navy {
  background: linear-gradient(135deg, #0F2B46, #1A3A5C, #1E4D7B);
  border-color: rgba(96,165,250,.3);
}
.img-placeholder.grad-navy .placeholder-text { color: #94A3B8; background: rgba(15,43,70,.6); }
.img-placeholder.grad-navy .placeholder-icon { color: #60A5FA; background: rgba(255,255,255,.1); }

/* Hero image placeholder */
.hero-img-placeholder {
  min-height: 400px;
  max-width: 520px;
  margin: 0 auto;
}

/* Small square placeholders for team */
.img-placeholder.placeholder-avatar {
  width: 120px; height: 120px;
  min-height: auto;
  border-radius: 50%;
  margin: 0 auto 20px;
}
.img-placeholder.placeholder-avatar .placeholder-icon { width: 48px; height: 48px; font-size: 1.2rem; }
.img-placeholder.placeholder-avatar .placeholder-text { display: none; }

/* ---------- COLORFUL SERVICE DETAIL SECTIONS ---------- */
.service-detail { position: relative; overflow: hidden; }
.service-detail:nth-child(odd) { background: #fff; }
.service-detail:nth-child(even) { background: #F8FAFC; }

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.service-row-image-right { direction: rtl; }
.service-row-image-right > * { direction: ltr; }

.service-icon-box {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
/* Different colors for each service */
.service-detail-1 .service-icon-box { background: linear-gradient(135deg, #2563EB, #1D4ED8); color: #fff; }
.service-detail-2 .service-icon-box { background: linear-gradient(135deg, #06B6D4, #0891B2); color: #fff; }
.service-detail-3 .service-icon-box { background: linear-gradient(135deg, #8B5CF6, #7C3AED); color: #fff; }
.service-detail-4 .service-icon-box { background: linear-gradient(135deg, #059669, #047857); color: #fff; }
.service-detail-5 .service-icon-box { background: linear-gradient(135deg, #F59E0B, #D97706); color: #fff; }
.service-detail-6 .service-icon-box { background: linear-gradient(135deg, #EF4444, #DC2626); color: #fff; }

.service-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.service-detail-1 .service-title { color: #1D4ED8; }
.service-detail-2 .service-title { color: #0891B2; }
.service-detail-3 .service-title { color: #7C3AED; }
.service-detail-4 .service-title { color: #047857; }
.service-detail-5 .service-title { color: #D97706; }
.service-detail-6 .service-title { color: #DC2626; }

.service-content p { color: #475569; margin-bottom: 16px; line-height: 1.8; }
.service-deliverables { margin-top: 24px; }
.service-deliverables h4 {
  font-size: .95rem;
  font-weight: 700;
  color: #0F2B46;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.deliverables-list { display: flex; flex-direction: column; gap: 10px; }
.deliverables-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem; color: #475569;
}
.deliverables-list li i { font-size: .75rem; min-width: 14px; }
.service-detail-1 .deliverables-list li i { color: #2563EB; }
.service-detail-2 .deliverables-list li i { color: #06B6D4; }
.service-detail-3 .deliverables-list li i { color: #8B5CF6; }
.service-detail-4 .deliverables-list li i { color: #059669; }
.service-detail-5 .deliverables-list li i { color: #F59E0B; }
.service-detail-6 .deliverables-list li i { color: #EF4444; }

/* Service image placeholders with matching colors */
.service-image-placeholder {
  width: 100%;
  min-height: 360px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 3px dashed rgba(0,0,0,.1);
  transition: all .4s;
  cursor: pointer;
  position: relative;
}
.service-image-placeholder:hover { transform: scale(1.02); }
.service-image-placeholder i {
  font-size: 3rem;
  opacity: .3;
}
.service-image-placeholder::after {
  content: 'Add Your Image';
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.7);
  color: #64748B;
}
.service-detail-1 .service-image-placeholder { background: linear-gradient(135deg, #EFF6FF, #DBEAFE); border-color: rgba(37,99,235,.2); }
.service-detail-1 .service-image-placeholder i { color: #2563EB; }
.service-detail-2 .service-image-placeholder { background: linear-gradient(135deg, #ECFEFF, #CFFAFE); border-color: rgba(6,182,212,.2); }
.service-detail-2 .service-image-placeholder i { color: #06B6D4; }
.service-detail-3 .service-image-placeholder { background: linear-gradient(135deg, #F5F3FF, #EDE9FE); border-color: rgba(139,92,246,.2); }
.service-detail-3 .service-image-placeholder i { color: #8B5CF6; }
.service-detail-4 .service-image-placeholder { background: linear-gradient(135deg, #ECFDF5, #D1FAE5); border-color: rgba(5,150,105,.2); }
.service-detail-4 .service-image-placeholder i { color: #059669; }
.service-detail-5 .service-image-placeholder { background: linear-gradient(135deg, #FFFBEB, #FEF3C7); border-color: rgba(245,158,11,.2); }
.service-detail-5 .service-image-placeholder i { color: #F59E0B; }
.service-detail-6 .service-image-placeholder { background: linear-gradient(135deg, #FFF1F2, #FFE4E6); border-color: rgba(239,68,68,.2); }
.service-detail-6 .service-image-placeholder i { color: #EF4444; }

/* ---------- ABOUT PAGE STYLES ---------- */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.story-image-box {
  width: 100%;
  min-height: 380px;
  border-radius: 20px;
  background: linear-gradient(135deg, #EFF6FF, #DBEAFE, #BFDBFE);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px dashed rgba(37,99,235,.2);
  cursor: pointer;
  transition: all .4s;
}
.story-image-box:hover { transform: scale(1.02); border-color: #2563EB; }
.story-image-box i { font-size: 4rem; color: #2563EB; opacity: .2; }
.story-content p { color: #475569; margin-bottom: 16px; line-height: 1.8; }

.mission-vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.mission-card, .vision-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 32px;
  border: 1px solid #E2E8F0;
  transition: all .35s ease;
}
.mission-card { border-left: 5px solid #2563EB; }
.vision-card { border-left: 5px solid #06B6D4; }
.mission-card:hover, .vision-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,.06); }
.mv-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.mission-card .mv-icon { background: linear-gradient(135deg, #2563EB, #1D4ED8); color: #fff; }
.vision-card .mv-icon { background: linear-gradient(135deg, #06B6D4, #0891B2); color: #fff; }
.mission-card h3, .vision-card h3 { font-size: 1.3rem; font-weight: 700; color: #0F2B46; margin-bottom: 12px; }
.mission-card p, .vision-card p { color: #64748B; line-height: 1.7; margin-bottom: 14px; }
.mission-points { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.mission-points li { font-size: .9rem; color: #475569; line-height: 1.6; }

.value-props-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-prop-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  border: 1px solid #E2E8F0;
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}
.value-prop-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, #2563EB, #06B6D4);
  opacity: 0;
  transition: opacity .3s;
}
.value-prop-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,.06); }
.value-prop-card:hover::before { opacity: 1; }
.vp-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2563EB15, #06B6D415);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: #2563EB;
  margin-bottom: 16px;
}
.value-prop-card h3 { font-size: 1.1rem; font-weight: 700; color: #0F2B46; margin-bottom: 10px; }
.value-prop-card p { font-size: .88rem; color: #64748B; line-height: 1.7; }

/* About page team cards with image placeholders */
.team-image {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563EB, #06B6D4);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  border: 3px dashed rgba(255,255,255,.3);
  cursor: pointer;
  transition: all .3s;
}
.team-image:hover { transform: scale(1.08); border-color: #fff; }
.team-image i { font-size: 2.5rem; color: #fff; opacity: .6; }
.team-title { font-size: .85rem; color: #2563EB; font-weight: 600; margin-bottom: 12px; display: block; }
.team-bio { font-size: .85rem; color: #64748B; line-height: 1.6; margin-bottom: 12px; }
.team-meta { display: flex; flex-direction: column; gap: 6px; margin-top: 12px; }
.team-meta span { font-size: .78rem; color: #94A3B8; display: flex; align-items: center; gap: 6px; justify-content: center; }
.team-meta i { color: #2563EB; font-size: .7rem; }

/* About page values */
.value-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 16px;
}
.our-values .value-card:nth-child(1) .value-icon { background: linear-gradient(135deg, #EF4444, #DC2626); color: #fff; }
.our-values .value-card:nth-child(2) .value-icon { background: linear-gradient(135deg, #F59E0B, #D97706); color: #fff; }
.our-values .value-card:nth-child(3) .value-icon { background: linear-gradient(135deg, #2563EB, #1D4ED8); color: #fff; }
.our-values .value-card:nth-child(4) .value-icon { background: linear-gradient(135deg, #8B5CF6, #7C3AED); color: #fff; }

/* ---------- PROCESS PAGE STYLES ---------- */
.step-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.step-layout.reverse { direction: rtl; }
.step-layout.reverse > * { direction: ltr; }
.step-visual-box {
  width: 100%;
  min-height: 300px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px dashed rgba(0,0,0,.1);
  cursor: pointer;
  transition: all .4s;
}
.step-visual-box:hover { transform: scale(1.02); }
.step-visual-box i { font-size: 4rem; opacity: .25; }
.step-01 .step-visual-box { background: linear-gradient(135deg, #EFF6FF, #DBEAFE); border-color: rgba(37,99,235,.2); }
.step-01 .step-visual-box i { color: #2563EB; }
.step-02 .step-visual-box { background: linear-gradient(135deg, #ECFEFF, #CFFAFE); border-color: rgba(6,182,212,.2); }
.step-02 .step-visual-box i { color: #06B6D4; }
.step-03 .step-visual-box { background: linear-gradient(135deg, #F5F3FF, #EDE9FE); border-color: rgba(139,92,246,.2); }
.step-03 .step-visual-box i { color: #8B5CF6; }
.step-04 .step-visual-box { background: linear-gradient(135deg, #ECFDF5, #D1FAE5); border-color: rgba(5,150,105,.2); }
.step-04 .step-visual-box i { color: #059669; }
.step-05 .step-visual-box { background: linear-gradient(135deg, #FFFBEB, #FEF3C7); border-color: rgba(245,158,11,.2); }
.step-05 .step-visual-box i { color: #F59E0B; }

.step-header { margin-bottom: 20px; }
.process-step .step-number {
  display: inline-block;
  min-width: auto; width: auto; height: auto;
  border-radius: 8px;
  padding: 6px 16px;
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.step-01 .step-number { background: linear-gradient(135deg, #2563EB, #1D4ED8); }
.step-02 .step-number { background: linear-gradient(135deg, #06B6D4, #0891B2); }
.step-03 .step-number { background: linear-gradient(135deg, #8B5CF6, #7C3AED); }
.step-04 .step-number { background: linear-gradient(135deg, #059669, #047857); }
.step-05 .step-number { background: linear-gradient(135deg, #F59E0B, #D97706); }

.step-header h2 { font-size: 1.8rem; font-weight: 800; color: #0F2B46; margin-bottom: 8px; }
.step-duration { font-size: .9rem; color: #64748B; }
.step-description p { color: #475569; margin-bottom: 14px; line-height: 1.8; }
.step-activities { margin-top: 24px; }
.step-activities h4 { font-size: .9rem; font-weight: 700; color: #0F2B46; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .5px; }
.activities-list { display: flex; flex-direction: column; gap: 8px; }
.activities-list li { display: flex; align-items: center; gap: 10px; font-size: .88rem; color: #475569; }
.activities-list li i { color: #2563EB; font-size: .75rem; min-width: 14px; }
.step-deliverables { margin-top: 16px; padding: 14px 20px; background: #F8FAFC; border-radius: 12px; border-left: 3px solid #2563EB; }
.step-deliverables p { font-size: .85rem; color: #64748B; margin: 0; }

/* ---------- PLATFORMS PAGE STYLES ---------- */
.platforms-intro { background: #fff; }
.intro-content h2 { font-size: 2rem; font-weight: 800; color: #0F2B46; margin-bottom: 16px; }
.intro-content p { color: #475569; line-height: 1.8; max-width: 800px; }

.platform-header { display: flex; align-items: center; gap: 24px; margin-bottom: 32px; }
.platform-logo-large { width: 80px; height: 80px; min-width: 80px; }
.platform-logo-large img { width: 100%; height: 100%; }
.platform-intro h2 { font-size: 2rem; font-weight: 800; color: #0F2B46; margin-bottom: 6px; }
.platform-tagline { font-size: 1rem; color: #64748B; }

.capability-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.collibra-section .capability-icon { background: linear-gradient(135deg, #2563EB15, #1D4ED815); color: #2563EB; }
.alation-section .capability-icon { background: linear-gradient(135deg, #06B6D415, #0891B215); color: #06B6D4; }
.purview-section .capability-icon { background: linear-gradient(135deg, #8B5CF615, #7C3AED15); color: #8B5CF6; }

.services-list { margin-top: 40px; }
.services-list h3 { font-size: 1.2rem; font-weight: 700; color: #0F2B46; margin-bottom: 20px; }
.checkmark-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.checkmark-list li { display: flex; align-items: center; gap: 10px; font-size: .88rem; color: #475569; }
.checkmark-list li i { color: #2563EB; font-size: .75rem; min-width: 14px; }

.comparison-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 32px 0; }
.comparison-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
  overflow: hidden;
  transition: all .35s;
}
.comparison-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,.06); }
.featured-comparison { border: 2px solid #2563EB; }
.comparison-header {
  padding: 24px 24px 16px;
  border-bottom: 1px solid #E2E8F0;
}
.comparison-header h3 { font-size: 1.2rem; font-weight: 700; color: #0F2B46; margin-bottom: 8px; }
.comparison-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.badge-enterprise { background: #EFF6FF; color: #2563EB; }
.badge-collaborative { background: #ECFDF5; color: #059669; }
.badge-microsoft { background: #F5F3FF; color: #7C3AED; }
.comparison-body { padding: 20px 24px; }
.comparison-body h4 { font-size: .85rem; font-weight: 700; color: #0F2B46; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .5px; }
.comparison-body ul { margin-bottom: 16px; display: flex; flex-direction: column; gap: 6px; }
.comparison-body li { font-size: .85rem; color: #64748B; padding-left: 16px; position: relative; }
.comparison-body li::before { content: ''; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: #2563EB; }

.features-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,.04); }
.features-table th { background: #0F2B46; color: #fff; padding: 14px 20px; text-align: left; font-size: .88rem; font-weight: 600; }
.features-table td { padding: 12px 20px; border-bottom: 1px solid #E2E8F0; font-size: .88rem; color: #475569; text-align: center; }
.features-table td:first-child { text-align: left; }
.features-table tr:last-child td { border-bottom: none; }
.features-table tr:hover td { background: #F8FAFC; }
.text-success { color: #059669; }
.text-primary { color: #2563EB; }
.text-muted { color: #CBD5E1; }
.table-legend { font-size: .8rem; color: #94A3B8; margin-top: 16px; text-align: center; }
.comparison-intro p { color: #475569; margin-bottom: 16px; line-height: 1.8; }

/* Overview sections */
.overview-content { max-width: 800px; }
.overview-content h2 { font-size: 2rem; font-weight: 800; color: #0F2B46; margin-bottom: 16px; }
.overview-intro { color: #475569; line-height: 1.8; }

/* Industry icons */
.industry-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 16px;
}
.industries-grid .industry-card:nth-child(1) .industry-icon { background: linear-gradient(135deg, #2563EB, #1D4ED8); color: #fff; }
.industries-grid .industry-card:nth-child(2) .industry-icon { background: linear-gradient(135deg, #059669, #047857); color: #fff; }
.industries-grid .industry-card:nth-child(3) .industry-icon { background: linear-gradient(135deg, #F59E0B, #D97706); color: #fff; }
.industries-grid .industry-card:nth-child(4) .industry-icon { background: linear-gradient(135deg, #8B5CF6, #7C3AED); color: #fff; }
.industries-grid .industry-card:nth-child(5) .industry-icon { background: linear-gradient(135deg, #06B6D4, #0891B2); color: #fff; }
.industries-grid .industry-card:nth-child(6) .industry-icon { background: linear-gradient(135deg, #EF4444, #DC2626); color: #fff; }

/* Methodology & Engagement cards */
.methodology-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto 16px;
}
.methodology-grid .methodology-card:nth-child(1) .methodology-icon { background: linear-gradient(135deg, #2563EB, #1D4ED8); color: #fff; }
.methodology-grid .methodology-card:nth-child(2) .methodology-icon { background: linear-gradient(135deg, #06B6D4, #0891B2); color: #fff; }
.methodology-grid .methodology-card:nth-child(3) .methodology-icon { background: linear-gradient(135deg, #059669, #047857); color: #fff; }
.methodology-grid .methodology-card:nth-child(4) .methodology-icon { background: linear-gradient(135deg, #F59E0B, #D97706); color: #fff; }

.methodology-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  border: 1px solid #E2E8F0;
  text-align: center;
  transition: all .35s;
}
.methodology-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,.06); }
.methodology-card h3 { font-size: 1.05rem; font-weight: 700; color: #0F2B46; margin-bottom: 10px; }
.methodology-card p { font-size: .85rem; color: #64748B; line-height: 1.6; }

.engagement-card-header {
  margin-bottom: 16px;
}
.engagement-card-header i {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.engagement-card:nth-child(1) .engagement-card-header i { color: #2563EB; }
.engagement-card.featured .engagement-card-header i { color: #06B6D4; }
.engagement-card:nth-child(3) .engagement-card-header i { color: #F59E0B; }
.engagement-features { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; text-align: left; }
.engagement-features li { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: #475569; }
.engagement-card.featured .engagement-features li { color: #CBD5E1; }
.engagement-features li i { color: #2563EB; font-size: .7rem; }
.engagement-card.featured .engagement-features li i { color: #06B6D4; }

/* ---------- HIGHLIGHTED TEXT UTILITIES ---------- */
.text-blue { color: #2563EB; }
.text-cyan { color: #06B6D4; }
.text-purple { color: #8B5CF6; }
.text-green { color: #059669; }
.text-amber { color: #F59E0B; }
.highlight-box {
  background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
  border-left: 4px solid #2563EB;
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
  margin: 20px 0;
}
.highlight-box p { color: #1E3A5F; font-weight: 500; margin: 0; }

/* ---------- ANIMATIONS ---------- */
[data-animate] { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
[data-animate="fade-right"] { transform: translateX(-30px); }
[data-animate="fade-left"] { transform: translateX(30px); }
[data-animate].visible { opacity: 1; transform: translate(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero h1 { font-size: 2.8rem; }
  .page-hero h1 { font-size: 2.4rem; }
  .section-title { font-size: 2rem; }
  .services-grid, .platforms-grid, .testimonials-grid,
  .values-grid, .features-grid, .capabilities-grid,
  .industries-grid, .engagement-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .methodology-grid { grid-template-columns: repeat(2, 1fr); }
  .platform-card.featured { transform: scale(1); }
  .platform-card.featured:hover { transform: translateY(-4px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .platform-services-list { grid-template-columns: 1fr; }
  .value-props-grid { grid-template-columns: repeat(2, 1fr); }
  .comparison-cards { grid-template-columns: repeat(2, 1fr); }
  .checkmark-list { grid-template-columns: 1fr; }
  .service-row, .service-row-image-right { grid-template-columns: 1fr; direction: ltr; }
  .step-layout, .step-layout.reverse { grid-template-columns: 1fr; direction: ltr; }
  .story-grid { grid-template-columns: 1fr; }
  .mission-vision-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 20px;
    box-shadow: -5px 0 30px rgba(0,0,0,.1);
    transition: right .35s ease;
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .hamburger { display: flex; z-index: 1001; }

  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero h1 { font-size: 2.2rem; }
  .hero-desc { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-img { max-width: 360px; }

  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .about-visual { display: flex; justify-content: center; }
  .about-visual img { max-width: 320px; }
  .about-features { align-items: center; }
  .about-feature { text-align: left; }

  .services-grid, .platforms-grid, .testimonials-grid,
  .values-grid, .features-grid, .capabilities-grid,
  .industries-grid, .engagement-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .methodology-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .detail-grid, .detail-grid.reverse { grid-template-columns: 1fr; direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 48px 28px; }
  .cta-box h2 { font-size: 1.6rem; }
  .page-hero { padding: 120px 0 60px; }
  .page-hero h1 { font-size: 2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .comparison-table { font-size: .8rem; }
  .comparison-table th, .comparison-table td { padding: 10px 12px; }
  .value-props-grid { grid-template-columns: 1fr; }
  .comparison-cards { grid-template-columns: 1fr; }
  .service-row, .service-row-image-right { grid-template-columns: 1fr; direction: ltr; }
  .step-layout, .step-layout.reverse { grid-template-columns: 1fr; direction: ltr; }
  .story-grid { grid-template-columns: 1fr; }
  .mission-vision-grid { grid-template-columns: 1fr; }
  .img-placeholder { min-height: 240px; }
  .hero-img-placeholder { min-height: 280px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ─── Custom Service Images ─────────────────────────────────────── */
.service-image-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-image-wrapper:hover {
  transform: scale(1.02);
  box-shadow: 0 28px 70px rgba(0,0,0,0.18);
}
.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}
.service-image-fallback {
  width: 100%;
  height: 340px;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  border-radius: 20px;
}
/* Fallback colours per service (reuses existing palette) */
.service-detail-1 .service-image-fallback { background: linear-gradient(135deg, #EFF6FF, #DBEAFE); color: #2563EB; }
.service-detail-2 .service-image-fallback { background: linear-gradient(135deg, #ECFEFF, #CFFAFE); color: #06B6D4; }
.service-detail-3 .service-image-fallback { background: linear-gradient(135deg, #F5F3FF, #EDE9FE); color: #8B5CF6; }
.service-detail-4 .service-image-fallback { background: linear-gradient(135deg, #ECFDF5, #D1FAE5); color: #059669; }
.service-detail-5 .service-image-fallback { background: linear-gradient(135deg, #FFFBEB, #FEF3C7); color: #F59E0B; }
.service-detail-6 .service-image-fallback { background: linear-gradient(135deg, #FFF1F2, #FFE4E6); color: #EF4444; }

/* ─── About Us image ────────────────────────────────────────────── */
.story-image-box { padding: 0 !important; overflow: hidden; }
.story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}
.story-img-fallback {
  width: 100%; height: 100%;
  align-items: center; justify-content: center;
}
.story-img-fallback i { font-size: 4rem; color: #2563EB; opacity: .2; }

/* ─── Process step images ───────────────────────────────────────── */
.step-visual-box { padding: 0 !important; overflow: hidden; }
.step-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}
.step-img-fallback {
  width: 100%; height: 100%;
  align-items: center; justify-content: center;
  font-size: 4rem;
}
.step-01 .step-img-fallback { color: #2563EB; }
.step-02 .step-img-fallback { color: #06B6D4; }
.step-03 .step-img-fallback { color: #8B5CF6; }
.step-04 .step-img-fallback { color: #059669; }
.step-05 .step-img-fallback { color: #F59E0B; }

/* ─── Logo sizing — PNG is taller than original SVG, give it room ─ */
.logo-img    { height: 48px; width: auto; }
.footer-logo { height: 52px; width: auto; margin-bottom: 16px; }
