/*
  ╔══════════════════════════════════════════════════════╗
  ║  TEKDLIN  —  "ELECTRIC DEPTH"  COLOR SYSTEM          ║
  ║                                                      ║
  ║  PRIMARY  #1A6FFF  electric blue  (trust, tech)      ║
  ║  GOLD     #F5A623  warm amber     (energy, warmth)   ║
  ║  TEAL     #00C9A7  seafoam teal   (growth, fresh)    ║
  ║  CORAL    #FF6B6B  soft coral     (human, approach.) ║
  ║  NAVY     #0A1628  deep navy      (authority, depth) ║
  ║  CREAM    #FDFAF4  warm paper     (clean, inviting)  ║
  ╚══════════════════════════════════════════════════════╝
*/

/* ── CSS CUSTOM PROPERTIES ── */
:root {
  --blue:        #1A6FFF;
  --blue-dark:   #0F52CC;
  --blue-light:  #EEF3FF;
  --gold:        #F5A623;
  --gold-dark:   #C7841A;
  --gold-light:  #FFF8EC;
  --teal:        #00C9A7;
  --teal-dark:   #009E84;
  --teal-light:  #E6FAF6;
  --coral:       #FF6B6B;
  --coral-light: #FFF1F1;
  --navy:        #0A1628;
  --navy-mid:    #1E2D45;
  --navy-soft:   #2D3F5C;
  --cream:       #FDFAF4;
  --white:       #FFFFFF;
  --mid:         #64748B;
  --mist:        #F0F4FF;
  --border:      rgba(10, 22, 40, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--navy);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
}

/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
.navbar {
  background: rgba(253, 250, 244, 0.82) !important;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
  transition: all 0.3s;
}

.navbar.scrolled {
  background: rgba(253, 250, 244, 0.97) !important;
  box-shadow: 0 4px 40px rgba(10, 22, 40, 0.08);
}

.navbar-brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
  color: var(--navy) !important;
  text-decoration: none;
}

.navbar-brand img {
  height: 50px;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy) !important;
  opacity: 0.6;
  transition: opacity 0.2s;
  padding: 0.4rem 1rem !important;
}

.nav-link:hover {
  opacity: 1;
}

.btn-nav {
  background: var(--navy);
  color: var(--cream) !important;
  opacity: 1 !important;
  padding: 0.5rem 1.4rem !important;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: background 0.25s !important;
}

.btn-nav:hover {
  background: var(--blue) !important;
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero-section {
  min-height: 100vh;
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Layered mesh — blue + gold + teal */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 75% 15%, rgba(26, 111, 255, 0.09) 0%, transparent 60%),
    radial-gradient(ellipse 45% 45% at 15% 70%, rgba(245, 166, 35, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 35% 35% at 90% 80%, rgba(0, 201, 167, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* Subtle dot grid */
.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(10, 22, 40, 0.055) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(26, 111, 255, 0.1), rgba(0, 201, 167, 0.08));
  border: 1px solid rgba(26, 111, 255, 0.22);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem 0.4rem 0.6rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
  animation: fadeUp 0.7s ease both;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.5);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.3);
    box-shadow: 0 0 0 6px rgba(245, 166, 35, 0);
  }
}

.hero-h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 1.75rem;
  animation: fadeUp 0.7s 0.1s ease both;
}

.word-accent {
  position: relative;
  color: var(--blue);
  display: inline-block;
}

/* Gold → teal underline */
.word-accent::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  border-radius: 3px;
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.78;
  color: var(--mid);
  max-width: 500px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeUp 0.7s 0.3s ease both;
}

/* Primary blue button */
.btn-primary-main {
  background: var(--blue);
  color: #fff !important;
  padding: 0.9rem 2.2rem;
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
  box-shadow: 0 6px 30px rgba(26, 111, 255, 0.38);
}

.btn-primary-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(26, 111, 255, 0.48);
  background: var(--blue-dark);
}

.btn-ghost-link {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s, color 0.2s;
}

.btn-ghost-link:hover {
  gap: 0.75rem;
  color: var(--blue);
}

