/* =====================================================================
   UnityWave — Master Stylesheet & Design System
   Heading Font : Bricolage Grotesque (800 / 700 / 600)
   Body Font    : Outfit (300 / 400 / 500 / 600 / 700)
   Colors       : Strict palette matching user specifications
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,600;12..96,700;12..96,800&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ─── CSS Design Tokens (Strict Specified Palette) ───────────────── */
:root {
  /* 🎨 Primary Brand Colors */
  --blue: #0D6EFD;
  /* Primary Blue */
  --blue-dark: #0057B8;
  /* Deep Ocean Blue */
  --navy: #0A3D91;
  /* Navy Accent */
  --blue-pale: #EFF6FF;
  /* Primary Blue Soft Tint */
  --blue-border: #BFDBFE;

  /* ⚪ Neutral Colors */
  --white: #FFFFFF;
  /* White Background & Card Background */
  --bg-page: #FFFFFF;
  /* Page Background */
  --bg-surface: #F8FAFC;
  /* Section Background */
  --bg-card: #FFFFFF;
  /* Card Background */
  --border: #E5E7EB;
  /* Border */
  --border-b: #E5E7EB;
  --bg-light-gray: #F1F5F9;
  /* Light Gray */

  /* ⚫ Text Colors */
  --text-heading: #111827;
  /* Heading Text */
  --text-dark: #111827;
  --text-body: #374151;
  /* Body Text */
  --text-muted: #6B7280;
  /* Secondary Text */
  --text-light: #9CA3AF;
  /* Disabled / Muted Text */
  --text-lt: #9CA3AF;

  /* 🌊 Accent Colors */
  --teal: #10B981;
  /* Success / Accent */
  --teal-pale: #ECFDF5;
  --teal-light: #ECFDF5;
  --green: #10B981;
  /* Success */
  --amber: #F59E0B;
  /* Warning */
  --red: #EF4444;
  /* Error */
  --info: #3B82F6;
  /* Info */
  --violet: #0A3D91;
  /* Navy Accent */
  --violet-pale: #EFF6FF;

  /* Gradients combining Primary Blue (#0D6EFD), Deep Ocean Blue (#0057B8), and Navy (#0A3D91) */
  --grad-blue: linear-gradient(135deg, #0D6EFD 0%, #0057B8 50%, #0A3D91 100%);
  --grad-brand: linear-gradient(135deg, #0D6EFD 0%, #0057B8 50%, #0A3D91 100%);
  --grad-teal: linear-gradient(135deg, #10B981 0%, #0D6EFD 100%);
  --grad-hero: linear-gradient(155deg, #FFFFFF 0%, #F8FAFC 50%, #F1F5F9 100%);

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(13, 110, 253, 0.04);
  --shadow-sm: 0 4px 12px rgba(13, 110, 253, 0.08);
  --shadow-md: 0 8px 24px rgba(13, 110, 253, 0.10);
  --shadow-lg: 0 16px 48px rgba(13, 110, 253, 0.12);
  --shadow-blue: 0 8px 24px rgba(13, 110, 253, 0.30);
  --shadow-teal: 0 8px 24px rgba(16, 185, 129, 0.25);
  --sh-blue: 0 8px 24px rgba(13, 110, 253, 0.30);
  --sh-teal: 0 8px 24px rgba(16, 185, 129, 0.25);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-2xl: 40px;
  --radius-pill: 100px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* Transitions */
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --container: 1240px;
  --section-gap: clamp(64px, 8vw, 110px);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background-color: var(--bg-page);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--text-heading);
}

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

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

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font-family: 'Outfit', sans-serif;
}

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

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

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

::selection {
  background: var(--blue-pale);
  color: var(--blue-dark);
}

/* ─── Layout Utilities ───────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

.section {
  padding: var(--section-gap) 0;
}

.bg-white,
.sec-white {
  background-color: var(--white);
}

.bg-surface,
.sec-surf {
  background-color: var(--bg-surface);
}

.bg-page {
  background-color: var(--bg-page);
}

/* ─── Typography & Section Headers ────────────────────────────────── */
.text-grad,
.text-gradient {
  background: var(--grad-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-teal,
.text-teal-gradient {
  background: var(--grad-teal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale);
  border: 1px solid var(--blue-border);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

.eyebrow.teal {
  color: var(--teal);
  background: var(--teal-pale);
  border-color: rgba(16, 185, 129, 0.3);
}

.eyebrow.teal::before {
  background: var(--teal);
}

.eyebrow.violet {
  color: var(--navy);
  background: var(--blue-pale);
  border-color: var(--blue-border);
}

.eyebrow.violet::before {
  background: var(--navy);
}

.sec-head,
.section-header {
  margin-bottom: clamp(36px, 5vw, 60px);
}

.sec-head.center,
.section-header.centered {
  text-align: center;
}

.sec-head.center .sec-desc,
.section-header.centered .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.sec-title,
.section-title {
  font-size: clamp(1.85rem, 3.5vw, 2.9rem);
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 14px;
  line-height: 1.2;
}

.sec-desc,
.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.82;
  max-width: 580px;
}

/* ─── Buttons System ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  font-size: 0.92rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--grad-blue);
  color: #fff;
  box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(13, 110, 253, 0.38);
  color: #fff;
}

.btn-outline {
  background: var(--white);
  color: var(--text-heading);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-xs);
}

.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-pale);
  transform: translateY(-1px);
}

.btn-teal {
  background: var(--grad-teal);
  color: #fff;
  box-shadow: var(--shadow-teal);
}

.btn-teal:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.38);
}

.btn-white {
  background: #fff;
  color: var(--blue);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.btn-white:hover {
  transform: translateY(-2px);
  color: var(--blue-dark);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

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

.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.84rem;
  border-radius: var(--radius-sm);
}

/* ─── Scroll Reveal & Animations ─────────────────────────────────── */
.reveal,
.reveal-left,
.reveal-right,
.rev,
.rev-l,
.rev-r {
  opacity: 0;
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal,
.rev {
  transform: translateY(28px);
}

.reveal-left,
.rev-l {
  transform: translateX(-32px);
}

.reveal-right,
.rev-r {
  transform: translateX(32px);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.rev.visible,
.rev-l.visible,
.rev-r.visible,
.reveal.in-view,
.rev.in-view {
  opacity: 1;
  transform: translate(0);
}

.delay-1,
.d1 {
  transition-delay: 0.1s;
}

.delay-2,
.d2 {
  transition-delay: 0.2s;
}

.delay-3,
.d3 {
  transition-delay: 0.3s;
}

.delay-4,
.d4 {
  transition-delay: 0.4s;
}

.delay-5,
.d5 {
  transition-delay: 0.5s;
}

/* ─── Navigation Bar ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 18px 0;
  transition: var(--transition);
}

.navbar.is-scrolled,
.navbar.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(13, 110, 253, 0.07);
}

.nav-container,
.nav-wrap,
.nav-inner {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

/* Brand Logo */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-heading);
  text-decoration: none;
  flex-shrink: 0;
}

.brand-icon,
.nav-brand-icon {
  width: 38px;
  height: 38px;
  background: var(--grad-blue);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  box-shadow: 0 4px 14px rgba(13, 110, 253, 0.30);
  flex-shrink: 0;
}

.brand-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(13, 110, 253, 0.22));
  transition: var(--transition);
}

.nav-brand:hover .brand-logo-img {
  transform: scale(1.06);
}

.foot-logo-img {
  height: 38px;
  filter: drop-shadow(0 2px 10px rgba(13, 110, 253, 0.4));
}

.foot-tagline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: 6px;
  margin-bottom: 12px;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.nav-links a {
  display: block;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
  background: var(--blue-pale);
}

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

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

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-heading);
  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;
  transform: scaleX(0);
}

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

