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

:root {
  --primary: #0066cc;
  --primary-dark: #004da3;
  --primary-light: #4c99ff;
  --accent: #f97316;
  --dark: #051b3d;
  --dark2: #08244f;
  --dark3: #0a2d61;
  --text: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --white: #ffffff;
  --bg: #ffffff;
  --bg-alt: #f1f5f9;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow: 0 4px 20px rgba(0,0,0,0.05);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.1);
  --radius: 8px;
  --radius-lg: 12px;
  --nav-h: 80px;
  --topbar-h: 40px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

/* ===========================
   TOP BAR
=========================== */
.top-bar {
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  font-size: 12.5px;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar .sep { opacity: 0.4; }

.top-bar .icon {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-icon svg {
  width: 44px;
  height: 44px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.3px;
}

.logo-tagline {
  font-size: 11px;
  color: var(--primary);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background: rgba(0,102,204,0.07);
}

/* Dropdown Base */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  min-width: 220px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  pointer-events: none;
}

/* Bridge to prevent menu from closing when moving mouse from link to menu */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  height: 15px;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.dropdown-item {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}

.dropdown-item:hover {
  background: rgba(0,102,204,0.06);
  color: var(--primary);
  padding-left: 20px;
}

.nav-link-with-caret {
  display: flex;
  align-items: center;
  gap: 6px;
}

.caret {
  width: 10px;
  height: 10px;
  transition: transform 0.3s ease;
  opacity: 0.7;
}

.nav-dropdown:hover .caret {
  transform: rotate(180deg);
  opacity: 1;
}

/* Mobile Dropdown Adjustments */
@media (max-width: 768px) {
  .nav-dropdown {
    flex-direction: column;
    align-items: stretch;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    padding: 0 0 0 20px;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    pointer-events: auto;
    border-radius: 0;
    background: transparent;
    min-width: 0;
  }

  /* On mobile, we might want to toggle this with a class, 
     but for now let's make it always visible inside the hamburger for simplicity 
     unless user specifically asked for mobile toggles. 
     The request didn't specify, so I'll make them expand when the parent is hovered/clicked.
  */
  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown.active .dropdown-menu {
    max-height: 500px;
    margin-top: 5px;
    margin-bottom: 10px;
    opacity: 1;
    visibility: visible;
  }

  .nav-dropdown.active .caret {
    transform: rotate(180deg);
  }

  .dropdown-item {
    font-size: 14px;
    padding: 12px 16px;
  }
}


.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
  font-family: inherit;
}

.btn svg { width: 16px; height: 16px; }

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0,102,204,0.35);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  transform: scale(0);
  transition: transform 0.6s ease-out;
}

.btn-primary:hover::after {
  transform: scale(1);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  box-shadow: 0 6px 20px rgba(0,102,204,0.5), 0 0 15px rgba(0,102,204,0.3);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
  border-radius: 10px;
}

/* ===========================
   HAMBURGER
=========================== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  border-radius: 8px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===========================
   HERO SECTION
=========================== */
.bg-dots {
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 24px 24px;
}

.hero {
  background: var(--dark);
  padding: 100px 0;
  position: relative;
}

.hero-stats-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 40px;
}

.hero-stat-item .val {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
}

.hero-stat-item .lab {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.client-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 20px;
  text-align: center;
  color: rgba(255,255,255,0.7);
  border-radius: var(--radius);
}

.contact-card {
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

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

.solution-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.solution-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,102,204,0.18);
  border-color: var(--primary-light);
}

.solution-img-wrap { overflow: hidden; }

.solution-img {
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.5s ease;
}

.solution-card:hover .solution-img { transform: scale(1.03); }

