*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #070c1a;
  --navy-light: #0d1425;
  --blue-primary: #1b5ef7;
  --blue-glow: #4d8aff;
  --gold: #f0b429;
  --card: #0f1828;
  --card-alt: #121f33;
  --gray-text: #7a8599;
  --border-subtle: rgba(255, 255, 255, 0.06);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Google Sans', 'Inter', ui-sans-serif, system-ui, sans-serif;
  background: var(--navy);
  color: #f0f4ff;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--navy);
}

::-webkit-scrollbar-thumb {
  background: var(--blue-primary);
  border-radius: 2px;
}

.cursor-glow {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27, 94, 247, 0.06) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: left 0.1s ease, top 0.1s ease;
}

/* Animations */
@keyframes orb-float {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.5);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInX {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleBar {
  from {
    width: 0;
  }
}

@keyframes bounceTyping {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

.fade-in-up {
  opacity: 1;
}

.fade-in-up.will-animate {
  opacity: 0;
}

.fade-in-up.visible {
  animation: fadeInUp 0.7s ease forwards;
}

.delay-1 {
  animation-delay: 0.1s !important;
}

.delay-2 {
  animation-delay: 0.2s !important;
}

.delay-3 {
  animation-delay: 0.3s !important;
}

.delay-4 {
  animation-delay: 0.4s !important;
}

.delay-5 {
  animation-delay: 0.5s !important;
}

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
  background: rgba(7, 12, 26, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: padding 0.3s;
}

nav.scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
}

.nav-logo {
  display: flex;
  text-decoration: none;
}

.nav-logo img {
  height: 48px;
  width: auto;
}


.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--gray-text);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--blue-glow);
  transform: scaleX(0);
  transition: transform 0.25s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-phone:hover {
  color: var(--blue-glow);
}

.nav-phone i {
  color: var(--blue-glow);
  width: 16px;
  height: 16px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-primary), #2d74ff);
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(27, 94, 247, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  box-shadow: 0 6px 28px rgba(27, 94, 247, 0.45);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 60px 100px;
  position: relative;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.03;
}

#hero canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.6;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(27, 94, 247, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 94, 247, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-orb-1 {
  position: absolute;
  top: -150px;
  right: -100px;
  z-index: 0;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27, 94, 247, 0.22), transparent);
  animation: orb-float 8s ease-in-out infinite;
}

.hero-orb-2 {
  position: absolute;
  bottom: -80px;
  left: 100px;
  z-index: 0;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 180, 41, 0.1), transparent);
  animation: orb-float 11s ease-in-out infinite reverse;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(27, 94, 247, 0.1);
  border: 1px solid rgba(27, 94, 247, 0.25);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #7aaeff;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--blue-glow);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

.hero-title {
  font-family: 'Google Sans', 'Inter', sans-serif;
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s 0.15s ease both;
}

.hero-title .gold {
  color: var(--gold);
  position: relative;
}

.hero-title .gold::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  opacity: 0.35;
  border-radius: 2px;
}

.hero-title .blue {
  color: var(--blue-glow);
}

.hero-desc {
  font-size: 1rem;
  line-height: 1.85;
  color: #8fa0bc;
  max-width: 520px;
  margin-bottom: 44px;
  animation: fadeInUp 0.8s 0.3s ease both;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeInUp 0.8s 0.45s ease both;
}

.hero-stats {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-stat-card {
  background: rgba(7, 12, 26, 0.85);
  border: 1px solid rgba(27, 94, 247, 0.2);
  backdrop-filter: blur(20px);
  padding: 20px 24px;
  border-radius: 12px;
  min-width: 200px;
  transition: all 0.3s;
  animation: fadeInX 0.8s ease both;
}

.hero-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(27, 94, 247, 0.2);
}

.hero-stat-card .val {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.hero-stat-card .val .accent {
  color: var(--blue-glow);
}

.hero-stat-card .val.gold-val {
  color: var(--gold);
}

.hero-stat-card .val.gold-val .accent {
  color: var(--gold);
}

.hero-stat-card .lbl {
  font-size: 0.7rem;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.hero-stat-bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  margin-top: 12px;
  overflow: hidden;
}

.hero-stat-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue-primary), var(--blue-glow));
  border-radius: 2px;
  width: 0;
  transition: width 1.5s 1.5s ease;
}