/* Mobile Menu / Drawer */
.mobile-menu,
.mobile-drawer,
.mob-drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  z-index: 800;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mobile-menu.is-open,
.mobile-drawer.open,
.mob-drawer.is-open {
  display: flex;
}

.mobile-menu-close,
.mobile-drawer-close,
.mob-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.mobile-menu-close:hover,
.mob-close:hover {
  background: var(--bg-surface);
  color: var(--text-heading);
}

.mobile-menu a,
.mobile-drawer a,
.mob-drawer a {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 10px 28px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-align: center;
}

.mobile-menu a:hover,
.mob-drawer a:hover {
  color: var(--blue);
  background: var(--blue-pale);
}

.mobile-menu .btn,
.mob-drawer .btn {
  margin-top: 16px;
  min-width: 200px;
}

/* ─── Hero Section & Layout-Stable Typewriter ─────────────────────── */
.hero,
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
}

/* Background Blobs */
.blob,
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  pointer-events: none;
}

.blob-1,
.hero-blob-1 {
  width: 520px;
  height: 520px;
  background: rgba(13, 110, 253, 0.08);
  top: -100px;
  left: -120px;
  animation: blobAnim 9s ease-in-out infinite;
}

.blob-2,
.hero-blob-2 {
  width: 400px;
  height: 400px;
  background: rgba(10, 61, 145, 0.07);
  bottom: -60px;
  right: -60px;
  animation: blobAnim 11s ease-in-out infinite reverse;
}