.solution-img-1 { background: linear-gradient(135deg, #0a1628, #0d3a6e, #1a5fb4); }
.solution-img-2 { background: linear-gradient(135deg, #051a0a, #0d3a1e, #145a30); }
.solution-img-3 { background: linear-gradient(135deg, #1a0a00, #3d1a00, #6b2d00); }
.solution-img-4 { background: linear-gradient(135deg, #12001a, #2d0042, #5a0082); }

.img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.5));
}

.solution-img-icon {
  position: relative;
  z-index: 1;
}

.solution-img-icon svg { width: 96px; height: 96px; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3)); }

.solution-body { padding: 28px; }

.solution-tag {
  display: inline-block;
  background: rgba(0,102,204,0.1);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.solution-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.3px;
  margin-bottom: 10px;
  line-height: 1.3;
}

.solution-body p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.btn-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-learn-more svg { width: 16px; height: 16px; transition: var(--transition); }

.btn-learn-more:hover { color: var(--primary-dark); }
.btn-learn-more:hover svg { transform: translateX(4px); }

/* ===========================
   WHY SECTION
=========================== */
.why-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 50%, #0a2050 100%);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,102,204,0.15) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.why-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(0,153,255,0.3);
  transform: translateY(-4px);
}

.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

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

.why-icon-blue { background: rgba(0,102,204,0.2); }
.why-icon-blue svg { stroke: #7dd3fc; }
.why-icon-green { background: rgba(16,185,129,0.2); }
.why-icon-green svg { stroke: #6ee7b7; }
.why-icon-orange { background: rgba(249,115,22,0.2); }
.why-icon-orange svg { stroke: #fdba74; }
.why-icon-purple { background: rgba(139,92,246,0.2); }
.why-icon-purple svg { stroke: #c4b5fd; }

.why-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ===========================
   CLIENTS SECTION
=========================== */
.clients-section {
  padding: 100px 0;
  background: var(--white);
}

.clients-ticker-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  margin-bottom: 60px;
}

.clients-ticker {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: ticker 30s linear infinite;
}

.clients-ticker:hover { animation-play-state: paused; }

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.client-logo-item { flex-shrink: 0; }

.client-logo-box {
  width: 160px;
  height: 72px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: default;
}

.client-logo-box:hover {
  background: rgba(0,102,204,0.06);
  border-color: var(--primary);
}

.client-logo-box span {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.3;
  transition: var(--transition);
}

.client-logo-box:hover span { color: var(--primary); }

/* Count row */
.client-count-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: linear-gradient(135deg, var(--primary) 0%, #0052a3 100%);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 12px 40px rgba(0,102,204,0.3);
}

.client-count-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.count-num {
  font-size: 44px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1;
}

.count-plus {
  font-size: 32px;
  font-weight: 900;
  color: rgba(255,255,255,0.7);
  line-height: 1;
  align-self: flex-start;
  margin-top: 4px;
}

.client-count-item { position: relative; }
.client-count-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: rgba(255,255,255,0.2);
}

.client-count-item {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  justify-content: center;
  align-items: start;
  column-gap: 2px;
}

.count-num { grid-column: 1; grid-row: 1; }
.count-plus { grid-column: 2; grid-row: 1; }
.count-label {
  grid-column: 1 / -1;
  grid-row: 2;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 6px;
  text-align: center;
}

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
}

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

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 32px;
  transition: var(--transition);
}

.testimonial-card.featured {
  background: rgba(0,102,204,0.2);
  border-color: rgba(0,153,255,0.3);
  transform: scale(1.02);
}

.testimonial-card:hover {
  transform: scale(1.02) translateY(-4px);
  border-color: rgba(0,153,255,0.4);
}

.testimonial-card.featured:hover { transform: scale(1.04) translateY(-4px); }

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.stars svg { width: 16px; height: 16px; }

.testimonial-text {
  font-size: 14.5px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 14px;
  color: var(--white);
  font-weight: 600;
}

.author-info span {
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
}

/* ===========================
   CTA SECTION
=========================== */
.cta-section {
  padding: 100px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.cta-bg-pattern {
  position: absolute;
  inset: 0;
  background: 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='%230066cc' fill-opacity='0.03'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2L40 38v-2zm0 4L80 0v2L42 40h-2zm4 0L80 4v2L46 40h-2zm4 0L80 8v2L50 40h-2zm4 0l28-28v2L54 40h-2zm4 0l24-24v2L58 40h-2zm4 0l20-20v2L62 40h-2zm4 0l16-16v2L66 40h-2zm4 0l12-12v2L70 40h-2zm4 0l8-8v2L74 40h-2zm4 0l4-4v2L78 40h-2zm2 0l2-2v2h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
}

.cta-content h2 {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.8px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-content > p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14.5px;
  color: var(--text);
  background: var(--white);
  font-family: inherit;
  transition: var(--transition);
  outline: none;
  appearance: none;
}

.cta-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0,102,204,0.1);
}

.cta-submit {
  width: 100%;
  justify-content: center;
}

.cta-note {
  font-size: 12.5px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 4px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 14px;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.info-card:last-child { margin-bottom: 0; }

.info-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(0,102,204,0.1);
}

.info-card svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.info-card strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}

