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

:root {
  --navy: #333333;
  --navy-light: #444444;
  --blue: #60269e;
  --blue-light: #7b35c0;
  --teal: #7b35c0;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.12);
  --shadow-md: 0 4px 20px rgba(0,0,0,.15);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.2);
  --radius: 6px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 600px;
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover { background: var(--blue-light); border-color: var(--blue-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(96,38,158,.35); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }

.btn-sm { padding: 9px 20px; font-size: 14px; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--navy);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.top-bar .container {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
}

.top-bar a {
  color: rgba(255,255,255,.7);
  font-size: 13px;
  font-weight: 500;
  transition: color var(--transition);
}
.top-bar a:hover { color: var(--white); }

/* ===== NAVBAR ===== */
.navbar {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  display: flex;
  align-items: center;
  height: 70px;
  gap: 8px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  margin-right: 16px;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 42px;
  width: auto;
  display: block;
}

.nav-logo-img--white {
  filter: brightness(0) invert(1);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
text-align: center;
  gap: 2px;
  flex: 1;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-800);
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
}

.nav-link:hover, .nav-item:hover .nav-link { color: var(--blue); background: var(--gray-50); }

.nav-link svg { width: 14px; height: 14px; transition: transform var(--transition); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Mega menu */
.mega-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 24px;
  min-width: 520px;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  display: grid;
  gap: 8px;
}

.mega-menu.cols-2 { grid-template-columns: 1fr 1fr; }
.mega-menu.cols-3 { grid-template-columns: 1fr 1fr 1fr; }

.nav-item:hover .mega-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.mega-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border-radius: 8px;
  transition: background var(--transition);
}
.mega-item:hover { background: var(--gray-50); }

.mega-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mega-icon.blue { background: #e8f1fd; }
.mega-icon.teal { background: #e5f7f5; }
.mega-icon.orange { background: #fef3e8; }
.mega-icon.purple { background: #f0ebfd; }

.mega-icon svg { width: 20px; height: 20px; }

.mega-item-title { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.mega-item-desc { font-size: 12px; color: var(--gray-600); line-height: 1.5; }

/* Dropdown simple */
.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  transform: translateY(8px);
  padding: 8px;
}

.nav-item:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-800);
  border-radius: 6px;
  transition: all var(--transition);
}
.dropdown a:hover { background: var(--gray-50); color: var(--blue); }

/* Nav CTA buttons */
.nav-cta { display: flex; gap: 10px; align-items: center; margin-left: auto; }

/* Hamburger */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gray-800); margin: 5px 0; border-radius: 2px; transition: all var(--transition); }

/* ===== HERO ===== */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 65vh;
  background: var(--navy);
  overflow: hidden;
}

.hero-top {
  position: relative;
  z-index: 2;
  padding: 80px 0 60px;
  width: 100%;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
max-height: 900px;

}

.hero h1 {
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}

.hero h1 {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
  text-shadow: 0 2px 16px rgba(0,0,0,.6);
}

.hero h1 span { color: var(--teal); }

.hero p {
  font-size: 18px;
  color: rgba(255,255,255,.9);
  max-width: 840px;
  margin-bottom: 40px;
  line-height: 1.7;
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 48px;
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  justify-content: center;
}

.hero-stat-num {
  font-size: 36px;
  font-weight: 800px;
  color: var(--white);
  line-height: 1;
}

.hero-stat-num span { color: var(--teal); }

.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  margin-top: 4px;
  font-weight: 500;
}


.hero-screen {
  position: relative;
  width: 100%;
  max-width: 800px;
}