.blob-3,
.hero-blob-3 {
  width: 260px;
  height: 260px;
  background: rgba(16, 185, 129, 0.06);
  top: 38%;
  left: 52%;
  animation: blobAnim 7s ease-in-out infinite 2s;
}

@keyframes blobAnim {

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

  33% {
    transform: translate(22px, -18px) scale(1.05);
  }

  66% {
    transform: translate(-16px, 22px) scale(0.95);
  }
}

.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(13, 110, 253, 0.10) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
}

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

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 6px 16px 6px 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-body);
  margin-bottom: 26px;
  box-shadow: var(--shadow-xs);
}

.badge-pill,
.hero-badge-tag,
.hero-badge-pill {
  background: var(--grad-blue);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
}

/* Hero Title & Typewriter Fix (Zero Layout Shifts) */
.hero-title {
  font-size: clamp(2.2rem, 5.2vw, 2.5rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.03em;
  color: var(--text-heading);
  margin-bottom: 22px;
  min-height: 2.4em;
  /* Reserve vertical height so typing never expands section */
}

/* Typewriter Container & Cursor */
.typing-cursor {
  display: inline-block;
  vertical-align: bottom;
  min-height: 1.2em;
  white-space: nowrap;
  /* Prevents word-wrap line jumps on desktop */
}

.typing-text {
  display: inline;
  min-height: 1.2em;
}

.typing-cursor::after {
  content: '|';
  display: inline-block;
  animation: blinkCursor 1s infinite;
  color: var(--blue);
  margin-left: 2px;
  font-weight: 700;
}

@keyframes blinkCursor {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.hero-sub,
.hero-subtitle {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.82;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-actions,
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-proof,
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.av-stack,
.avatar-stack,
.avatar-row {
  display: flex;
}

.av-stack .av,
.avatar-stack .avatar,
.avatar-row .av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  background: var(--grad-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  margin-left: -8px;
  box-shadow: var(--shadow-xs);
}

.av-stack .av:first-child,
.avatar-stack .avatar:first-child {
  margin-left: 0;
}

.proof-txt,
.proof-text,
.hero-proof-text {
  font-size: 13px;
  color: var(--text-muted);
}

.proof-txt strong,
.proof-text strong {
  color: var(--text-heading);
}

.proof-stars,
.hero-proof-stars {
  color: var(--amber);
  font-size: 13px;
  letter-spacing: 1px;
}

/* Hero Visual Mockup */
.hero-visual {
  position: relative;
}

.float-chip,
.floating-chip,
.hero-card-float {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  z-index: 10;
}

.float-chip:nth-child(1),
.floating-chip:nth-child(1) {
  top: -22px;
  right: -14px;
  animation: chipFloat 4s ease-in-out infinite;
}

.float-chip:nth-child(2),
.floating-chip:nth-child(2) {
  bottom: -18px;
  left: -14px;
  animation: chipFloat 4s ease-in-out infinite 2s;
}

@keyframes chipFloat {

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

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

.chip-icon,
.float-icon {
  font-size: 1.2rem;
  margin-bottom: 2px;
}

.chip-val,
.chip-value,
.float-val {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-heading);
}

.chip-lbl,
.chip-label,
.float-lbl {
  font-size: 10px;
  color: var(--text-light);
}

/* Dashboard Mockup Card */
.prod-card,
.mockup-card,
.dash-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.pc-bar,
.mockup-titlebar,
.dash-topbar {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.pcdot,
.titlebar-dot,
.dash-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.pcdot:nth-child(1),
.titlebar-dot:nth-child(1),
.dash-dot:nth-child(1) {
  background: #EF4444;
}

.pcdot:nth-child(2),
.titlebar-dot:nth-child(2),
.dash-dot:nth-child(2) {
  background: #F59E0B;
}

.pcdot:nth-child(3),
.titlebar-dot:nth-child(3),
.dash-dot:nth-child(3) {
  background: #10B981;
}

.pc-bar-title,
.titlebar-text,
.dash-label {
  font-size: 11px;
  color: var(--text-light);
  margin: 0 auto;
  letter-spacing: 0.06em;
}

.pc-body,
.mockup-body,
.dash-body {
  padding: 18px;
}

.pc-stats,
.mockup-stats,
.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-bottom: 14px;
}

.pc-stat,
.mockup-stat,
.dash-stat {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px;
  text-align: center;
}

.pc-stat-val,
.mockup-stat-value,
.dash-stat-val {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--blue);
}

.pc-stat-val.green,
.mockup-stat-value.green,
.dash-stat-val.green {
  color: var(--teal);
}

.pc-stat-val.violet,
.mockup-stat-value.purple,
.dash-stat-val.purple {
  color: var(--navy);
}

.pc-stat-lbl,
.mockup-stat-label,
.dash-stat-lbl {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-top: 2px;
}

.pc-chart,
.mockup-chart,
.dash-chart {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px;
  margin-bottom: 14px;
}

.pc-chart-head,
.mockup-chart-header,
.dash-chart-head {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  margin-bottom: 10px;
}

.pc-chart-head span:first-child,
.mockup-chart-header span:first-child {
  font-weight: 700;
  color: var(--text-heading);
}

.pc-chart-head span:last-child,
.mockup-chart-header span:last-child {
  color: var(--teal);
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 52px;
}

.chart-bar {
  flex: 1;
  background: var(--grad-blue);
  border-radius: 4px 4px 0 0;
  opacity: 0.72;
  transform-origin: bottom;
  animation: barGrow 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes barGrow {
  from {
    transform: scaleY(0);
  }

  to {
    transform: scaleY(1);
  }
}

.pc-tasks,
.mockup-tasks,
.dash-apts {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.pc-task,
.mockup-task,
.dash-apt {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 9px 12px;
}

.task-dot,
.apt-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.task-name,
.apt-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-heading);
}

.task-sub,
.task-meta,
.apt-time {
  font-size: 10px;
  color: var(--text-light);
}

.task-badge,
.apt-status {
  margin-left: auto;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.tb-g,
.badge-green,
.apt-status.done {
  background: var(--teal-pale);
  color: var(--teal);
}

.tb-a,
.badge-amber,
.apt-status.pending {
  background: #FEF9E7;
  color: #F59E0B;
}

.tb-b,
.badge-blue,
.apt-status.new {
  background: var(--blue-pale);
  color: var(--blue);
}

/* ─── Stats Strip ────────────────────────────────────────────────── */
.stats-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}

.stats-grid,
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-col,
.stat-item {
  text-align: center;
  padding: 8px 20px;
  position: relative;
}

.stat-col+.stat-col::before,
.stat-item+.stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: var(--border);
}

.stat-num,
.stat-number {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  background: var(--grad-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.stat-lbl,
.stat-label {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-top: 5px;
}

/* ─── Services Section ───────────────────────────────────────────── */
.srvs-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.srv-card,
.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.srv-card::after,
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

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

.srv-card:hover,
.service-card:hover {
  border-color: var(--blue-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.srv-card:hover .srv-link,
.service-card:hover .srv-arrow {
  opacity: 1;
  transform: translateX(0);
}

.srv-icon,
.srv-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

.srv-card:hover .srv-icon,
.service-card:hover .srv-icon {
  transform: scale(1.08);
}

.srv-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 9px;
}

.srv-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.72;
}

.srv-link,
.srv-arrow {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  opacity: 0;
  transform: translateX(-6px);
  transition: var(--transition);
}

/* ─── Industries Section ─────────────────────────────────────────── */
.ind-grid,
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ind-card,
.industry-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
}

.ind-card:hover,
.industry-card:hover {
  border-color: var(--blue-border);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.ind-icon,
.industry-icon {
  font-size: 1.9rem;
  margin-bottom: 12px;
  display: block;
}

.ind-name,
.industry-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 7px;
}

.ind-desc,
.industry-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── Why Us & Process ────────────────────────────────────────────── */
.feat-layout,
.why-grid,
.features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.feat-list,
.features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feat-row,
.feature-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.feat-row:hover,
.feature-item:hover {
  border-color: var(--blue-border);
  box-shadow: var(--shadow-sm);
  transform: translateX(5px);
}

.feat-ico,
.feature-icon,
.feature-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.feat-row h4,
.feature-item h4 {
  font-size: 0.96rem;
  margin-bottom: 5px;
  color: var(--text-heading);
}

.feat-row p,
.feature-item p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Steps / Process Card */
.steps-card,
.process-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

.steps-head,
.process-card-head {
  margin-bottom: 24px;
}

.steps-head h3,
.process-card-head h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.steps-head p,
.process-card-head p {
  font-size: 0.87rem;
  color: var(--text-muted);
}

.step-row,
.process-step {
  display: flex;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.step-row:last-of-type,
.process-step:last-of-type {
  border-bottom: none;
}

.step-num,
.step-number {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: var(--grad-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(13, 110, 253, 0.25);
}

.step-cnt h5,
.step-content h5 {
  font-size: 0.92rem;
  margin-bottom: 3px;
}

.step-cnt p,
.step-content p {
  font-size: 0.83rem;
  color: var(--text-muted);
}

/* ─── Solutions Tabs ─────────────────────────────────────────────── */
.sol-tabs,
.solution-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.sol-tab,
.solution-tab {
  padding: 9px 20px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.sol-tab:hover,
.solution-tab:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-pale);
}

.sol-tab.active,
.solution-tab.active {
  background: var(--grad-blue);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow-blue);
}

.sol-panel,
.solution-panel {
  display: none;
}

.sol-panel.active,
.solution-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  animation: panelIn 0.4s ease;
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.sol-info h3,
.panel-info h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 14px;
}

.sol-info p,
.panel-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.82;
  margin-bottom: 22px;
}