.info-card span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--dark);
  padding: 72px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo { margin-bottom: 16px; }
.footer .logo-name { color: var(--white); }

.footer-brand-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 24px;
}

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

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.social-link svg { width: 17px; height: 17px; }

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }

.footer-bottom {
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ===========================
   TOAST
=========================== */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: #10b981;
  color: white;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 30px rgba(16,185,129,0.4);
  z-index: 9999;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

.toast svg { width: 20px; height: 20px; }

/* ===========================
   UTILS / SECTIONS
=========================== */
.solutions-section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background: rgba(0,102,204,0.1);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.section-badge.alt {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.2);
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content { position: relative; z-index: 1; }

.hero-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 32px;
}

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

.client-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .nav-links { gap: 0; }
  .nav-link { padding: 8px 10px; font-size: 13px; }
  .client-grid { grid-template-columns: repeat(4, 1fr); }
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-features { display: none; }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .solutions-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card.featured { transform: none; }
  .client-count-row { grid-template-columns: repeat(2, 1fr); }
  .client-count-item:nth-child(2)::after, .client-count-item:nth-child(4)::after { display: none; }
  .client-count-item:nth-child(odd)::after { display: block; }
  .client-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .top-bar { display: none; }

  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: translateY(-120%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow-y: auto;
    max-height: calc(100vh - var(--nav-h));
  }

  .nav-links.open { transform: translateY(0); }

  .nav-link { padding: 12px 16px; font-size: 15px; border-radius: 10px; }

  .nav-actions { display: none; }
  .nav-actions.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: calc(var(--nav-h) + 320px);
    left: 16px;
    right: 16px;
    z-index: 999;
    background: var(--white);
    padding: 0 16px 16px;
  }

  .hero { padding: 60px 0 80px; min-height: auto; }
  .hero-title { font-size: 32px; }
  .hero-stats { flex-wrap: wrap; justify-content: center; }

  .why-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .why-card { padding: 24px 18px; }

  .solutions-section, .why-section, .clients-section, .testimonials-section, .cta-section {
    padding: 60px 0;
  }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer { padding-top: 48px; }

  .client-count-row { grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 28px; }
  .client-count-item::after { display: none !important; }
  .count-num { font-size: 36px; }

  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn-lg { width: 100%; justify-content: center; }

  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .why-grid { grid-template-columns: 1fr; }
  .client-count-row { grid-template-columns: 1fr 1fr; }
  .hero-stats { width: 100%; }
  .stat-item { padding: 0 12px; }
  .client-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===========================
   PRODUCTS PAGE REDESIGN
   =========================== */
.hero-plus-grid {
  background-color: #051b3d;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  position: relative;
}

.hero-plus-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(5, 27, 61, 0.8));
  pointer-events: none;
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.breadcrumbs a { color: rgba(255,255,255,0.8); transition: var(--transition); }
.breadcrumbs a:hover { color: var(--white); }

.hero-tag {
  color: var(--primary-light);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}

.hero-accent-bar {
  width: 40px;
  height: 3px;
  background: var(--primary);
  margin-top: 24px;
}

/* Filter Bar */
.filter-section {
  padding: 40px 0;
  background: var(--white);
}

.filter-container {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: none;
}
.filter-container::-webkit-scrollbar { display: none; }

.filter-icon {
  color: var(--text-muted);
  flex-shrink: 0;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 100px;
  background: var(--white);
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--border);
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* Product Card V2 */
.product-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
  padding-bottom: 80px;
}

.product-card-v2 {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}