/* ===== PARTNER LOGOS ===== */
#partners {
  background: var(--navy);
  padding: 64px 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#partners .label {
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 40px;
}

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

.logo-item {
  width: 128px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 16px;
  transition: background 0.3s;
}

.logo-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.logo-item img,
.logo-item svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ===== MANIFESTO BAR ===== */
.manifesto-bar {
  background: linear-gradient(90deg, #0a2060, var(--blue-primary), #0a2060);
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
  position: relative;
}

.manifesto-bar::before,
.manifesto-bar::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
}

.manifesto-bar::before {
  left: 0;
  background: linear-gradient(90deg, #0a2060, transparent);
}

.manifesto-bar::after {
  right: 0;
  background: linear-gradient(-90deg, #0a2060, transparent);
}

.manifesto-track {
  display: inline-flex;
  gap: 44px;
  align-items: center;
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  animation: marquee 30s linear infinite;
}

.manifesto-track span {
  display: flex;
  align-items: center;
  gap: 44px;
}

.manifesto-track .diamond {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.45rem;
}

.manifesto-track em {
  font-style: normal;
  color: var(--gold);
}

/* ===== SECTION COMMON ===== */
.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue-glow);
  display: block;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--gray-text);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 540px;
}

.divider-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-glow), transparent);
}

.divider-line.gold {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ===== SERVICES ===== */
#services {
  background: var(--navy-light);
  padding: 112px 60px;
  position: relative;
  overflow: hidden;
}

.services-header {
  max-width: 600px;
  margin-bottom: 64px;
}

.services-header .section-desc {
  margin-bottom: 16px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
}

.service-card {
  background: var(--card);
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}

.service-card:hover {
  background: var(--card-alt);
}

.service-card-img {
  height: 192px;
  overflow: hidden;
  position: relative;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  transition: opacity 0.7s, transform 0.7s;
}

.service-card:hover .service-card-img img {
  opacity: 0.6;
  transform: scale(1.1);
}

.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--card), transparent);
}

.service-card-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  z-index: 1;
}

.service-card-icon {
  position: absolute;
  bottom: 16px;
  left: 36px;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(27, 94, 247, 0.15), rgba(27, 94, 247, 0.05));
  border: 1px solid rgba(27, 94, 247, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  z-index: 1;
  transition: all 0.3s;
}

.service-card:hover .service-card-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(27, 94, 247, 0.25);
}

.service-card-body {
  padding: 44px 36px 36px;
}

.service-card-topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-primary), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.service-card:hover .service-card-topbar {
  transform: scaleX(1);
}

.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 18px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  font-size: 0.68rem;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(27, 94, 247, 0.08);
  color: #7aaeff;
  border: 1px solid rgba(27, 94, 247, 0.15);
  letter-spacing: 0.03em;
}

.service-wide {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: row;
}

.service-wide .service-card-img {
  width: 33%;
  height: auto;
  flex-shrink: 0;
}

.service-wide .service-card-img::after {
  background: linear-gradient(to right, var(--card), transparent);
}

.service-wide .service-card-body {
  flex: 1;
}

/* ===== COUNTERS ===== */
.counters {
  background: linear-gradient(135deg, #0a1a40, var(--navy-light));
  border-top: 1px solid rgba(27, 94, 247, 0.2);
  border-bottom: 1px solid rgba(27, 94, 247, 0.2);
  padding: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.counter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 20px;
  text-align: center;
}

.counter-item:last-child {
  border-right: none;
}

.counter-val {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.counter-val .suffix {
  color: var(--blue-glow);
}

.counter-val.gold-val {
  color: var(--gold);
}

.counter-val.gold-val .suffix {
  color: var(--gold);
}

.counter-label {
  font-size: 0.72rem;
  color: var(--gray-text);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ===== BUNDLE NOTE ===== */
#bundle {
  background: var(--navy);
  padding: 0 60px 88px;
}

.bundle-card {
  background: linear-gradient(135deg, rgba(15, 29, 74, 0.9), var(--card), rgba(15, 29, 74, 0.9));
  border: 1px solid rgba(27, 94, 247, 0.2);
  border-radius: 24px;
  padding: 64px;
  position: relative;
  overflow: hidden;
}

.bundle-card .top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-primary), var(--gold), var(--blue-glow));
}