/* Hero image wrapper */
.hero-img-wrap {
  position: relative;
  animation: fadeIn 1s 0.4s ease both;
}

.hero-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(10, 22, 40, 0.18);
}

/* Multi-color glow behind image */
.hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(26, 111, 255, 0.15), rgba(0, 201, 167, 0.1), rgba(245, 166, 35, 0.1));
  z-index: -1;
  filter: blur(20px);
}

/* Floating stat cards */
.hero-float-card {
  position: absolute;
  background: #fff;
  border-radius: 18px;
  padding: 1rem 1.35rem;
  box-shadow: 0 10px 48px rgba(10, 22, 40, 0.14);
  border: 1px solid rgba(10, 22, 40, 0.06);
  animation: floatCard 4s ease-in-out infinite;
}

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

.hero-float-card.card-tl {
  top: 2rem;
  left: -2rem;
  animation-delay: 0s;
}

.hero-float-card.card-br {
  bottom: 2rem;
  right: -1.5rem;
  animation-delay: 1.8s;
}

.fc-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mid);
  margin-bottom: 0.25rem;
}

.fc-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.fc-val {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--navy);
  line-height: 1;
}

.fc-up {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--teal-dark);
}

.fc-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

/* Trust pills */
.hero-trust {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.7s 0.5s ease both;
}

.trust-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mid);
  margin-bottom: 1rem;
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.38rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--navy);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.trust-pill:hover {
  border-color: var(--blue);
  box-shadow: 0 2px 12px rgba(26, 111, 255, 0.12);
}

.trust-pill i {
  color: var(--blue);
  font-size: 0.85rem;
}

/* ══════════════════════════════
   LOGO MARQUEE
══════════════════════════════ */
.logos-section {
  padding: 2.5rem 0;
  background: var(--navy);
  overflow: hidden;
}

.logos-track {
  display: flex;
  gap: 3rem;
  animation: marquee 22s linear infinite;
  width: max-content;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.logo-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.28);
  white-space: nowrap;
  transition: color 0.3s;
}

.logo-item:hover {
  color: rgba(255, 255, 255, 0.65);
}

/* ══════════════════════════════
   STATS BAND
══════════════════════════════ */
.stats-band {
  padding: 5rem 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(26, 111, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
}

.stat-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* Each stat gets a distinct gradient */
.stat-num.blue  { background: linear-gradient(135deg, #1A6FFF, #5B9FFF); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-num.gold  { background: linear-gradient(135deg, #F5A623, #FDD17A); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-num.teal  { background: linear-gradient(135deg, #00C9A7, #6FECD8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-num.coral { background: linear-gradient(135deg, #FF6B6B, #FF9F9F); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.stat-lbl {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.42);
  font-weight: 500;
}

/* ══════════════════════════════
   SHARED SECTION STYLES
══════════════════════════════ */
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.ey-blue  { color: var(--blue); }
.ey-gold  { color: var(--gold-dark); }
.ey-teal  { color: var(--teal-dark); }
.ey-light { color: rgba(255, 255, 255, 0.42); }

.section-h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

/* ══════════════════════════════
   PROBLEM SECTION
══════════════════════════════ */
.problem-section {
  padding: 8rem 0;
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.problem-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 55% at 85% 40%, rgba(26, 111, 255, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 5%  75%, rgba(245, 166, 35, 0.07) 0%, transparent 60%);
  pointer-events: none;
}

.problem-num-card {
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.025);
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
  margin-bottom: 1.25rem;
}

.problem-num-card:hover {
  background: rgba(26, 111, 255, 0.1);
  border-color: rgba(26, 111, 255, 0.3);
  transform: translateX(8px);
}

/* Gold ghost number */
.p-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: rgba(245, 166, 35, 0.18);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.problem-num-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #fff;
}

.problem-num-card p {
  font-size: 0.875rem;
  opacity: 0.5;
  line-height: 1.65;
}

