:root {
  --primary-navy: #0B1F3A;
  --brand-blue: #2563EB;
  --accent-indigo: #4F46E5;
  --light-background: #EEF2FF;
  --text-dark: #0F172A;
}


* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

/* Default icon sizing — SVGs inherit from parent <i> element */
i[data-icon] {
  display: inline-flex;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  line-height: 1;
}
.icon-circle i[data-icon] { width: 40px; height: 40px; }
.icon-box i[data-icon] { width: 40px; height: 40px; }
.icon-wrap i[data-icon] { width: 40px; height: 40px; }

.cap-card .elementor-icon svg{ width: 40px; height: 40px; color: #fff}


body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--bg);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; line-height: 1.1; color: var(--navy); }
h1 { font-size: clamp(2.5rem, 5.5vw, 4rem); }
h2 {
    font-size: clamp(2rem, 4vw, 2.3rem);
    line-height: 1.2;
    text-transform: capitalize;
}
h3 { font-size: 1.25rem; font-weight: 700; }
.eyebrow {
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
    background: linear-gradient(var(--brand-blue), var(--accent-indigo));
    padding: 4px 15px;
    display: inline-block;
    border-radius: 60px;
        letter-spacing: 1px;
}
.section-head h2 {
    margin-bottom: 15px;
}
.serif { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; }

/* ============ LAYOUT ============ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
section { padding: 6rem 0; position: relative; }
section.alt { background: var(--bg-soft); }

.section-head {
    max-width: 850px;
    margin-bottom: 2rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.section-head p {
  font-size: 1.125rem;
  color: var(--gray);
  margin-top: 0.75rem;
  font-weight: 600;
    font-style: italic;
} 

/* ============ HEADER ============ */
header {
  position: relative;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.3s, background 0.3s;
}
header.scrolled {
    position: fixed;
    top: 0;
    width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo .product-mark {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.logo .product-mark .glyph {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--primary-navy) 50%, var(--accent-indigo) 100%);
  position: relative;
  flex-shrink: 0;
}
.logo .product-mark .glyph::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 2px solid white;
  border-radius: 3px;
  border-right-color: transparent;
  border-bottom-color: transparent;
}
.logo .product-mark .glyph::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  bottom: 5px;
  right: 5px;
}
.logo .product-mark .accel { color: var(--accent-indigo); }
.logo .by-line {
  font-family: 'JetBrains Mono', monospace;
  color: var(--gray);
  font-size: 0.65rem;
  margin-top: 4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-left: 38px;
}
nav ul {
  display: flex;
  list-style: none;
  gap: 10px;
  align-items: center;
}
nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: color 0.2s;
  padding: 0.55rem 0.8rem;
  font-size: 0.85rem;
}
nav a:hover { color: var(--brand-blue); }
header nav li a:hover {
    background: linear-gradient(#2563eb52, #4f46e540);
    color: var(--primary-navy);
    border-radius: 8px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 6px;
  transition: all 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(var(--brand-blue), var(--accent-indigo));
  color: white;
  box-shadow: 0 4px 12px -2px rgba(42, 127, 186, 0.35);
}
.btn-primary:hover { color: #fff; background: var(--primary-navy); transform: translateY(-1px); box-shadow: 0 6px 16px -2px rgba(42, 127, 186, 0.45); }
.btn-orange {
  background: var(--accent-indigo);
  color: white;
  box-shadow: 0 4px 12px -2px rgba(243, 156, 18, 0.35);
}
.btn-orange:hover { background: #e08e0c; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--accent-indigo);
  border: 1.5px solid var(--accent-indigo);
}
.btn-outline:hover { border-color: var(--brand-blue); color: var(--brand-blue); }
.btn-outline-white {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.05); }

.menu-toggle { display: none; }
@media (max-width: 900px) {
  nav ul { display: none; }
  .menu-toggle {
    display: flex;
    width: 40px; height: 40px;
    align-items: center; justify-content: center;
    border: 1px solid var(--border);
    border-radius: 6px;
  }
  nav.open ul {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: white;
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border);
    gap: 1rem;
  }
}

