/* ==========================================================================
   SOLVIAN TECHNOLOGIES — DESIGN SYSTEM & TOKENS
   Typography: Manrope (Headings) & Inter (Body/UI)
   ========================================================================== */

:root {
  /* Brand Palette */
  --primary: #033DB1;
  --primary-hover: #022B80;
  --primary-light: #EFF4FF;
  --primary-glow: rgba(3, 61, 177, 0.25);
  
  --accent-cyan: #4B88FF;
  --accent-green: #00C48C;
  --accent-purple: #7C3AED;
  --accent-orange: #FF9800;

  /* Neutrals */
  --bg-main: #F8FAFC;
  --bg-card: #FFFFFF;

  --text-main: #07133D;
  --text-body: #475569;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  
  --border-subtle: #E2E8F0;
  --border-card: #CBD5E1;
  
  /* Typography Tokens */
  --font-heading: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Transitions */
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* ==========================================================================
   GLOBAL LENIS SMOOTH SCROLLING ENGINE
   ========================================================================== */

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* Universal Section Scroll Offset for Fixed Header */
#hero, #work, #about, #technology, #faq, #contact,
.hero-section, .capabilities-section, .why-solvian-section, .technology-section, .faq-section, .cta-section {
  scroll-margin-top: 85px;
}

/* ==========================================================================
   SECTION 2: OUR CAPABILITIES (Zero SVG - Pure CSS & Raster Imagery)
   ========================================================================== */

.capabilities-section {
  position: relative;
  background: #FFFFFF;
  background-image: radial-gradient(circle at 50% 15%, rgba(3, 61, 177, 0.035) 0%, rgba(255, 255, 255, 0) 65%);
  padding: 45px 24px 45px 24px;
  z-index: 2;
  border-top: 1px solid #F1F5F9;
  overflow: hidden;
  scroll-margin-top: 80px;
}

/* Background Subtle Technical Trace Lines (Pure CSS - Zero SVG) */
.tech-lines-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.tech-line {
  position: absolute;
  background: rgba(3, 61, 177, 0.12);
}

.tech-line-left-top {
  top: 45px;
  left: 20px;
  width: 140px;
  height: 1.5px;
}

.tech-line-left-mid {
  top: 260px;
  left: 30px;
  width: 90px;
  height: 1.5px;
}

.tech-line-right-top {
  top: 65px;
  right: 25px;
  width: 130px;
  height: 1.5px;
}

.tech-line-right-mid {
  top: 300px;
  right: 35px;
  width: 100px;
  height: 1.5px;
}

.tech-node-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(3, 61, 177, 0.6);
}

.dot-l1 { top: 43px; left: 160px; }
.dot-l2 { top: 258px; left: 120px; }
.dot-r1 { top: 63px; right: 155px; }
.dot-r2 { top: 298px; right: 135px; }

/* Container */
.capabilities-container {
  max-width: 1480px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header */
.capabilities-header {
  text-align: center;
  margin-bottom: 44px;
}

.eyebrow-decorated {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.eyebrow-line {
  width: 36px;
  height: 1.5px;
  background: var(--primary);
  opacity: 0.6;
}

.eyebrow-dot {
  width: 4.5px;
  height: 4.5px;
  background: var(--primary);
  border-radius: 50%;
}

.eyebrow-text {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary);
  text-transform: uppercase;
}

.capabilities-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #0A0F29;
  margin-bottom: 14px;
}

.title-highlight {
  color: var(--primary);
}

.capabilities-subtitle {
  font-size: 1.02rem;
  line-height: 1.55;
  color: #475569;
  max-width: 660px;
  margin: 0 auto;
}

/* Grid Layout (4 Columns Top + 1 Full Width Bottom) */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* Base Capability Card */
.capability-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 24px;
  padding: 30px 24px 24px 24px;
  box-shadow: 
    0 8px 30px -4px rgba(15, 23, 42, 0.03),
    0 2px 6px -1px rgba(3, 61, 177, 0.02);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: 
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease,
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.capability-card:hover {
  transform: translateY(-6px);
  border-color: rgba(3, 61, 177, 0.28);
  box-shadow: 
    0 24px 45px -10px rgba(3, 61, 177, 0.09),
    0 4px 12px -2px rgba(15, 23, 42, 0.04);
}

