*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #082155;
  --blue: #1a3aaf;
  --blue-mid: #2251cc;
  --purple: #592699;
  --purple-light: #8b5cf6;
  --cyan: #00c2ff;
  --white: #ffffff;
  --light-bg: #f0f4ff;
  --grad-blue: linear-gradient(135deg, #e8eeff 0%, #d0d8ff 50%, #ede8ff 100%);
  --font: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--navy);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5 { line-height: 1.2; font-weight: 700; }

#site-header {
  backdrop-filter: blur(20px);
  background: #ffffff92;
  border: 1px solid #ffffff14;
  border-radius: 16px;
  box-shadow: 0 8px 32px #0006;
  left: 35px;
  position: fixed;
  right: 35px;
  top: 25px;
  z-index: 1000;
  overflow: visible;
  transition:
    left          0.45s cubic-bezier(0.4, 0, 0.2, 1),
    right         0.45s cubic-bezier(0.4, 0, 0.2, 1),
    width         0.45s cubic-bezier(0.4, 0, 0.2, 1),
    border-radius 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    top           0.45s cubic-bezier(0.4, 0, 0.2, 1),
    background    0.45s ease,
    box-shadow    0.45s ease;
}

#site-header.nav-collapsed {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  background: #ffffffde;
  backdrop-filter: blur(20px);
  border: 1px solid #ffffff14;
  width: 180px;
  border-radius: 15px;
  top: 50px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
}


#site-header.nav-collapsed:hover,
#site-header.nav-collapsed:focus-within {
  left: 35px;
  right: 35px;
  width: auto;
  transform: none;
  border-radius: 16px;
  top: 50px;
  background: #ffffff92;
  backdrop-filter: blur(20px);
  border: 1px solid #ffffff14;
  box-shadow: 0 8px 32px #0006;
}

#site-header.scrolled {
  background: rgba(255, 255, 255, 0.166);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
}

#site-header.nav-collapsed:hover .nav-links a,
#site-header.nav-collapsed:focus-within .nav-links a {
  color: var(--navy);
}

#site-header.nav-collapsed:hover .nav-links .for-talent > a,
#site-header.nav-collapsed:focus-within .nav-links .for-talent > a {
  color: var(--purple);
}

#site-header.nav-collapsed #primary-nav,
#site-header.nav-collapsed .hamburger {
  opacity: 0;
  pointer-events: none;
  width: 0;
  overflow: visible;
  transition: opacity 0.25s ease, width 0.4s ease;
}

#site-header.nav-collapsed:hover #primary-nav,
#site-header.nav-collapsed:focus-within #primary-nav,
#site-header.nav-collapsed:hover .hamburger,
#site-header.nav-collapsed:focus-within .hamburger {
  opacity: 1;
  pointer-events: auto;
  width: auto;
}

#primary-nav,
.hamburger {
  transition: opacity 0.3s ease, width 0.4s ease;
}

.navbar-inner {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  overflow: visible;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
}

.site-logo img { height: 32px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
ul{
   margin-bottom: 0px !important;
   padding-left: 0px !important;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--blue-mid); }

.nav-links .active > a,
.nav-links .for-talent > a { color: var(--purple); }

.nav-arrow {
  font-size: 1rem;
  margin-left: 4px;
  display: inline-block;
  transition: transform 0.2s ease;
  vertical-align: middle;
}

.has-dropdown {
  position: relative;
}

.has-dropdown:hover > .nav-arrow,
.has-dropdown.open > .nav-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  list-style: none;
  min-width: 270px;
  z-index: 9999;
  padding: 8px 0;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 20px; 
  background: transparent;
  display: block;
}

.has-dropdown:hover > .dropdown-menu,
.has-dropdown.open > .dropdown-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
  list-style: none;
}

.nav-links .has-dropdown .dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  font-size: 0.83rem;
  font-weight: 700;
  color: #082155;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #ebebeb;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
  background: transparent;
  line-height: 1.4;
}

.nav-links .has-dropdown .dropdown-menu li:last-child a {
  border-bottom: none;
}

.nav-links .has-dropdown .dropdown-menu li a:hover {
  background: #f0f4ff;
  color: #2251cc;
}

