
/* ============================================================
   SAVADUB LIMITED — MAIN STYLESHEET
   Theme: Modern · Techy · Global · Premium
   Stack: Bootstrap 5 + Custom CSS
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --clr-deep-blue: #081065;
  --clr-deep-blue-dark: #050c4a;
  --clr-deep-blue-light: #0d1880;
  --clr-red: #DD3333;
  --clr-red-dark: #b82929;
  --clr-red-glow: rgba(221,51,51,0.18);
  --clr-light-blue: #66A9BF;
  --clr-light-blue-glow: rgba(102,169,191,0.18);
  --clr-white: #ffffff;
  --clr-off-white: #f0f2ff;
  --clr-muted: #8e95c0;
  --clr-border: rgba(102,169,191,0.15);
  --clr-bg-deep: #060e50;
  --clr-surface: rgba(255,255,255,0.04);
  --clr-surface-hover: rgba(255,255,255,0.07);

  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;

  --header-h: 72px;
  --section-py: 96px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 36px;

  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--clr-deep-blue);
  color: var(--clr-white);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

::selection {
  background: var(--clr-red);
  color: white;
}

img { max-width: 100%; }

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

/* ---- Typography Utility ---- */
.text-accent-red { color: var(--clr-red) !important; }
.text-accent-blue { color: var(--clr-light-blue) !important; }
.text-muted-custom { color: var(--clr-muted); }

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-light-blue);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: var(--clr-white);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--clr-muted);
  max-width: 540px;
}

.body-text {
  color: var(--clr-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.py-section { padding-top: var(--section-py); padding-bottom: var(--section-py); }
.bg-deep { background-color: var(--clr-bg-deep); }
.z-2 { z-index: 2; }

/* ============================================================
   BUTTONS (Global)
   ============================================================ */
.btn-savadub-primary {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: white !important;
  background: var(--clr-red);
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-smooth);
  letter-spacing: 0.02em;
}

.btn-savadub-primary:hover {
  background: var(--clr-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--clr-red-glow);
}

.btn-savadub-outline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: white !important;
  background: transparent;
  padding: 11px 28px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--clr-border);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-smooth);
}

.btn-savadub-outline:hover {
  border-color: var(--clr-light-blue);
  background: var(--clr-light-blue-glow);
  transform: translateY(-2px);
}

.btn-savadub-ghost {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75) !important;
  background: transparent;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-smooth);
}

.btn-savadub-ghost:hover {
  color: white !important;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-h);
  background: var(--clr-deep-blue);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(102,169,191,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102,169,191,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.hero-bg-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 100%, rgba(8,16,101,0.8) 0%, transparent 60%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

.hero-orb--1 {
  width: 500px; height: 500px;
  top: -100px; right: -100px;
  background: radial-gradient(circle, rgba(221,51,51,0.12) 0%, transparent 70%);
}

.hero-orb--2 {
  width: 400px; height: 400px;
  bottom: 0; left: -80px;
  background: radial-gradient(circle, rgba(102,169,191,0.1) 0%, transparent 70%);
}

.min-vh-hero {
  min-height: calc(100vh - var(--header-h) - 120px);
  padding: 60px 0 30px;
}

.badge-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-light-blue);
  background: rgba(102,169,191,0.1);
  border: 1px solid rgba(102,169,191,0.2);
  padding: 6px 14px;
  border-radius: 100px;
}

.badge-label::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--clr-light-blue);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: white;
}

.hero-subtext {
  font-size: 1.1rem;
  color: var(--clr-muted);
  line-height: 1.7;
  max-width: 520px;
}

.hero-cta-group .btn {
  font-size: 0.95rem;
  padding: 14px 32px;
}

/* Hero Visual */
.hero-visual {
  width: 360px; height: 360px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-globe-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: spin-ring 20s linear infinite;
}

.ring-1 {
  width: 100%; height: 100%;
  border-color: rgba(102,169,191,0.15);
  animation-duration: 30s;
}

.ring-2 {
  width: 75%; height: 75%;
  border-color: rgba(221,51,51,0.15);
  animation-duration: 20s;
  animation-direction: reverse;
}

.ring-3 {
  width: 50%; height: 50%;
  border-color: rgba(102,169,191,0.2);
  animation-duration: 15s;
}