/* ============ HERO ============ */
.hero {
  padding-top: 5rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
      background: #e8eeff;
}
.hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -10%;
  width: 60%; height: 120%;
  background: radial-gradient(circle at center, rgba(42, 127, 186, 0.08), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(42, 127, 186, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 127, 186, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at top right, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at top right, black 30%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
  .hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; }
    .hero .lead { font-size: 20px; max-width: 710px; margin: 24px 0 34px; color: #52606D; }
    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
    .trust-line { display: flex; align-items: center; gap: 10px; color: #52606D; font-size: 14px; font-weight: 600; }
    .trust-line strong { color: var(--navy); }
 
    .panel-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
    .status-pill { background: #EAF7F0; color: var(--green); font-size: 12px; font-weight: 800; padding: 7px 10px; border-radius: 999px; }
    .code-card { background: #0B2238; color: #CFE5F7; border-radius: 16px; padding: 20px; font-family: 'JetBrains Mono', monospace; font-size: 13px; line-height: 1.8; overflow: hidden; }
    .code-card .k { color: #8BD0FF; } .code-card .v { color: #FFD18B; } .code-card .g { color: #7EE2A8; }
    .pipeline-flow { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-top: 18px; }
    .flow-step { border: 1px solid var(--border); border-radius: 14px; padding: 14px 10px; text-align: center; font-size: 12px; font-weight: 800; color: var(--navy); background: #FAFCFE; }
    .flow-step span { display: block; color: var(--muted); font-size: 11px; font-weight: 700; margin-top: 3px; }
.hero .container { position: relative; z-index: 1; }
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem;
    background: #0648ca;
    border: 1px solid rgba(243, 156, 18, 0.3);
    border-radius: 100px;
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 600;
}
.hero-tag::before {
  content: '';
  width: 10px; height: 10px;
  background: var(--accent-indigo);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero h1 {
    margin-bottom: 1.5rem;
    text-transform: capitalize;
}
.hero h1 .accent {
    background: linear-gradient(90deg, #2563EB 0%, #4F46E5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero h1 .serif-em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--brand-blue);
  letter-spacing: -0.01em;
}
.hero p.lead {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.55;
    font-weight: 600;
}
.platform_logo img {
    max-width: 200px !important;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}
.platform-strip {
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding-bottom: 1.5rem;
    justify-content: center;
}
.platform_wrap {
    background: linear-gradient(#113086, #0548ca);
}
.platform-strip .label {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    background: #0000004a;
    padding: 5px 10px;
}
.platform-strip .platforms {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
      justify-content: center;
}
.platform-strip .platform {
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.2s;
    border-right: 2px solid #ffffff;
    padding-right: 30px;
}
.platform-strip .platform:hover { opacity: 1; }
.platform-strip .platform:last-child {
    border-right: 0;
}
.platform-strip .platform .dot {
  width: 8px; height: 8px;
  border-radius: 2px;
  display: inline-block;
}
.platform-strip .platform .brand-mark {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.platform-strip .platform .brand-mark svg {
  width: 100%;
  height: 100%;
}
 .slider-wrapper{
      margin:auto;
      position:relative;
          padding-bottom: 50px; 
    }

    .swiper{
      overflow:visible;
      padding: 0 0 30px 0 !important;
    }

    .swiper-slide{
      border-radius:18px;
      overflow:hidden;
      transition:0.3s ease;
    }

    .swiper-slide img{
      width:100%;
      display:block;
      object-fit:cover;
    }

    /* Pagination */
    .swiper-pagination {
    position: relative;
    /* margin-top: 80px; */
    bottom: 5px ! IMPORTANT;
}

  .swiper-pagination-bullet {
    width: 45px !important;
    height: 6px !important;
    border-radius: 30px !important;
    opacity: 1 !important;
}

    .swiper-pagination-bullet-active{
      background:#3b6df6;
    }

/* ============ PROBLEM SECTION ============ */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.problem-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
      height: 100%;
}
.problem-card:hover {
  transform: translateY(-10px) !IMPORTANT;
  border-color: var(--brand-blue);
  box-shadow: 0 12px 28px -10px rgba(42, 127, 186, 0.18);
}
.problem-card .icon-circle {
    width: 65px;
    height: 65px;
    background: linear-gradient(#113086, #0548ca);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 1rem;
}
.problem-card h3 { margin-bottom: 0.5rem; }
.problem-card p { color: var(--gray); font-size: 0.95rem; }
.why_un_box .elementor-widget-icon-box {
    min-height: 230px;
}
/* ============ SOLUTION ============ */
.solution-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 900px) { .solution-wrap { grid-template-columns: 1fr; gap: 3rem; } }

.solution-visual {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  box-shadow: 0 20px 50px -20px rgba(15, 42, 68, 0.15);
}
.config-snippet {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  background: var(--navy);
  color: #C8D8EA;
  padding: 1.5rem;
  border-radius: 10px;
  line-height: 1.7;
  overflow-x: auto;
}
.config-snippet .key { color: #87CEEB; }
.config-snippet .str { color: #F8B07A; }
.config-snippet .num { color: #FFD700; }
.config-snippet .comment { color: #6B7E92; font-style: italic; }
.config-snippet .arrow { color: var(--accent-indigo); }

.config-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed var(--border);
}
.config-meta .filename {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.config-meta .dots { display: flex; gap: 6px; }
.config-meta .dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--gray-light); }

.solution-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.solution-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.25rem;
  align-items: start;
}
.solution-item .icon-box {
  width: 44px; height: 44px;
  background: var(--brand-blue);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.solution-item h3 { margin-bottom: 0.35rem; }
.solution-item p { color: var(--gray); font-size: 0.95rem; }

/* ============ ARCHITECTURE ============ */
.arch-wrap {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem 2rem;
  margin-bottom: 2rem;
}
.arch-svg-container { width: 100%; max-width: 1100px; margin: 0 auto; }
.arch-svg { width: 100%; height: auto; }
@keyframes flow {
  to { stroke-dashoffset: -20; }
}
.flow-line {
  stroke-dasharray: 4 6;
  animation: flow 2s linear infinite;
}
.arch-caption {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.arch-caption span { display: flex; align-items: center; gap: 0.4rem; }

/* ============ CAPABILITIES ============ */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .cap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cap-grid { grid-template-columns: 1fr; } }

.cap-card {
  background: #f4faff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  position: relative;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  overflow: hidden;
      min-height: 245px;
}
.cap-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand-blue);
  box-shadow: 0 16px 40px -16px rgba(42, 127, 186, 0.25);
}
.cap-card .num {
  position: absolute;
  top: 1.5rem; right: 1.75rem;
  font-family: 'Instrument Serif', serif;
  font-size: 3.5rem;
  color: var(--brand-blue);
  opacity: 0.12;
  line-height: 1;
  font-weight: 400;
  font-style: italic;
}
.cap-card .icon-wrap , .cap-card .elementor-icon-box-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--brand-blue), var(--accent-indigo));
  border-radius: 12px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 5px;
}
.cap-card:hover svg {
    color: #000;
}
.cap-card:hover .num {
    color: #fff;
    opacity: 0.5;
}
.cap-card:nth-child(even) .icon-wrap {
  background: linear-gradient(135deg, var(--accent-indigo), #d68309);
}
.cap-card:nth-child(even) .num { color: var(--accent-indigo); }
.cap-card h3 { margin-bottom: 0.5rem; }
.cap-card p { color: var(--gray); font-size: 0.92rem; }
.cap-card:before {
    position: absolute;
    content: '';
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, var(--brand-blue), var(--accent-indigo));
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.cap-card:hover:before {}

.cap-card:hover:before {
    height: 100%;
    top: auto;
}

.cap-card:hover h3, .cap-card:hover p {
    color: #fff !important;
}

.cap-card:hover .icon-wrap , .cap-card:hover .elementor-icon-box-icon {
    background: #fff;
    color: #000;
}

/* ============ COMPARISON ============ */
.compare-table {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: 0 8px 24px -12px rgba(15, 42, 68, 0.08);
}
.compare-scroll { overflow-x: auto; }
.compare-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
.compare-table th,
.compare-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}
.compare-table th {
    background: #0b3d6f;
    font-weight: 700;
    color: #fff;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.compare-table th.featured,
.compare-table td.featured {
  background: rgba(42, 127, 186, 0.06);
  border-left: 2px solid var(--brand-blue);
  border-right: 2px solid var(--brand-blue);
      text-align: center;
}
.compare-table th.featured {
  color: var(--brand-blue);
  background: rgba(42, 127, 186, 0.1);
}
.compare-table tr:last-child th.featured,
.compare-table tr:last-child td.featured { border-bottom: 2px solid var(--brand-blue); }
.compare-table tr:hover td:not(.featured) { background: var(--bg-soft); }
.mark { font-size: 1rem; }
.mark .qual { display: block; font-size: 0.75rem; color: var(--gray); margin-top: 2px; }
.check-yes { color: #2D9D5C; font-size: 20px;}
.check-warn { color: #C9870A; font-size: 20px;}
.check-no { color: #C24545; font-size: 20px;}
.check_icon .elementor-icon-list-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #EAF7F0;
    color: var(--green);
    display: grid !important;
    place-items: center;
    flex: 0 0 auto;
    font-size: 14px;
    font-weight: 900;
    margin-right: 5px;
    text-align: center !important;
}
.ttv-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
@media (max-width: 900px) { .ttv-strip { grid-template-columns: repeat(2, 1fr); } }
.ttv-card {
  background: var(--primary-navy);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.ttv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--brand-blue);
}
.ttv-card .ttv-label {
    font-size: 1rem;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0.75rem;
    font-weight: bold;
}
.ttv-card .ttv-from {
  text-decoration: line-through;
  color: #fff;
  font-size: 0.9rem;
}
.ttv-card .ttv-to {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--brand-blue);
  margin-top: 0.25rem;
}
.ttv-card .ttv-pct {
    font-size: 0.9rem;
    color: #fff;
    margin-top: 0.5rem;
    font-weight: 600;
}
.compare-table th img {
    display: inline-block;
    vertical-align: bottom;
    margin-right: 5px;
}

/* ============ OUTCOMES ============ */
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
@media (max-width: 1000px) { .outcome-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .outcome-grid { grid-template-columns: 1fr; } }

.outcome-card {
  background: #e4f2ff;
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: left;
  transition: transform 0.25s, box-shadow 0.25s;
}
.outcome-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 16px 40px -16px rgba(243, 156, 18, 0.3);
}
section#outcomes {
    padding-bottom: 0;
}
.outcome-card .big {
  font-size: clamp(2rem, 3.2vw, 2rem);
  font-weight: 800;
  color: var(--accent-indigo);
  line-height: 1;
  letter-spacing: -0.03em;
  font-feature-settings: "tnum";
  white-space: nowrap;
}
.outcome-card .label {
    font-weight: 700;
    color: var(--navy);
    font-size: 1.1rem;
    line-height: 1.1;
    text-align: center;
    min-height: 60px;
    text-transform: capitalize;
}
.sc_deta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.outcome-card .sub {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.4;
    text-align: center;
    border-top: 1px solid #ddd;
    padding-top: 15px;
    margin-top: 15px;
    font-weight: 500;
}
.sec_head p {
    font-size: 1.125rem;
    color: var(--gray);
    margin-top: 0.75rem;
    font-weight: 600;
    font-style: italic;
    text-align: right;
}
.sec_head {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 20px;
}

/* ============ CASE STUDY ============ */
.case-wrap {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 800px) { .case-wrap { padding: 2.5rem 1.5rem; } 
.sec_head {
    grid-template-columns: repeat(1, 1fr);
}
}
 
.case-wrap > .container { position: relative; z-index: 1; }
.case-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}
@media (max-width: 900px) { .case-grid { grid-template-columns: 1fr; gap: 2rem; } }

.case-arch {
  background: linear-gradient(var(--brand-blue), var(--primary-navy));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 2rem;
}
.case-outcomes {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.case-outcome {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.case-outcome:last-child { border-bottom: none; }
.case-outcome .stat {
    font-weight: 700;
    color: #ffff;
    font-size: 1.1rem;
    width: 80px;
    height: 80px;
    background: var(--accent-indigo);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.1;
    text-align: center;
}
.case-outcome .text {  font-size: 0.92rem; line-height: 1.55;    text-align: left; }
.case-outcome .text strong {
    font-weight: 700;
    display: block;
    font-size: 20px;
}
/* ============ WHY UT ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  padding: 2rem 1.5rem 2rem 0;
  border-left: 2px solid var(--accent-indigo);
  padding-left: 1.5rem;
}
.why-card h3 { color: var(--navy); margin-bottom: 0.6rem; }
.why-card p { color: var(--gray); font-size: 0.93rem; }

/* ============ BACKED BY ============ */
.backed-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 900px) { .backed-wrap { grid-template-columns: 1fr; gap: 3rem; } }
.backed-left h2 {
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
  max-width: 22ch;
}
.backed-left p { color: var(--gray); font-size: 1.05rem; line-height: 1.65; }
.backed-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.backed-stat {
    background: linear-gradient(#04399e, var(--primary-navy));
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
}
.backed-stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 36px; height: 4px;
  background: var(--accent-indigo);
  border-bottom-right-radius: 4px;
}
.backed-num {
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
  font-family: 'Manrope', sans-serif;
}
.backed-lab {
  font-size: 0.85rem;
  color: #fff;
  font-weight: 600;
  line-height: 1.4;
}

/* ============ ENGAGEMENT MODEL ============ */
.engage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: white;
}
@media (max-width: 900px) { .engage-grid { grid-template-columns: 1fr; } }

.engage-step {
  padding: 2rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background 0.2s;
}
.engage-step:hover { background: linear-gradient(var(--brand-blue), var(--primary-navy)); }

.engage-step:hover .step-num, .engage-step:hover h3, .engage-step:hover p {
  color: #fff;
}
.engage-step:nth-child(3n) { border-right: none; }
.engage-step:nth-last-child(-n+3) { border-bottom: none; }
@media (max-width: 900px) {
  .engage-step { border-right: none; }
  .engage-step:last-child { border-bottom: none; }
}

.engage-step .step-num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 2.5rem;
  color: var(--brand-blue);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.engage-step .step-num::after {
  content: '';
  width: 32px; height: 1px;
  background: var(--border);
}
.engage-step h3 { margin-bottom: 0.6rem; font-size: 1.1rem; }
.engage-step p { color: var(--gray); font-size: 0.9rem; }

/* ============ ECOSYSTEM ============ */
.eco-block { margin-bottom: 4rem; }
.eco-block:last-child { margin-bottom: 0; }
.eco-block .eco-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.eco-block .eco-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.6rem;
}
@media (max-width: 1100px) { .logo-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 600px) { .logo-grid { grid-template-columns: repeat(3, 1fr); } }

.logo-cell {
  aspect-ratio: 5/3;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  display: flex;
  align-items: center !important;
  justify-content: center !important;
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  font-weight: 700 !important;
  color: var(--gray);
  text-align: center;
  transition: all 0.2s !important;
  letter-spacing: -0.01em;
}
.logo-cell:hover {
  color: var(--navy);
  border-color: var(--brand-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -10px rgba(42, 127, 186, 0.3);
}
.logo-cell.branded {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem;
}
.logo-cell.branded .cell-mark {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-cell.branded .cell-mark svg {
  width: 100%;
  height: 100%;
}
.logo-cell.branded span:last-child {
  font-size: 0.78rem;
  text-align: center;
  line-height: 1.2;
}
.logo-cell.branded:hover .cell-mark { transform: scale(1.05); transition: transform 0.2s; }

.logo-cell.customer { font-weight: 800; }

/* ============ GLOBAL ============ */
.global-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.75rem;
}
@media (max-width: 1100px) { .global-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 700px) { .global-grid { grid-template-columns: repeat(2, 1fr); } }

.office-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem 1rem;
  position: relative;
  transition: all 0.2s;
}
.office-card:hover { border-color: var(--brand-blue); transform: translateY(-2px); }
.office-card .city {
    font-weight: 800;
    color: var(--navy);
    font-size: 0.95rem;
    margin-bottom: 10px;
    line-height: 1.2;
}
.office-card .role {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: var(--gray);
    font-weight: bold;
}
.office-card.hq { border-color: var(--accent-indigo); background: var(--orange-soft); }
.office-card.hq .role { color: #b8740c; font-weight: 700; }

/* ============ CTA ============ */
.cta-band {
  background: linear-gradient(#011234, #0f234c);
  color: white;
  border-radius: 24px;
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 700px) { .cta-band { padding: 3rem 1.5rem; } }
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 {
  color: white;
  margin-bottom: 1rem;
}
.cta-band p {
  color: rgba(255,255,255,0.7);
  font-size: 1.125rem;
  max-width: 620px;
  margin: 0 auto 2.5rem;
}
.cta-band .ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.contact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 700px) { .contact-row { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; } }
.contact-row .item .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-indigo);
  margin-bottom: 0.5rem;
}
.contact-row .item .val { color: white; font-weight: 600; }
.contact-row .item .sub { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-top: 0.2rem; }

/* ============ FOOTER ============ */
footer {
  background: var(--bg-soft);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.footer-col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a {
  color: var(--charcoal);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--brand-blue); }
.footer-brand p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 320px;
  line-height: 1.6;
}
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--gray);
}
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--brand-blue); border-color: var(--brand-blue); color: white; }