@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: #f5f7ff;
    padding: 0;
    min-width: 100%;
    display: none;
  }
  .has-dropdown.open > .dropdown-menu {
    display: block;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  .dropdown-menu li a {
    padding: 10px 32px;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
}

.btn-hire {
  background-image: linear-gradient(135deg, #1F65FF, #592699);
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 6px !important;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.btn-hire:hover { background: var(--navy); transform: translateY(-1px); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 100px;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--navy);
  margin-bottom: 36px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.btn-hero {
  display: inline-block;
  background-image: linear-gradient(135deg, #1F65FF, #021848);
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s, transform 0.2s;
  margin-bottom: 56px;
  position: relative;
  overflow: hidden;
  animation: text-glow 2.4s ease-in-out infinite;
}

.btn-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 30%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0.08) 70%,
    transparent 100%
  );
  transform: skewX(-15deg);
  animation: shine-sweep 2.4s ease-in-out infinite;
}

@keyframes shine-sweep {
  0%   { left: -75%; }
  100% { left: 125%; }
}

@keyframes text-glow {
  0%   { text-shadow: none; }
  40%  { text-shadow: none; }
  50%  { text-shadow: 0 0 10px rgba(255,255,255,0.9), 0 0 20px rgba(255,255,255,0.4); }
  60%  { text-shadow: none; }
  100% { text-shadow: none; }
}
.hero-stats {
  display: flex;
  justify-content: center;  
  gap: 15px;                 
  flex-wrap: nowrap;        
  margin-top: 70px;
}
.stat-pill {
  flex: 0 0 250px;           
  background: rgba(255, 255, 255, 0.266);
  border: 1px solid rgb(255, 255, 255);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  padding: 4px 34px;
  text-align: center;
}

.stat-pill strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color:#fff;
}

.stat-pill span {
  font-size: 0.8rem;
  font-weight: 800;
  color: #ffffff;
}

#trusted {
  padding: 40px 24px 10px;
  text-align: center;
  background: #fff;
  max-width: 1200px;      
  margin: 0 auto;
}

#trusted h2 {
  font-size: 2.0rem;
  color: var(--purple);
  margin-bottom: 40px;
  font-weight: 700;
}

.logo-row {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  animation: logo-scroll 18s linear infinite;  
}

.logo-set {
  display: flex;
  gap: 56px;
  align-items: center;
  padding-right: 56px; 
  flex-shrink: 0;
}

.logo-set img {
  height:50px;
  width: auto;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.logo-set img:hover {
  opacity: 1;
}

@keyframes logo-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); } 
}

.logo-placeholder {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1rem;
  color: #555;
}

#platform {
  padding: 10px 24px;
  position: relative;
  background-color: #ffffff;
  background-image:
    linear-gradient(to bottom, #ffffff 0%, transparent 18%),
    linear-gradient(to top, #ffffff 0%, transparent 18%),
    radial-gradient(ellipse at 30% 30%, rgba(213, 180, 255, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 15%, rgba(180, 220, 240, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 60%, rgba(150, 220, 225, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(213, 180, 255, 0.2) 0%, transparent 45%);
  overflow: hidden;
}

#platform::before,
#platform::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(circle, rgba(160, 120, 220, 0.7) 1.5px, transparent 1.5px);
}

#platform::before {
  width: 500px;
  height: 500px;
  left: 12%;
  top: 38%;
  background-size: 10px 10px;
  mask-image: radial-gradient(ellipse at 55% 45%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 55% 45%, black 30%, transparent 70%);
}

#platform::after {
  width: 300px;
  height: 300px;
  right: 14%;
  top: 8%;
  background-size: 9px 9px;
  mask-image: radial-gradient(ellipse at 40% 50%, black 25%, transparent 68%);
  -webkit-mask-image: radial-gradient(ellipse at 40% 50%, black 25%, transparent 68%);
}

#platform .dot-cluster {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(circle, rgba(160, 120, 220, 0.6) 1.5px, transparent 1.5px);
}

#platform .dot-cluster:nth-child(1) {
  width: 400px;
  height: 400px;
  right: 18%;
  bottom: 15%;
  background-size: 9px 9px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 28%, transparent 68%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 28%, transparent 68%);
}

#platform .dot-cluster:nth-child(2) {
  width: 600px;
  height: 600px;
  left: 1%;
  top: 6%;
  background-size: 8px 8px;
  mask-image: radial-gradient(ellipse at 45% 55%, black 25%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse at 45% 55%, black 25%, transparent 65%);
}

#platform .dot-cluster:nth-child(3) {
  width: 400px;
  height: 400px;
  right: 5%;
  top: 40%;
  background-size: 8px 8px;
  opacity: 0.7;
  mask-image: radial-gradient(ellipse at 60% 40%, black 22%, transparent 62%);
  -webkit-mask-image: radial-gradient(ellipse at 60% 40%, black 22%, transparent 62%);
}