@keyframes spin-ring {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-logo-mark {
  position: relative;
  z-index: 2;
  width: 90px; height: 90px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--clr-border);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

/* Stats Bar */
.hero-stats-bar {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  margin-top: 48px;
  overflow: hidden;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  border-right: 1px solid var(--clr-border);
  text-align: center;
}

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

.stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: white;
  line-height: 1;
}

.stat-plus {
  font-size: 1.4rem;
  color: var(--clr-red);
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-top: 4px;
}

/* ============================================================
   THREE GATES SECTION
   ============================================================ */
.three-gates-section { background: var(--clr-deep-blue); }

.gate-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-smooth);
  overflow: hidden;
}

.gate-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--clr-light-blue);
  transform: scaleX(0);
  transition: transform var(--transition-smooth);
  transform-origin: left;
}

.gate-card:hover {
  border-color: rgba(102,169,191,0.3);
  background: var(--clr-surface-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

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

.gate-card--featured {
  border-color: var(--clr-red) !important;
  background: rgba(221,51,51,0.05);
}

.gate-card--featured::before {
  background: var(--clr-red) !important;
  transform: scaleX(1) !important;
}

.gate-card--featured:hover {
  border-color: var(--clr-red-dark) !important;
}

.gate-card__featured-badge {
  position: absolute;
  top: 20px; right: 20px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-red);
  background: var(--clr-red-glow);
  border: 1px solid rgba(221,51,51,0.3);
  padding: 4px 10px;
  border-radius: 100px;
}

.gate-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  background: rgba(102,169,191,0.1);
  color: var(--clr-light-blue);
  border: 1px solid rgba(102,169,191,0.2);
}

.gate-card--featured .gate-card__icon {
  background: var(--clr-red-glow);
  color: var(--clr-red);
  border-color: rgba(221,51,51,0.2);
}

.gate-card__tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 10px;
}

.gate-card__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.1;
  color: white;
  margin-bottom: 16px;
}

.gate-card__title span { color: var(--clr-light-blue); }
.gate-card--featured .gate-card__title span { color: var(--clr-red); }

.gate-card__text {
  color: var(--clr-muted);
  font-size: 0.925rem;
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 20px;
}

.gate-card__list {
  list-style: none;
  padding: 0; margin: 0 0 24px;
}

.gate-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  padding: 5px 0;
  border-bottom: 1px solid var(--clr-border);
}

.gate-card__list li:last-child { border-bottom: none; }

.gate-card__list li i {
  color: var(--clr-light-blue);
  font-size: 0.875rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.gate-card--featured .gate-card__list li i { color: var(--clr-red); }

.gate-card__cta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--clr-light-blue) !important;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition-fast), color var(--transition-fast);
  margin-top: auto;
}

.gate-card__cta:hover { gap: 14px; }
.gate-card--featured .gate-card__cta { color: var(--clr-red) !important; }

/* ============================================================
   ABOUT STRIP
   ============================================================ */
.about-visual-stack {
  position: relative;
  padding: 20px;
}

.about-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  border: 1px solid var(--clr-border);
  transition: all var(--transition-smooth);
}

.about-card:hover {
  transform: translateX(8px);
  border-color: rgba(102,169,191,0.3);
}

.about-card--1 { background: rgba(102,169,191,0.08); margin-left: 0; }
.about-card--2 { background: rgba(221,51,51,0.08); margin-left: 24px; }
.about-card--3 { background: rgba(102,169,191,0.08); margin-left: 48px; }

.about-card__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-light-blue);
}

.about-card--2 .about-card__label { color: var(--clr-red); }

.about-card__stat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
}