.big-number-card {
  background: linear-gradient(145deg, rgba(26, 111, 255, 0.12), rgba(245, 166, 35, 0.06));
  border: 1px solid rgba(26, 111, 255, 0.2);
  border-radius: 32px;
  padding: 4rem 3rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Gold corner glow */
.big-number-card::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.giant-stat {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: clamp(5rem, 12vw, 9rem);
  line-height: 1;
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 60%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.25rem;
}

.big-number-card p {
  font-size: 1rem;
  opacity: 0.5;
  line-height: 1.7;
  max-width: 260px;
}

/* Tag pills */
.tag-pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
}

.tag-teal  { background: rgba(0, 201, 167, 0.12);  color: var(--teal);  border: 1px solid rgba(0, 201, 167, 0.25); }
.tag-blue  { background: rgba(26, 111, 255, 0.12); color: #70A8FF;     border: 1px solid rgba(26, 111, 255, 0.25); }
.tag-gold  { background: rgba(245, 166, 35, 0.12); color: var(--gold); border: 1px solid rgba(245, 166, 35, 0.25); }

/* ══════════════════════════════
   SERVICES
══════════════════════════════ */
.services-section {
  padding: 8rem 0;
  background: var(--cream);
}

.service-card {
  background: var(--white);
  border-radius: 24px;
  padding: 2.25rem;
  border: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(10, 22, 40, 0.04);
  transition: transform 0.35s, box-shadow 0.35s;
  position: relative;
  overflow: hidden;
  height: 100%;
}

/* Colored top-edge bar per service */
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}