.sol-feats,
.panel-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.sol-feats li,
.panel-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-body);
}

.sol-feats li::before,
.panel-features li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--teal-pale);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2310B981'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

.sol-screen,
.panel-screen {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.sol-bar,
.screen-bar {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sdot,
.screen-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.sdot:nth-child(1),
.screen-dot:nth-child(1) {
  background: #EF4444;
}

.sdot:nth-child(2),
.screen-dot:nth-child(2) {
  background: #F59E0B;
}

.sdot:nth-child(3),
.screen-dot:nth-child(3) {
  background: #10B981;
}

.stitle,
.screen-title {
  font-size: 11px;
  color: var(--text-light);
  margin: 0 auto;
}

.sol-body,
.screen-body {
  padding: 18px;
}

/* ─── Testimonials Section ───────────────────────────────────────── */
.testi-grid,
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi-card,
.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}

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

.testi-stars,
.testimonial-stars {
  color: var(--amber);
  font-size: 13px;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.testi-quote,
.testimonial-quote {
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.82;
  margin-bottom: 22px;
  font-style: italic;
}

.testi-quote::before,
.testimonial-quote::before {
  content: '"';
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.5rem;
  line-height: 0;
  vertical-align: -0.5em;
  color: var(--blue-border);
  margin-right: 2px;
}

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

.testi-av,
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(13, 110, 253, 0.2);
}

.testi-name,
.author-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-heading);
}