.hero-screen-main {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.screen-bar {
  background: rgba(255,255,255,.08);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.screen-dot { width: 10px; height: 10px; border-radius: 50%; }
.screen-dot.red { background: #ff5f57; }
.screen-dot.yellow { background: #febc2e; }
.screen-dot.green { background: #28c840; }

.screen-body { padding: 24px; }

.screen-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.screen-block {
  border-radius: 8px;
  flex: 1;
}

.screen-block.tall { height: 80px; }
.screen-block.medium { height: 55px; }
.screen-block.short { height: 35px; }
.screen-block.wide { flex: 2; }

.screen-block.blue { background: rgba(96,38,158,.5); }
.screen-block.teal { background: rgba(119,86,157,.4); }
.screen-block.gray { background: rgba(255,255,255,.08); }
.screen-block.light { background: rgba(255,255,255,.15); }

/* Floating badges */
.float-badge {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  animation: float 4s ease-in-out infinite;
}

.float-badge:nth-child(2) { animation-delay: -2s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.float-badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.float-badge-icon.blue { background: #e8f1fd; }
.float-badge-icon.green { background: #e5f7f5; }
.float-badge-icon svg { width: 18px; height: 18px; }

/* ===== HERO CAROUSEL ===== */
.hero-carousel-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
}

.hero-carousel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.52);
  z-index: 1;
  pointer-events: none;
}

.hero-carousel .carousel-track,
.hero-carousel .carousel-btn,
.hero-carousel .carousel-dots,
.hero-carousel .carousel-caption {
  z-index: 2;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.carousel-slide.active { opacity: 1; }

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.carousel-caption {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 8px 14px;
  background: rgba(0,0,0,.5);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: 6px;
  color: white;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  max-width: calc(100% - 32px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  z-index: 5;
}
.carousel-btn:hover { background: rgba(255,255,255,.35); }
.carousel-btn svg { width: 18px; height: 18px; }
.carousel-prev { left: 16px; }
.carousel-next { right: 16px; }

.carousel-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 90%;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

/* Responsive carousel */
@media (max-width: 900px) {
  .carousel-btn {
    width: 38px;
    height: 38px;
  }
  .carousel-btn svg { width: 16px; height: 16px; }
  .carousel-prev { left: 10px; }
  .carousel-next { right: 10px; }
  .carousel-caption {
    font-size: 12px;
    padding: 6px 12px;
    top: 12px;
    right: 12px;
  }
  .carousel-dots { bottom: 18px; }
}

@media (max-width: 640px) {
  .carousel-btn {
    width: 34px;
    height: 34px;
    background: rgba(0,0,0,.35);
  }
  .carousel-btn svg { width: 14px; height: 14px; }
  .carousel-prev { left: 8px; }
  .carousel-next { right: 8px; }
  .carousel-caption {
    font-size: 11px;
    padding: 5px 10px;
    top: 10px;
    right: 10px;
  }
  .carousel-dot { width: 7px; height: 7px; }
  .carousel-dot.active { width: 20px; }
  .carousel-dots {
    bottom: 14px;
    gap: 6px;
  }
}

@media (max-width: 420px) {
  .carousel-slide img {
    object-position: center center;
  }
  .carousel-caption {
    max-width: calc(100% - 80px);
  }
}
.carousel-dot.active {
  background: white;
  width: 24px;
  border-radius: 4px;
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4), 0 2px 6px rgba(0,0,0,.15);
  z-index: 999;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
  animation: wa-pulse 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37,211,102,.55), 0 4px 12px rgba(0,0,0,.2);
  animation: none;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,.5); }
  50% { box-shadow: 0 4px 16px rgba(37,211,102,.4), 0 0 0 14px rgba(37,211,102,0); }
}

@media (max-width: 640px) {
  .whatsapp-float {
    width: 54px;
    height: 54px;
    bottom: 18px;
    right: 18px;
  }
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* ===== HERO-TOP SHOWCASE (inside hero-top) ===== */
.hero-top {
  position: relative;
}

.htop-showcase {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.htop-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}

.htop-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.htop-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.htop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.htop-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(28px, 4vw, 64px);
  color: white;
}

.htop-title {
  font-size: clamp(20px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
  color: white;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}

.htop-text {
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.7;
  color: rgba(255,255,255,.95);
  max-width: 540px;
  margin: 0;
}

.htop-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.htop-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.htop-dot.active {
  background: white;
  width: 24px;
  border-radius: 5px;
}

@media (max-width: 900px) {
  .htop-slide {
    grid-template-columns: 1fr;
    grid-template-rows: 220px auto;
  }
  .htop-image { min-height: 220px; }
  .htop-content { padding: 28px 20px 50px; }
  .htop-title { font-size: 24px; margin-bottom: 10px; }
  .htop-text { font-size: 14px; }
}

/* ===== LOGOS STRIP ===== */
.logos-strip {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 32px 0;
}

.logos-strip p {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 24px;
}

.logos-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.logo-placeholder {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: -0.5px;
}

/* ===== USE CASES TABS ===== */
.use-cases { padding: 96px 0; background: var(--white); }

.use-cases-header {
  text-align: center;
  margin-bottom: 48px;
}

.tabs {
  display: flex;
  border-bottom: 2px solid var(--gray-200);
  margin-bottom: 48px;
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }

.tab-btn {
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-600);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
  margin-bottom: -2px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tab-btn:hover { color: var(--navy); }
.tab-btn.active { color: var(--blue); border-bottom-color: var(--blue); }

.tab-panel { display: none; }
.tab-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

.tab-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.tab-content p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 28px;
}

.tab-features {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}

.tab-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-800);
}

.tab-feature-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tab-feature-icon svg { width: 13px; height: 13px; fill: white; }

.tab-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  position: relative;
}