/* ============ ANIMATIONS ============ */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 700px) {
  section { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }
  .arch-wrap { padding: 1.5rem 1rem; }
  .case-grid, .solution-wrap { gap: 2rem; }
}


/* ===== HERO TWO-COLUMN LAYOUT FIX ===== */
.hero .container.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 54px;
  align-items: center;
}

.hero .container.hero-inner > div:first-child {
  min-width: 0;
}

.hero .container.hero-inner .hero-panel {
  width: 100%;
  min-width: 0;
}

@media (max-width: 900px) {
  .hero .container.hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 520px) {
  .hero .container.hero-inner {
    gap: 28px;
  }

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


/* ===== FINAL HERO GRID STRUCTURE FIX ===== */
.hero .container.hero-inner {
  position: relative;
  z-index: 1;
  display: grid !important;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr) !important;
  gap: 54px;
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.hero .hero-panel {
  width: 100%;
  min-width: 0;
  align-self: center;
}


@media (max-width: 900px) {
  .hero .container.hero-inner {
    grid-template-columns: 1fr !important;
    gap: 36px;
  }
}

@media (max-width: 520px) {
  .pipeline-flow {
    grid-template-columns: repeat(2, 1fr);
  }
}

.check-list { display: grid; gap: 14px; }
    .check-item { display: flex; gap: 12px; align-items: start; color: #405263; font-weight: 650; }
    .check { width: 24px; height: 24px; border-radius: 50%; background: #EAF7F0; color: var(--green); display: grid; place-items: center; flex: 0 0 auto; font-size: 14px; font-weight: 900; }

    .walkthrough {
      background: white;
      border: 1px solid var(--border);
      border-radius: 24px;
      box-shadow: var(--shadow);
      padding: 28px;
    }
    .walk-grid { display: grid; gap: 20px; }

.walk-row {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: linear-gradient(#113086, #0548ca);
}
.walk-row.walk-row1 {
    background: linear-gradient(#113086, #0548ca);
}

.walk-row.walk-row2, .walk-row.walk-row4 {
    background: linear-gradient(#f39c12, #7a4f0e);
}
.walk-num {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: #ffffff;
    color: #113086;
    display: grid;
    place-items: center;
    font-weight: 900;
}
.walk-row.walk-row1 {
    background: #113086;
}

.walk-row.walk-row2 {
    background: #f79804;
}

.walk-row.walk-row3 {
    background: #0548ca;
}

.walk-row.walk-row4 {
    background: #cc820e;
}

.walk-row strong {
    color: #fff;
    display: block;
    font-size: 20px;
}    .walk-row span {
    color: #fff;
    font-size: 14px;
    line-height: 1.3;
    display: inline-block;
    font-weight: 600;
}

.walk-tag {
    font-size: 12px;
    color: var(--brand-blue);
    font-weight: 700;
    background: rgb(238 238 238);
    padding: 7px 9px;
    border-radius: 999px;
}
     .solution {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 56px;
      align-items: center;
    }
    .solution-copy p { font-size: 18px; margin: 18px 0 26px; }

    .why {
    background: #e4f2ff;
    border-radius: 28px;
    padding: 44px;
    position: relative;
    overflow: hidden;
}
    .why::after { content: ''; position: absolute; right: -140px; top: -160px; width: 420px; height: 420px; background: radial-gradient(circle, rgba(243,156,18,.24), transparent 65%); }
    .why-content { position: relative; z-index: 1; display: grid; grid-template-columns: .95fr 1.05fr; gap: 46px; align-items: center; }
    .why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
    .why-card { background: rgba(255,255,255,1); border-radius: 18px; padding: 20px; border-right: 2px solid var(--accent-indigo);
    border-left: 2px solid var(--accent-indigo);}


.problem-card .elementor-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(#113086, #0548ca);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 1rem;
        padding: 15px;
}

.comp .elementor-icon-box-icon {
    background: #ebf0ff;
    height: 50px;
    width: 50px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}
.comp .c_icon .elementor-icon-box-icon {
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e5e5e5;
    height: 30px;
    width: 30px;
}
 
.elementor .h_logo {
    margin-block-start: 9px!important;
    margin-block-end: 9px !important;
        margin-left: auto !important;
    margin-right: auto !important;
}
.comp .c_icon.x_icon .elementor-icon-box-icon {
    border-color: #f429254a;
}
 
.c_icon  .elementor-icon-box-title{
  font-size: 15px !important;
}
.c_icon {
    padding-left: 20px !important;
        height: 82px;
}

.das_icon .elementor-icon-box-icon {
    border: none !important;
    background: none !important;
}
.comp .e-div-block-base {
    position: relative;
    overflow: hidden;
}


.d_box .elementor-icon-box-title {
    text-align: right;
}


.enc_form  p {
    margin-bottom: 0;
    font-size: 15px;
}

.enc_form  .wpcf7-form-control,  .enc_form input ,  .enc_form textarea{
    width: 100%;
    height: 45px;
    border-radius: 6px;
    padding-left: 15px;
    font-size: 17px;
     color: #000;
    border: none;
    margin-bottom: 15px;
}

 .enc_form textarea{
  height: 90px;
  padding-top: 10px;
 }

.enc_form  .wpcf7-form-control-wrap {
    margin-bottom: 10px;
    display: block;
}

.enc_form {
    max-width: 470px !important;
    margin: 0 auto;
    width: 100%;
    background: #000000bf;
    padding: 30px 30px 10px;
    border-radius: 20px;
    border: 4px solid #3956e869;
}

.enc_form textarea.wpcf7-textarea {
    height: 70px;
}

.enc_form  .wpcf7-submit, .enc_form input[type="submit"] {
    background: linear-gradient(var(--brand-blue), var(--accent-indigo));
    color: white;
    box-shadow: 0 4px 12px -2px rgba(42, 127, 186, 0.35);
    border: none;
    font-weight: bold;
    font-size: 17px;
    cursor: pointer;
}
 
.wpcf7 form .wpcf7-response-output {
    margin-top: 0;
    text-align: center;
    color: #fff;
}

.intl-tel-input .flag-container {
    color: #000;
    font-size: 14px;
}




@media (max-width: 992px) {
.elementor .eyebrow {
    margin: 0 auto !important;
}
.hero h1 {
    text-align: center;
}
.ttv-card {
    min-height: 220px;
}
.c_icon .elementor-icon-box-title {
    font-size: 13px !important;
}

.d_box .elementor-icon-box-title {
    text-align: center;
}
.d_box h3.e-heading-base {
    font-size: 17px;
}
.enc_form {
    padding-left: 20px;
    padding-right: 20px;
}

 
.c_icon {
    align-items: center;
    justify-content: center;
}

 

 
body .comp .elementor-widget-icon-box .elementor-icon-box-wrapper {
    gap: 10px !important;
    flex-direction: row !important;
    text-align: left !important;
    align-items: center ! IMPORTANT;
}

#scroll_table_main{
  width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}
#scroll_table{

  min-width: 900px;
    width: 100%;
    border-collapse: collapse;
}

}





@media (max-width: 560px) {

.backed-stat {
    padding: 1.75rem 0.5rem;
    min-height: 160px;
    padding-bottom: 0;
}
.enc_form {
    padding-left: 20px;
    padding-right: 20px;
}
.logo img {
    max-width: 200px;
}
.platform-strip .platform span, .platform-strip .platform img {
    width: 30px;
    height: 30px;
}
.platform-strip .platform .brand-mark {
    width: 40px;
    height: 40px;
}
}

@media (max-width: 468px) {

  .platform-strip .platform {
    border-right: none;
}
.platform-strip .platforms {
    gap: 20px;
}

  
}