.bundle-card .orb {
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27, 94, 247, 0.07), transparent);
  pointer-events: none;
}

.bundle-card .emoji {
  font-size: 2.2rem;
  margin-bottom: 40px;
  display: block;
}

.bundle-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.3px;
  margin-bottom: 14px;
}

.bundle-card .desc {
  font-size: 0.9rem;
  color: #8fa0bc;
  line-height: 1.85;
  margin-bottom: 12px;
}

.bundle-vs {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 40px;
  margin-bottom: 40px;
}

.bundle-col {
  flex: 1;
  padding: 28px;
}

.bundle-col-left {
  background: rgba(255, 255, 255, 0.015);
}

.bundle-col-right {
  background: rgba(27, 94, 247, 0.06);
  border-left: 1px solid rgba(27, 94, 247, 0.2);
}

.bundle-col .col-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.bundle-col-left .col-label {
  color: var(--gray-text);
}

.bundle-col-right .col-label {
  color: var(--blue-glow);
}

.bundle-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.84rem;
  color: #8fa0bc;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bundle-row:last-of-type {
  border-bottom: none;
}

.bundle-row .price {
  color: var(--gray-text);
  font-size: 0.78rem;
}

.bundle-check {
  font-size: 0.84rem;
  color: #fff;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bundle-check:last-of-type {
  border-bottom: none;
}

.bundle-footer-left {
  font-family: 'Syne', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gray-text);
  line-height: 1.5;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 12px;
}

.bundle-footer-right {
  font-family: 'Syne', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.5;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 12px;
}

.bundle-footer-left small,
.bundle-footer-right small {
  display: block;
  margin-top: 3px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--gray-text);
}

.bundle-vs-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.01);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-text);
  letter-spacing: 0.2em;
}

.bundle-callout {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: linear-gradient(135deg, rgba(240, 180, 41, 0.06), rgba(240, 180, 41, 0.02));
  border: 1px solid rgba(240, 180, 41, 0.18);
  border-radius: 12px;
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
}

.bundle-callout::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
}

.bundle-callout .emoji {
  font-size: 1.8rem;
  min-width: 36px;
  margin-bottom: 0;
}

.bundle-callout strong {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1.4;
  margin-bottom: 10px;
}

.bundle-callout p {
  font-size: 0.87rem;
  color: #8fa0bc;
  line-height: 1.8;
}

.bundle-btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

/* ===== INDUSTRIES ===== */
#industries {
  background: var(--navy);
  padding: 112px 60px;
}

.industries-header {
  max-width: 560px;
  margin-bottom: 56px;
}

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

.industry-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 20px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.industry-card:hover {
  border-color: rgba(27, 94, 247, 0.2);
  transform: translateY(-4px);
  background: var(--card-alt);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.industry-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-primary), var(--blue-glow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}

.industry-card:hover::after {
  transform: scaleX(1);
}

.industry-icon {
  font-size: 1.6rem;
  transition: transform 0.3s;
}

.industry-card:hover .industry-icon {
  transform: scale(1.08);
}

.industry-card h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
}

.industry-card p {
  font-size: 0.76rem;
  color: var(--gray-text);
  line-height: 1.6;
}

/* ===== WHO WE ARE ===== */
#whoweare {
  background: var(--navy-light);
  padding: 112px 60px;
  position: relative;
  overflow: hidden;
}

.whoweare-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 56px;
  align-items: start;
}

.whoweare-left .section-desc {
  margin-bottom: 16px;
}

.whoweare-left .section-desc+.section-desc {
  margin-bottom: 56px;
}

.tabs {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tab-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Syne', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-text);
  padding: 14px 28px;
  position: relative;
  transition: color 0.2s;
}

.tab-btn:hover {
  color: #fff;
}