/* Card Top Row */
.card-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.card-number {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* Card Header Group */
.card-header-group {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.card-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #F0F5FF;
  border: 1px solid rgba(3, 61, 177, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  flex-shrink: 0;
}

.card-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #0A0F29;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.card-desc {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #64748B;
  margin-bottom: 18px;
  min-height: 55px;
}

/* Card Visual Slot */
.card-visual-slot {
  position: relative;
  width: 100%;
  height: 190px;
  margin-top: auto;
  margin-bottom: 18px;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.card-preview-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 14px 28px rgba(15, 23, 42, 0.08));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.capability-card:hover .card-preview-img {
  transform: scale(1.06) translateY(-4px);
  filter: drop-shadow(0 20px 36px rgba(3, 61, 177, 0.12));
}

/* Card Footer & CTA Link */
.card-footer {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #F1F5F9;
}

.card-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.cta-arrow {
  display: inline-block;
  font-size: 1.1rem;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.capability-card:hover .cta-arrow {
  transform: translateX(5px);
}

/* ==========================================================================
   CARD 05: LEGACY MODERNIZATION (Full-Width Horizontal Storytelling Card)
   ========================================================================== */
.card-horizontal {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: center;
  padding: 38px 36px;
}

.card-horizontal-left {
  display: flex;
  flex-direction: column;
}

.card-horizontal-left .card-desc {
  font-size: 0.95rem;
  max-width: 440px;
  margin-bottom: 24px;
  min-height: auto;
}

.card-horizontal-left .card-footer {
  border-top: none;
  padding-top: 0;
}

/* Storytelling Container (Old System -> Modern Solution) */
.storytelling-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #F8FAFC;
  border-radius: 20px;
  padding: 24px 28px;
  border: 1px solid #EDF2F7;
}

.story-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.story-tag {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
}

.tag-old {
  background: #F1F5F9;
  color: #64748B;
  border: 1px solid #E2E8F0;
}

.tag-modern {
  background: #EEF4FF;
  color: var(--primary);
  border: 1px solid rgba(3, 61, 177, 0.2);
}

.story-img-frame {
  width: 100%;
  height: 200px;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  border: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.story-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.img-old-system {
  max-height: 155px;
  width: auto;
  filter: drop-shadow(0 10px 22px rgba(15, 23, 42, 0.12));
}

.img-modern-solution {
  max-height: 195px;
  width: auto;
  filter: drop-shadow(0 14px 30px rgba(3, 61, 177, 0.10));
}

.capability-card:hover .img-old-system {
  transform: scale(1.03) translateY(-2px);
}

.capability-card:hover .img-modern-solution {
  transform: scale(1.05) translateY(-4px);
}

/* Transition Connector Bridge (Pure CSS) */
.story-transition-bridge {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.bridge-dots-left,
.bridge-dots-right {
  width: 24px;
  height: 2px;
  border-top: 2px dashed rgba(3, 61, 177, 0.4);
}

.bridge-circle-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(3, 61, 177, 0.15);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (Section 2)
   ========================================================================== */
@media (max-width: 1200px) {
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .card-horizontal {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .capabilities-section {
    padding: 36px 16px 40px 16px;
  }

  .capabilities-header {
    margin-bottom: 24px;
  }

  .capabilities-title {
    font-size: clamp(1.8rem, 5.5vw, 2.3rem);
    line-height: 1.15;
  }

  .capabilities-subtitle {
    font-size: 0.95rem;
    margin-top: 10px;
    max-width: 100%;
  }

  .capabilities-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .capability-card {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .card-title {
    font-size: 1.35rem;
  }

  .card-desc {
    font-size: 0.92rem;
  }

  .card-visual-slot {
    max-height: 200px;
    margin: 12px 0 14px;
  }

  .card-horizontal {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .storytelling-container {
    flex-direction: column;
    padding: 16px 12px;
    gap: 14px;
  }

  .story-transition-bridge {
    transform: rotate(90deg);
    margin: 4px auto;
  }

  .tech-lines-bg {
    display: none;
  }
}

@media (max-width: 480px) {
  .card-header-group {
    gap: 12px;
  }

  .card-icon-box {
    width: 44px;
    height: 44px;
  }

  .card-icon-img {
    width: 24px;
    height: 24px;
  }

  .card-visual-slot {
    max-height: 170px;
  }

  .story-img-frame {
    height: 130px;
  }
}

/* ==========================================================================
   SECTION 3: WHY SOLVIAN & OUR APPROACH (Strictly Zero SVG)
   ========================================================================== */
.why-solvian-section {
  position: relative;
  background-color: #FAFCFF;
  background-image: 
    radial-gradient(circle, rgba(3, 61, 177, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 85% 35%, rgba(3, 61, 177, 0.06) 0%, transparent 60%),
    radial-gradient(circle at 15% 65%, rgba(3, 61, 177, 0.045) 0%, transparent 55%);
  background-size: 32px 32px, 100% 100%, 100% 100%;
  padding: 45px 24px 35px 24px;
  z-index: 2;
  border-top: 1px solid #EBF1F8;
  overflow: hidden;
}

/* Background Technical Circuit Accent Lines & Nodes (Pure CSS - Zero SVG) */
.why-tech-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.why-line-left-1 {
  position: absolute;
  top: 15%;
  left: 3%;
  width: 1px;
  height: 220px;
  background: linear-gradient(180deg, transparent, rgba(3, 61, 177, 0.25), transparent);
}

.why-line-left-2 {
  position: absolute;
  top: 35%;
  left: 1.5%;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(3, 61, 177, 0.2), transparent);
}

.why-line-right-1 {
  position: absolute;
  top: 25%;
  right: 3%;
  width: 1px;
  height: 260px;
  background: linear-gradient(180deg, transparent, rgba(3, 61, 177, 0.25), transparent);
}

.why-line-right-2 {
  position: absolute;
  top: 55%;
  right: 1.5%;
  width: 140px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(3, 61, 177, 0.2), transparent);
}

.why-dot-l1 {
  position: absolute;
  top: 22%;
  left: calc(3% - 3px);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 10px rgba(3, 61, 177, 0.6);
}

.why-dot-l2 {
  position: absolute;
  top: 35%;
  left: calc(1.5% + 120px);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(3, 61, 177, 0.7);
  box-shadow: 0 0 8px rgba(3, 61, 177, 0.5);
}

.why-dot-r1 {
  position: absolute;
  top: 32%;
  right: calc(3% - 3px);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 10px rgba(3, 61, 177, 0.6);
}

.why-dot-r2 {
  position: absolute;
  top: 55%;
  right: calc(1.5% + 140px);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(3, 61, 177, 0.7);
  box-shadow: 0 0 8px rgba(3, 61, 177, 0.5);
}

.why-container {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.why-main-grid {
  display: grid;
  grid-template-columns: 46fr 54fr;
  gap: 48px;
  align-items: center;
}

.why-left-col {
  display: flex;
  flex-direction: column;
}

.eyebrow-left {
  justify-content: flex-start;
  margin-bottom: 18px;
}

.why-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.35rem, 3.8vw, 3.3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #07133D;
  margin-bottom: 18px;
}

.why-headline .highlight-blue {
  color: var(--primary);
}

.why-lead-desc {
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 28px;
  max-width: 520px;
}

/* 2x2 Principle Cards Grid (Matching Reference Photo) */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.principle-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 15px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  min-height: 104px;
  box-shadow: 0 4px 16px -2px rgba(15, 23, 42, 0.03);
  transition: 
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease;
}

.principle-card:hover {
  transform: translateY(-3px);
  border-color: rgba(3, 61, 177, 0.28);
  box-shadow: 
    0 14px 28px -6px rgba(3, 61, 177, 0.08),
    0 4px 10px -2px rgba(15, 23, 42, 0.03);
}

.principle-visual-box {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  padding: 0;
  box-shadow: none;
}

.principle-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 12px;
  transition: transform 0.35s ease;
}

.principle-card:hover .principle-img {
  transform: scale(1.06);
}

.principle-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  min-width: 0;
}

.principle-header {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 4px;
  white-space: nowrap;
}

.principle-number {
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.03em;
  flex-shrink: 0;
}

.principle-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #07133D;
  letter-spacing: -0.015em;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.principle-desc {
  font-family: var(--font-body);
  font-size: 0.78rem;
  line-height: 1.46;
  color: #475569;
}

/* ==========================================================================
   RIGHT COLUMN: OUR APPROACH CHASSIS PANEL (Matched Height with Left Column)
   ========================================================================== */
.approach-chassis-panel {
  background-color: #FFFFFF;
  background-image: radial-gradient(rgba(3, 61, 177, 0.035) 1px, transparent 1px);
  background-size: 20px 20px;
  border: 1px solid #E2E8F0;
  border-radius: 26px;
  padding: 42px 32px 42px 32px;
  box-shadow: 
    0 16px 45px -12px rgba(15, 23, 42, 0.06),
    0 0 0 1px rgba(255, 255, 255, 0.9);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.approach-header {
  text-align: center;
  margin-bottom: 29px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.approach-title {
  font-family: var(--font-heading);
  font-size: 1.72rem;
  font-weight: 700;
  color: #0A0F29;
  letter-spacing: -0.02em;
}

.approach-title-bar {
  width: 32px;
  height: 3px;
  background: var(--primary);
  border-radius: 99px;
}

.approach-inner-content {
  display: grid;
  grid-template-columns: 0.88fr 1.62fr;
  gap: 16px;
  align-items: center;
}

/* Vertical 6-Step Process Pipeline (Harmonized Spacing & Height) */
.process-pipeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 19.5px;
  padding-left: 4px;
}

.pipeline-track-line {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 22px;
  width: 1.5px;
  border-left: 1.5px dashed rgba(3, 61, 177, 0.35);
  z-index: 0;
}

.pipeline-step {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.step-icon-node {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7.5px;
  box-shadow: 0 3px 10px rgba(3, 61, 177, 0.12);
  flex-shrink: 0;
}

.step-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.step-details {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.step-meta {
  display: flex;
  align-items: center;
  gap: 6px;
}

.step-num {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
}

.step-name {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: #0A0F29;
}

.step-desc {
  font-size: 0.78rem;
  line-height: 1.38;
  color: #64748B;
  max-width: 200px;
}

/* 3D Layered Product Stage (v2.png Vertical Asset - Enlarged) */
.transformation-stage-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  padding: 0;
}

.transformation-img-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.transformation-main-img {
  width: 100%;
  height: auto;
  max-height: 560px;
  display: block;
  object-fit: contain;
  border-radius: 20px;
  filter: drop-shadow(0 20px 45px rgba(15, 23, 42, 0.09));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.approach-chassis-panel:hover .transformation-main-img {
  transform: scale(1.03);
}

/* ==========================================================================
   FULL-WIDTH BOTTOM COMMITMENT BANNER (Matching Photo 2 Reference)
   ========================================================================== */
.commitment-banner {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 22px 36px;
  box-shadow: 0 10px 35px -8px rgba(15, 23, 42, 0.04);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}

/* Background Dotted Globe (Pure Raster) */
.commitment-globe-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 38%;
  pointer-events: none;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  opacity: 0.95;
}

.commitment-globe-img {
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: right center;
}

.commitment-left {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
  max-width: 460px;
  flex-shrink: 0;
}

.commitment-badge-box {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(3, 61, 177, 0.28);
  overflow: hidden;
}

.commitment-badge-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.commitment-text-group {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.commitment-title {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 700;
  color: #0A0F29;
  letter-spacing: -0.01em;
}

.commitment-desc {
  font-size: 0.82rem;
  line-height: 1.45;
  color: #64748B;
}

.commitment-divider {
  width: 1px;
  height: 54px;
  background: #E2E8F0;
  flex-shrink: 0;
  margin: 0 46px;
  position: relative;
  z-index: 1;
}

.commitment-right {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-left: 0;
}

.commitment-quote-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.commitment-accent-bar {
  width: 3px;
  height: 38px;
  background: var(--primary);
  border-radius: 99px;
  flex-shrink: 0;
  margin-top: 2px;
}

.commitment-quote-text-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.commitment-vision-statement {
  font-family: var(--font-heading);
  font-size: 0.94rem;
  font-weight: 700;
  color: #0A0F29;
  line-height: 1.35;
}

.commitment-call-link {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.25s ease;
}

.commitment-call-link:hover {
  text-decoration: underline;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (Section 3)
   ========================================================================== */
@media (max-width: 1200px) {
  .why-main-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .approach-inner-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .transformation-stage-container {
    margin-top: 10px;
  }
}

@media (max-width: 768px) {
  .why-solvian-section {
    padding: 36px 16px 28px 16px;
  }

  .why-headline {
    font-size: clamp(1.8rem, 5.5vw, 2.3rem);
    line-height: 1.15;
  }

  .why-lead-desc {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .principles-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .principle-card {
    padding: 16px 14px;
    border-radius: 16px;
  }

  .approach-chassis-panel {
    padding: 22px 16px;
    border-radius: 18px;
  }

  .commitment-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 16px;
    border-radius: 18px;
    gap: 18px;
  }

  .commitment-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .principle-visual-box {
    width: 56px;
    height: 56px;
  }

  .commitment-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .commitment-vision-statement {
    font-size: 0.98rem;
  }
}

/* --- Custom Design Tokens --- */
:root {
  /* Brand Palette */
  --primary: #033DB1;
  --primary-hover: #0036D6;
  --primary-light: #EFF4FF;
  --primary-glow: rgba(3, 61, 177, 0.25);
  
  --accent-cyan: #4B88FF;
  --accent-green: #00C48C;
  --accent-purple: #7C3AED;
  --accent-orange: #FF9800;

  /* Neutrals */
  --bg-main: #F8FAFC;
  --bg-card: #FFFFFF;

  --text-main: #07133D;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  
  --border-subtle: #E2E8F0;
  --border-card: #CBD5E1;
  
  /* Typography */
  --font-heading: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Transitions */
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.5;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video, canvas, iframe {
  max-width: 100%;
}

/* --- Ambient Background Layer --- */
.ambient-grid {
  position: fixed;
  inset: 0;
  background-size: 40px 40px;
  background-image: 
    linear-gradient(to right, rgba(3, 61, 177, 0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(3, 61, 177, 0.025) 1px, transparent 1px);
  pointer-events: none;
  z-index: 0;
}

.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.glow-1 {
  width: 700px;
  height: 700px;
  top: -150px;
  right: 5%;
  background: radial-gradient(circle, rgba(3, 61, 177, 0.09) 0%, rgba(75, 136, 255, 0.04) 70%, transparent 100%);
}

.glow-2 {
  width: 550px;
  height: 550px;
  top: 35%;
  left: -120px;
  background: radial-gradient(circle, rgba(3, 61, 177, 0.05) 0%, transparent 70%);
}

/* --- Site Header / Sticky Full-Width Top Navbar --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.03);
  transition: var(--transition-smooth);
}

.header-container {
  max-width: 1520px;
  width: 100%;
  margin: 0 auto;
  padding: 15px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 0;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.2s ease;
}

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

/* Nav Links */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 500;
  color: #334155;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6px 2px;
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--primary);
}

.nav-item.active .nav-link {
  color: var(--primary);
  font-weight: 600;
}

.active-dot {
  display: block;
  width: 14px;
  height: 2px;
  background: var(--primary);
  border-radius: 99px;
  margin-top: 2px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary);
  color: #ffffff;
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  border-radius: 9999px;
  border: 1px solid transparent;
  cursor: pointer;
  box-shadow: 0 4px 14px 0 rgba(3, 61, 177, 0.35);
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1.5px);
  box-shadow: 0 8px 22px 0 rgba(3, 61, 177, 0.45);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-nav {
  padding: 9px 22px;
  font-size: 0.92rem;
}

.btn-arrow {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover .btn-arrow {
  transform: translateX(3px);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* --- Hero Section Layout --- */
.hero-section {
  position: relative;
  min-height: 100vh;
  height: auto;
  display: flex;
  align-items: center;
  padding: 96px 24px 36px 24px;
  box-sizing: border-box;
  z-index: 1;
  overflow: hidden;
}

/* --- Precision Architectural Tech Canvas (Showcase Card Frame) --- */
.hero-circuit-canvas {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1680px;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

.tech-rail {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 4px rgba(3, 61, 177, 0.25));
  transition: opacity 0.4s ease;
}

.tech-node-group {
  transform-box: fill-box;
  transform-origin: center;
  filter: drop-shadow(0 0 6px rgba(3, 61, 177, 0.6));
}

.tech-node-group .node-ring {
  fill: rgba(255, 255, 255, 0.95);
  stroke: rgba(3, 61, 177, 0.35);
  stroke-width: 1.2px;
}

.tech-node-group .node-core {
  fill: #033DB1;
  animation: pulseTechCore 3.5s ease-in-out infinite alternate;
}

.tech-node-group:nth-child(even) .node-core {
  fill: #4B88FF;
  animation-delay: 1.5s;
}

@keyframes pulseTechCore {
  0% {
    r: 2.5;
    opacity: 0.75;
    filter: drop-shadow(0 0 4px rgba(3, 61, 177, 0.6));
  }
  100% {
    r: 3.8;
    opacity: 1;
    filter: drop-shadow(0 0 10px rgba(75, 136, 255, 0.95));
  }
}

.hero-container {
  max-width: 1560px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.22fr;
  align-items: center;
  gap: 48px;
}

/* --- Hero Left Column Content --- */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
  max-width: 620px;
  width: 100%;
}

.category-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.badge-line {
  width: 26px;
  height: 2px;
  background: var(--primary);
  border-radius: 99px;
}

.badge-text {
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: var(--primary);
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 3.4vw, 3.55rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: #07133D;
  margin-bottom: 20px;
}

.title-row-1 {
  display: block;
}

.title-row-2 {
  display: block;
  color: #07133D;
}

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

.typewriter-text {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.typewriter-cursor {
  display: inline-block;
  color: #0A0F29;
  font-weight: 300;
  margin-left: 2px;
  animation: cursorBlink 0.85s infinite;
  vertical-align: baseline;
  text-shadow: none;
}

@keyframes cursorBlink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.hero-description {
  font-size: clamp(1.05rem, 1.2vw, 1.16rem);
  line-height: 1.65;
  color: #475569;
  max-width: 580px;
  margin-bottom: 28px;
}

/* Hero CTA Group */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}

.btn-hero {
  padding: 14px 30px;
  font-size: 1.02rem;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 1.02rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: #1E293B;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background: #F8FAFC;
  border-color: #CBD5E1;
  color: var(--primary);
  transform: translateY(-1.5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

/* Enterprise Trust & Quality Metrics Pill Row */
.trust-metrics-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.95);
  padding: 10px 18px;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.trust-pill:hover {
  border-color: rgba(3, 61, 177, 0.35);
  box-shadow: 0 4px 14px rgba(3, 61, 177, 0.06);
  transform: translateY(-1px);
}

.trust-text {
  display: flex;
  flex-direction: column;
}

.trust-text strong {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.2;
}

.trust-text small {
  font-size: 0.74rem;
  color: #64748B;
  white-space: nowrap;
  line-height: 1.2;
  margin-top: 1px;
}

/* --- Hero Right Column: Expanded Slider Showcase --- */
.hero-showcase-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  margin-top: 0;
}

.showcase-card-container {
  position: relative;
  width: 100%;
  max-width: 780px;
}

/* Ambient Dynamic Backlight Aura */
.showcase-ambient-aura {
  position: absolute;
  inset: -20px -26px;
  background: radial-gradient(circle at 65% 45%, rgba(3, 61, 177, 0.2) 0%, rgba(75, 136, 255, 0.14) 40%, rgba(3, 61, 177, 0) 70%);
  filter: blur(48px);
  z-index: 0;
  pointer-events: none;
  border-radius: 40px;
  animation: auraGlowPulse 6s ease-in-out infinite alternate;
}

@keyframes auraGlowPulse {
  0% {
    opacity: 0.75;
    transform: scale(0.97);
  }
  100% {
    opacity: 1;
    transform: scale(1.03);
  }
}

/* Precision Technical Corner Brackets */
.tech-bracket {
  position: absolute;
  width: 18px;
  height: 18px;
  pointer-events: none;
  z-index: 8;
  opacity: 0.9;
  transition: var(--transition-fast);
}

.bracket-tl {
  top: -7px;
  left: -7px;
  border-top: 2px solid var(--primary);
  border-left: 2px solid var(--primary);
  border-top-left-radius: 7px;
}

.bracket-tr {
  top: -7px;
  right: -7px;
  border-top: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  border-top-right-radius: 7px;
}

.bracket-bl {
  bottom: -7px;
  left: -7px;
  border-bottom: 2px solid var(--primary);
  border-left: 2px solid var(--primary);
  border-bottom-left-radius: 7px;
}

.bracket-br {
  bottom: -7px;
  right: -7px;
  border-bottom: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  border-bottom-right-radius: 7px;
}

/* Slider Chassis & Frame */
.slider-chassis {
  background: #FFFFFF;
  border-radius: 26px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 
    0 35px 75px -15px rgba(15, 23, 42, 0.14),
    0 15px 35px -10px rgba(3, 61, 177, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 2;
}

.slides-deck {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  min-height: 480px;
  border-radius: 22px;
  overflow: hidden;
  background: #0B132B;
}

/* Individual Slide Card */
.slide-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), visibility 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1;
}

.slide-card.exiting {
  opacity: 0;
  visibility: visible;
  z-index: 1;
}

.slide-card.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #07133D;
}

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: scale(1.04);
  filter: brightness(0.96);
  transition: transform 7.5s cubic-bezier(0.16, 1, 0.3, 1), filter 1.2s ease;
  will-change: transform, opacity;
}

.slide-card.active .slide-img {
  transform: scale(1);
  filter: brightness(1);
}

/* Dark Gradient Overlay for Readability */
.slide-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(7, 19, 61, 0.12) 0%,
    rgba(7, 19, 61, 0.45) 35%,
    rgba(7, 19, 61, 0.88) 68%,
    rgba(7, 19, 61, 0.98) 100%
  );
  pointer-events: none;
}

/* Slide Content Overlay Text & Quotes */
.slide-content-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 24px 20px 24px;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 5;
}