.service-card.c-blue::after  { background: linear-gradient(90deg, var(--blue),     #70A8FF); }
.service-card.c-teal::after  { background: linear-gradient(90deg, var(--teal),     #80E8D4); }
.service-card.c-gold::after  { background: linear-gradient(90deg, var(--gold),     #FDD17A); }
.service-card.c-coral::after { background: linear-gradient(90deg, var(--coral),    #FFAAAA); }
.service-card.c-navy::after  { background: linear-gradient(90deg, var(--navy-soft),#4A6FA5); }

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 60px rgba(10, 22, 40, 0.1);
}

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

.svc-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.svc-blue  { background: var(--blue-light);  color: var(--blue); }
.svc-teal  { background: var(--teal-light);  color: var(--teal-dark); }
.svc-gold  { background: var(--gold-light);  color: var(--gold-dark); }
.svc-coral { background: var(--coral-light); color: var(--coral); }
.svc-navy  { background: var(--mist);        color: var(--navy); }

.service-card h3 { font-size: 1.1rem;    margin-bottom: 0.75rem; }
.service-card p  { font-size: 0.875rem;  color: var(--mid); line-height: 1.7; }

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 1.25rem;
  transition: gap 0.2s;
}

.svc-link.lk-blue  { color: var(--blue); }
.svc-link.lk-teal  { color: var(--teal-dark); }
.svc-link.lk-gold  { color: var(--gold-dark); }
.svc-link.lk-coral { color: var(--coral); }
.svc-link:hover    { gap: 0.6rem; }

/* CTA card — blue-to-teal gradient */
.service-card-cta {
  background: linear-gradient(145deg, var(--blue) 0%, #0A48B8 60%, #005F7A 100%);
  border: none;
  color: #fff;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card-cta h3 { color: #fff; margin-bottom: 0.75rem; }
.service-card-cta p  { color: rgba(255, 255, 255, 0.72); }

.service-card-cta a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  transition: gap 0.2s;
}

.service-card-cta a:hover { gap: 0.75rem; }

/* ══════════════════════════════
   AI SECTION
══════════════════════════════ */
.ai-section {
  padding: 8rem 0;
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Giant "AI" ghost text */
.ai-section::before {
  content: 'AI';
  position: absolute;
  right: -4rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 28rem;
  letter-spacing: -0.05em;
  color: rgba(0, 201, 167, 0.025);
  pointer-events: none;
  line-height: 1;
}

.ai-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 55% at 10% 30%, rgba(26, 111, 255, 0.1)  0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 90% 70%, rgba(0, 201, 167, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.ai-stat-strip {
  display: flex;
  gap: 3rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin: 2.5rem 0;
}

.ai-stat h3 {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.ai-stat.s-blue h3 { background: linear-gradient(135deg, #1A6FFF, #70A8FF); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.ai-stat.s-teal h3 { background: linear-gradient(135deg, #00C9A7, #6FECD8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.ai-stat.s-gold h3 { background: linear-gradient(135deg, #F5A623, #FDD17A); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.ai-stat p { font-size: 0.78rem; opacity: 0.45; line-height: 1.5; }

.ai-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 1.5rem;
  transition: background 0.28s, transform 0.28s, border-color 0.28s;
  height: 100%;
}

.ai-card:hover {
  background: rgba(0, 201, 167, 0.09);
  border-color: rgba(0, 201, 167, 0.25);
  transform: translateY(-5px);
}

.ai-card-ico { font-size: 1.75rem; margin-bottom: 0.85rem; }
.ai-card h4  { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.4rem; }
.ai-card p   { font-size: 0.8rem;  opacity: 0.48; line-height: 1.6; }

/* ══════════════════════════════
   ANALYTICS SECTION
══════════════════════════════ */
.analytics-section {
  padding: 8rem 0;
  background: var(--white);
}

.dashboard-mock {
  background: var(--navy);
  border-radius: 28px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--gold); /* Gold top accent */
}

.dashboard-mock::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(26, 111, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.dash-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.dash-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.live-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: var(--teal);
  font-weight: 600;
}

.live-dot {
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  animation: dotPulse 1.5s infinite;
}

.dash-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.kpi-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 1.25rem;
  text-align: center;
}

.kpi-val   { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.6rem; color: #fff; line-height: 1; margin-bottom: 0.3rem; }
.kpi-label { font-size: 0.68rem; color: rgba(255, 255, 255, 0.35); }
.kpi-delta { font-size: 0.72rem; font-weight: 700; color: var(--gold); } /* Gold deltas */

.bar-row   { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 0.6rem; }
.bar-day   { font-size: 0.68rem; color: rgba(255, 255, 255, 0.33); width: 30px; text-align: right; }
.bar-track { flex: 1; height: 8px; background: rgba(255, 255, 255, 0.06); border-radius: 4px; overflow: hidden; }
.bar-fill  { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--blue), var(--teal)); }
.bar-amount{ font-size: 0.68rem; color: rgba(255, 255, 255, 0.38); width: 36px; }

.analytics-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.analytics-feature:last-child { border-bottom: none; }

.af-ico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Rotating icon backgrounds */
.af-ico.ico-blue  { background: var(--blue-light);  color: var(--blue); }
.af-ico.ico-teal  { background: var(--teal-light);  color: var(--teal-dark); }
.af-ico.ico-gold  { background: var(--gold-light);  color: var(--gold-dark); }
.af-ico.ico-coral { background: var(--coral-light); color: var(--coral); }

.analytics-feature h4 { font-size: 0.95rem;  margin-bottom: 0.3rem; }
.analytics-feature p  { font-size: 0.875rem; color: var(--mid); line-height: 1.6; }

/* ══════════════════════════════
   WHY US SECTION
══════════════════════════════ */
.why-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--mist) 0%, #FFF9F0 100%);
}

.why-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

/* Colored bottom stripe per card */
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.why-card.wc-blue::after  { background: var(--blue); }
.why-card.wc-teal::after  { background: var(--teal); }
.why-card.wc-gold::after  { background: var(--gold); }
.why-card.wc-coral::after { background: var(--coral); }

.why-card:hover             { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(10, 22, 40, 0.08); }
.why-card:hover::after      { transform: scaleX(1); }

.why-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.wn-blue  { color: rgba(26, 111, 255, 0.15); }
.wn-teal  { color: rgba(0, 201, 167, 0.15); }
.wn-gold  { color: rgba(245, 166, 35, 0.18); }
.wn-coral { color: rgba(255, 107, 107, 0.15); }

.why-card h4 { font-size: 1rem;    margin-bottom: 0.5rem; }
.why-card p  { font-size: 0.875rem; color: var(--mid); line-height: 1.65; }

/* Process timeline box */
.process-box {
  background: var(--navy);
  border-radius: 28px;
  padding: 3rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Teal glow bottom-right */
.process-box::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 201, 167, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.process-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 2rem;
}

.pt-step {
  display: flex;
  gap: 1.25rem;
  position: relative;
  padding-bottom: 2rem;
}

.pt-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 42px;
  width: 2px;
  height: calc(100% - 16px);
  background: rgba(255, 255, 255, 0.09);
}

.pt-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  color: #fff;
}

/* Each step number gets a unique color */
.pt-num.n-blue  { background: var(--blue); }
.pt-num.n-teal  { background: var(--teal-dark); }
.pt-num.n-gold  { background: var(--gold); color: var(--navy); }
.pt-num.n-coral { background: var(--coral); }

.pt-content h4 { font-size: 0.95rem; margin-bottom: 0.25rem; }
.pt-content p  { font-size: 0.8rem;  opacity: 0.5; line-height: 1.6; }

/* ══════════════════════════════
   TESTIMONIALS
══════════════════════════════ */
.testimonials-section {
  padding: 8rem 0;
  background: var(--cream);
}

.testimonial-card {
  background: var(--white);
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid var(--border);
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

/* Gold quote mark */
.testimonial-card::before {
  content: '"';
  font-family: 'Outfit', sans-serif;
  font-size: 6rem;
  line-height: 0.7;
  color: var(--gold);
  opacity: 0.18;
  position: absolute;
  top: 1.5rem;
  left: 1.75rem;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(10, 22, 40, 0.08);
}

.stars          { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testimonial-text { font-size: 0.9rem; line-height: 1.78; color: var(--navy); margin-bottom: 1.5rem; opacity: 0.8; }
.tc-author      { display: flex; align-items: center; gap: 0.85rem; }

.tc-avatar-placeholder {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
}

/* Avatar gradient colours */
.av-blue { background: linear-gradient(135deg, var(--blue),      #70A8FF); }
.av-teal { background: linear-gradient(135deg, var(--teal-dark), var(--teal)); }
.av-gold { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); }

.tc-name { font-size: 0.9rem;  font-weight: 700; margin-bottom: 0.15rem; }
.tc-role { font-size: 0.75rem; color: var(--mid); }

/* ══════════════════════════════
   CTA SECTION
══════════════════════════════ */
.cta-section {
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #0A1628 0%, #0F2E5A 40%, #0A1E3D 70%, #050D1A 100%);
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 30% 50%, rgba(26, 111, 255, 0.18)  0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 40%, rgba(0, 201, 167, 0.10)   0%, transparent 60%);
  pointer-events: none;
}

/* Blue → teal → gold rainbow top border */
.cta-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--gold));
}

.cta-section .section-h2 { color: #fff; }
.cta-section p            { color: rgba(255, 255, 255, 0.6); font-size: 1.05rem; }

.btn-cta-white {
  background: #fff;
  color: var(--blue) !important;
  padding: 1rem 3rem;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.28);
}

.btn-cta-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 52px rgba(0, 0, 0, 0.32);
}

/* Gold outlined button */
.btn-cta-outline {
  background: transparent;
  color: var(--gold) !important;
  border: 2px solid rgba(245, 166, 35, 0.45);
  padding: 1rem 2.5rem;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.btn-cta-outline:hover {
  background: rgba(245, 166, 35, 0.1);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.contact-chips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.contact-chip:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }
.contact-chip i     { color: var(--gold); }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  background: #040914;
  color: rgba(255, 255, 255, 0.4);
  padding: 4.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-brand img { height: 32px; filter: brightness(0) invert(1); }
.footer-tagline   { font-size: 0.875rem; line-height: 1.7; max-width: 280px; }

.footer-heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 1.25rem;
}

.footer-links    { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.6rem; }

.footer-links a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

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

.footer-accent        { color: var(--gold) !important; }
.footer-accent:hover  { color: #FDD17A !important; }

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
}

.footer-socials { display: flex; gap: 0.75rem; }

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

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

/* ══════════════════════════════
   AI CHAT WIDGET
══════════════════════════════ */
#chat-bubble {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
}

#chat-toggle {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #0A48B8);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 32px rgba(26, 111, 255, 0.5);
  transition: transform 0.2s, box-shadow 0.2s;
  font-size: 1.5rem;
  color: #fff;
}

#chat-toggle:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 44px rgba(26, 111, 255, 0.6);
}

/* Gold pulse indicator */
.chat-pulse {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  border: 2px solid var(--cream);
  animation: dotPulse 2s infinite;
}

#chat-window {
  position: absolute;
  bottom: 74px;
  right: 0;
  width: 380px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 24px 80px rgba(10, 22, 40, 0.2);
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(10, 22, 40, 0.07);
  animation: slideUp 0.25s ease;
}