.about-pillars-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.pillar-mini {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

/* ============================================================
   VENTURES PREVIEW
   ============================================================ */
.venture-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.venture-card:hover {
  border-color: rgba(102,169,191,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.venture-card__logo {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: white;
  margin-bottom: 18px;
  letter-spacing: 0.05em;
}

.venture-card__logo--lawsava   { background: linear-gradient(135deg, #081065, #1a2fa8); border: 1px solid rgba(102,169,191,0.3); }
.venture-card__logo--saviliate { background: linear-gradient(135deg, #8b1010, #DD3333); }
.venture-card__logo--medichaven{ background: linear-gradient(135deg, #0b5563, #66A9BF); }

.venture-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: white;
  margin-bottom: 4px;
}

.venture-card__sector {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-light-blue);
  display: block;
  margin-bottom: 14px;
}

.venture-card__desc {
  font-size: 0.9rem;
  color: var(--clr-muted);
  line-height: 1.65;
  flex-grow: 1;
  margin-bottom: 20px;
}

.venture-card__link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--clr-light-blue) !important;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition-fast);
  margin-top: auto;
}

.venture-card__link:hover { gap: 14px; }

/* ============================================================
   LABS PREVIEW
   ============================================================ */
.labs-track {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
  margin-bottom: 12px;
  background: var(--clr-surface);
  transition: all var(--transition-smooth);
}

.labs-track:hover {
  border-color: rgba(102,169,191,0.3);
  background: var(--clr-surface-hover);
  transform: translateX(4px);
}

.labs-track__icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: rgba(102,169,191,0.1);
  border: 1px solid rgba(102,169,191,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-light-blue);
  font-size: 1.1rem;
}

.labs-track__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: white;
  margin-bottom: 4px;
}

.labs-track__desc {
  font-size: 0.875rem;
  color: var(--clr-muted);
  margin: 0;
  line-height: 1.6;
}

/* Tech Stack Grid */
.tech-stack-grid {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.tech-stack-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 20px;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.tech-tag {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--clr-light-blue);
  background: rgba(102,169,191,0.1);
  border: 1px solid rgba(102,169,191,0.2);
  padding: 5px 12px;
  border-radius: 100px;
  transition: all var(--transition-fast);
  cursor: default;
}

.tech-tag:hover {
  background: rgba(102,169,191,0.2);
  border-color: var(--clr-light-blue);
  transform: translateY(-2px);
}

.tech-stack-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--clr-border);
  font-size: 0.875rem;
  color: var(--clr-muted);
}

.tech-stack-cta a {
  color: var(--clr-red) !important;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast);
}

.tech-stack-cta a:hover { gap: 10px; }

/* ============================================================
   MOBILITY PREVIEW
   ============================================================ */
.mobility-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
}

.mobility-card--pro {
  background: rgba(102,169,191,0.05);
  border-color: rgba(102,169,191,0.2);
}

.mobility-card--essential {
  background: rgba(221,51,51,0.05);
  border-color: rgba(221,51,51,0.15);
}

.mobility-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.mobility-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.mobility-card__header i {
  font-size: 1.6rem;
}

.mobility-card--pro .mobility-card__header i { color: var(--clr-light-blue); }
.mobility-card--essential .mobility-card__header i { color: var(--clr-red); }

.mobility-card__header h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: white;
  margin: 0;
}

.mobility-card p {
  font-size: 0.9rem;
  color: var(--clr-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.mobility-card ul {
  list-style: none;
  padding: 0; margin: 0;
  flex-grow: 1;
}

.mobility-card ul li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  padding: 8px 0;
  border-bottom: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobility-card ul li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mobility-card--pro ul li::before { background: var(--clr-light-blue); }
.mobility-card--essential ul li::before { background: var(--clr-red); }

.mobility-card ul li:last-child { border-bottom: none; }

.mobility-card__cta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  transition: gap var(--transition-fast);
}

.mobility-card--pro .mobility-card__cta { color: var(--clr-light-blue) !important; }
.mobility-card--essential .mobility-card__cta { color: var(--clr-red) !important; }
.mobility-card__cta:hover { gap: 14px; }

/* Mobility Process */
.mobility-process {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.mobility-process__title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 24px;
}

.mobility-process__steps {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 100px;
}

.process-step__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--clr-red);
}

.process-step__label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  text-align: center;
  font-weight: 500;
}

.process-step__arrow {
  color: var(--clr-border);
  font-size: 1rem;
  flex-shrink: 0;
}

@media (max-width: 767.98px) {
  .mobility-process__steps { gap: 8px; }
  .process-step { min-width: 80px; }
  .process-step__num { font-size: 1.1rem; }
  .process-step__label { font-size: 0.7rem; }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  overflow: hidden;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(221,51,51,0.1) 0%, transparent 60%),
    linear-gradient(135deg, var(--clr-deep-blue-dark) 0%, var(--clr-deep-blue) 100%);
}

.cta-banner__btns .btn { font-size: 1rem; padding: 16px 36px; }


/* ============================================================
   AOS DEFAULTS
   ============================================================ */
[data-aos] { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }

/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 991.98px) {
  :root { --section-py: 64px; }
  .hero-stats-bar .stat-item { border-right: none; border-bottom: 1px solid var(--clr-border); }
  .hero-stats-bar .stat-item:last-child { border-bottom: none; }
  .hero-stats-bar .col-6:nth-child(even) .stat-item { border-left: 1px solid var(--clr-border); }
  .about-card--2 { margin-left: 16px; }
  .about-card--3 { margin-left: 32px; }
}

@media (max-width: 767.98px) {
  :root { --section-py: 48px; }
  .hero-section { padding-top: 100px; }
  .min-vh-hero { min-height: unset; padding: 40px 0 24px; }
  .hero-headline { font-size: 2.2rem; }
  .gate-card { padding: 28px 24px; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-cta-group .btn { width: 100%; justify-content: center; }
  .cta-banner__btns { display: flex; flex-direction: column; align-items: center; gap: 12px; }
  .mobility-process__steps .process-step__arrow { display: none; }
  .mobility-process__steps { justify-content: space-between; }
}

@media (max-width: 575.98px) {
  .hero-stats-bar .stat-item { border-right: none; }
  .hero-stats-bar .col-6:nth-child(even) .stat-item { border-left: none; }
  .hero-stats-bar .stat-item { border-bottom: 1px solid var(--clr-border); }
}

/* ============================================================
   SAVADUB — OFFSHORE TEAMS  |  offshore-teams.css
   Only what Bootstrap 5 genuinely cannot handle.
   ============================================================ */

/* ── 0. BRAND TOKEN ─────────────────────────────────────────── */
:root {
  --clr-purple:      #8b5cf6;
  --clr-purple-dim:  rgba(139,92,246,0.12);
  --clr-purple-ring: rgba(139,92,246,0.2);
}

/* ── 1. HERO ─────────────────────────────────────────────────── */

/* Grid overlay */
.ot-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(102,169,191,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102,169,191,0.06) 1px, transparent 1px);
  background-size: 52px 52px;
  z-index: 0;
  pointer-events: none;
}
.ot-hero__grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 60% at 50% 110%, rgba(8,16,101,0.9) 0%, transparent 70%);
}

/* Blur orbs */
.ot-hero__orb { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; z-index: 0; }
.ot-hero__orb--1 { width: 600px; height: 600px; top: -150px; right: -80px;  background: radial-gradient(circle, rgba(221,51,51,0.1) 0%, transparent 70%); }
.ot-hero__orb--2 { width: 400px; height: 400px; bottom: -60px; left: -100px; background: radial-gradient(circle, rgba(102,169,191,0.09) 0%, transparent 70%); }

/* Eyebrow text pill */
.ot-eyebrow-text {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--clr-light-blue);
  background: rgba(102,169,191,0.1);
  border: 1px solid rgba(102,169,191,0.2);
}

/* Headline */
.ot-hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: white;
}
.ot-headline--accent { color: var(--clr-red); }
.ot-headline--ghost  { -webkit-text-stroke: 1.5px rgba(255,255,255,0.35); color: transparent; }

/* Subtext */
.ot-hero__sub { font-size: 1.05rem; color: var(--clr-muted); line-height: 1.75; max-width: 540px; }
.ot-hero__sub em { color: var(--clr-light-blue); font-style: normal; font-weight: 500; }

/* Proof pills */
.ot-proof-pill {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}
.ot-proof-pill i { color: #2ecc71; }

/* Hero visual */
.ot-hero__visual { width: 380px; height: 380px; position: relative; flex-shrink: 0; }

.ot-visual-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed;
  top: 50%; left: 50%;
}
.ot-visual-ring--1 { width: 100%; height: 100%; border-color: rgba(102,169,191,0.15); animation: ot-spin 35s linear infinite;         transform: translate(-50%,-50%); }
.ot-visual-ring--2 { width: 68%; height: 68%;  border-color: rgba(221,51,51,0.12);   animation: ot-spin 22s linear infinite reverse; transform: translate(-50%,-50%); }
@keyframes ot-spin {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}

/* Center badge */
.ot-visual-center {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  z-index: 4; width: 110px; height: 110px;
  border-radius: 50%; background: var(--clr-red);
  box-shadow: 0 0 50px rgba(221,51,51,0.35);
  line-height: 1.2;
}
.ot-visual-center__top  { font-size: 0.6rem;  letter-spacing: 0.1em; color: rgba(255,255,255,0.7); }
.ot-visual-center__main { font-size: 1.4rem;  font-family: var(--font-display); color: white; }
.ot-visual-center__sub  { font-size: 0.52rem; letter-spacing: 0.08em; color: rgba(255,255,255,0.6); }