.tab-btn.active {
  color: #fff;
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.tab-btn.active::after {
  transform: scaleX(1);
}

.tab-panel {
  background: linear-gradient(135deg, var(--card), var(--card-alt));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: none;
  border-radius: 0 0 16px 16px;
  padding: 52px 56px;
  position: relative;
  overflow: hidden;
  display: none;
}

.tab-panel.active {
  display: block;
}

.tab-panel .big-quote {
  font-family: 'Syne', sans-serif;
  font-size: 7rem;
  font-weight: 800;
  color: rgba(27, 94, 247, 0.12);
  line-height: 0.8;
  margin-bottom: 16px;
}

.tab-panel blockquote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.3px;
  color: #fff;
  margin-bottom: 24px;
  border: none;
  padding: 0;
}

.tab-panel blockquote em {
  font-style: italic;
}

.tab-panel .body-text {
  font-size: 0.9rem;
  color: #8fa0bc;
  line-height: 1.85;
  max-width: 680px;
  margin-bottom: 28px;
}

.tab-callout {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(240, 180, 41, 0.07);
  border: 1px solid rgba(240, 180, 41, 0.18);
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 0.86rem;
  color: #8fa0bc;
}

.tab-callout .icon {
  font-size: 1.2rem;
}

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

.value-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.3s;
}

.value-card:hover {
  border-color: rgba(27, 94, 247, 0.2);
  transform: translateY(-3px);
  background: rgba(27, 94, 247, 0.04);
}

.value-card .icon {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.value-card h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.value-card p {
  font-size: 0.8rem;
  color: var(--gray-text);
  line-height: 1.7;
}

.whoweare-right {
  position: relative;
  min-height: 400px;
}

.sticky-img-wrap {
  position: sticky;
  top: 128px;
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.5);
}

.sticky-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sticky-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 12, 26, 0.6), transparent);
}

.sticky-img-badge {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.sticky-img-badge .badge-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 8px;
}

.sticky-img-badge p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== WHY US ===== */
#whyus {
  background: var(--navy);
  padding: 112px 60px;
}

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

.impact-card {
  background: linear-gradient(135deg, var(--card), var(--card-alt));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 44px;
  position: relative;
  overflow: hidden;
}

.impact-card .orb {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27, 94, 247, 0.12), transparent);
  pointer-events: none;
}

.impact-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 32px;
}

.metric-item {
  padding-bottom: 26px;
  margin-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.metric-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.metric-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 10px;
}

.metric-label {
  font-size: 0.8rem;
  color: var(--gray-text);
}

.metric-val {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue-glow);
}

.metric-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  overflow: hidden;
}

.metric-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue-primary), var(--blue-glow));
  border-radius: 2px;
  width: 0;
  transition: width 1.5s 0.3s ease;
}

.metric-bar-fill.animated {}

.whyus-right {}

.whyus-right .section-title {
  margin-bottom: 24px;
}

.points-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.point-item {
  display: flex;
  gap: 16px;
  transition: transform 0.2s;
}

.point-item:hover {
  transform: translateX(4px);
}

.point-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: rgba(27, 94, 247, 0.08);
  border: 1px solid rgba(27, 94, 247, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.point-item h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.93rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.point-item p {
  font-size: 0.82rem;
  color: var(--gray-text);
  line-height: 1.7;
}

/* ===== CASE STUDIES ===== */
#results {
  background: var(--navy-light);
  padding: 112px 60px;
  position: relative;
  overflow: hidden;
}

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  gap: 24px;
}

.carousel-controls {
  display: flex;
  gap: 12px;
  margin-bottom: 8px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.carousel-btn:hover {
  background: var(--blue-primary);
  border-color: var(--blue-primary);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.client-logos-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 60px;
  margin-bottom: 64px;
}

.client-logos-strip .strip-label {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 36px;
}

.client-logos-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  opacity: 0.7;
  filter: grayscale(1);
  transition: all 0.5s;
}

.client-logos-row:hover {
  opacity: 1;
  filter: grayscale(0);
}