/* Staggered Transitions for Slide Elements */
.slide-card .slide-tag,
.slide-card .slide-heading,
.slide-card .slide-quote-box {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.slide-card.active .slide-tag {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}

.slide-card.active .slide-heading {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.28s;
}

.slide-card.active .slide-quote-box {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.42s;
}

.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(3, 61, 177, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(75, 136, 255, 0.4);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 9999px;
  margin-bottom: 2px;
  width: fit-content;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background: #00E5FF;
  border-radius: 50%;
  box-shadow: 0 0 8px #00E5FF;
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.35); opacity: 1; }
}

.slide-heading {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  line-height: 1.25;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  margin: 0;
  word-break: normal;
  overflow-wrap: break-word;
}

/* Slide Quote Box */
.slide-quote-box {
  margin-top: 4px;
  background: rgba(7, 19, 61, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-left: 3px solid #4B88FF;
  border-radius: 0 12px 12px 0;
  padding: 10px 14px;
  max-width: 600px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.28);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.quote-text {
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-style: normal;
  line-height: 1.45;
  color: #F1F5F9;
  margin: 0;
  word-break: normal;
  overflow-wrap: break-word;
}

.quote-author {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  color: #93C5FD;
  letter-spacing: 0.03em;
  margin-top: 3px;
  word-break: normal;
  overflow-wrap: break-word;
}

/* ==========================================================================
   Responsive Adaptations (Header & Hero)
   ========================================================================== */
@media (max-width: 1240px) {
  .hero-section {
    min-height: auto;
    padding: 100px 20px 36px 20px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .hero-content {
    align-items: center;
    text-align: center;
    padding-right: 0;
    max-width: 720px;
    margin: 0 auto;
  }
  
  .badge-line {
    display: none;
  }
  
  .hero-description {
    max-width: 620px;
  }
  
  .hero-cta-group {
    justify-content: center;
  }

  .trust-metrics-row {
    justify-content: center;
  }

  .hero-showcase-wrapper {
    justify-content: center;
  }

  .showcase-card-container {
    max-width: 680px;
  }
}

@media (max-width: 868px) {
  .hero-circuit-canvas {
    display: none;
  }

  .site-header {
    padding: 0;
    top: 0;
  }
  
  .header-container {
    padding: 12px 18px;
    position: relative;
  }
  
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
    padding: 16px 18px;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100vh - 65px);
    overflow-y: auto;
    z-index: 999;
  }

  .main-nav.active {
    display: flex !important;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    width: 100%;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    align-items: flex-start;
    width: 100%;
    color: #1E293B;
  }

  .nav-link:hover,
  .nav-item.active .nav-link {
    background: var(--primary-light);
    color: var(--primary);
  }

  .active-dot {
    display: none;
  }
  
  .mobile-toggle {
    display: flex;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-section {
    padding-top: 84px;
    padding-bottom: 26px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-container {
    gap: 28px;
  }

  .hero-title {
    font-size: clamp(2rem, 5.8vw, 3rem);
    line-height: 1.15;
    word-break: break-word;
  }

  .slides-deck {
    aspect-ratio: 16 / 11;
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .header-container {
    padding: 10px 14px;
  }

  .logo-img {
    height: 38px;
  }

  .btn-nav {
    padding: 7px 14px;
    font-size: 0.84rem;
  }

  .category-badge {
    margin-bottom: 12px;
  }

  .badge-text {
    font-size: 0.78rem;
    letter-spacing: 1.4px;
  }

  .hero-title {
    font-size: clamp(1.48rem, 5.8vw, 1.85rem);
    line-height: 1.22;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    width: 100%;
    max-width: 100%;
    word-break: normal;
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  .title-row-1,
  .title-row-2 {
    display: inline;
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .hero-description {
    font-size: 0.92rem;
    line-height: 1.52;
    margin-bottom: 16px;
    max-width: 100%;
  }

  .tech-bracket {
    display: none;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 8px;
    margin-bottom: 16px;
  }

  .btn-hero,
  .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 11px 18px;
    font-size: 0.94rem;
    border-radius: 9999px;
  }

  /* Compact 3-Column Trust Metrics Row */
  .trust-metrics-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    width: 100%;
    margin-top: 0;
    margin-bottom: 4px;
  }

  .trust-pill {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 9px 4px;
    border-radius: 12px;
    background: #FFFFFF;
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  }

  .trust-text {
    align-items: center;
    text-align: center;
  }

  .trust-text strong {
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.15;
    color: #0F172A;
  }

  .trust-text small {
    font-size: 0.62rem;
    color: #64748B;
    line-height: 1.15;
    white-space: normal;
    text-align: center;
  }

  .hero-showcase-wrapper {
    margin-top: 4px;
  }

  .slides-deck {
    aspect-ratio: 16 / 11;
    min-height: 240px;
    max-height: 360px;
    border-radius: 16px;
  }

  .slide-content-overlay {
    padding: 12px 14px 10px 14px;
    gap: 4px;
  }

  .slide-tag {
    font-size: 0.65rem;
    padding: 3px 8px;
    gap: 5px;
    letter-spacing: 0.06em;
  }

  .slide-heading {
    font-size: clamp(0.96rem, 3.8vw, 1.12rem);
    line-height: 1.25;
  }

  .slide-quote-box {
    padding: 7px 10px;
    margin-top: 2px;
    border-radius: 0 10px 10px 0;
  }

  .quote-text {
    font-size: 0.74rem;
    line-height: 1.35;
  }

  .quote-author {
    font-size: 0.65rem;
    margin-top: 2px;
  }
}

@media (max-width: 380px) {
  .header-container {
    padding: 8px 12px;
  }

  .logo-img {
    height: 32px;
  }

  .btn-nav {
    padding: 6px 10px;
    font-size: 0.78rem;
  }

  .btn-nav .btn-arrow {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .hero-section {
    padding-top: 72px;
    padding-bottom: 18px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero-title {
    font-size: 1.42rem;
    line-height: 1.22;
  }

  .hero-description {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .btn-hero,
  .btn-secondary {
    padding: 10px 14px;
    font-size: 0.9rem;
  }

  .trust-metrics-row {
    gap: 4px;
  }

  .trust-pill {
    padding: 8px 3px;
    border-radius: 10px;
  }

  .trust-text strong {
    font-size: 0.72rem;
  }

  .trust-text small {
    font-size: 0.55rem;
  }

  .slides-deck {
    min-height: 220px;
  }

  .slide-content-overlay {
    padding: 10px 10px 8px 10px;
    gap: 3px;
  }

  .slide-tag {
    font-size: 0.6rem;
    padding: 2px 7px;
  }

  .slide-heading {
    font-size: 0.9rem;
    line-height: 1.22;
  }

  .slide-quote-box {
    padding: 5px 8px;
  }

  .quote-text {
    font-size: 0.66rem;
    line-height: 1.3;
  }

  .quote-author {
    font-size: 0.58rem;
  }
}

/* ==========================================================================
   SECTION 4: TECHNOLOGY & EXPERTISE (Strictly Zero SVG - 100% Pure CSS & Raster)
   ========================================================================== */

.technology-section {
  position: relative;
  background: #FFFFFF;
  background-image: radial-gradient(circle at 50% 12%, rgba(3, 61, 177, 0.038) 0%, rgba(255, 255, 255, 0) 70%);
  padding: 35px 24px 28px 24px;
  z-index: 2;
  border-top: 1px solid #F1F5F9;
  overflow: hidden;
}

/* Background Technical Canvas (Technology & Expertise Section) */
.technology-tech-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.tech-canvas-rail {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 4px rgba(3, 61, 177, 0.18));
}

/* Container */
.technology-container {
  max-width: 1480px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Top Row: Hero Split (45% Left / 55% Right) */
.technology-hero-row {
  display: grid;
  grid-template-columns: 46% 54%;
  align-items: center;
  gap: 30px;
  margin-bottom: 25px;
}

.tech-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 580px;
}

.eyebrow-tech {
  margin-bottom: 12px;
}

.tech-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 3.8vw, 3.4rem);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.035em;
  color: #0A0F29;
  margin-bottom: 16px;
}

.tech-description {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #475569;
}

/* Hero Right Visual: Laptop & Mobile Device Stage */
.tech-hero-visual-col {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.tech-devices-wrapper {
  position: relative;
  width: 100%;
  max-width: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-devices-ambient-glow {
  position: absolute;
  width: 90%;
  height: 80%;
  top: 10%;
  left: 5%;
  background: radial-gradient(circle, rgba(3, 61, 177, 0.08) 0%, rgba(75, 136, 255, 0.03) 60%, transparent 80%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.tech-hero-devices-img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 45px rgba(15, 23, 42, 0.11));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tech-hero-visual-col:hover .tech-hero-devices-img {
  transform: scale(1.02);
}

/* ==========================================================================
   8-Card Technology Grid (4 Columns × 2 Rows)
   ========================================================================== */
.tech-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 10px;
}

.tech-card {
  background: #FFFFFF;
  border: 1px solid #E8EEF8;
  border-radius: 20px;
  padding: 24px 22px 22px 22px;
  box-shadow: 
    0 6px 24px -4px rgba(15, 23, 42, 0.025),
    0 2px 6px -1px rgba(3, 61, 177, 0.015);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 235px;
  position: relative;
  overflow: hidden;
  transition: 
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease,
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.tech-card:hover {
  transform: translateY(-4px);
  border-color: rgba(3, 61, 177, 0.28);
  box-shadow: 
    0 16px 36px -8px rgba(3, 61, 177, 0.09),
    0 4px 12px -2px rgba(15, 23, 42, 0.03);
}

/* Card Header (Icon Box + Titles) */
.tech-card-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.tech-cat-icon-box {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: transparent;
  border: none;
  padding: 0;
  overflow: visible;
}

.tech-cat-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(3, 61, 177, 0.08));
}

.tech-cat-title-group {
  display: flex;
  flex-direction: column;
}

.tech-cat-title {
  font-family: var(--font-heading);
  font-size: 1.14rem;
  font-weight: 700;
  color: #0A0F29;
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin-bottom: 4px;
}

.tech-cat-desc {
  font-size: 0.82rem;
  line-height: 1.45;
  color: #64748B;
}

/* Bottom Logos Strip */
.tech-logos-strip {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 32px);
  margin-top: auto;
  padding-top: 18px;
  padding-bottom: 4px;
  border-top: 1px solid rgba(241, 245, 249, 0.85);
  width: 100%;
}

.tech-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  cursor: default;
  min-width: 56px;
  text-align: center;
}

.tech-logo-icon {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.tech-logo-img {
  max-height: 34px;
  max-width: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.tech-logo-item:hover .tech-logo-img {
  transform: translateY(-2px) scale(1.12);
}

.tech-logo-label {
  font-size: 0.84rem;
  font-weight: 600;
  color: #334155;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

/* Card 08: Architecture Dedicated Visual */
.card-architecture {
  justify-content: space-between;
}

.tech-architecture-visual-box {
  width: 100%;
  margin-top: auto;
  padding-top: 16px;
  padding-bottom: 4px;
  border-top: 1px solid rgba(241, 245, 249, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
}

.tech-arch-flow-img {
  width: 100%;
  max-height: 54px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.card-architecture:hover .tech-arch-flow-img {
  transform: scale(1.03);
}

/* ==========================================================================
   Bottom Principles Strip
   ========================================================================== */
.tech-principles-strip {
  background: #FFFFFF;
  border: 1px solid #E8EEF8;
  border-radius: 20px;
  padding: 22px 28px;
  margin-top: 24px;
  box-shadow: 
    0 8px 30px -6px rgba(15, 23, 42, 0.03),
    0 2px 6px -1px rgba(3, 61, 177, 0.015);
  display: grid;
  grid-template-columns: 33% 67%;
  align-items: center;
  gap: 28px;
}

.principles-strip-left {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-right: 24px;
  border-right: 1px solid #E8EEF8;
}

.principles-code-badge-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(3, 61, 177, 0.25);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.principles-code-badge-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.principles-left-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.principles-left-title {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  color: #0A0F29;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.principles-left-desc {
  font-size: 0.78rem;
  line-height: 1.45;
  color: #64748B;
}

.principles-strip-right {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: flex-start;
}

.principle-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.principle-item-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.principle-item-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.principle-item-text {
  display: flex;
  flex-direction: column;
}

.principle-item-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: #0A0F29;
  line-height: 1.25;
  margin-bottom: 3px;
}

.principle-item-desc {
  font-size: 0.73rem;
  line-height: 1.38;
  color: #64748B;
}

/* ==========================================================================
   Bottom Final Statement Banner (Zero SVG - Pure CSS)
   ========================================================================== */
.tech-statement-banner {
  margin-top: 32px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.tech-stmt-line-left,
.tech-stmt-line-right {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 130px;
}

.stmt-line {
  flex: 1;
  height: 1.5px;
  background: rgba(3, 61, 177, 0.2);
}

.stmt-step {
  width: 12px;
  height: 1.5px;
  background: rgba(3, 61, 177, 0.45);
}

.stmt-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 6px rgba(3, 61, 177, 0.6);
  flex-shrink: 0;
}

.tech-statement-text {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: #334155;
  text-align: center;
  letter-spacing: -0.01em;
}

/* ==========================================================================
   Responsive Adaptations for Technology Section
   ========================================================================== */
@media (max-width: 1200px) {
  .technology-hero-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .tech-hero-content {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

  .tech-hero-visual-col {
    justify-content: center;
  }

  .tech-devices-wrapper {
    max-width: 580px;
    margin: 0 auto;
  }

  .tech-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .tech-principles-strip {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .principles-strip-left {
    border-right: none;
    border-bottom: 1px solid #E8EEF8;
    padding-right: 0;
    padding-bottom: 16px;
  }
}

@media (max-width: 768px) {
  .technology-section {
    padding: 36px 16px 40px 16px;
  }

  .technology-tech-canvas {
    display: none;
  }

  .tech-headline {
    font-size: clamp(1.8rem, 5.5vw, 2.3rem);
    line-height: 1.15;
  }

  .tech-description {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .tech-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tech-card {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .card-architecture {
    grid-column: span 1;
  }

  .tech-arch-flow-img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .tech-logos-strip {
    flex-wrap: wrap;
    gap: 10px;
  }

  .principles-strip-right {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .tech-stmt-line-left,
  .tech-stmt-line-right {
    width: 40px;
  }
}

@media (max-width: 480px) {
  .tech-card-header {
    gap: 12px;
  }

  .tech-cat-icon-box {
    width: 44px;
    height: 44px;
  }

  .tech-cat-icon-img {
    width: 24px;
    height: 24px;
  }

  .tech-cat-title {
    font-size: 1.25rem;
  }

  .tech-cat-desc {
    font-size: 0.88rem;
  }

  .tech-logo-item {
    padding: 5px 10px;
    font-size: 0.82rem;
  }

  .tech-logo-icon {
    width: 22px;
    height: 22px;
  }

  .principles-strip-right {
    grid-template-columns: 1fr;
  }

  .tech-stmt-line-left,
  .tech-stmt-line-right {
    display: none;
  }

  .tech-statement-text {
    font-size: 0.86rem;
  }
}



/* ==========================================================================
   SECTION 5: FREQUENTLY ASKED QUESTIONS (Strictly Zero SVG)
   ========================================================================== */
.faq-section {
  position: relative;
  padding: 36px 24px 75px;
  background: radial-gradient(circle at 50% 0%, rgba(238, 244, 255, 0.6) 0%, transparent 65%),
              #F8FAFC;
  border-top: 1px solid #E8EEF8;
  border-bottom: 1px solid #E8EEF8;
  overflow: hidden;
}

/* Background Technical Rails Canvas (FAQ Section) */
.faq-tech-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.faq-tech-rail {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 4px rgba(3, 61, 177, 0.15));
}

.faq-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Eyebrow Header */
.faq-header-block {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 34px;
}

.faq-eyebrow-decorated {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.faq-eyebrow-decorated .eyebrow-line {
  width: 32px;
  height: 1.5px;
  background: #033DB1;
  opacity: 0.6;
}

.faq-eyebrow-decorated .eyebrow-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #033DB1;
}

.faq-eyebrow-decorated .eyebrow-text {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #033DB1;
}

.faq-main-heading {
  font-family: var(--font-heading);
  font-size: 2.85rem;
  font-weight: 700;
  color: #0A0F29;
  letter-spacing: -0.03em;
  line-height: 1.18;
  margin-bottom: 16px;
}

.faq-main-heading .highlight-blue {
  color: #033DB1;
}

.faq-subtitle {
  font-size: 1.05rem;
  color: #64748B;
  line-height: 1.65;
  margin: 0 auto;
}

/* Accordion Container */
.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

/* Accordion Row Card */
.faq-row-card {
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 3px 14px rgba(15, 23, 42, 0.02);
  overflow: hidden;
}

.faq-row-card:hover {
  border-color: rgba(3, 61, 177, 0.35);
  box-shadow: 0 8px 24px rgba(3, 61, 177, 0.06);
  transform: translateY(-2px);
}

.faq-row-card.active {
  border-color: #033DB1;
  box-shadow: 0 10px 30px rgba(3, 61, 177, 0.08);
}

/* Accordion Header Button */
.faq-row-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  gap: 20px;
  user-select: none;
  outline: none;
}

.faq-row-trigger:focus-visible {
  outline: 2px solid #033DB1;
  outline-offset: -2px;
}

.faq-trigger-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

/* Circular Raster Icon Box */
.faq-icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #EEF4FF;
  border: 1px solid rgba(3, 61, 177, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-row-card:hover .faq-icon-circle {
  transform: scale(1.06);
}

.faq-icon-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* Number Label (01 - 07) */
.faq-item-num {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  color: #033DB1;
  letter-spacing: 0.5px;
  min-width: 26px;
  flex-shrink: 0;
}

/* Question Title */
.faq-item-question {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 700;
  color: #0A0F29;
  letter-spacing: -0.015em;
  line-height: 1.4;
  margin: 0;
  flex: 1;
}

/* Toggle Symbol (+ / −) */
.faq-toggle-symbol {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: #033DB1;
  border-radius: 50%;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s ease, color 0.25s ease;
}

.faq-row-card:hover .faq-toggle-symbol {
  background: #EEF4FF;
  border-color: rgba(3, 61, 177, 0.3);
}

.faq-row-card.active .faq-toggle-symbol {
  transform: rotate(45deg);
  background: #033DB1;
  color: #FFFFFF;
  border-color: #033DB1;
}

/* Expandable Answer Drawer */
.faq-answer-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  opacity: 0;
}

.faq-row-card.active .faq-answer-panel {
  opacity: 1;
}

.faq-answer-content {
  padding: 0 28px 24px 114px;
  font-size: 0.98rem;
  color: #475569;
  line-height: 1.7;
}

/* Responsive Media Queries (FAQ) */
@media (max-width: 900px) {
  .faq-main-heading {
    font-size: clamp(2rem, 5vw, 2.5rem);
  }
  .faq-answer-content {
    padding: 0 24px 20px 76px;
  }
}

@media (max-width: 680px) {
  .faq-section {
    padding: 36px 16px 40px 16px;
  }
  .faq-tech-canvas {
    display: none;
  }
  .faq-main-heading {
    font-size: clamp(1.8rem, 5.5vw, 2.2rem);
  }
  .faq-row-trigger {
    padding: 16px 14px;
    gap: 12px;
  }
  .faq-trigger-left {
    gap: 10px;
  }
  .faq-icon-circle {
    width: 36px;
    height: 36px;
  }
  .faq-icon-img {
    width: 18px;
    height: 18px;
  }
  .faq-item-num {
    font-size: 0.88rem;
    min-width: 22px;
  }
  .faq-item-question {
    font-size: 0.94rem;
    line-height: 1.35;
  }
  .faq-answer-content {
    padding: 0 14px 18px 14px;
    font-size: 0.88rem;
    line-height: 1.6;
  }
  .faq-toggle-symbol {
    width: 28px;
    height: 28px;
    font-size: 1.15rem;
  }
}

/* ==========================================================================
   SECTION 6: CTA - CALL TO ACTION (Strictly Zero SVG - Pure CSS & Raster)
   ========================================================================== */
.cta-section {
  position: relative;
  padding: 40px 24px 32px;
  background: #FFFFFF;
  overflow: hidden;
}

.cta-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-card {
  position: relative;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 32px;
  padding: 52px 48px 52px 64px;
  display: grid;
  grid-template-columns: 43% 57%;
  align-items: center;
  gap: 36px;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.04);
  overflow: hidden;
}

.cta-bg-glow {
  display: none;
}

/* Left Content Column */
.cta-content-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.cta-eyebrow-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 18px;
}

.cta-eyebrow-text {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: #033DB1;
}

.cta-eyebrow-underline {
  width: 42px;
  height: 2.5px;
  background: #033DB1;
  border-radius: 2px;
  margin-top: 8px;
}

.cta-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 4.2vw, 3.8rem);
  font-weight: 700;
  color: #07133D;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.cta-headline .highlight-blue {
  color: var(--primary);
}

.cta-description {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.68;
  color: #475569;
  max-width: 440px;
  margin-bottom: 34px;
}

/* Action Buttons */
.cta-actions-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #033DB1;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 1.04rem;
  font-weight: 700;
  padding: 16px 34px;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(3, 61, 177, 0.28);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-btn-primary:hover {
  transform: translateY(-2px);
  background: #0037D4;
  box-shadow: 0 12px 30px rgba(3, 61, 177, 0.36);
  color: #FFFFFF;
}

.cta-btn-arrow {
  font-size: 1.15rem;
  line-height: 1;
  transition: transform 0.25s ease;
}

.cta-btn-primary:hover .cta-btn-arrow {
  transform: translateX(4px);
}

.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #FFFFFF;
  color: #0A0F29;
  font-family: var(--font-heading);
  font-size: 1.04rem;
  font-weight: 700;
  padding: 15px 28px;
  border-radius: 14px;
  border: 1.5px solid #CBD5E1;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-btn-secondary:hover {
  border-color: #033DB1;
  color: #033DB1;
  background: #EEF4FF;
  transform: translateY(-2px);
}

/* Chat icon (Pure CSS - Zero SVG) */
.cta-chat-icon {
  width: 16px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 4px;
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}

.cta-chat-icon::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 3px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 4px 0 0;
  border-color: currentColor transparent transparent transparent;
}

/* Trust Points */
.cta-trust-points {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-check-badge {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #033DB1;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(3, 61, 177, 0.25);
}

.cta-trust-text {
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
  letter-spacing: -0.01em;
}

/* Right Visual Column (Large & Unboxed) */
.cta-visual-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  padding: 0;
}

.cta-visual-ambient-glow {
  display: none;
}

.cta-visual-frame {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  background: transparent;
  padding: 0;
  overflow: visible;
}

.cta-futuristic-img {
  width: 100%;
  max-width: 780px;
  height: auto;
  object-fit: contain;
  display: block;
  filter: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-card:hover .cta-futuristic-img {
  transform: translateY(-3px) scale(1.01);
}

/* Responsive Styles for CTA */
@media (max-width: 1080px) {
  .cta-card {
    grid-template-columns: 1fr;
    padding: 38px 28px;
    gap: 32px;
  }

  .cta-content-col {
    align-items: center;
    text-align: center;
  }

  .cta-eyebrow-wrap {
    align-items: center;
  }

  .cta-description {
    max-width: 100%;
  }

  .cta-actions-row {
    justify-content: center;
  }

  .cta-trust-points {
    justify-content: center;
  }

  .cta-visual-col {
    margin-top: 6px;
  }
}

@media (max-width: 640px) {
  .cta-section {
    padding: 32px 16px 36px 16px;
  }

  .cta-card {
    padding: 26px 18px;
    border-radius: 20px;
    gap: 20px;
  }

  .cta-headline {
    font-size: clamp(1.8rem, 6.5vw, 2.3rem);
    line-height: 1.15;
  }

  .cta-description {
    font-size: 0.94rem;
    margin-bottom: 24px;
  }

  .cta-actions-row {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-bottom: 24px;
  }

  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 0.98rem;
  }

  .cta-trust-points {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    padding-left: 4px;
  }

  .cta-futuristic-img {
    max-width: 100%;
    max-height: 280px;
  }
}

/* ==========================================================================
   SECTION 7: SITE FOOTER (Strictly Zero SVG - Pure CSS & Raster)
   ========================================================================== */
.site-footer {
  position: relative;
  padding: 22px 24px 16px;
  background: #FFFFFF;
  border-top: 1px solid #E8EEF8;
  overflow: hidden;
}

.footer-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}

.footer-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

/* 5-Column Main Grid (Pulled Left, Tightened Spacing) */
.footer-main-grid {
  display: grid;
  grid-template-columns: 21% 17% 17% 15% 30%;
  gap: 24px;
  padding-bottom: 26px;
}

/* Brand Column */
.footer-brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 0;
}

.footer-logo-link,
.footer-brand-logo {
  display: inline-block;
  margin-top: -10px;
  margin-bottom: 10px;
}

.footer-logo-img {
  height: 50px;
  max-width: 220px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-brand-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #64748B;
  margin-bottom: 16px;
  max-width: 265px;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  text-decoration: none;
}

.footer-social-btn:hover {
  background: #EEF4FF;
  border-color: #033DB1;
  transform: translateY(-2px);
}

.footer-social-img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* Nav Columns */
.footer-nav-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  color: #0A0F29;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
  position: relative;
  display: inline-flex;
  flex-direction: column;
}