/* Floating role pills */
.ot-role-float {
  position: absolute;
  background: rgba(8,16,101,0.9);
  border: 1px solid var(--clr-border);
  backdrop-filter: blur(12px);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 600;
  white-space: nowrap; z-index: 3;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  padding: 7px 14px;
  animation: ot-bob 4s ease-in-out infinite;
  color: white;
}
.ot-role-float i { color: var(--clr-light-blue); font-size: 0.9rem; }
.ot-role-float--1 { top: 5%;    left: 50%; animation-name: ot-bob-cx; animation-delay: 0s;   }
.ot-role-float--2 { top: 28%;   right: 0;                              animation-delay: 0.8s; }
.ot-role-float--3 { bottom: 28%;right: -4%;                            animation-delay: 1.4s; }
.ot-role-float--4 { bottom: 5%; left: 50%; animation-name: ot-bob-cx; animation-delay: 0.4s; }
.ot-role-float--5 { top: 28%;   left: -2%;                             animation-delay: 1.8s; }
@keyframes ot-bob    { 0%,100% { transform: translateY(0); }           50% { transform: translateY(-6px); } }
@keyframes ot-bob-cx { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-6px); } }

/* Scroll hint */
.ot-hero__scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: var(--clr-muted);
  font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.12em;
  animation: ot-scroll 2.5s ease-in-out infinite;
}
@keyframes ot-scroll {
  0%,100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
  50%      { opacity: 1;   transform: translateX(-50%) translateY(6px); }
}

/* ── 2. PROBLEM CARDS ───────────────────────────────────────── */
.pain-card { transition: transform var(--transition-smooth), border-color var(--transition-smooth); background: var(--clr-surface); }
.pain-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--clr-red); transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition-smooth);
}
.pain-card:hover { transform: translateY(-4px); border-color: rgba(221,51,51,0.25) !important; }
.pain-card:hover::after { transform: scaleX(1); }

.pain-card h4 { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: white; margin-bottom: 8px; }
.pain-card p  { font-size: 0.875rem; color: var(--clr-muted); line-height: 1.7; margin: 0; }

/* Pain icon */
.pain-card__icon {
  width: 48px; height: 48px;
  background: rgba(221,51,51,0.1);
  border: 1px solid rgba(221,51,51,0.15);
  color: var(--clr-red); font-size: 1.2rem;
}

/* ── 3. SOLUTION PILLARS ────────────────────────────────────── */
.ot-pillar__icon {
  width: 52px; height: 52px;
  background: rgba(102,169,191,0.1);
  border: 1px solid rgba(102,169,191,0.15);
  color: var(--clr-light-blue); font-size: 1.3rem;
}
.ot-pillar__icon--red {
  background: rgba(221,51,51,0.1) !important;
  border-color: rgba(221,51,51,0.15) !important;
  color: var(--clr-red) !important;
}
.ot-pillar__content h4 { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: white; margin-bottom: 8px; }
.ot-pillar__content p  { font-size: 0.9rem; color: var(--clr-muted); line-height: 1.75; margin: 0; }

.ot-pillar__badge {
  font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.12em;
  color: var(--clr-light-blue);
  background: rgba(102,169,191,0.1); border: 1px solid rgba(102,169,191,0.15);
}
.ot-pillar__badge--red {
  color: var(--clr-red);
  background: rgba(221,51,51,0.1); border-color: rgba(221,51,51,0.15);
}

/* ── 4. COST COMPARISON ─────────────────────────────────────── */
.ot-cost-card--local   { background: rgba(255,255,255,0.03); }
.ot-cost-card--savadub {
  background: rgba(102,169,191,0.05);
  border-color: rgba(102,169,191,0.25) !important;
  box-shadow: 0 0 60px rgba(102,169,191,0.06);
}
.ot-cost-label--bad {
  color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
}
.ot-cost-label--good {
  color: var(--clr-light-blue); background: rgba(102,169,191,0.12);
  border: 1px solid rgba(102,169,191,0.2);
}
.ot-cost-item--good { background: rgba(102,169,191,0.04); }
.ot-cost-item__value--good { color: #2ecc71; }
.ot-cost-card__total--bad  { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); }
.ot-cost-card__total--good { background: rgba(102,169,191,0.12); border: 1px solid rgba(102,169,191,0.25); }
.ot-cost-card__total--bad  span  { color: var(--clr-muted); font-size: 0.85rem; }
.ot-cost-card__total--bad  strong{ color: white; font-family: var(--font-display); font-size: 1.4rem; }
.ot-cost-card__total--good span  { color: var(--clr-muted); font-size: 0.85rem; }
.ot-cost-card__total--good strong{ color: var(--clr-light-blue); font-family: var(--font-display); font-size: 1.4rem; }
.ot-cost-card__note      { color: rgba(255,120,120,0.75); }
.ot-cost-card__note--good{ color: rgba(102,169,191,0.7); }