.testi-role,
.author-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ─── Trust Strip ────────────────────────────────────────────────── */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 44px 0;
}

.trust-lbl,
.trust-label {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 28px;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  flex-wrap: wrap;
}

.trust-item,
.trust-logo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text-light);
  opacity: 0.55;
  transition: var(--transition);
}

.trust-item:hover,
.trust-logo-item:hover {
  opacity: 1;
  color: var(--text-body);
}

.trust-item i,
.trust-logo-item i {
  font-size: 1.3em;
}

/* ─── CTA Box ────────────────────────────────────────────────────── */
.cta-box {
  background: var(--grad-blue);
  border-radius: var(--radius-2xl);
  padding: clamp(48px, 7vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 360px;
  height: 360px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.cta-box::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -40px;
  width: 280px;
  height: 280px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.cta-box h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 1;
}

.cta-actions,
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-note,
.cta-footnote {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 22px;
  position: relative;
  z-index: 1;
}

/* ─── Contact Section & Forms ─────────────────────────────────────── */
.contact-layout,
.contact-two-col {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}

.cdetail,
.contact-detail-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.cdetail-ico,
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-pale);
  border: 1px solid var(--blue-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}

.cdetail-lbl,
.contact-detail-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 3px;
}

.cdetail-val,
.contact-detail-value {
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text-heading);
}

