@charset "UTF-8";

/* ============================================================
   GOOGLE FONTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --font-heading: 'Jost', sans-serif;
  --font-body:    Tahoma, Geneva, Verdana, sans-serif;

  --blue-50:  #e8f4fd;
  --blue-100: #c5e3f9;
  --blue-200: #90c9f4;
  --blue-400: #3aa0e8;
  --blue-600: #1a78c2;
  --blue-800: #0d4f8a;
  --blue-900: #062d52;

  --white:     #ffffff;
  --surface:   #f8fafc;
  --surface-2: #f0f7fe;

  --text-dark:  #0d1b2a;
  --text-mid:   #1e3a5f;
  --text-muted: #3d6a9a;
  --border:     rgba(26, 120, 194, 0.12);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 2px 12px rgba(26, 120, 194, 0.08);
  --shadow-md: 0 6px 32px rgba(26, 120, 194, 0.12);
  --shadow-lg: 0 16px 56px rgba(26, 120, 194, 0.16);

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  --checker-size: 32px;
  --checker-color: rgba(26, 120, 194, 0.045);

  --c0-bg: #dbeafe; --c0-border: #93c5fd; --c0-title: #1e3a8a;
  --c0-desc: #1d4ed8; --c0-num: #93c5fd; --c0-bar1: #bfdbfe; --c0-bar2: #1d4ed8;

  --c1-bg: #eff6ff; --c1-border: #bfdbfe; --c1-title: #1e3a8a;
  --c1-desc: #2563eb; --c1-num: #bfdbfe; --c1-bar1: #93c5fd; --c1-bar2: #2563eb;

  --c2-bg: #e0f2fe; --c2-border: #7dd3fc; --c2-title: #0c4a6e;
  --c2-desc: #0284c7; --c2-num: #7dd3fc; --c2-bar1: #bae6fd; --c2-bar2: #0284c7;

  --c3-bg: #dbeafe; --c3-border: #93c5fd; --c3-title: #1e3a8a;
  --c3-desc: #3b82f6; --c3-num: #93c5fd; --c3-bar1: #bfdbfe; --c3-bar2: #1d4ed8;

  --c4-bg: #e0f2fe; --c4-border: #7dd3fc; --c4-title: #0c4a6e;
  --c4-desc: #0284c7; --c4-num: #38bdf8; --c4-bar1: #7dd3fc; --c4-bar2: #0284c7;

  --t1-bg: #dbeafe;  --t1-border: #93c5fd;
  --t1-icon-bg: #bfdbfe; --t1-icon-border: #93c5fd; --t1-icon-color: #1d4ed8;
  --t1-icon-hover-bg: #1d4ed8; --t1-icon-hover-border: #1d4ed8;
  --t1-title: #1e3a8a; --t1-desc: #1d4ed8;
  --t1-bar1: #bfdbfe; --t1-bar2: #1d4ed8;

  --t2-bg: #eff6ff;  --t2-border: #bfdbfe;
  --t2-icon-bg: #dbeafe; --t2-icon-border: #bfdbfe; --t2-icon-color: #2563eb;
  --t2-icon-hover-bg: #2563eb; --t2-icon-hover-border: #2563eb;
  --t2-title: #1e3a8a; --t2-desc: #2563eb;
  --t2-bar1: #93c5fd; --t2-bar2: #2563eb;

  --t3-bg: #e0f2fe;  --t3-border: #7dd3fc;
  --t3-icon-bg: #bae6fd; --t3-icon-border: #7dd3fc; --t3-icon-color: #0284c7;
  --t3-icon-hover-bg: #0284c7; --t3-icon-hover-border: #0284c7;
  --t3-title: #0c4a6e; --t3-desc: #0284c7;
  --t3-bar1: #7dd3fc; --t3-bar2: #0284c7;

  --t4-bg: #eff6ff;  --t4-border: #bfdbfe;
  --t4-icon-bg: #dbeafe; --t4-icon-border: #bfdbfe; --t4-icon-color: #3b82f6;
  --t4-icon-hover-bg: #3b82f6; --t4-icon-hover-border: #3b82f6;
  --t4-title: #1e3a8a; --t4-desc: #3b82f6;
  --t4-bar1: #bfdbfe; --t4-bar2: #3b82f6;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-mid);
  background-color: #ffffff;
  background-image:
    linear-gradient(rgba(26,120,194,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,120,194,0.045) 1px, transparent 1px);
  background-size: var(--checker-size) var(--checker-size);
  background-position: center center;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,120,194,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,120,194,0.03) 1px, transparent 1px);
  background-size: calc(var(--checker-size) * 2) calc(var(--checker-size) * 2);
  transform: perspective(600px) rotateX(5deg) scale(1.05);
  transform-origin: top center;
  pointer-events: none;
  z-index: 0;
}

body > * { position: relative; z-index: 1; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--blue-50);
  border: 1px solid var(--blue-200);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-description {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-mid);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.section-header.centered { text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary { background: var(--blue-600); color: var(--white); border-color: var(--blue-600); }
.btn-primary:hover { background: var(--blue-800); border-color: var(--blue-800); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary { background: transparent; color: var(--blue-600); border-color: var(--blue-600); }
.btn-secondary:hover { background: var(--blue-800); border-color: var(--blue-800); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-large { padding: 16px 40px; font-size: 0.95rem; }

/* ============================================================
   SCROLL ANIMATION BASE
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1),
              transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.reveal--left  { transform: translateX(-50px); }
.reveal.reveal--right { transform: translateX(50px); }
.reveal.reveal--scale { transform: scale(0.88); }
.reveal.reveal--fade  { transform: none; }
.reveal.is-visible { opacity: 1; transform: translate(0) scale(1); }

.stagger-children > * {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.stagger-children.is-visible > *:nth-child(1) { opacity:1; transform:none; transition-delay:0.0s; }
.stagger-children.is-visible > *:nth-child(2) { opacity:1; transform:none; transition-delay:0.1s; }
.stagger-children.is-visible > *:nth-child(3) { opacity:1; transform:none; transition-delay:0.2s; }
.stagger-children.is-visible > *:nth-child(4) { opacity:1; transform:none; transition-delay:0.3s; }
.stagger-children.is-visible > *:nth-child(5) { opacity:1; transform:none; transition-delay:0.4s; }
.stagger-children.is-visible > *:nth-child(6) { opacity:1; transform:none; transition-delay:0.5s; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #050d1a;
  overflow: hidden;
  /* padding: 170px 60px; */
  font-family: var(--font-body);
  padding-top: 170px;
  padding-bottom: 60px;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('/img/hero-tech-bg.jpg') center / cover no-repeat;
  opacity: 0.15;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(3, 8, 24, 0.93)  0%,
    rgba(5, 15, 40, 0.87) 50%,
    rgba(3, 8, 24, 0.93) 100%
  );
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero-background {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.18;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-1 { width: 500px; height: 500px; background: #1d4ed8; top: -120px; left: -100px; animation-delay: 0s; }
.orb-2 { width: 400px; height: 400px; background: #0ea5e9; top: 50%; right: -80px; transform: translateY(-50%); animation-delay: -3s; }
.orb-3 { width: 320px; height: 320px; background: #6366f1; bottom: -80px; left: 38%; animation-delay: -6s; }

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  33%       { transform: translateY(-20px) scale(1.04); }
  66%       { transform: translateY(12px) scale(0.97); }
}
.orb-2 { animation-name: orbFloat2; }
@keyframes orbFloat2 {
  0%, 100% { transform: translateY(-50%) scale(1); }
  50%       { transform: translateY(calc(-50% - 16px)) scale(1.05); }
}

.hero .container {
  max-width: 900px;
  position: relative;
  z-index: 10;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  animation: heroEntrance 1s cubic-bezier(0.4,0,0.2,1) both;
}

@keyframes heroEntrance {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  animation: heroEntrance 1s cubic-bezier(0.4,0,0.2,1) 0.2s both;
}

.title-line {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #e8f4ff;
}

.typed-line {
  min-height: 1.1em;
}

.typed-cursor {
  display: inline-block;
  width: 3px;
  height: 0.82em;
  background: #60a5fa;
  vertical-align: middle;
  margin-left: 3px;
  border-radius: 1px;
  animation: blink 0.9s step-end infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* ── CHANGED: gradient-text now pure white ── */
.gradient-text {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #ffffff;
  background-clip: unset;
  animation: none;
  color: #ffffff;
}

/* ── CHANGED: typed text now pure white ── */
#typed-text {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #ffffff;
  background-clip: unset;
  animation: none;
  color: #ffffff;
}

.hero-description {
  max-width: 640px;
  font-size: 1.2rem;
  line-height: 1.85;
  color: #ffffff;
  margin: 0 auto;
  animation: heroEntrance 1s cubic-bezier(0.4,0,0.2,1) 0.3s both;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
  animation: heroEntrance 1s cubic-bezier(0.4,0,0.2,1) 0.4s both;
}

.hero .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.hero .btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.hero .btn:hover::before { transform: translateX(0); }

.hero .btn-primary {
  background: linear-gradient(135deg, #1d4ed8, #0ea5e9);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 20px rgba(14,165,233,0.3);
}
.hero .btn-primary:hover { opacity: 0.92; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(14,165,233,0.45); }

.hero .btn-secondary {
  background: rgba(255,255,255,0.07);
  color: #93c5fd;
  border: 1px solid rgba(147,197,253,0.3);
}
.hero .btn-secondary:hover { background: rgba(255,255,255,0.13); transform: translateY(-2px); }

.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.scroll-line {
  width: 1.5px;
  height: 48px;
  background: linear-gradient(to bottom, #3b82f6, transparent);
  margin: 0 auto;
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   CLIENTS SECTION
   ============================================================ */
.clients {
  padding: 60px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f0f6ff 50%, #ffffff 100%);
  border-top: 1px solid rgba(26, 111, 196, 0.10);
  border-bottom: 1px solid rgba(26, 111, 196, 0.10);
  overflow: hidden;
  position: relative;
}


.clients .section-title {
  color:#ffffff;
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.025em;
  text-align: center;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.clients .section-title.is-visible { opacity: 1; transform: none; }

.clients-marquee { overflow: hidden; width: 100%; position: relative; }
.clients-marquee::before, .clients-marquee::after {
  content: ''; position: absolute; top: 0; height: 100%; width: 200px; z-index: 2; pointer-events: none;
}
/* .clients-marquee::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.clients-marquee::after  { right: 0; background: linear-gradient(to left, #fff, transparent); } */

.marquee-track {
  display: flex; align-items: center;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

/* ── CHANGED: client logo background now white ── */
.client-logo {
  flex-shrink: 0; width: 200px; height: 100px;
  margin: 0 10px;
  display: flex; align-items: center; justify-content: center;
  padding: 16px 24px;
  border-radius: 16px;
  /* background: #ffffff; */
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}
.client-logo:hover { transform: translateY(-6px) scale(1.04); }
.client-logo img { width: 100%; height: 130px; object-fit: contain; display: block; }

@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.container-fluid.py-5.m-0 {
  background: rgba(248,250,252,0.92);
  font-family: var(--font-body);
  backdrop-filter: blur(2px);
}
.container-fluid.py-5.m-0 h5 {
  font-family: var(--font-body); color: var(--blue-600);
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 10px; font-size: 1.2rem;
}
.container-fluid.py-5.m-0 h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800;
  letter-spacing: -0.025em; color: var(--text-dark);
  margin-bottom: 20px; line-height: 1.15;
}
.container-fluid.py-5.m-0 p {
  font-family: var(--font-body); color: var(--text-mid);
  font-size: 1.2rem; line-height: 1.85;
}
.container-fluid.py-5.m-0 img {
  box-shadow: var(--shadow-md);
  border: 3px solid var(--white);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  margin-top: 100px;
}
.container-fluid.py-5.m-0 img:hover { transform: scale(1.02) rotate(-0.5deg); box-shadow: var(--shadow-lg); }
.container-fluid.py-5.m-0 .btn-secondary {
  font-family: var(--font-body); font-weight: 700;
  background: var(--blue-600); color: var(--white);
  border: none; margin-top: 8px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.container-fluid.py-5.m-0 .btn-secondary:hover { background: var(--blue-800); transform: translateY(-2px); }

/* ============================================================
   JOURNEY SECTION
   ============================================================ */
.journey {
  padding: 80px 20px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(2px);
  font-family: 'Segoe UI', sans-serif;
}
.journey-container { max-width: 1100px; margin: 0 auto; }
.journey-heading {
  text-align: center; font-size: 28px; font-weight: 700; color: #1a1a2e;
  margin-bottom: 36px; opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.journey-heading.is-visible { opacity: 1; transform: none; }
.journey-heading--accent { color: #1d4ed8; }
.journey-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.journey-card {
  border-radius: 20px; padding: 36px 32px;
  position: relative; overflow: hidden;
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.3s ease;
}
.journey-card.is-visible { opacity: 1; transform: none; }
.journey-card--left.is-visible  { transition-delay: 0s; }
.journey-card--right.is-visible { transition-delay: 0.15s; }
.journey-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.1); transform: translateY(-4px) !important; }
.journey-card--left { background: #dbeafe; border: 1.5px solid var(--blue-600); }
.left-blob {
  position: absolute; top: -50px; right: -50px;
  width: 180px; height: 180px; border-radius: 50%;
  background: rgba(29,78,216,0.10); pointer-events: none;
}
.journey-card--right { background: #eff6ff; border: 1.5px solid #93c5fd; }
.journey-card--right::before {
  content: ''; position: absolute; top: -45px; right: -45px;
  width: 170px; height: 170px; border-radius: 50%;
  background: rgba(37,99,235,0.10); pointer-events: none;
}
.journey-card__title { font-size: 22px; font-weight: 700; color: #2352d4; line-height: 1.3; margin-bottom: 16px; position: relative; z-index: 1; }
.journey-card__body  { font-size: 1.2rem; color: #282323; line-height: 1.7; margin-bottom: 12px; position: relative; z-index: 1; }
.journey-stats-row { display: flex; gap: 12px; margin-bottom: 28px; position: relative; z-index: 1; }
.journey-stat-chip {
  flex: 1; background: #ffffff; border-radius: 14px; padding: 14px 10px 12px;
  text-align: center; border: 1.5px solid #93c5fd;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.journey-stat-chip:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(29,78,216,0.15); }
.journey-stat-chip__badge {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: 1px; color: #1d4ed8; background: #bfdbfe;
  border-radius: 6px; padding: 2px 8px; margin-bottom: 6px;
}
.journey-stat-chip__number { font-size: 34px; font-weight: 800; color: #1e3a8a; line-height: 1; display: block; }
.journey-stat-chip__label  { font-size: 11px; color: #2563eb; margin-top: 4px; font-weight: 600; }
.journey-tagline { position: relative; z-index: 1; }
.journey-tagline__title { font-size: 20px; font-weight: 700; color: #2352d4; margin-bottom: 12px; }
.journey-tagline__body  { font-size: 1.2rem; color: #282323; line-height: 1.7; margin-bottom: 10px; }
@media (max-width: 768px) { .journey-cards { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .journey-stats-row { flex-direction: column; } .journey-card { padding: 28px 20px; } }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services {
  position: relative; background: rgba(255,255,255,0.88);
  padding: 80px 0 60px; overflow: hidden;
  font-family: var(--font-body); backdrop-filter: blur(1px);
}
.services__orb { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(80px); opacity: 0.14; }
.services__orb--1 { width: 400px; height: 400px; background: #1d4ed8; top: -100px; left: -100px; }
.services__orb--2 { width: 300px; height: 300px; background: #3b82f6; bottom: -80px; right: 10%; }
.services__orb--3 { width: 250px; height: 250px; background: #0284c7; top: 40%; left: 55%; }
.services__container { max-width: 1180px; 
  margin: 0 auto; 
  padding: 0 84px;
  
 }
.services__header { text-align: center; margin-bottom: 48px; }
.services__label {
  display: inline-block; font-family: var(--font-body);
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: #1d4ed8; background: #dbeafe;
  border: 1px solid #93c5fd; padding: 5px 16px; border-radius: 20px; margin-bottom: 16px;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.services__header.is-visible .services__label { opacity: 1; transform: none; }
.services__title {
  font-family: var(--font-heading); font-size: 32px; font-weight: 800;
  letter-spacing: -0.025em; color: #1e3a8a; margin: 0 0 14px; line-height: 1.1;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}
.services__header.is-visible .services__title { opacity: 1; transform: none; }
.services__desc {
  font-family: var(--font-body); font-size: 1.2rem;
  color: #3b6fa0; max-width: 560px; margin: 0 auto; line-height: 1.8;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}
.services__header.is-visible .services__desc { opacity: 1; transform: none; }

/* ── CHANGED: removed overflow scroll, now a full grid layout ── */
.services__scroll-track {
  overflow: hidden;
  padding-bottom: 12px;
}

.services__scroll-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  padding: 8px 4px 4px;
}

/* ── CHANGED: hide scroll dots since there is no longer a carousel ── */
.services__dots {
  display: none;
}

.service-card {
  width: 100%; flex-shrink: 0; border-radius: 20px;
  padding: 30px 14px 28px; position: relative; overflow: hidden;
  border-width: 1px; border-style: solid;
  opacity: 0; transform: translateY(30px) scale(0.96);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.25s ease;
}
.service-card.is-visible { opacity: 1; transform: none; }
.service-card:nth-child(1) { transition-delay: 0.0s; }
.service-card:nth-child(2) { transition-delay: 0.08s; }
.service-card:nth-child(3) { transition-delay: 0.16s; }
.service-card:nth-child(4) { transition-delay: 0.24s; }
.service-card:nth-child(5) { transition-delay: 0.32s; }
.service-card:nth-child(6) { transition-delay: 0.40s; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px -12px rgba(0,0,0,0.15); }
.service-card::after {
  content: ''; position: absolute; bottom: -22px; right: -22px;
  width: 80px; height: 80px; border-radius: 50%; opacity: 0.18; transition: transform 0.3s ease;
}
.service-card:hover::after { transform: scale(1.3); }
.service-card__icon {
  width: 56px; height: 56px; border-radius: 14px; overflow: hidden;
  margin-bottom: 20px; display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s ease;
}
.service-card__icon img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: inherit; }
.service-card__title { font-family: var(--font-heading); font-size: 14px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.3; margin: 0 0 10px; }
.service-card__desc  { font-family: var(--font-body); font-size: 1.2rem; line-height: 1.7; margin: 0; }
.service-card:nth-child(1) { background: linear-gradient(140deg,#dbeafe,#bfdbfe); border-color: #93c5fd; }
.service-card:nth-child(1)::after { background: #1d4ed8; }
.service-card:nth-child(1) .service-card__icon  { background: #bfdbfe; }
.service-card:nth-child(1) .service-card__title { color: #1e3a8a; }
.service-card:nth-child(1) .service-card__desc  { color: #1d4ed8; }
.service-card:nth-child(2) { background: linear-gradient(140deg,#eff6ff,#dbeafe); border-color: #bfdbfe; }
.service-card:nth-child(2)::after { background: #2563eb; }
.service-card:nth-child(2) .service-card__icon  { background: #dbeafe; }
.service-card:nth-child(2) .service-card__title { color: #1e3a8a; }
.service-card:nth-child(2) .service-card__desc  { color: #2563eb; }
.service-card:nth-child(3) { background: linear-gradient(140deg,#e0f2fe,#bae6fd); border-color: #7dd3fc; }
.service-card:nth-child(3)::after { background: #0284c7; }
.service-card:nth-child(3) .service-card__icon  { background: #bae6fd; }
.service-card:nth-child(3) .service-card__title { color: #0c4a6e; }
.service-card:nth-child(3) .service-card__desc  { color: #0284c7; }
.service-card:nth-child(4) { background: linear-gradient(140deg,#dbeafe,#93c5fd); border-color: #60a5fa; }
.service-card:nth-child(4)::after { background: #3b82f6; }
.service-card:nth-child(4) .service-card__icon  { background: #93c5fd; }
.service-card:nth-child(4) .service-card__title { color: #1e3a8a; }
.service-card:nth-child(4) .service-card__desc  { color: #3b82f6; }
.service-card:nth-child(5) { background: linear-gradient(140deg,#E6F1FB,#b5d6f7); border-color: #85B7EB; }
.service-card:nth-child(5)::after { background: #378ADD; }
.service-card:nth-child(5) .service-card__icon  { background: #B5D4F4; }
.service-card:nth-child(5) .service-card__title { color: #0C447C; }
.service-card:nth-child(5) .service-card__desc  { color: #185FA5; }
.service-card:nth-child(6) { background: linear-gradient(140deg,#e0f2fe,#7dd3fc); border-color: #38bdf8; }
.service-card:nth-child(6)::after { background: #0284c7; }
.service-card:nth-child(6) .service-card__icon  { background: #7dd3fc; }
.service-card:nth-child(6) .service-card__title { color: #0c4a6e; }
.service-card:nth-child(6) .service-card__desc  { color: #0284c7; }

@media (max-width: 900px) {
  .services__scroll-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .services__scroll-inner {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   STANDOUT SECTION
   ============================================================ */
.standout {
  padding: 100px 0; position: relative; overflow: hidden;
  background: rgba(239,246,255,0.92); backdrop-filter: blur(1px);
  font-family: var(--font-body);
}
.standout-blob { position: absolute; border-radius: 50%; pointer-events: none; }
.standout-blob--1 { width: 380px; height: 380px; background: radial-gradient(circle,#1d4ed8,transparent 70%); opacity: 0.07; top: -100px; left: -100px; }
.standout-blob--2 { width: 300px; height: 300px; background: radial-gradient(circle,#2563eb,transparent 70%); opacity: 0.07; bottom: -80px; right: 8%; }
.standout-blob--3 { width: 220px; height: 220px; background: radial-gradient(circle,#0284c7,transparent 70%); opacity: 0.07; top: 38%; right: -60px; }
.standout-header { text-align: center; margin-bottom: 56px; }
.standout-header .section-label {
  font-family: var(--font-body); background: #dbeafe; color: #1d4ed8;
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em;
  padding: 6px 18px; border-radius: 20px; border: 1.5px solid #93c5fd;
  margin-bottom: 14px; text-transform: uppercase;
}
.standout-header .section-title { font-family: var(--font-heading); font-size: clamp(1.8rem,3.5vw,2.6rem); font-weight: 800; letter-spacing: -0.025em; color: #1e3a8a; line-height: 1.15; }
.standout-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.standout-item {
  border-radius: 18px; padding: 20px 36px; position: relative; overflow: hidden;
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}
.standout-item.visible { opacity: 1; transform: translateY(0); }
.standout-item:hover { transform: translateY(-5px) !important; box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.standout-item::before { content: ''; position: absolute; bottom: -35px; right: -35px; width: 110px; height: 110px; border-radius: 50%; opacity: 0.12; }
.standout-item::after  { content: ''; position: absolute; top: -20px; left: -20px; width: 60px; height: 60px; border-radius: 50%; opacity: 0.07; }
.standout-item--light:nth-child(1)  { background: #EAF3FF; border: 1.5px solid #85B7EB; transition-delay: 0s; }
.standout-item--light:nth-child(1)::before { background: #378ADD; } .standout-item--light:nth-child(1)::after { background: #185FA5; }
.standout-item--light:nth-child(1) .standout-number { color: #B5D4F4; } .standout-item--light:nth-child(1) .standout-title { color: #0C447C; } .standout-item--light:nth-child(1) .standout-text { color: #282323; }
.standout-item--purple:nth-child(2) { background: #dbeafe; border: 1.5px solid #93c5fd; transition-delay: 0.1s; }
.standout-item--purple:nth-child(2)::before { background: #2563eb; } .standout-item--purple:nth-child(2)::after { background: #1d4ed8; }
.standout-item--purple:nth-child(2) .standout-number { color: #bfdbfe; } .standout-item--purple:nth-child(2) .standout-title { color: #1e3a8a; } .standout-item--purple:nth-child(2) .standout-text { color: #282323; }
.standout-item--purple:nth-child(3) { background: #eff6ff; border: 1.5px solid #bfdbfe; transition-delay: 0.2s; }
.standout-item--purple:nth-child(3)::before { background: #2563eb; } .standout-item--purple:nth-child(3)::after { background: #1d4ed8; }
.standout-item--purple:nth-child(3) .standout-number { color: #93c5fd; } .standout-item--purple:nth-child(3) .standout-title { color: #1e3a8a; } .standout-item--purple:nth-child(3) .standout-text { color: #282323; }
.standout-item--light:nth-child(4)  { background: #e0f2fe; border: 1.5px solid #7dd3fc; transition-delay: 0.3s; }
.standout-item--light:nth-child(4)::before { background: #0284c7; } .standout-item--light:nth-child(4)::after { background: #0369a1; }
.standout-item--light:nth-child(4) .standout-number { color: #7dd3fc; } .standout-item--light:nth-child(4) .standout-title { color: #0c4a6e; } .standout-item--light:nth-child(4) .standout-text { color: #282323; }
.standout-number { font-family: var(--font-heading); font-size: 3.8rem; font-weight: 800; line-height: 1; margin-bottom: 18px; display: block; letter-spacing: -0.04em; }
.standout-title  { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 12px; line-height: 1.25; }
.standout-text   { font-family: var(--font-body); font-size: 1.2rem; line-height: 1.8; }
@media (max-width: 768px) { .standout-grid { grid-template-columns: 1fr; } .standout-item { padding: 32px 24px; } .standout-number { font-size: 2.8rem; } }

/* ============================================================
   BENEFITS SECTION
   ============================================================ */
.benefits {
  background: rgba(255,255,255,0.9); padding: 100px 0;
  position: relative; overflow: hidden;
  font-family: var(--font-body); backdrop-filter: blur(1px);
}
.benefits__blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.15; pointer-events: none; }
.benefits__blob--1 { width: 500px; height: 500px; background: var(--blue-100); top: -100px; left: -100px; animation: blobDrift 10s ease-in-out infinite; }
.benefits__blob--2 { width: 350px; height: 350px; background: var(--blue-200); bottom: -60px; right: -60px; animation: blobDrift 12s ease-in-out infinite reverse; }
.benefits__blob--3 { width: 250px; height: 250px; background: var(--blue-100); top: 40%; left: 55%; animation: blobDrift 9s ease-in-out infinite 3s; }
@keyframes blobDrift { 0%,100%{transform:translate(0,0) scale(1);} 33%{transform:translate(20px,-20px) scale(1.06);} 66%{transform:translate(-15px,15px) scale(0.96);} }
.benefits__noise { display: none; }
.benefits__container { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.benefits__header { text-align: center; margin-bottom: 60px; opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.benefits__header--visible { opacity: 1; transform: translateY(0); }
.benefits__tag { display: inline-flex; align-items: center; gap: 8px; background: var(--blue-50); border: 1px solid var(--blue-200); color: var(--blue-800); font-family: var(--font-body); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 16px; border-radius: 100px; margin-bottom: 20px; }
.benefits__tag-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue-600); animation: pulse 2s ease-in-out infinite; }
.benefits__title { font-family: var(--font-heading); font-size: clamp(1.7rem,3vw,2.6rem); font-weight: 800; letter-spacing: -0.025em; color: var(--text-dark); margin-bottom: 14px; line-height: 1.15; }
.benefits__title-highlight { color: var(--blue-600); }
.benefits__subtitle { font-family: var(--font-body); font-size: 1.2rem; color: var(--text-mid); }
.benefits__grid { display: grid; grid-template-columns: repeat(4,1fr); grid-template-rows: auto auto; gap: 20px; margin-bottom: 60px; }
.benefits__card { border-radius: var(--radius-lg); padding: 32px 28px; position: relative; overflow: hidden; opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s, border-color 0.3s; font-family: var(--font-body); border: 1.5px solid transparent; }
.benefits__card[data-index="0"] { transition-delay: 0.0s; }
.benefits__card[data-index="1"] { transition-delay: 0.1s; }
.benefits__card[data-index="2"] { transition-delay: 0.2s; }
.benefits__card[data-index="3"] { transition-delay: 0.3s; }
.benefits__card[data-index="4"] { transition-delay: 0.4s; }
.benefits__card--visible { opacity: 1; transform: translateY(0); }
.benefits__card--wide { grid-column: span 2; }
.benefits__card:hover { box-shadow: 0 12px 40px rgba(15,23,42,0.12); transform: translateY(-3px) !important; }
.benefits__card::after { content: ''; position: absolute; top: -30px; right: -30px; width: 100px; height: 100px; border-radius: 50%; opacity: 0.15; pointer-events: none; transition: opacity 0.4s; }
.benefits__card:hover::after { opacity: 0.28; }
.benefits__card-glow { position: absolute; inset: 0; border-radius: inherit; opacity: 0; transition: opacity 0.4s ease; }
.benefits__card:hover .benefits__card-glow { opacity: 1; }
.benefits__card-number { font-family: var(--font-body); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; margin-bottom: 16px; }
.benefits__card-icon   { width: 52px; height: 52px; margin-bottom: 18px; }
.benefits__card-icon svg { width: 100%; height: 100%; }
.benefits__card-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 10px; line-height: 1.25; }
.benefits__card-desc  { font-family: var(--font-body); font-size: 1.2rem; line-height: 1.8; margin-bottom: 20px; }
.benefits__card-bar   { height: 3px; background: rgba(0,0,0,0.08); border-radius: 2px; overflow: hidden; }
.benefits__card-bar span { display: block; height: 100%; border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform 0.9s ease 0.6s; }
.benefits__card--visible .benefits__card-bar span { transform: scaleX(1); }
.benefits__card[data-index="0"] { background: var(--c0-bg); border-color: var(--c0-border); }
.benefits__card[data-index="0"] .benefits__card-title { color: var(--c0-title); } .benefits__card[data-index="0"] .benefits__card-desc { color: var(--c0-desc); } .benefits__card[data-index="0"] .benefits__card-number { color: var(--c0-num); } .benefits__card[data-index="0"] .benefits__card-bar span { background: linear-gradient(to right,var(--c0-bar1),var(--c0-bar2)); } .benefits__card[data-index="0"] .benefits__card-glow { background: radial-gradient(circle at top left,rgba(29,78,216,0.12),transparent 65%); } .benefits__card[data-index="0"]::after { background: #1d4ed8; } .benefits__card[data-index="0"]:hover { border-color: #93c5fd; }
.benefits__card[data-index="1"] { background: var(--c1-bg); border-color: var(--c1-border); }
.benefits__card[data-index="1"] .benefits__card-title { color: var(--c1-title); } .benefits__card[data-index="1"] .benefits__card-desc { color: var(--c1-desc); } .benefits__card[data-index="1"] .benefits__card-number { color: var(--c1-num); } .benefits__card[data-index="1"] .benefits__card-bar span { background: linear-gradient(to right,var(--c1-bar1),var(--c1-bar2)); } .benefits__card[data-index="1"] .benefits__card-glow { background: radial-gradient(circle at top left,rgba(37,99,235,0.12),transparent 65%); } .benefits__card[data-index="1"]::after { background: #2563eb; } .benefits__card[data-index="1"]:hover { border-color: #bfdbfe; }
.benefits__card[data-index="2"] { background: var(--c2-bg); border-color: var(--c2-border); }
.benefits__card[data-index="2"] .benefits__card-title { color: var(--c2-title); } .benefits__card[data-index="2"] .benefits__card-desc { color: var(--c2-desc); } .benefits__card[data-index="2"] .benefits__card-number { color: var(--c2-num); } .benefits__card[data-index="2"] .benefits__card-bar span { background: linear-gradient(to right,var(--c2-bar1),var(--c2-bar2)); } .benefits__card[data-index="2"] .benefits__card-glow { background: radial-gradient(circle at top left,rgba(2,132,199,0.10),transparent 65%); } .benefits__card[data-index="2"]::after { background: #0284c7; } .benefits__card[data-index="2"]:hover { border-color: #7dd3fc; }
.benefits__card[data-index="3"] { background: var(--c3-bg); border-color: var(--c3-border); }
.benefits__card[data-index="3"] .benefits__card-title { color: var(--c3-title); } .benefits__card[data-index="3"] .benefits__card-desc { color: var(--c3-desc); } .benefits__card[data-index="3"] .benefits__card-number { color: var(--c3-num); } .benefits__card[data-index="3"] .benefits__card-bar span { background: linear-gradient(to right,var(--c3-bar1),var(--c3-bar2)); } .benefits__card[data-index="3"] .benefits__card-glow { background: radial-gradient(circle at top left,rgba(59,130,246,0.10),transparent 65%); } .benefits__card[data-index="3"]::after { background: #3b82f6; } .benefits__card[data-index="3"]:hover { border-color: #93c5fd; }
.benefits__card[data-index="4"] { background: var(--c4-bg); border-color: var(--c4-border); }
.benefits__card[data-index="4"] .benefits__card-title { color: var(--c4-title); } .benefits__card[data-index="4"] .benefits__card-desc { color: var(--c4-desc); } .benefits__card[data-index="4"] .benefits__card-number { color: var(--c4-num); } .benefits__card[data-index="4"] .benefits__card-bar span { background: linear-gradient(to right,var(--c4-bar1),var(--c4-bar2)); } .benefits__card[data-index="4"] .benefits__card-glow { background: radial-gradient(circle at top left,rgba(2,132,199,0.10),transparent 65%); } .benefits__card[data-index="4"]::after { background: #0284c7; } .benefits__card[data-index="4"]:hover { border-color: #7dd3fc; }
.benefits__cta { background: linear-gradient(135deg,var(--blue-600),var(--blue-800)); border-radius: var(--radius-lg); padding: 48px 56px; display: flex; align-items: center; justify-content: space-between; gap: 32px; position: relative; overflow: hidden; opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.benefits__cta--visible { opacity: 1; transform: translateY(0); }
.benefits__cta-glow { position: absolute; top: -50px; right: -50px; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,0.08); pointer-events: none; }
.benefits__cta-text { font-family: var(--font-body); font-size: 1.2rem; color: rgba(255,255,255,0.9); max-width: 560px; line-height: 1.8; }
.benefits__cta-brand { color: var(--white); font-weight: 700; }
.benefits__cta-btn { display: inline-flex; align-items: center; gap: 10px; background: var(--white); color: var(--blue-800); font-family: var(--font-body); font-weight: 700; font-size: 1.2rem; padding: 14px 28px; border-radius: 100px; text-decoration: none; white-space: nowrap; transition: var(--transition); flex-shrink: 0; }
.benefits__cta-btn:hover { background: var(--blue-50); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.benefits__cta-btn-arrow { transition: transform 0.3s ease; }
.benefits__cta-btn:hover .benefits__cta-btn-arrow { transform: translateX(4px); }

/* ============================================================
   TRUST SECTION
   ============================================================ */
.trust { padding: 100px 0; font-family: var(--font-body); background: rgba(255,255,255,0.88); backdrop-filter: blur(1px); }
.trust .section-header .section-title { font-family: var(--font-heading); font-weight: 800; letter-spacing: -0.025em; font-size: clamp(1.5rem,2.8vw,2.2rem); line-height: 1.2; }
.trust .section-description { font-family: var(--font-body); font-size: 1.2rem; line-height: 1.85; }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.trust-card { border-radius: var(--radius-lg); padding: 36px 28px; text-align: center; position: relative; overflow: hidden; font-family: var(--font-body); border: 1.5px solid transparent; opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.35s cubic-bezier(0.4,0,0.2,1), border-color 0.3s ease; }
.trust-card.is-visible { opacity: 1; transform: none; }
.trust-card:nth-child(1) { transition-delay: 0.0s; } .trust-card:nth-child(2) { transition-delay: 0.1s; } .trust-card:nth-child(3) { transition-delay: 0.2s; } .trust-card:nth-child(4) { transition-delay: 0.3s; }
.trust-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; transform: scaleX(0); transition: transform 0.4s ease; border-radius: 0 0 2px 2px; }
.trust-card::before { content: ''; position: absolute; top: -28px; right: -28px; width: 90px; height: 90px; border-radius: 50%; opacity: 0.12; pointer-events: none; transition: opacity 0.4s; }
.trust-card:hover { transform: translateY(-6px) !important; box-shadow: 0 14px 40px rgba(15,23,42,0.12); }
.trust-card:hover::after { transform: scaleX(1); }
.trust-card:hover::before { opacity: 0.22; }
.trust-icon { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s; border: 1.5px solid transparent; }
.trust-card:hover .trust-icon { transform: scale(1.1); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.trust-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 10px; }
.trust-description { font-family: var(--font-body); font-size: 1.2rem; line-height: 1.8; }
.trust-card:nth-child(1) { background: var(--t1-bg); border-color: var(--t1-border); }
.trust-card:nth-child(1) .trust-icon { background: var(--t1-icon-bg); border-color: var(--t1-icon-border); color: var(--t1-icon-color); }
.trust-card:nth-child(1):hover .trust-icon { background: var(--t1-icon-hover-bg); border-color: var(--t1-icon-hover-border); color: #fff; }
.trust-card:nth-child(1) .trust-title { color: var(--t1-title); } .trust-card:nth-child(1) .trust-description { color: var(--t1-desc); }
.trust-card:nth-child(1)::after { background: linear-gradient(to right,var(--t1-bar1),var(--t1-bar2)); } .trust-card:nth-child(1)::before { background: #1d4ed8; } .trust-card:nth-child(1):hover { border-color: #93c5fd; }
.trust-card:nth-child(2) { background: var(--t2-bg); border-color: var(--t2-border); }
.trust-card:nth-child(2) .trust-icon { background: var(--t2-icon-bg); border-color: var(--t2-icon-border); color: var(--t2-icon-color); }
.trust-card:nth-child(2):hover .trust-icon { background: var(--t2-icon-hover-bg); border-color: var(--t2-icon-hover-border); color: #fff; }
.trust-card:nth-child(2) .trust-title { color: var(--t2-title); } .trust-card:nth-child(2) .trust-description { color: var(--t2-desc); }
.trust-card:nth-child(2)::after { background: linear-gradient(to right,var(--t2-bar1),var(--t2-bar2)); } .trust-card:nth-child(2)::before { background: #2563eb; } .trust-card:nth-child(2):hover { border-color: #bfdbfe; }
.trust-card:nth-child(3) { background: var(--t3-bg); border-color: var(--t3-border); }
.trust-card:nth-child(3) .trust-icon { background: var(--t3-icon-bg); border-color: var(--t3-icon-border); color: var(--t3-icon-color); }
.trust-card:nth-child(3):hover .trust-icon { background: var(--t3-icon-hover-bg); border-color: var(--t3-icon-hover-border); color: #fff; }
.trust-card:nth-child(3) .trust-title { color: var(--t3-title); } .trust-card:nth-child(3) .trust-description { color: var(--t3-desc); }
.trust-card:nth-child(3)::after { background: linear-gradient(to right,var(--t3-bar1),var(--t3-bar2)); } .trust-card:nth-child(3)::before { background: #0284c7; } .trust-card:nth-child(3):hover { border-color: #7dd3fc; }
.trust-card:nth-child(4) { background: var(--t4-bg); border-color: var(--t4-border); }
.trust-card:nth-child(4) .trust-icon { background: var(--t4-icon-bg); border-color: var(--t4-icon-border); color: var(--t4-icon-color); }
.trust-card:nth-child(4):hover .trust-icon { background: var(--t4-icon-hover-bg); border-color: var(--t4-icon-hover-border); color: #fff; }
.trust-card:nth-child(4) .trust-title { color: var(--t4-title); } .trust-card:nth-child(4) .trust-description { color: var(--t4-desc); }
.trust-card:nth-child(4)::after { background: linear-gradient(to right,var(--t4-bar1),var(--t4-bar2)); } .trust-card:nth-child(4)::before { background: #3b82f6; } .trust-card:nth-child(4):hover { border-color: #bfdbfe; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta { background: linear-gradient(135deg,var(--blue-800),var(--blue-900)); padding: 100px 0; position: relative; overflow: hidden; font-family: var(--font-body); }
.cta::before { content: ''; position: absolute; top: -200px; left: -200px; width: 600px; height: 600px; border-radius: 50%; background: rgba(255,255,255,0.04); }
.cta::after  { content: ''; position: absolute; bottom: -150px; right: -150px; width: 500px; height: 500px; border-radius: 50%; background: rgba(255,255,255,0.04); }
.cta-content { text-align: center; position: relative; z-index: 1; }
.cta-title { font-family: var(--font-heading); font-size: clamp(1.8rem,3.5vw,3rem); font-weight: 900; letter-spacing: -0.025em; color: #021832; margin-bottom: 16px; line-height: 1.1; }
.cta-description { font-family: var(--font-body); font-size: 20px; color: #19559e; margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.8; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta .btn-primary  { background: var(--white); color: var(--blue-800); border-color: var(--white); }
.cta .btn-primary:hover  { background: var(--blue-50); color: var(--blue-900); border-color: var(--blue-50); }
.cta .btn-secondary { background: var(--white); color: var(--blue-800); border-color: var(--white); }
.cta .btn-secondary:hover { background: var(--blue-50); color: var(--blue-900); border-color: var(--blue-50); }
.cta .cta-content { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.cta .cta-content.is-visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* @media (max-width: 1024px) {
  .benefits__grid { grid-template-columns: 1fr 1fr; }
  .benefits__card--wide { grid-column: span 2; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .journey-cards { grid-template-columns: 1fr; }
  .standout-grid { grid-template-columns: 1fr; }
  .benefits__grid { grid-template-columns: 1fr; }
  .benefits__card--wide { grid-column: span 1; }
  .benefits__cta { flex-direction: column; text-align: center; padding: 36px 28px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 140px 24px 80px; }
}
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .trust-grid { grid-template-columns: 1fr; }
} */
 /* ============================================================
   MOBILE RESPONSIVE FIX — home.css ADDON
   Paste this at the BOTTOM of your home.css
   All rules are scoped to ≤ 1024px / 768px / 480px
   ============================================================ */

/* ── Shared utility ── */
@media (max-width: 768px) {
  .container { padding: 0 16px; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
@media (max-width: 768px) {
  .hero {
    padding-top: 100px;
    padding-bottom: 40px;
    min-height: 100svh;
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero .container { padding: 0 16px; }
  .title-line {
    font-size: clamp(22px, 7vw, 36px) !important;
    letter-spacing: -0.02em;
  }
  .hero-description {
    font-size: 1rem !important;
    line-height: 1.75;
    padding: 0 4px;
  }
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero .btn {
    justify-content: center;
    padding: 14px 20px;
    font-size: 14px;
  }
  .scroll-indicator { display: none; }
  /* orbs – tone down on mobile */
  .orb-1 { width: 260px; height: 260px; }
  .orb-2 { width: 200px; height: 200px; }
  .orb-3 { width: 160px; height: 160px; }
}

/* ============================================================
   CLIENTS / MARQUEE
   ============================================================ */
@media (max-width: 768px) {
  .clients { padding: 36px 0; }
  .clients .section-title { font-size: 20px !important; margin-bottom: 1.2rem; }
  .client-logo { width: 130px; height: 70px; padding: 10px 14px; margin: 0 6px; }
  .client-logo img { height: 70px; }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
@media (max-width: 768px) {
  .container-fluid.py-5.m-0 {
    padding: 32px 0 !important;
  }
  .container-fluid.py-5.m-0 .row {
    flex-direction: column;
    gap: 0 !important;
  }
  /* hide the stacked image layout on mobile — too messy */
  .container-fluid.py-5.m-0 .col-lg-5 {
    display: none;
  }
  .container-fluid.py-5.m-0 .col-lg-7 {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 16px;
  }
  .container-fluid.py-5.m-0 h5 { font-size: 0.85rem; }
  .container-fluid.py-5.m-0 h1 { font-size: clamp(1.3rem, 5.5vw, 1.8rem); }
  .container-fluid.py-5.m-0 p  { font-size: 0.95rem; line-height: 1.75; }
  .container-fluid.py-5.m-0 .btn-secondary {
    display: block;
    text-align: center;
    padding: 12px 24px !important;
  }
}

/* ============================================================
   JOURNEY SECTION
   ============================================================ */
@media (max-width: 768px) {
  .journey { padding: 48px 16px; }
  .journey-heading { font-size: 22px; margin-bottom: 24px; }
  .journey-cards { grid-template-columns: 1fr; gap: 16px; }
  .journey-card { padding: 24px 18px; border-radius: 16px; }
  .journey-card__title { font-size: 18px; }
  .journey-card__body  { font-size: 0.92rem; }
  .journey-stats-row { gap: 8px; }
  .journey-stat-chip { padding: 10px 6px 10px; }
  .journey-stat-chip__number { font-size: 26px; }
  .journey-stat-chip__badge  { font-size: 9px; padding: 2px 6px; }
  .journey-tagline__title { font-size: 17px; }
  .journey-tagline__body  { font-size: 0.9rem; }
}
@media (max-width: 380px) {
  .journey-stats-row { flex-direction: column; }
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
@media (max-width: 1024px) {
  .services__container { padding: 0 24px; }
  .services__scroll-inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 768px) {
  .services { padding: 48px 0 40px; }
  .services__container { padding: 0 16px; }
  .services__header { margin-bottom: 28px; }
  .services__title { font-size: 22px; }
  .services__desc  { font-size: 0.92rem; }
  .services__scroll-inner { grid-template-columns: 1fr; gap: 14px; }
  .service-card { padding: 22px 18px; border-radius: 16px; }
  .service-card__icon  { width: 48px; height: 48px; margin-bottom: 14px; }
  .service-card__title { font-size: 15px; }
  .service-card__desc  { font-size: 0.9rem; }
}

/* ============================================================
   STANDOUT SECTION
   ============================================================ */
@media (max-width: 768px) {
  .standout { padding: 48px 0; }
  .standout-header { margin-bottom: 28px; }
  .standout-header .section-title { font-size: 22px; }
  .standout-grid { grid-template-columns: 1fr; gap: 14px; }
  .standout-item { padding: 24px 20px; border-radius: 14px; }
  .standout-number { font-size: 2.8rem; margin-bottom: 10px; }
  .standout-title  { font-size: 1.1rem; margin-bottom: 8px; }
  .standout-text   { font-size: 0.9rem; }
}

/* ============================================================
   BENEFITS SECTION
   ============================================================ */
@media (max-width: 1024px) {
  .benefits__grid { grid-template-columns: 1fr 1fr; }
  .benefits__card--wide { grid-column: span 2; }
}
@media (max-width: 768px) {
  .benefits { padding: 48px 0; }
  .benefits__container { padding: 0 16px; }
  .benefits__header { margin-bottom: 32px; }
  .benefits__title { font-size: clamp(1.4rem, 5.5vw, 1.9rem); }
  .benefits__subtitle { font-size: 0.92rem; }
  .benefits__grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 32px;
  }
  .benefits__card--wide { grid-column: span 1; }
  .benefits__card { padding: 24px 20px; border-radius: 16px; }
  .benefits__card-title { font-size: 1rem; }
  .benefits__card-desc  { font-size: 0.9rem; }
  .benefits__card-icon  { width: 44px; height: 44px; margin-bottom: 14px; }
  /* CTA bar */
  .benefits__cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 28px 20px;
    gap: 20px;
    border-radius: 16px;
  }
  .benefits__cta-text { font-size: 0.95rem; }
  .benefits__cta-btn {
    justify-content: center;
    font-size: 0.95rem;
    padding: 13px 22px;
  }
}

/* ============================================================
   TRUST SECTION
   ============================================================ */
@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 768px) {
  .trust { padding: 48px 0; }
  .trust .section-title       { font-size: clamp(1.3rem, 5.5vw, 1.9rem); }
  .trust .section-description { font-size: 0.92rem; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .trust-card { padding: 24px 16px; border-radius: 14px; }
  .trust-icon { width: 50px; height: 50px; margin-bottom: 14px; }
  .trust-icon svg { width: 28px; height: 28px; }
  .trust-title       { font-size: 0.9rem; margin-bottom: 8px; }
  .trust-description { font-size: 0.85rem; line-height: 1.65; }
}
@media (max-width: 420px) {
  .trust-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CTA SECTION
   ============================================================ */
@media (max-width: 768px) {
  .cta { padding: 56px 0; }
  .cta-title       { font-size: clamp(1.5rem, 6vw, 2rem); margin-bottom: 12px; }
  .cta-description { font-size: 0.95rem; margin-bottom: 28px; }
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    max-width: 300px;
    margin: 0 auto;
  }
  .cta .btn { justify-content: center; padding: 13px 20px; font-size: 14px; }
}

/* ============================================================
   SECTION LABELS — uniform small size on mobile
   ============================================================ */
@media (max-width: 768px) {
  .section-label {
    font-size: 10px;
    padding: 4px 12px;
  }
  .section-title {
    font-size: clamp(1.3rem, 5.5vw, 1.9rem) !important;
  }
  .section-description {
    font-size: 0.92rem;
    margin-bottom: 24px;
  }
}