/* VS divider */
.ot-vs-badge { width: 56px; height: 56px; box-shadow: 0 0 30px rgba(221,51,51,0.3); font-family: var(--font-display); font-size: 1rem; flex-shrink: 0; }

/* Savings callout */
.ot-savings-callout {
  background: linear-gradient(135deg, rgba(221,51,51,0.08), rgba(102,169,191,0.06));
  border: 1px solid rgba(221,51,51,0.2) !important;
}
.ot-savings-callout h3 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.3rem,2.5vw,1.8rem); color: white; line-height: 1.3; }

/* ── 5. HOW IT WORKS ────────────────────────────────────────── */
.ot-step { transition: transform var(--transition-smooth); background: var(--clr-surface); }
.ot-step::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--clr-red), var(--clr-light-blue));
  transform: scaleX(0); transition: transform var(--transition-smooth);
}
.ot-step:hover { transform: translateY(-5px); }
.ot-step:hover::before { transform: scaleX(1); }

/* Step number — ghost large numeral */
.ot-step__num {
  font-family: var(--font-display); font-size: 3.5rem; line-height: 1;
  color: rgba(255,255,255,0.07);
}
/* Step icon */
.ot-step__icon {
  width: 56px; height: 56px;
  background: rgba(102,169,191,0.1); border: 1px solid rgba(102,169,191,0.15);
  color: var(--clr-light-blue);
}
.ot-step h4 { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: white; margin-bottom: 8px; }
.ot-step p  { font-size: 0.875rem; color: var(--clr-muted); line-height: 1.7; margin: 0; }

/* Timeline dots */
.ot-tl-dot {
  display: inline-block; width: 14px; height: 14px;
  background: var(--clr-light-blue); border: 2px solid rgba(102,169,191,0.3);
  box-shadow: 0 0 10px rgba(102,169,191,0.3); flex-shrink: 0;
}
.ot-tl-dot--red {
  background: var(--clr-red) !important; border-color: rgba(221,51,51,0.3) !important;
  animation: ot-dot-pulse 2s infinite;
}
@keyframes ot-dot-pulse {
  0%,100% { box-shadow: 0 0 10px rgba(221,51,51,0.3); }
  50%      { box-shadow: 0 0 24px rgba(221,51,51,0.6); }
}
.ot-tl-event--active { color: var(--clr-red); }

/* ── 6. USE-CASE CARDS ──────────────────────────────────────── */
.ot-usecase-card { transition: transform var(--transition-smooth), box-shadow var(--transition-smooth); background: var(--clr-surface); }
.ot-usecase-card:hover { transform: translateY(-5px); border-color: rgba(102,169,191,0.25) !important; box-shadow: 0 20px 50px rgba(0,0,0,0.2); }
.ot-usecase-card h4 { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: white; margin: 0; }
.ot-usecase-card p  { font-size: 0.875rem; color: var(--clr-muted); line-height: 1.7; margin: 0; }

/* Use-case icon */
.ot-usecase-card__icon {
  width: 52px; height: 52px;
  background: rgba(102,169,191,0.1); border: 1px solid rgba(102,169,191,0.15);
  color: var(--clr-light-blue);
}
/* Role tags */
.ot-usecase-card__roles span {
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.06em;
  color: var(--clr-light-blue); background: rgba(102,169,191,0.08);
  border: 1px solid rgba(102,169,191,0.15); padding: 3px 10px; border-radius: 100px;
}

/* ── 7. OBJECTIONS ──────────────────────────────────────────── */
.ot-obj-card { transition: border-color var(--transition-fast); background: var(--clr-surface); }
.ot-obj-card:hover { border-color: rgba(102,169,191,0.25) !important; }
.ot-obj-card__q i { color: var(--clr-red); font-size: 1.1rem; flex-shrink: 0; }
.ot-obj-card__q span {
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  color: white; line-height: 1.4; font-style: italic;
}
.ot-obj-card .p-4 p { font-size: 0.875rem; color: var(--clr-muted); line-height: 1.75; margin: 0; }