.cdetail-val a,
.contact-detail-value a {
  color: inherit;
  transition: var(--transition);
}

.cdetail-val a:hover,
.contact-detail-value a:hover {
  color: var(--blue);
}

.form-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 44px);
  box-shadow: var(--shadow-md);
}

.form-card h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.fsub,
.form-card p.form-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 22px;
}

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

.fgrp,
.form-group {
  margin-bottom: 16px;
}

.flbl,
.form-label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-body);
  margin-bottom: 7px;
}

.finput,
.form-input {
  width: 100%;
  background: var(--bg-surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 15px;
  font-size: 0.92rem;
  color: var(--text-heading);
  outline: none;
  transition: var(--transition);
}

.finput::placeholder,
.form-input::placeholder {
  color: var(--text-light);
}

.finput:focus,
.form-input:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.12);
}

textarea.finput,
textarea.form-input {
  resize: vertical;
  min-height: 110px;
}

select.finput,
select.form-input {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%239CA3AF'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

select.finput option,
select.form-input option {
  background: var(--white);
  color: var(--text-heading);
}

.req,
.form-required {
  color: var(--red);
}

.form-note,
.form-privacy {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  margin-top: 10px;
}

.form-note i,
.form-privacy i {
  color: var(--teal);
  margin-right: 4px;
}

/* Alerts */
.alert-ok,
.alert-success {
  background: var(--teal-pale);
  border: 1.5px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.alert-ok-ico,
.alert-success-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.alert-ok h4,
.alert-success h4 {
  font-size: 0.93rem;
  color: var(--teal);
  margin-bottom: 3px;
}

.alert-ok p,
.alert-success p {
  font-size: 0.83rem;
  color: var(--text-muted);
}

.alert-err,
.alert-error {
  background: #FFF1F1;
  border: 1.5px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-md);
  padding: 13px 17px;
  margin-bottom: 18px;
  font-size: 0.87rem;
  color: var(--red);
}

/* ─── Page Hero (About / Contact Inner Pages) ─────────────────────── */
.page-hero {
  background: var(--grad-hero);
  padding: clamp(130px, 16vw, 180px) 0 clamp(60px, 8vw, 100px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ph-blob,
.page-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.ph-blob-1,
.page-hero-blob-1 {
  width: 400px;
  height: 400px;
  background: rgba(13, 110, 253, 0.08);
  top: -100px;
  left: -80px;
}

.ph-blob-2,
.page-hero-blob-2 {
  width: 320px;
  height: 320px;
  background: rgba(10, 61, 145, 0.07);
  bottom: -60px;
  right: -60px;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.page-hero p {
  font-size: 1.06rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero .hero-dots {
  z-index: 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

.breadcrumb a {
  color: var(--blue);
}

/* ─── About Page Components ──────────────────────────────────────── */
.about-layout,
.about-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.timeline-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

.milestone,
.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}

.milestone:last-child,
.timeline-item:last-child {
  border-bottom: none;
}

.mile-yr,
.timeline-year {
  background: var(--grad-blue);
  color: #fff;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 2px;
}

.milestone h5,
.timeline-item h5 {
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.milestone p,
.timeline-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.astat-grid,
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.astat-box,
.about-stat-box {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-xs);
}

.astat-num,
.about-stat-number {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  background: var(--grad-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 5px;
}

.astat-lbl,
.about-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.mv-grid,
.two-col-equal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.mv-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.mv-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.mv-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.mv-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.mv-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.82;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.team-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: var(--transition);
}

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

.team-avatar {
  width: 76px;
  height: 76px;
  background: var(--grad-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 18px;
  box-shadow: 0 8px 22px rgba(13, 110, 253, 0.2);
}

.team-name {
  font-size: 1rem;
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.82rem;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 11px;
}

.team-bio {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 14px;
}

.team-socials a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--text-muted);
  transition: var(--transition);
}

.team-socials a:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

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

.value-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: var(--transition);
}

.value-card:hover {
  border-color: var(--blue-border);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.value-emoji {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 16px;
}

.value-card h4 {
  font-size: 0.97rem;
  margin-bottom: 9px;
}

.value-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.72;
}

/* ─── Contact Page Components ────────────────────────────────────── */
.cic-row,
.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 52px;
}

.cic-card,
.info-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: var(--transition);
}

.cic-card:hover,
.info-card:hover {
  border-color: var(--blue-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.cic-icon,
.info-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 16px;
}

.cic-card h4,
.info-card h4 {
  font-size: 0.97rem;
  margin-bottom: 7px;
}

.cic-card p,
.info-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.cic-card a,
.info-card a {
  color: var(--blue);
}

.contact-main-grid,
.contact-main-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 28px;
  align-items: start;
}

.faq-bar,
.faq-sidebar {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.faq-bar h3,
.faq-sidebar h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.faq-bar .fsub,
.faq-sidebar .sub {
  font-size: 0.87rem;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.faq-item {
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}

.faq-item:last-of-type {
  border-bottom: none;
}

.faq-q,
.faq-question {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 5px;
}

.faq-a,
.faq-answer {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
}

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

.map-block {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(48px, 6vw, 80px) 0;
  text-align: center;
}

.map-pin,
.map-pin-icon {
  width: 60px;
  height: 60px;
  background: var(--grad-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-blue);
}

.map-block h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.map-block p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

/* ─── Footer Component ───────────────────────────────────────────── */
.footer,
.site-footer {
  background: var(--text-heading);
  color: rgba(255, 255, 255, 0.7);
  padding: clamp(56px, 7vw, 88px) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(30px, 4vw, 60px);
  margin-bottom: clamp(48px, 6vw, 72px);
}

.foot-brand,
.footer-brand {
  margin-bottom: 16px;
}

.foot-brand .nav-brand,
.footer-brand .nav-brand {
  color: #fff;
}

.foot-brand p,
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.82;
  margin: 18px 0 22px;
  max-width: 300px;
}

.foot-soc,
.footer-socials {
  display: flex;
  gap: 9px;
}

.fsoc,
.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  transition: var(--transition);
}

.fsoc:hover,
.social-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}