#chat-window.open { display: flex; }

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

/* Chat header — navy with gold accent line */
.chat-header {
  background: var(--navy);
  color: #fff;
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 2px solid var(--gold);
}

.chat-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.chat-header-info h4   { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.9rem; margin: 0; }
.chat-header-info span { font-size: 0.72rem; opacity: 0.55; display: flex; align-items: center; gap: 0.3rem; }

.online-dot {
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  display: inline-block;
}

#chat-close {
  margin-left: auto;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  font-size: 1.1rem;
  transition: color 0.2s;
}

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

#chat-messages {
  flex: 1;
  padding: 1.25rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-height: 320px;
  min-height: 200px;
}

.msg {
  max-width: 85%;
  padding: 0.75rem 1rem;
  border-radius: 16px;
  font-size: 0.875rem;
  line-height: 1.55;
  animation: fadeUp 0.2s ease;
}

.msg.bot    { background: var(--blue-light); color: var(--navy); border-bottom-left-radius: 4px; align-self: flex-start; }
.msg.user   { background: var(--blue);       color: #fff;        border-bottom-right-radius: 4px; align-self: flex-end; }
.msg.typing { background: var(--blue-light); align-self: flex-start; display: flex; gap: 4px; align-items: center; padding: 1rem; }

.typing-dot {
  width: 7px;
  height: 7px;
  background: var(--mid);
  border-radius: 50%;
  animation: typingBounce 1.2s infinite;
}

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

@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0);    opacity: 0.4; }
  30%            { transform: translateY(-6px); opacity: 1; }
}