/* ── 8. WHY SAVADUB COMPARISON TABLE ────────────────────────── */
.ot-why__comparison {
  border: 1px solid var(--clr-border); border-radius: var(--radius-xl); overflow: hidden;
}
/* 3-col grid: feature | theirs | ours */
.ot-why-compare-header {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  background: rgba(255,255,255,0.04); border-bottom: 1px solid var(--clr-border); padding: 0 20px;
}
.ot-why-row {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  border-bottom: 1px solid var(--clr-border); align-items: center;
}
.ot-why-row--last { border-bottom: none; }
.ot-why-col-header { padding: 14px 12px; text-align: center; font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; }
.ot-why-col-header--theirs { color: rgba(255,255,255,0.3); }
.ot-why-col-header--ours   { color: var(--clr-light-blue); }
.ot-why-label  { padding: 14px 20px; font-size: 0.85rem; color: var(--clr-muted); }
.ot-why-theirs { padding: 14px 12px; text-align: center; color: rgba(255,255,255,0.3); font-size: 0.8rem; font-weight: 600; }
.ot-why-ours   { padding: 14px 12px; text-align: center; color: var(--clr-light-blue); font-size: 0.8rem; font-weight: 600; background: rgba(102,169,191,0.04); }
.ot-why-theirs .bi-x-lg  { color: rgba(221,51,51,0.6); }
.ot-why-theirs .bi-dash   { color: rgba(255,255,255,0.2); }

/* Trust items */
.ot-trust-item__icon {
  width: 44px; height: 44px;
  background: rgba(102,169,191,0.1); border: 1px solid rgba(102,169,191,0.15);
  color: var(--clr-light-blue); flex-shrink: 0;
}
.ot-trust-item__icon + div h5 { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: white; margin-bottom: 6px; }
.ot-trust-item__icon + div p  { font-size: 0.85rem; color: var(--clr-muted); line-height: 1.7; margin: 0; }

/* ── 9. CTA SECTION ─────────────────────────────────────────── */
.ot-cta__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(221,51,51,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(102,169,191,0.06) 0%, transparent 60%),
    var(--clr-bg-deep);
}
/* Checkbox checked state */
.ot-checkbox { cursor: pointer; color: rgba(255,255,255,0.75); transition: all var(--transition-fast); user-select: none; }
.ot-checkbox:hover { border-color: rgba(221,51,51,0.4) !important; color: white; }
.ot-checkbox:has(input:checked) { border-color: var(--clr-red) !important; background: rgba(221,51,51,0.1); color: white; }
.ot-checkbox input[type="checkbox"] { accent-color: var(--clr-red); cursor: pointer; }

/* ── 10. URGENCY STRIP ──────────────────────────────────────── */
.ot-urgency-strip { background: rgba(221,51,51,0.08); border-top: 1px solid rgba(221,51,51,0.2); border-bottom: 1px solid rgba(221,51,51,0.2); }
.ot-urgency-strip p { color: rgba(255,255,255,0.85); }
.ot-urgency-strip strong { color: white; }

/* ── 11. ACCORDION CATEGORY BLOCKS ─────────────────────────── */

/* Category block wrapper — bg underneath the border */
.ot-cat-block { background: rgba(255,255,255,0.015); }

/* Header gradient tints */
.ot-cat-block__header--red    { background: linear-gradient(135deg, rgba(221,51,51,0.1),   rgba(221,51,51,0.04)); }
.ot-cat-block__header--blue   { background: linear-gradient(135deg, rgba(102,169,191,0.1), rgba(102,169,191,0.04)); }
.ot-cat-block__header--purple { background: linear-gradient(135deg, rgba(139,92,246,0.1),  rgba(139,92,246,0.04)); }

/* Category title */
.ot-cat-block__title { font-family: var(--font-display); font-size: 1.15rem; color: white; }
.ot-cat-block__sub   { color: var(--clr-muted); }

/* Category icon variants */
.ot-cat-block__icon {
  background: rgba(221,51,51,0.12); border: 1px solid rgba(221,51,51,0.2);
  color: var(--clr-red); flex-shrink: 0;
}
.ot-cat-block__icon--blue   { background: rgba(102,169,191,0.12); border-color: rgba(102,169,191,0.2); color: var(--clr-light-blue); }
.ot-cat-block__icon--purple { background: var(--clr-purple-dim);  border-color: var(--clr-purple-ring); color: var(--clr-purple); }