.foot-col h5,
.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 18px;
  font-family: 'Outfit', sans-serif;
}

.foot-links,
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.foot-links a,
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
  display: inline-block;
}

.foot-links a:hover,
.footer-links a:hover {
  color: #fff;
  transform: translateX(3px);
}

.foot-nl p,
.footer-newsletter p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 13px;
  line-height: 1.72;
}

.nl-input,
.newsletter-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 0.88rem;
  color: #fff;
  outline: none;
  transition: var(--transition);
  margin-bottom: 9px;
}

.nl-input::placeholder,
.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.nl-input:focus,
.newsletter-input:focus {
  border-color: var(--blue);
  background: rgba(13, 110, 253, 0.1);
}

.nl-btn,
.newsletter-btn {
  width: 100%;
  background: var(--grad-blue);
  border: none;
  border-radius: var(--radius-sm);
  padding: 11px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.nl-btn:hover,
.newsletter-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.nl-note,
.newsletter-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 7px;
}

/* Flag Counter Section */
.foot-flag-counter {
  margin-bottom: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.flag-counter-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}

.flag-counter-img-wrap {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 8px 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
  display: inline-block;
}

.flag-counter-img-wrap:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 110, 253, 0.25);
}

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

.foot-bottom p,
.footer-bottom p {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.35);
}