.product-card-v2:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 80px rgba(0, 102, 204, 0.12);
  border-color: rgba(0, 102, 204, 0.2);
}

.card-img-box {
  position: relative;
  height: 280px;
  background: #fcfdfe;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  overflow: hidden;
}

.card-img-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card-v2:hover .card-img-box img {
  transform: scale(1.12) rotate(-1deg);
}

.card-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.badge-new { background: #10b981; color: white; }
.badge-bestseller { background: #f97316; color: white; }

.card-content {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-cat {
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.card-title {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 14px;
  line-height: 1.2;
}

.card-desc {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 32px;
}

.card-footer {
  margin-top: auto;
  display: flex;
  gap: 12px;
}

.btn-details {
  flex: 1;
  background: var(--primary);
  color: var(--white);
  padding: 14px;
  border-radius: 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-details:hover {
  background: var(--primary-dark);
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.2);
}

.btn-arrow-icon {
  width: 52px;
  height: 52px;
  background: #f1f5f9;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  transition: all 0.3s;
}

.btn-arrow-icon:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-arrow-icon svg { width: 22px; height: 22px; }

/* Hero Enhancements */
.hero-search-wrapper {
  margin-top: 40px;
  max-width: 540px;
  position: relative;
  z-index: 5;
}

.hero-search-bar {
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  padding: 6px 6px 6px 24px;
  align-items: center;
  transition: all 0.3s;
}

.hero-search-bar:focus-within {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--primary-light);
  box-shadow: 0 0 40px rgba(0, 102, 204, 0.3);
}

.hero-search-bar input {
  background: transparent;
  border: none;
  color: white;
  font-size: 16px;
  flex: 1;
  padding: 12px 0;
}

.hero-search-bar input:focus { outline: none; }
.hero-search-bar input::placeholder { color: rgba(255, 255, 255, 0.5); }

.search-btn {
  background: var(--primary);
  color: white;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.search-btn:hover { background: var(--primary-light); transform: scale(1.05); }

@media (max-width: 640px) {
  .product-grid-v2 { grid-template-columns: 1fr; }
}

/* ===========================
   SOLUTIONS PAGE REDESIGN
   =========================== */
.solutions-main {
  background: #f8fafc;
  padding: 60px 0 100px;
}

.solutions-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

.sidebar-title {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  padding-left: 12px;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
}

.sidebar-link svg {
  width: 18px;
  height: 18px;
  color: var(--text-light);
  transition: var(--transition);
}

.sidebar-link:hover {
  background: rgba(0,102,204,0.05);
  color: var(--primary);
}

.sidebar-link:hover svg { color: var(--primary); }

.sidebar-link.active {
  background: var(--primary);
  color: var(--white);
}

.sidebar-link.active svg { color: var(--white); }

/* Content Panes */
.solution-pane {
  display: none;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  border: 1px solid var(--border);
}

.solution-pane.active {
  display: block;
  animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.pane-hero {
  position: relative;
  height: 320px;
}

.pane-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pane-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
}

.pane-hero-tag {
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.pane-hero-title {
  color: var(--white);
  font-size: 32px;
  font-weight: 800;
}

.pane-body {
  padding: 40px;
}

.pane-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #f8fafc;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
  text-align: center;
}

.stat-val {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
}

.stat-lbl {
  display: block;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px;
}

.pane-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.pane-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  margin-bottom: 40px;
}

.pane-subtitle {
  font-size: 12px;
  font-weight: 800;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: block;
}

.benefits-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: var(--text-muted);
}

.benefits-list li svg {
  width: 18px;
  height: 18px;
  color: #10b981;
  flex-shrink: 0;
}

.industry-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.industry-pill {
  background: #eff6ff;
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
}

.pane-cta-card {
  background: #f0f7ff;
  border: 1px solid rgba(0,102,204,0.1);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}

.pane-cta-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pane-cta-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

@media (max-width: 1024px) {
  .solutions-layout { grid-template-columns: 1fr; }
  .sidebar-nav { flex-direction: row; overflow-x: auto; padding-bottom: 10px; }
  .sidebar-link { white-space: nowrap; }
  .pane-grid { grid-template-columns: 1fr; }
}