/* Count badge */
.ot-cat-block__count {
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.12em;
  color: var(--clr-red); background: rgba(221,51,51,0.1); border: 1px solid rgba(221,51,51,0.2);
}
.ot-cat-block__count--blue   { color: var(--clr-light-blue); background: rgba(102,169,191,0.1); border-color: rgba(102,169,191,0.2); }
.ot-cat-block__count--purple { color: var(--clr-purple);     background: var(--clr-purple-dim);  border-color: var(--clr-purple-ring); }

/* Accordion trigger */
.ot-accordion__trigger { transition: background var(--transition-fast); }
.ot-accordion__trigger:hover,
.ot-accordion__trigger[aria-expanded="true"] { background: rgba(255,255,255,0.03); }

/* Role name */
.ot-accordion__role-name { font-family: var(--font-display); }

/* Accordion body — indented to align with text, not icon */
.ot-accordion__body { padding: 8px 28px 24px 82px; }
.ot-accordion__body p { font-size: 0.9rem; color: var(--clr-muted); line-height: 1.8; margin-bottom: 14px; }

/* Ideal-for tag */
.ot-role-card__ideal i { color: var(--clr-light-blue); }

/* Accordion chevron */
.ot-accordion__chevron { transition: transform 0.3s ease; color: var(--clr-muted); flex-shrink: 0; }

/* Role icon sizes and colour variants */
.ot-acc-icon { width: 40px; height: 40px; flex-shrink: 0; }
.ot-acc-icon--purple { background: var(--clr-purple-dim); color: var(--clr-purple); }

/* Hire buttons */
.ot-acc-hire-btn         { font-family: var(--font-display); font-weight: 700; font-size: 0.82rem; color: var(--clr-red) !important;         display: inline-flex; align-items: center; gap: 6px; transition: gap var(--transition-fast); white-space: nowrap; }
.ot-acc-hire-btn--blue   { color: var(--clr-light-blue)   !important; }
.ot-acc-hire-btn--purple { color: var(--clr-purple)        !important; }
.ot-acc-hire-btn:hover   { gap: 10px; }

/* ── 12. MOBILE FIXES ───────────────────────────────────────── */
@media (max-width: 991.98px) {
  .ot-hero__visual { width: 300px; height: 300px; }
  .ot-visual-center { width: 90px !important; height: 90px !important; }
  .ot-visual-center__main { font-size: 1.2rem !important; }
  .ot-role-float { font-size: 0.7rem; padding: 5px 10px; }
}

@media (max-width: 767.98px) {
  /* Hero */
  .ot-hero__headline { font-size: 2.1rem; }
  .ot-hero__sub { font-size: 0.95rem; }

  /* Solution pillars — stack icon + badge on mobile */
  .ot-accordion__body { padding: 12px 16px 20px 16px; }
  .ot-cat-block__header { flex-wrap: wrap; gap: 10px !important; }
  .ot-cat-block__sub { display: none; }

  /* Ideal preview text in trigger */
  .ot-acc-ideal-preview { display: none !important; }

  /* Comparison table — shrink font and padding */
  .ot-why__comparison { font-size: 0.78rem; overflow-x: auto; }
  .ot-why-label  { padding: 10px 12px; font-size: 0.75rem; }
  .ot-why-theirs,
  .ot-why-ours   { padding: 10px 6px; font-size: 0.72rem; }

  /* Cost comparison — stack vertically, no VS column */
  .ot-vs-badge { display: none !important; }
  .ot-vs-line  { display: none !important; }

  /* Step cards */
  .ot-step { padding: 1.25rem !important; }
  .ot-step__num { font-size: 2.5rem; }

  /* Timeline — hide connectors, wrap items */
  .ot-timeline-connector { display: none; }

  /* Savings callout */
  .ot-savings-callout { padding: 1.5rem !important; }
  .ot-savings-callout h3 { font-size: 1.2rem; }
}

@media (max-width: 575.98px) {
  .ot-cat-block__count { font-size: 0.6rem; padding: 3px 8px; }
  .ot-cat-block__icon  { width: 40px !important; height: 40px !important; font-size: 1rem !important; }
  .ot-hero__proof      { flex-direction: column; align-items: flex-start; }
}