.client-logo-item {
  flex: 1 1 0;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.client-logo-item:last-child {
  border-right: none;
}

.client-logo-item img {
  width: 120px;
  height: 48px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.carousel-track-wrap {
  overflow: hidden;
  margin-bottom: 44px;
}

.carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.case-card {
  flex: 0 0 calc(33.333% - 11px);
  min-width: calc(33.333% - 11px);
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s;
}

.case-card:hover {
  border-color: rgba(27, 94, 247, 0.2);
  background: var(--card-alt);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.case-card-img {
  height: 192px;
  overflow: hidden;
  position: relative;
}

.case-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: opacity 0.7s, transform 0.7s;
}

.case-card:hover .case-card-img img {
  opacity: 0.7;
  transform: scale(1.1);
}

.case-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--card), transparent);
}

.case-card-industry {
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  z-index: 1;
}

.case-card-body {
  padding: 36px 30px;
}

.case-card-body::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-primary), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.case-card:hover .case-card-body::before {
  transform: scaleX(1);
}

.case-client {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 16px;
  margin-top: 24px;
}

.case-quote {
  font-size: 0.85rem;
  line-height: 1.75;
  color: #8fa0bc;
  border-left: 2px solid var(--blue-primary);
  padding-left: 14px;
  font-style: italic;
  margin-bottom: 20px;
}

.case-metrics {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
}

.case-metric-val {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 3px;
}

.case-metric-label {
  font-size: 0.7rem;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.results-cta {
  text-align: center;
  font-size: 0.92rem;
  color: var(--gray-text);
}

.results-cta a {
  color: var(--blue-glow);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.results-cta a:hover {
  color: #fff;
}

/* ===== CTA ===== */
#cta {
  background: var(--navy-light);
  padding: 120px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 12, 26, 0.8);
}

.cta-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  z-index: 1;
}

.cta-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27, 94, 247, 0.1), transparent);
  pointer-events: none;
  animation: orb-float 10s ease-in-out infinite;
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 10;
  max-width: 680px;
  margin: 0 auto;
}

.cta-content .section-label {
  margin-bottom: 14px;
}

.cta-content h2 {
  margin-bottom: 20px;
}

.cta-content p {
  color: var(--gray-text);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 540px;
  margin: 0 auto 44px;
}

.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.cta-note {
  margin-top: 24px;
  font-size: 0.78rem;
  color: var(--gray-text);
}

.cta-note a {
  color: var(--blue-glow);
  text-decoration: none;
  transition: color 0.2s;
}

.cta-note a:hover {
  color: #fff;
}

/* ===== CONTACT ===== */
#contact {
  background: var(--navy);
  padding: 112px 60px;
  position: relative;
  overflow: hidden;
}

.contact-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 64px;
}

.contact-info {
  flex: 1;
}

.contact-info h2 {
  margin-bottom: 24px;
}

.contact-info>p {
  color: var(--gray-text);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 480px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: rgba(27, 94, 247, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-glow);
}

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

.contact-item h4 {
  font-weight: 500;
  margin-bottom: 4px;
}

.contact-item a,
.contact-item p {
  color: var(--gray-text);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.6;
}

.contact-item a:hover {
  color: #fff;
}

.social-section {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.social-section h4 {
  font-weight: 500;
  margin-bottom: 16px;
}

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

.social-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-text);
  text-decoration: none;
  transition: all 0.2s;
}

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

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

.contact-form-wrap {
  flex: 1;
}

.contact-form-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.contact-form-card .top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-primary), var(--gold));
}