.footer-title-bar {
  width: 24px;
  height: 2.5px;
  background: #033DB1;
  border-radius: 2px;
  margin-top: 6px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.footer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.92rem;
  color: #64748B;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.25s ease;
  padding: 3px 0;
}

.footer-link-arrow {
  color: #033DB1;
  font-size: 1.15rem;
  line-height: 1;
  font-weight: 700;
  opacity: 0.7;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.footer-link:hover {
  color: #033DB1;
  transform: translateX(2px);
}

.footer-link:hover .footer-link-arrow {
  opacity: 1;
  transform: translateX(3px);
}

/* Contact Column */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #EEF4FF;
  border: 1px solid rgba(3, 61, 177, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-contact-img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.footer-contact-link,
.footer-contact-text {
  font-size: 0.90rem;
  color: #334155;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s ease;
  word-break: break-word;
  overflow-wrap: anywhere;
  line-height: 1.4;
}

.footer-contact-link:hover {
  color: #033DB1;
}

/* Bottom Sub-Footer Bar */
.footer-bottom-bar {
  border-top: 1px solid #E8EEF8;
  padding-top: 16px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 0.85rem;
  color: #64748B;
  font-weight: 500;
  margin: 0;
}

.footer-tagline {
  font-size: 0.85rem;
  color: #64748B;
  font-weight: 500;
  margin: 0;
  text-align: center;
}

.footer-back-to-top {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A0F29;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  transition: all 0.25s ease;
}

.footer-back-to-top:hover {
  background: #033DB1;
  color: #FFFFFF;
  border-color: #033DB1;
  transform: translateY(-3px);
}

/* Responsive Footer */
@media (max-width: 1200px) {
  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }
  .footer-brand-col {
    grid-column: span 2;
    padding-right: 0;
    max-width: 540px;
  }
  .footer-contact-col {
    grid-column: span 2;
  }
}

@media (max-width: 680px) {
  .site-footer {
    padding: 32px 16px 16px 16px;
  }
  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 24px;
  }
  .footer-brand-col {
    grid-column: span 1;
  }
  .footer-logo-img {
    height: 42px;
  }
  .footer-brand-desc {
    font-size: 0.88rem;
    max-width: 100%;
    margin-bottom: 12px;
  }
  .footer-link {
    font-size: 0.88rem;
    padding: 2px 0;
  }
  .footer-contact-link,
  .footer-contact-text {
    font-size: 0.88rem;
    white-space: normal;
    word-break: break-word;
  }
  .footer-bottom-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
  .footer-tagline {
    text-align: center;
  }
}

/* ==========================================================================
   GLOBAL SMOOTH SCROLL REVEAL ANIMATION ENGINE
   ========================================================================== */

/* Only activate hidden initial states once JS is initialized */
body.scroll-animations-ready .scroll-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

body.scroll-animations-ready .scroll-reveal.reveal-scale {
  transform: translateY(24px) scale(0.96);
}

body.scroll-animations-ready .scroll-reveal.reveal-left {
  transform: translateX(-32px);
}

body.scroll-animations-ready .scroll-reveal.reveal-right {
  transform: translateX(32px);
}

/* Revealed State */
body.scroll-animations-ready .scroll-reveal.is-revealed {
  opacity: 1 !important;
  transform: translate(0, 0) scale(1) !important;
}

/* Staggered Delay Helpers */
.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.10s; }
.stagger-3 { transition-delay: 0.15s; }
.stagger-4 { transition-delay: 0.20s; }
.stagger-5 { transition-delay: 0.25s; }
.stagger-6 { transition-delay: 0.30s; }
.stagger-7 { transition-delay: 0.35s; }
.stagger-8 { transition-delay: 0.40s; }

/* Reduced Motion Preference Accessibility */
@media (prefers-reduced-motion: reduce) {
  body.scroll-animations-ready .scroll-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