#platform .dot-cluster:nth-child(4) {
  width: 250px;
  height: 250px;
  left: 24%;
  bottom: 30%;
  background-size: 9px 9px;
  opacity: 0.65;
  mask-image: radial-gradient(ellipse at 50% 45%, black 26%, transparent 66%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 45%, black 26%, transparent 66%);
}

#platform > *:not(.dot-cluster) {
  position: relative;
  z-index: 1;
}

.section-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  border: 1.5px solid #f6f6f6;
  border-radius: 8px;
  padding: 10px 28px;
  font-size: 2.0rem;
  font-weight: 700;
  color:var(--purple);
  margin-bottom: 48px;
  background: rgba(255, 255, 255, 0.271);
}

.subsection-heading {
  display: inline-block;
  background: rgba(255, 255, 255, 0.233);
  border: 1px solid #fefefe;
  border-radius: 8px;
  padding: 10px 32px;
  font-size: 1.78rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 36px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 56px;
}


.ai-led-layout {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 350px 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    justify-items: center;
    gap: 60px;
    padding: 80px 20px;
}

.brain-center {
    grid-column: 2;
    grid-row: 1;
    position: relative;
}

.brain-center img {
    width: 320px;
    max-width: 100%;
    display: block;
    z-index: 3;
}
.card-left {
    grid-column: 1;
    grid-row: 1;
}

.card-right {
    grid-column: 3;
    grid-row: 1;
}

.card-bottom {
    grid-column: 2;
    grid-row: 2;
    max-width: 420px;
}


.feature-card {
    background: rgba(255, 255, 255, 0.271);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    max-width: 400px;
    position: relative;
    transition: 0.3s ease;
    z-index: 3;
}

.feature-card:hover {
    transform: translateY(-6px);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.feature-card .icon {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.feature-card .icon svg,
.feature-card .icon i { color: #fff; font-size: 1.3rem; }
.card-left::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -170px;
    width: 170px;
    height: 2px;
    background: linear-gradient(90deg, #ec9fff87, #ec9fff87);
}
.card-right::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -170px;
    width: 170px;
    height: 2px;
    background: linear-gradient(90deg, #ec9fff87, #ec9fff87);
}
.card-bottom::before {
    content: "";
    position: absolute;
    top: -170px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 170px;
    background: linear-gradient(#ec9fff87, #ec9fff87);
}

.connector-section {
    position: relative;
    padding-top: 10px;
}

.connector-section::before {
    content: "";
    position: absolute;
    top: 60px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, #ec9fff87, #ec9fff00,#ec9fff87);
}

.connector-section::after {
    content: "";
    position: absolute;
    top: 60px;
    left: 15%;
    width: 2px;
    height: 90px;
    background: linear-gradient(#ec9fff87, #ec9fff87);
}


.connector-grid::before {
    content: "";
    position: absolute;
    top: -85px;
    right: 15%;
    width: 2px;
    height: 100px;
    background: linear-gradient(#ec9fff87, #ec9fff87);
}

.connector-grid::after {
    content: "";
    position: absolute;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 75px;
    background: linear-gradient(#ec9fff1a, #ec9fff87);
}

.connector-grid {
    position: relative;
}

#vision-mission {
  position: relative;
  padding: 220px 6% 240px;
  background: #070013;
  z-index: 2;
}

.vm-glow {
  position: absolute;
  left: 0;
  width: 100%;
  height: 200px;
  pointer-events: none;
  z-index: 3;
}

.vm-glow-top { top: 40px; }
.vm-glow-bottom { bottom: 50px; }

.vm-glow svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: blur(12px);
}
#vision-mission::before,
#vision-mission::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 120px; 
  pointer-events: none;
  z-index: 1;
}

#vision-mission::before {
  top: 0;
  background: linear-gradient(
    to bottom,
    rgb(255, 255, 255) 0%,
    rgba(255, 255, 255, 0.837) 30%,
    rgba(255,255,255,0) 100%
  );
}

#vision-mission::after {
  bottom: 0;
  background: linear-gradient(
    to top,
    rgb(255, 255, 255) 0%,
    rgba(255, 255, 255, 0.645) 30%,
    rgba(255,255,255,0) 100%
  );
}

.vm-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  justify-items: center;
}

.vm-card {
  padding-bottom: 44px;
}

.vm-card h2 {
  color: #fff;
  font-size: 2.3rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  
}

.vm-image {
  position: relative;
  border-radius: 18px;
  max-width: 620px;
  overflow: visible;

}

.vm-image img {
  width: 100%;
  display: block;
  border-radius: 18px;
  object-fit: cover;
  aspect-ratio: 4/3;
  background: #1a0a2e;
}

.vm-overlay {
  position: absolute;
  bottom: -20px;
  left: 12px;
  right: 12px;
  background: rgba(18, 8, 36, 0.5);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
 padding: 14px 18px;
  color: #fff;
  font-size: 13.5px;
  line-height: 1.85;
  font-weight: 400;
  box-shadow: 
    0 8px 32px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.07);
}