.foot-legal,
.footer-legal {
  display: flex;
  gap: 18px;
}

.foot-legal a,
.footer-legal a {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.35);
  transition: var(--transition);
}

.foot-legal a:hover,
.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* =====================================================================
   RESPONSIVE BREAKPOINTS & TYPEWRITER ADAPTATIONS
   ===================================================================== */

/* ── ≤1100px : tablets landscape & small desktops ────────────────── */
@media (max-width: 1100px) {

  .hero-inner,
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .stats-grid,
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .stat-col+.stat-col::before,
  .stat-item+.stat-item::before {
    display: none;
  }

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

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

  .feat-layout,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .about-layout,
  .about-two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mv-grid,
  .two-col-equal {
    grid-template-columns: 1fr 1fr;
  }

  .contact-layout,
  .contact-two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

/* ── ≤900px : tablets portrait ───────────────────────────────────── */
@media (max-width: 900px) {

  .sol-panel.active,
  .solution-panel.active {
    grid-template-columns: 1fr;
  }

  .sol-screen,
  .panel-screen {
    display: none;
  }

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

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

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

  .cic-row,
  .contact-info-cards {
    grid-template-columns: 1fr 1fr;
  }

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

/* ── ≤768px : large phones / portrait tablets ────────────────────── */
@media (max-width: 768px) {

  /* Nav */
  .nav-links {
    display: none;
  }

  .nav-cta,
  .nav-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero & Typewriter Mobile Stability */
  .hero,
  .hero-section {
    padding: 110px 0 60px;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
    min-height: 3.2em;
  }

  .typing-cursor {
    white-space: normal;
    display: inline-block;
    /*min-height: 2.2em;*/
  }

  .hero-actions,
  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .btn,
  .hero-buttons .btn {
    width: 100%;
    max-width: 340px;
  }

  /* Grids → 1 column */
  .srvs-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

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

  .mv-grid,
  .two-col-equal {
    grid-template-columns: 1fr;
  }

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

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

  .cic-row,
  .contact-info-cards {
    grid-template-columns: 1fr;
  }

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

  /* Stats */
  .stats-grid,
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Solutions tabs */
  .sol-tabs,
  .solution-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .sol-tabs::-webkit-scrollbar,
  .solution-tabs::-webkit-scrollbar {
    display: none;
  }

  .sol-tab,
  .solution-tab {
    flex-shrink: 0;
  }

  /* CTA */
  .cta-box {
    padding: 40px 22px;
  }

  .cta-actions,
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions .btn,
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  /* Forms */
  .f-row,
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .foot-bottom,
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .foot-legal,
  .footer-legal {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ── ≤480px : phones ─────────────────────────────────────────────── */
@media (max-width: 480px) {

  .hero-proof,
  .hero-social-proof {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .ind-grid,
  .industries-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .sec-title,
  .section-title {
    font-size: 1.75rem;
  }

  .astat-grid,
  .about-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .foot-legal,
  .footer-legal {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  .stats-grid,
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── ≤360px : small phones ───────────────────────────────────────── */
@media (max-width: 360px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .stats-grid,
  .stats-row {
    grid-template-columns: 1fr;
  }

  .ind-grid,
  .industries-grid {
    grid-template-columns: 1fr;
  }
}