.contact-form-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.8rem;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.form-field input,
.form-field textarea {
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s;
  outline: none;
  resize: none;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(27, 94, 247, 0.5);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #3a4558;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
  background: var(--blue-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 16px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(27, 94, 247, 0.3);
}

.form-submit:hover {
  background: #2d74ff;
  box-shadow: 0 6px 28px rgba(27, 94, 247, 0.45);
}

/* ===== FOOTER ===== */
footer {
  background: #040810;
  padding: 64px 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 280px;
}

.footer-brand p {
  font-size: 0.82rem;
  color: var(--gray-text);
  line-height: 1.75;
  margin: 16px 0 24px;
}

.footer-col h5 {
  font-family: 'Syne', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.84rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.76rem;
  color: var(--gray-text);
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom-links {
  display: flex;
  gap: 16px;
}

.footer-bottom-links a {
  color: var(--gray-text);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: #fff;
}

/* ===== CHAT WIDGET ===== */
.chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.chat-window {
  width: 350px;
  max-width: calc(100vw - 48px);
  height: 500px;
  max-height: calc(100vh - 128px);
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-bottom: 16px;
  transform-origin: bottom right;
  transition: all 0.2s;
  opacity: 0;
  transform: scale(0.95) translateY(20px);
  pointer-events: none;
}

.chat-window.open {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: all;
}

.chat-header {
  background: var(--blue-primary);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.chat-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chat-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

.chat-role {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
}

.chat-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
}

.chat-close:hover {
  color: #fff;
}

.chat-close svg {
  width: 20px;
  height: 20px;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(7, 12, 26, 0.5);
}

.chat-msg {
  display: flex;
  flex-direction: column;
  max-width: 85%;
}

.chat-msg.user {
  align-self: flex-end;
  align-items: flex-end;
}

.chat-msg.agent {
  align-self: flex-start;
  align-items: flex-start;
}

.chat-bubble {
  padding: 12px;
  border-radius: 16px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.chat-msg.user .chat-bubble {
  background: var(--blue-primary);
  color: #fff;
  border-top-right-radius: 4px;
}

.chat-msg.agent .chat-bubble {
  background: rgba(255, 255, 255, 0.1);
  color: #f0f4ff;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top-left-radius: 4px;
}

.chat-time {
  font-size: 0.65rem;
  color: var(--gray-text);
  margin-top: 4px;
  padding: 0 4px;
}

.typing-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border-top-left-radius: 4px;
  width: 64px;
}

.typing-dot {
  width: 6px;
  height: 6px;
  background: #9ca3af;
  border-radius: 50%;
  animation: bounceTyping 0.6s infinite;
}

.typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}

.chat-input-wrap {
  padding: 12px;
  background: var(--card);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 8px;
}

.chat-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.9rem;
  color: #fff;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.chat-input:focus {
  border-color: rgba(27, 94, 247, 0.5);
}

.chat-input::placeholder {
  color: #3a4558;
}

.chat-send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.2s;
}

.chat-send:hover {
  background: #2d74ff;
}

.chat-send:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.chat-send svg {
  width: 18px;
  height: 18px;
  margin-left: 2px;
}

.chat-toggle-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue-primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(27, 94, 247, 0.4);
  transition: background 0.2s, transform 0.15s;
  position: relative;
}

.chat-toggle-btn:hover {
  background: #2d74ff;
  transform: scale(1.05);
}

.chat-toggle-btn svg {
  width: 24px;
  height: 24px;
}

.chat-notif-dot {
  position: absolute;
  top: 0;
  right: 0;
  width: 14px;
  height: 14px;
  background: #ef4444;
  border: 2px solid var(--navy);
  border-radius: 50%;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .hero-stats {
    display: none;
  }

  .counters {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  nav {
    padding: 16px 24px;
  }

  .nav-links {
    display: none;
  }

  #hero {
    padding: 120px 24px 80px;
  }

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

  .service-wide {
    flex-direction: column;
  }

  .service-wide .service-card-img {
    width: 100%;
    height: 200px;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .contact-grid {
    flex-direction: column;
  }

  .footer-top {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 14px 20px;
  }

  .nav-phone {
    display: none;
  }

  #hero {
    padding: 110px 20px 60px;
  }

  #services,
  #industries,
  #whoweare,
  #whyus,
  #results,
  #cta,
  #contact {
    padding: 64px 20px;
  }

  #bundle {
    padding: 0 20px 64px;
  }

  #partners {
    padding: 40px 20px;
  }

  .counters {
    grid-template-columns: repeat(2, 1fr);
    padding: 40px 20px;
  }

  .bundle-card {
    padding: 32px 24px;
  }

  .bundle-vs {
    flex-direction: column;
  }

  .bundle-vs-label {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px;
  }

  .case-card {
    flex: 0 0 calc(100% - 0px);
    min-width: 100%;
  }

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

  .contact-form-card {
    padding: 24px;
  }

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

  footer {
    padding: 40px 20px;
  }

  .footer-top {
    flex-direction: column;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}