.chat-suggestions {
  padding: 0 1.25rem 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.suggestion-btn {
  background: var(--blue-light);
  border: 1px solid rgba(26, 111, 255, 0.18);
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 500;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: 'DM Sans', sans-serif;
}

.suggestion-btn:hover { background: var(--blue); color: #fff; }

.chat-input-row {
  display: flex;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem 1.1rem;
  border-top: 1px solid rgba(10, 22, 40, 0.07);
}

#chat-input {
  flex: 1;
  border: 1px solid rgba(10, 22, 40, 0.12);
  border-radius: 10px;
  padding: 0.6rem 0.9rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s;
  color: var(--navy);
}

#chat-input:focus { border-color: var(--blue); }

#chat-send {
  background: var(--blue);
  border: none;
  border-radius: 10px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  transition: background 0.2s;
  flex-shrink: 0;
}

#chat-send:hover { background: var(--blue-dark); }

/* ══════════════════════════════
   ANIMATIONS & SCROLL REVEAL
══════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible         { opacity: 1; transform: translateY(0); }
.reveal-delay-1         { transition-delay: 0.1s; }
.reveal-delay-2         { transition-delay: 0.2s; }
.reveal-delay-3         { transition-delay: 0.3s; }
.reveal-delay-4         { transition-delay: 0.4s; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 768px) {
  .hero-img-wrap          { display: none; }
  .ai-section::before     { display: none; }
  .hero-h1                { font-size: 2.6rem; }
  .ai-stat-strip          { flex-wrap: wrap; gap: 1.5rem; }
  .big-number-card        { padding: 2.5rem 1.5rem; }
}