/* Industry image placeholders with gradient */
.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.img-placeholder svg { width: 64px; height: 64px; opacity: .6; }
.img-placeholder span { font-size: 16px; font-weight: 600; opacity: .7; }

.grad-blue { background: linear-gradient(135deg, #1a3a6c, #60269e); color: white; }
.grad-teal { background: linear-gradient(135deg, #0a5a52, #7b35c0); color: white; }
.grad-purple { background: linear-gradient(135deg, #3a1a6c, #7c4fc4); color: white; }
.grad-orange { background: linear-gradient(135deg, #6c3a0a, #c47c1a); color: white; }
.grad-green { background: linear-gradient(135deg, #1a4a1a, #2e8b57); color: white; }

/* ===== SOLUTIONS GRID ===== */
.solutions { padding: 96px 0; background: var(--gray-50); }

.solutions-header { margin-bottom: 56px; }

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.solution-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  cursor: pointer;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}

.solution-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.solution-icon.blue { background: #e8f1fd; }
.solution-icon.teal { background: #e5f7f5; }
.solution-icon.orange { background: #fef3e8; }
.solution-icon.purple { background: #f0ebfd; }
.solution-icon.green { background: #e6f4ec; }
.solution-icon.red { background: #fde8e8; }
.solution-icon.cyan { background: #e5f5fd; }
.solution-icon.indigo { background: #eae8fd; }

.solution-icon svg { width: 26px; height: 26px; }

.solution-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.solution-card p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}

.learn-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}
.solution-card:hover .learn-more { gap: 8px; }

/* ===== PLATFORM (Products) ===== */
.platform { padding: 96px 0; background: var(--navy); }

.platform-header { text-align: center; margin-bottom: 56px; }
.platform-header .section-title { color: var(--white); }
.platform-header .section-subtitle { color: rgba(255,255,255,.65); margin: 0 auto; }

.platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.product-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 40px;
  transition: all var(--transition);
}

.product-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.2);
  transform: translateY(-4px);
}

.product-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.product-badge.cloud { background: rgba(14,159,142,.2); color: #4dd9c8; border: 1px solid rgba(14,159,142,.3); }
.product-badge.onprem { background: rgba(26,111,196,.2); color: #74b3ef; border: 1px solid rgba(26,111,196,.3); }

.product-card h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.product-card > p {
  font-size: 15px;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin-bottom: 28px;
}

.product-features {
  display: grid;
  gap: 10px;
  margin-bottom: 32px;
}

.product-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.8);
}

.check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.check-icon.teal { background: rgba(14,159,142,.3); }
.check-icon.blue { background: rgba(26,111,196,.3); }
.check-icon svg { width: 12px; height: 12px; fill: white; }

/* ===== FEATURES / WHY US ===== */
.features { padding: 96px 0; background: var(--white); }

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}


.features-list { display: grid; gap: 32px; }

.feature-item { display: flex; gap: 18px; }

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #e8f1fd;
}
.feature-icon-wrap svg { width: 24px; height: 24px; }

.feature-item h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.feature-item p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
}

.features-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.features-visual .img-placeholder { height: 480px; }

/* Stats inside visual */
.stats-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stat-chip {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
}

.stat-chip-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.stat-chip-num span { color: var(--teal); }
.stat-chip-label { font-size: 11px; color: var(--gray-600); font-weight: 500; margin-top: 3px; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 96px 0; background: var(--gray-50); }

.testimonials-header { text-align: center; margin-bottom: 56px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-size: 72px;
  color: var(--blue);
  opacity: .15;
  position: absolute;
  top: 16px;
  left: 24px;
  font-family: Georgia, serif;
  line-height: 1;
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.stars span { color: #f59e0b; font-size: 16px; }

.testimonial-text {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.author-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.author-role { font-size: 12px; color: var(--gray-400); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--blue) 0%, #77569d 100%);
  padding: 80px 0;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}

.cta-banner h2 {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.cta-banner p { font-size: 17px; color: rgba(255,255,255,.8); }

.cta-actions { display: flex; gap: 12px; flex-shrink: 0; }

/* ===== CONTACT / FORM ===== */
.contact { padding: 96px 0; background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-details { display: grid; gap: 24px; }

.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #e8f1fd;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; }

.contact-detail h5 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.contact-detail p { font-size: 14px; color: var(--gray-600); }

/* Form */
.form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,111,196,.12);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}
.form-checkbox input { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--blue); }
.form-checkbox label { font-size: 13px; color: var(--gray-600); line-height: 1.5; }
.form-checkbox a { color: var(--blue); }

/* ===== FOOTER ===== */
footer {
  background: #60269e;
  padding: 72px 0 0;
  color: rgba(255,255,255,.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 240px;
}

.footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.6);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p { font-size: 13px; }

.social-links { display: flex; gap: 12px; }

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.social-link:hover { background: var(--blue); }
.social-link svg { width: 16px; height: 16px; fill: rgba(255,255,255,.7); }

/* ===== MOBILE NAV ===== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  overflow-y: auto;
  padding: 80px 24px 40px;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu.open { display: flex; }

.mobile-nav-link {
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  border-radius: 8px;
  border-bottom: 1px solid var(--gray-100);
}

.mobile-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gray-100);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== ANIMATIONS ===== */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate][data-delay="1"] { transition-delay: 0.1s; }
[data-animate][data-delay="2"] { transition-delay: 0.2s; }
[data-animate][data-delay="3"] { transition-delay: 0.3s; }
[data-animate][data-delay="4"] { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .solutions-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; margin-left: auto; }

  .hero { min-height: 80vh; }
  .hero h1 { font-size: 36px; }

  .hero-content {
    padding: 28px 24px;
  }

  .hero-stats {
    gap: 28px;
    margin-top: 40px;
    padding-top: 28px;
  }

  .tab-panel.active { grid-template-columns: 1fr; }
  .tab-image { order: -1; aspect-ratio: 16/9; }

  .platform-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .features-visual { order: -1; }
  .features-visual .img-placeholder { height: 300px; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .cta-inner { grid-template-columns: 1fr; }
  .cta-actions { flex-wrap: wrap; }

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

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .solutions-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero {
    min-height: 70vh;
  }
  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 24px;
  }
  .hero-stat-num { font-size: 28px; }
  .hero-stat-label { font-size: 11px; }
  .hero-content {
    padding: 24px 20px;
  }
  .hero h1 { font-size: 28px; }
  .hero p { font-size: 15px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .stats-overlay { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .hero { min-height: 75vh; }
  .hero h1 { font-size: 24px; }
  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }
}