.vm-overlay p {
  margin: 0;
}

.vm-overlay p + p {
  margin-top: 1px;
}

#harness {
  background-color: #ffffff;
  background-image:
    linear-gradient(to bottom, #ffffff 0%, transparent 50%),
    linear-gradient(to top, #ffffff 0%, transparent 18%),
    radial-gradient(ellipse at 30% 30%, rgba(213, 180, 255, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 15%, rgba(180, 220, 240, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 60%, rgba(150, 220, 225, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(213, 180, 255, 0.2) 0%, transparent 45%);
  padding: 100px 24px 60px;
  text-align: center;
}

#harness h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 20px;
}

#harness .lead {
  max-width: 720px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
  color: #444;
}

.btn-learn {
  display: inline-block;
  background-image: linear-gradient(135deg, #1F65FF, #592699);
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s, transform 0.2s;
  margin-bottom: 56px;
}

.btn-learn:hover { background: var(--navy); transform: translateY(-1px); color: #fff;}

.platform-screenshots {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

#cta-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.cta-left {
  background: linear-gradient(135deg, #9FEAE9 0%, #52C5DA 24%, #1D94CF 55% ,#2656B6 84%,#58289A 100%);
  padding: 80px 60px;
  color: #fff;
}

.cta-right {
  position: relative;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(90, 37, 153, 0.9) 0%, transparent 55%),
    radial-gradient(ellipse at 40% 80%, rgba(53, 74, 174, 0.8) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(100, 180, 220, 0.7) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 60%, rgba(195, 242, 241, 0.6) 0%, transparent 45%),
    linear-gradient(135deg, #5A2599 0%, #354AAE 30%, #2556B5 60%, #7ec8d8 100%);
  backdrop-filter: blur(20px);
  padding: 80px 60px;
  color: #fff;
  overflow: hidden;
}

.cta-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.244);
  backdrop-filter: blur(2px);
  pointer-events: none;
  z-index: 0;
}

.cta-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 16px;
}

.cta-left h2,
.cta-right h2 {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 32px;
  line-height: 1.2;
  color: #fff;
}

.btn-cta {
  display: inline-block;
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
}

.btn-cta:hover { background: #fff; color: var(--blue-mid); }

#site-footer {
  position: relative; 
  overflow: hidden;
}
.footer-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}

.footer-box {
  position: relative;
  z-index: 2;
  background: #06080f;
  margin-left: 0;       
  margin-right: 0;       
  margin-bottom: 140px;
  border-bottom-left-radius: 0;   
  border-bottom-right-radius: 0;  
  padding: 64px 24px 32px;
  transition: margin 0.05s linear, border-radius 0.05s linear;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 300px 0.5fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 28px;
}

.footer-brand .site-logo {
  color: #fff;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  background: none;
  border: none;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
  transition: background 0.2s;
}

.social-btn:hover { background: var(--blue-mid); }

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-col ul a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}

.footer-legal a:hover { color: #fff; }

.footer-address {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-top: 10px;
  line-height: 1.6;
}

/* Contact column */
.footer-col-contact .footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-col-contact .footer-contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-col-contact strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.footer-col-contact a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  line-height: 1.7;
}

.footer-col-contact a:hover {
  color: #fff;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.section-pad { padding: 80px 24px; }

@media (max-width: 992px) {
  .ai-led-layout {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }

  .brain-center { grid-column: 1 / -1; grid-row: 2; }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand { grid-column: 1 / -1; }

  .vm-grid { grid-template-columns: 1fr; }

  #cta-section { grid-template-columns: 1fr; }
  
    .ai-led-layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 40px;
        text-align: center;
    }

    .brain-center,
    .card-left,
    .card-right,
    .card-bottom {
        grid-column: auto;
        grid-row: auto;
    }

    .card-left::after,
    .card-right::after,
    .card-bottom::before {
        display: none;
    }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    padding: 20px 24px 28px;
    border-top: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    gap: 20px;
  }

  .nav-links.open { display: flex; }

  .hamburger { display: flex; }

  .hero-stats { gap: 12px; }

  .stat-pill { min-width: 120px; padding: 12px 16px; }

  .feature-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; }
}