:root {
  --navy: #061936;
  --deep-blue: #082f78;
  --blue: #006eea;
  --cyan: #18b8ff;
  --sky: #eaf7ff;
  --white: #ffffff;
  --text-dark: #0a1733;
  --text-muted: #6f7b91;
  --border: rgba(8, 47, 120, 0.12);
  --shadow: 0 20px 50px rgba(6, 25, 54, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--text-dark);
}

.site-header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 999;
}
.topbar {
  background: linear-gradient(90deg, var(--navy), var(--deep-blue));
  color: var(--white);
  font-size: 13px;
}
.topbar-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 9px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar span,
.topbar a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}
.topbar i {
  color: var(--cyan);
  margin-right: 6px;
}
.topbar a:hover, .topbar-social:hover {
  color: var(--white);
}
.topbar-social i {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.topbar-social:hover i{
  color: var(--white);
}

.navbar {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 35px rgba(6, 25, 54, 0.05);
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand img {
  width: 210px;
  display: block;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links > li {
  position: relative;
}
.nav-links > li > a {
  padding: 14px 15px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}
.nav-links > li > a i {
  font-size: 11px;
  color: var(--blue);
  transition: 0.3s ease;
}
.nav-links > li:hover > a {
  color: var(--blue);
}
.has-dropdown:hover > a i {
  transform: rotate(180deg);
}
.dropdown {
  position: absolute;
  top: 115%;
  left: 0;
  min-width: 270px;
  padding: 12px;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: 0.3s ease;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.large-dropdown {
  min-width: 300px;
  display: grid;
  grid-template-columns: 1fr;
}
.dropdown li a {
  display: block;
  padding: 12px 14px;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 12px;
  transition: 0.25s ease;
}
.dropdown li a:hover {
  color: var(--blue);
  background: linear-gradient(90deg, var(--sky), rgba(24, 184, 255, 0.08));
  padding-left: 18px;
}
.nav-cta {
  padding: 13px 22px;
  border-radius: 999px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 12px 30px rgba(0, 110, 234, 0.28);
  transition: 0.3s ease;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 110, 234, 0.38);
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--navy);
  cursor: pointer;
}
.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--white);
  display: block;
  margin: 5px auto;
  border-radius: 10px;
  transition: 0.3s ease;
}
@media (max-width: 1024px) {
  .topbar {
    display: none;
  }
  .brand img {
    width: 185px;
  }
  .nav-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 77px;
    left: 16px;
    right: 16px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    padding: 22px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow);
  }
  .nav-menu.active {
    display: flex;
  }
  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .nav-links > li > a {
    justify-content: space-between;
    padding: 14px;
    border-radius: 14px;
    background: rgba(234, 247, 255, 0.7);
  }
  .dropdown {
    position: static;
    min-width: 100%;
    margin-top: 8px;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 14px;
    background: #f7fbff;
  }
  .has-dropdown.open .dropdown {
    display: block;
  }
  .has-dropdown:hover .dropdown {
    transform: none;
  }
  .has-dropdown.open > a i {
    transform: rotate(180deg);
  }
  .nav-cta {
    text-align: center;
  }
}
@media (max-width: 575px) {
  .nav-inner {
    padding: 14px 16px;
  }
  .brand img {
    width: 165px;
  }
  .nav-menu {
    top: 70px;
    left: 12px;
    right: 12px;
    padding: 18px;
  }
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 75px 25px;
  background:
    radial-gradient(circle at 12% 20%, rgba(24, 184, 255, 0.18), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(0, 110, 234, 0.16), transparent 28%),
    linear-gradient(135deg, #f8fcff 0%, #eef7ff 45%, #ffffff 100%);
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(8, 47, 120, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 47, 120, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
  pointer-events: none;
}
.hero-bg-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  bottom: -160px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  filter: blur(90px);
  opacity: 0.22;
}
.hero-container {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
}
.hero-badge {
  width: fit-content;
  margin-bottom: 22px;
  padding: 9px 15px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--deep-blue);
  font-size: 14px;
  font-weight: 700;
  border: 1px solid rgba(0, 110, 234, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 10px 30px rgba(6, 25, 54, 0.06);
}
.hero-badge i {
  color: var(--cyan);
}
.hero-content h1 {
  max-width: 720px;
  color: var(--navy);
  font-size: clamp(40px, 4vw, 65px);
  line-height: 1.03;
  letter-spacing: -2.6px;
  font-weight: 850;
}
.hero-content h1 span {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-content p {
  max-width: 640px;
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.75;
}
.hero-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-btn {
  min-height: 54px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.3s ease;
}
.hero-btn.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 18px 38px rgba(0, 110, 234, 0.32);
}
.hero-btn.secondary {
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--border);
}
.hero-btn:hover {
  transform: translateY(-3px);
}
.hero-trust {
  max-width: 620px;
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid rgba(8, 47, 120, 0.12);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.hero-trust strong {
  display: block;
  color: var(--navy);
  font-size: 24px;
  line-height: 1;
}
.hero-trust span {
  display: block;
  margin-top: 7px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.4;
}
.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}
.hero-card {
  width: min(100%, 470px);
  min-height: 440px;
  padding: 24px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72)),
    linear-gradient(135deg, rgba(0, 110, 234, 0.12), rgba(24, 184, 255, 0.08));
  border: 1px solid rgba(8, 47, 120, 0.12);
  box-shadow: 0 30px 80px rgba(6, 25, 54, 0.16);
  backdrop-filter: blur(20px);
}
.card-top {
  display: flex;
  gap: 8px;
}
.card-top span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(0, 110, 234, 0.26);
}
.growth-panel {
  margin-top: 28px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 26px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--deep-blue) 55%, var(--blue));
  box-shadow: 0 24px 45px rgba(8, 47, 120, 0.28);
}
.growth-panel span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}
.growth-panel h3 {
  margin-top: 6px;
  font-size: 46px;
  line-height: 1;
}
.growth-panel i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--cyan);
  background: rgba(255, 255, 255, 0.1);
  font-size: 24px;
}
.hero-chart {
    height: 170px;
    margin-top: 34px;
    padding: 20px;
    display: flex;
    align-items: flex-end;
    gap: 16px;
    border-radius: 24px;
    background: rgba(234,247,255,0.8);
}
.hero-chart .bar {
    flex: 1;
    border-radius: 999px 999px 8px 8px;
    background: linear-gradient(
        180deg,
        var(--cyan),
        var(--blue)
    );
    box-shadow: 0 12px 22px rgba(0,110,234,.18);
    animation: barRise 1.8s ease both;
}
.bar-1{
    height:45%;
}
.bar-2{
    height:70%;
}
.bar-3{
    height:52%;
}
.bar-4{
    height:86%;
}
.bar-5{
    height:64%;
}
.bar-6{
    height:95%;
}
@keyframes barRise {
    from{
        height:10%;
    }
}
.service-pills {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.service-pills span {
  padding: 9px 13px;
  color: var(--deep-blue);
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(0, 110, 234, 0.12);
}
.floating-card {
  position: absolute;
  width: 245px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 13px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(8, 47, 120, 0.12);
  box-shadow: 0 22px 50px rgba(6, 25, 54, 0.13);
  backdrop-filter: blur(16px);
  animation: floatCard 5s ease-in-out infinite;
}
.floating-card.top {
  top: 58px;
  right: 0;
}
.floating-card.bottom {
  left: 0;
  bottom: 78px;
  animation-delay: 1.4s;
}
.floating-card i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}
.floating-card strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
}
.floating-card span {
  display: block;
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 12px;
}
@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
@media (max-width: 1100px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero-content {
    text-align: center;
  }
  .hero-badge,
  .hero-content h1,
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-trust {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 650px) {
  .hero-section {
    padding: 70px 16px;
  }
  .hero-content h1 {
    letter-spacing: -1.5px;
  }
  .hero-content p {
    font-size: 16px;
  }
  .hero-btn {
    width: 100%;
  }
  .hero-trust {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-visual {
    min-height: auto;
  }
  .hero-card {
    min-height: auto;
    border-radius: 26px;
  }
  .floating-card {
    position: static;
    width: 100%;
    margin-top: 16px;
    animation: none;
  }
}

.services-overview {
    position: relative;
    padding: 50px 24px;
    background: var(--white);
    overflow: hidden;
}
.services-overview::before {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;
    left: -220px;
    top: 80px;
    background: radial-gradient(circle, rgba(24,184,255,0.16), transparent 68%);
    pointer-events: none;
}
.services-container {
    position: relative;
    max-width: 1320px;
    margin: 0 auto;
}
.services-header {
    margin-bottom: 54px;
}
.section-badge {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 9px 15px;
    color: var(--deep-blue);
    font-size: 14px;
    font-weight: 800;
    border-radius: 999px;
    background: var(--sky);
}
.services-header h2 {
    color: var(--navy);
    font-size: clamp(40px, 4vw, 50px);
    line-height: 1.08;
    letter-spacing: -1.8px;
}
.services-header p {
    margin-top: 18px;
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.7;
}
.services-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr 1fr;
    gap: 22px;
}
.service-card {
    min-height: 360px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid var(--border);
    border-radius: 30px;
    background: linear-gradient(180deg, #ffffff, #f8fcff);
    box-shadow: 0 20px 50px rgba(6,25,54,0.06);
    transition: 0.35s ease;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(6,25,54,0.12);
    border-color: rgba(0,110,234,0.22);
}
.service-card.featured {
    color: var(--white);
    background:
        radial-gradient(circle at 85% 20%, rgba(24,184,255,0.32), transparent 32%),
        linear-gradient(135deg, var(--navy), var(--deep-blue));
}
.service-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 28px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    color: var(--white);
    font-size: 24px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 16px 34px rgba(0,110,234,0.28);
}
.service-card.featured .service-icon {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
}
.service-card h3 {
    color: var(--navy);
    font-size: 23px;
    line-height: 1.25;
    margin-bottom: 15px;
}
.service-card.featured h3 {
    color: var(--white);
}
.service-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}
.service-card.featured p {
    color: rgba(255,255,255,0.72);
}
.service-card a {
    margin-top: auto;
    padding-top: 28px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}
.service-card.featured a {
    color: var(--cyan);
}
.service-card a i {
    transition: 0.3s ease;
}
.service-card a:hover i {
    transform: translateX(5px);
}
@media (max-width: 1150px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-card {
        min-height: 320px;
    }
}
@media (max-width: 650px) {
    .services-overview {
        padding: 75px 16px;
    }
    .services-header {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-card {
        min-height: auto;
        padding: 26px;
        border-radius: 24px;
    }
}

.intro-section {
    position: relative;
    padding: 50px 24px;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 15%, rgba(24,184,255,.14), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
}
.intro-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(15px);
}
.intro-shape-one {
    width: 260px;
    height: 260px;
    right: 8%;
    top: 12%;
    background: rgba(0,110,234,.1);
}
.intro-shape-two {
    width: 180px;
    height: 180px;
    left: 4%;
    bottom: 8%;
    background: rgba(24,184,255,.16);
}
.intro-container {
    position: relative;
    max-width: 1320px;
    margin: auto;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: center;
}
.intro-left h2 {
    margin: 20px 0;
    color: var(--navy);
    font-size: clamp(40px, 4vw, 50px);
    line-height: 1.08;
    letter-spacing: -2.2px;
}
.intro-left p {
    max-width: 600px;
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.8;
}
.intro-points {
    margin-top: 30px;
    display: grid;
    gap: 14px;
}
.intro-points div {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--navy);
    font-weight: 700;
}
.intro-points i {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    color: white;
    font-size: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
}
.intro-btn {
    margin-top: 34px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    color: white;
    font-weight: 800;
    text-decoration: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 18px 42px rgba(0,110,234,.28);
    transition: .35s ease;
}
.intro-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 52px rgba(0,110,234,.38);
}
.intro-visual {
    position: relative;
    min-height: 560px;
    display: grid;
    place-items: center;
}
.intro-main-card {
    position: relative;
    width: min(100%, 520px);
    padding: 34px;
    border-radius: 38px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.62)),
        linear-gradient(135deg, rgba(0,110,234,.14), rgba(24,184,255,.08));
    border: 1px solid rgba(8,47,120,.12);
    box-shadow: 0 35px 90px rgba(6,25,54,.16);
    backdrop-filter: blur(18px);
}
.intro-main-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(24,184,255,.65), transparent, rgba(0,110,234,.45));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.intro-card-label {
    display: inline-flex;
    padding: 9px 14px;
    color: var(--deep-blue);
    font-size: 13px;
    font-weight: 800;
    border-radius: 999px;
    background: rgba(234,247,255,.9);
    border: 1px solid rgba(0,110,234,.12);
}
.intro-ring {
    position: relative;
    width: 255px;
    height: 255px;
    margin: 42px auto;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle, rgba(24,184,255,.16), transparent 58%),
        conic-gradient(from 120deg, var(--blue), var(--cyan), var(--deep-blue), var(--blue));
    box-shadow:
        inset 0 0 0 18px rgba(255,255,255,.75),
        0 22px 50px rgba(0,110,234,.18);
}
.intro-ring::before {
    content: "";
    position: absolute;
    inset: 34px;
    border-radius: 50%;
    background: white;
    box-shadow: inset 0 0 30px rgba(0,110,234,.08);
}
.intro-ring-core {
    position: relative;
    z-index: 2;
    width: 92px;
    height: 92px;
    display: grid;
    place-items: center;
    color: white;
    font-size: 34px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    box-shadow: 0 22px 45px rgba(6,25,54,.24);
}
.orbit-item {
    position: absolute;
    z-index: 3;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    color: var(--blue);
    border-radius: 18px;
    background: white;
    box-shadow: 0 18px 38px rgba(6,25,54,.14);
}
.orbit-one {
    top: 18px;
    left: 42px;
}
.orbit-two {
    right: 14px;
    top: 92px;
}
.orbit-three {
    left: 88px;
    bottom: 5px;
}
.intro-progress {
    display: grid;
    gap: 12px;
}
.intro-progress div {
    display: flex;
    justify-content: space-between;
    color: var(--navy);
    font-size: 14px;
    font-weight: 800;
}
.progress-line {
    height: 9px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(8,47,120,.08);
}
.progress-fill {
    height: 100%;
    display: block;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
}
.progress-one {
    width: 92%;
}
.progress-two {
    width: 96%;
}
.progress-three {
    width: 89%;
}
.intro-floating-card {
    position: absolute;
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(8,47,120,.12);
    box-shadow: 0 24px 60px rgba(6,25,54,.14);
    backdrop-filter: blur(16px);
}
.card-growth {
    top: 28px;
    right: 0;
    width: 190px;
    padding: 24px;
    border-radius: 26px;
}
.card-growth h3 {
    font-size: 42px;
    line-height: 1;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.card-growth span {
    display: block;
    margin-top: 8px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.5;
}
.card-market {
    left: 0;
    bottom: 70px;
    width: 270px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-radius: 22px;
}
.card-market i {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    color: white;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
}
.card-market strong {
    display: block;
    color: var(--navy);
    font-size: 15px;
}
.card-market span {
    display: block;
    margin-top: 4px;
    color: var(--text-muted);
    font-size: 12px;
}
@media(max-width: 1050px) {
    .intro-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .intro-left {
        text-align: center;
    }
    .intro-left p {
        margin-left: auto;
        margin-right: auto;
    }
    .intro-points div {
        justify-content: center;
    }
}
@media(max-width: 650px) {
    .intro-section {
        padding: 75px 16px;
    }
    .intro-visual {
        min-height: auto;
        display: block;
    }
    .intro-main-card {
        padding: 24px;
        border-radius: 28px;
    }
    .intro-ring {
        width: 220px;
        height: 220px;
    }
    .intro-floating-card {
        position: static;
        width: 100%;
        margin-top: 16px;
    }
    .card-market {
        width: 100%;
    }
}

.growth-proof {
    position: relative;
    padding: 50px 24px;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 20%, rgba(24,184,255,.18), transparent 32%),
        radial-gradient(circle at 85% 80%, rgba(0,110,234,.24), transparent 30%),
        linear-gradient(135deg, #041226, #061936 48%, #082f78);
}
.growth-proof::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(to bottom, black, transparent 90%);
}
.growth-proof-container {
    position: relative;
    max-width: 1320px;
    margin: auto;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
    align-items: center;
}
.dark-badge {
    display: inline-flex;
    margin-bottom: 20px;
    padding: 9px 15px;
    color: var(--cyan);
    font-size: 14px;
    font-weight: 800;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
}
.growth-proof-left h2 {
    color: white;
    font-size: clamp(40px, 4vw, 50px);
    line-height: 1.08;
    letter-spacing: -2px;
}
.growth-proof-left p {
    max-width: 560px;
    margin-top: 22px;
    color: rgba(255,255,255,.68);
    font-size: 17px;
    line-height: 1.8;
}
.growth-proof-btn {
    margin-top: 34px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    color: white;
    font-weight: 800;
    text-decoration: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 20px 45px rgba(0,110,234,.34);
    transition: .35s ease;
}
.growth-proof-btn:hover {
    transform: translateY(-4px);
}
.growth-proof-right {
    display: grid;
    gap: 18px;
}
.proof-item {
    padding: 26px;
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 20px;
    border-radius: 28px;
    background: rgba(255,255,255,.075);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(18px);
    transition: .35s ease;
}
.proof-item:hover {
    transform: translateX(10px);
    background: rgba(255,255,255,.11);
    border-color: rgba(24,184,255,.35);
}
.proof-item span {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: var(--cyan);
    font-weight: 900;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
}
.proof-item h3 {
    color: white;
    font-size: 21px;
    margin-bottom: 8px;
}
.proof-item p {
    color: rgba(255,255,255,.64);
    line-height: 1.7;
    font-size: 15px;
}
@media(max-width: 992px) {
    .growth-proof-container {
        grid-template-columns: 1fr;
    }
}
@media(max-width: 650px) {
    .growth-proof {
        padding: 75px 16px;
    }
    .proof-item {
        grid-template-columns: 1fr;
    }
    .proof-item:hover {
        transform: translateY(-6px);
    }
}

.explore-section {
    padding: 50px 24px;
    background:
        radial-gradient(circle at 12% 15%, rgba(24,184,255,.12), transparent 30%),
        linear-gradient(180deg, #ffffff, #f5f9ff);
}
.explore-container {
    max-width: 1320px;
    margin: auto;
}
.explore-header {
    max-width: 820px;
    margin-bottom: 55px;
}
.explore-header h2 {
    margin-top: 18px;
    color: var(--navy);
    font-size: clamp(40px, 4vw, 50px);
    line-height: 1.08;
    letter-spacing: -2px;
}
.explore-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--border);
    border-radius: 34px;
    overflow: hidden;
    background: white;
    box-shadow: 0 30px 80px rgba(6,25,54,.08);
}
.explore-card {
    min-height: 360px;
    padding: 34px;
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: white;
    border-right: 1px solid var(--border);
    transition: .4s ease;
}
.explore-card:last-child {
    border-right: 0;
}
.explore-card span {
    color: var(--cyan);
    font-size: 14px;
    font-weight: 900;
}
.explore-card h3 {
    margin-top: auto;
    color: var(--navy);
    font-size: 30px;
    letter-spacing: -.8px;
}
.explore-card p {
    margin-top: 14px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}
.explore-card i {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: var(--blue);
    border-radius: 50%;
    background: var(--sky);
    transition: .4s ease;
}
.explore-card:hover {
    background:
        radial-gradient(circle at top right, rgba(24,184,255,.22), transparent 32%),
        linear-gradient(135deg, var(--navy), var(--deep-blue));
    transform: translateY(-10px);
    z-index: 2;
    box-shadow: 0 28px 70px rgba(6,25,54,.18);
}
.explore-card:hover h3,
.explore-card:hover p {
    color: white;
}
.explore-card:hover span {
    color: var(--cyan);
}
.explore-card:hover i {
    color: white;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    transform: rotate(-35deg);
}
@media(max-width: 1100px) {
    .explore-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .explore-card:nth-child(2) {
        border-right: 0;
    }
    .explore-card:nth-child(1),
    .explore-card:nth-child(2) {
        border-bottom: 1px solid var(--border);
    }
}
@media(max-width: 650px) {
    .explore-section {
        padding: 75px 16px;
    }
    .explore-grid {
        grid-template-columns: 1fr;
        border-radius: 26px;
    }
    .explore-card {
        min-height: 280px;
        border-right: 0;
        border-bottom: 1px solid var(--border);
        padding: 28px;
    }
    .explore-card:last-child {
        border-bottom: 0;
    }
}

.process-section {
    position: relative;
    padding: 50px 24px;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(24,184,255,.2), transparent 30%),
        radial-gradient(circle at 85% 80%, rgba(0,110,234,.28), transparent 32%),
        linear-gradient(135deg, #041226, #061936 48%, #082f78);
}
.process-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(to bottom, black, transparent 88%);
}
.process-container {
    position: relative;
    max-width: 1320px;
    margin: auto;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 80px;
    align-items: center;
}
.process-left h2 {
    color: white;
    font-size: clamp(40px, 4vw, 50px);
    line-height: 1.08;
    letter-spacing: -2px;
}
.process-left p {
    max-width: 560px;
    margin-top: 22px;
    color: rgba(255,255,255,.68);
    font-size: 17px;
    line-height: 1.8;
}
.process-btn {
    margin-top: 34px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    color: white;
    font-weight: 800;
    text-decoration: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 20px 45px rgba(0,110,234,.38);
    transition: .35s ease;
}
.process-btn:hover {
    transform: translateY(-4px);
}
.process-track {
    position: relative;
    padding-left: 42px;
}
.process-track::before {
    content: "";
    position: absolute;
    left: 11px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: linear-gradient(
        180deg,
        transparent,
        rgba(24,184,255,.75),
        rgba(0,110,234,.4),
        transparent
    );
    box-shadow: 0 0 35px rgba(24,184,255,.45);
}
.process-step {
    position: relative;
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 26px;
    padding: 28px 0;
}
.process-step::before {
    content: "";
    position: absolute;
    left: -39px;
    top: 43px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow:
        0 0 0 10px rgba(24,184,255,.12),
        0 0 35px rgba(24,184,255,.8);
}
.process-step span {
    color: transparent;
    font-size: 52px;
    font-weight: 900;
    line-height: 1;
    -webkit-text-stroke: 1px rgba(255,255,255,.35);
}
.process-step h3 {
    color: white;
    font-size: 28px;
    margin-bottom: 10px;
}
.process-step p {
    max-width: 520px;
    color: rgba(255,255,255,.62);
    font-size: 15px;
    line-height: 1.7;
}
.process-step:hover::before {
    transform: scale(1.25);
}
@media(max-width: 992px) {
    .process-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }
}
@media(max-width: 650px) {
    .process-section {
        padding: 75px 16px;
    }
    .process-track {
        padding-left: 34px;
    }
    .process-step {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .process-step span {
        font-size: 42px;
    }
    .process-step h3 {
        font-size: 24px;
    }
}

.impact-section {
    position: relative;
    padding: 70px 24px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 20%, rgba(24,184,255,.16), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
}
.impact-container {
    max-width: 1320px;
    margin: auto;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
    align-items: center;
}
.impact-left h2 {
    margin-top: 18px;
    color: var(--navy);
    font-size: clamp(40px, 4vw, 50px);
    line-height: 1.03;
    letter-spacing: -2.5px;
}
.impact-left p {
    max-width: 580px;
    margin-top: 24px;
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.8;
}
.impact-right {
    min-height: 560px;
    display: grid;
    place-items: center;
}
.impact-orbit {
    position: relative;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(255,255,255,.95) 0 34%, transparent 35%),
        conic-gradient(from 180deg, rgba(0,110,234,.12), rgba(24,184,255,.55), rgba(8,47,120,.2), rgba(0,110,234,.12));
    box-shadow:
        inset 0 0 0 1px rgba(8,47,120,.08),
        0 40px 90px rgba(6,25,54,.12);
}
.impact-orbit::before,
.impact-orbit::after {
    content: "";
    position: absolute;
    inset: 70px;
    border-radius: 50%;
    border: 1px dashed rgba(0,110,234,.28);
}
.impact-orbit::after {
    inset: 135px;
    border-style: solid;
    border-color: rgba(24,184,255,.28);
}
.impact-core {
    position: absolute;
    inset: 50%;
    width: 190px;
    height: 190px;
    transform: translate(-50%, -50%);
    display: grid;
    place-content: center;
    text-align: center;
    border-radius: 46px;
    color: white;
    background:
        radial-gradient(circle at top right, rgba(24,184,255,.42), transparent 45%),
        linear-gradient(135deg, var(--navy), var(--deep-blue));
    box-shadow: 0 30px 70px rgba(6,25,54,.24);
}
.impact-core h3 {
    font-size: 38px;
    line-height: 1;
}
.impact-core span {
    margin-top: 8px;
    color: rgba(255,255,255,.7);
    font-weight: 700;
}
.impact-point {
    position: absolute;
    width: 130px;
    height: 130px;
    display: grid;
    place-content: center;
    text-align: center;
    border-radius: 34px;
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(8,47,120,.1);
    box-shadow: 0 25px 55px rgba(6,25,54,.12);
    backdrop-filter: blur(18px);
}
.impact-point strong {
    color: var(--navy);
    font-size: 24px;
}
.impact-point span {
    margin-top: 6px;
    color: var(--text-muted);
    font-size: 13px;
}
.point-one {
    top: 18px;
    left: 195px;
}
.point-two {
    top: 190px;
    right: -20px;
}
.point-three {
    bottom: 28px;
    left: 185px;
}
.point-four {
    top: 190px;
    left: -20px;
}
.impact-strip {
    margin-top: 80px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy), var(--deep-blue));
}
.impact-strip-track {
    padding: 22px 0;
    display: flex;
    gap: 45px;
    white-space: nowrap;
    animation: impactMove 22s linear infinite;
}
.impact-strip-track span {
    color: rgba(255,255,255,.76);
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
@keyframes impactMove {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
@media(max-width: 1050px) {
    .impact-container {
        grid-template-columns: 1fr;
    }
    .impact-left {
        text-align: center;
    }
    .impact-left p {
        margin-left: auto;
        margin-right: auto;
    }
}
@media(max-width: 650px) {
    .impact-section {
        padding: 75px 16px 0;
    }
    .impact-right {
        min-height: 430px;
    }
    .impact-orbit {
        width: 340px;
        height: 340px;
    }
    .impact-core {
        width: 135px;
        height: 135px;
        border-radius: 32px;
    }
    .impact-core h3 {
        font-size: 28px;
    }
    .impact-point {
        width: 95px;
        height: 95px;
        border-radius: 24px;
    }
    .impact-point strong {
        font-size: 18px;
    }
    .point-one {
        top: 0;
        left: 122px;
    }
    .point-two {
        top: 122px;
        right: -8px;
    }
    .point-three {
        bottom: 0;
        left: 122px;
    }
    .point-four {
        top: 122px;
        left: -8px;
    }
}

.premium-cta {
    position: relative;
    padding: 60px 24px;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 20%, rgba(24,184,255,.18), transparent 30%),
        radial-gradient(circle at 85% 85%, rgba(0,110,234,.2), transparent 32%),
        linear-gradient(135deg, #041226, #061936 48%, #082f78);
}
.premium-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(to bottom, black, transparent 90%);
}
.premium-cta::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -180px;
    top: -180px;
    border-radius: 50%;
    background: rgba(24,184,255,.22);
    filter: blur(90px);
}
.premium-cta-container {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 70px;
    align-items: center;
}
.premium-cta-label {
    display: inline-flex;
    margin-bottom: 22px;
    padding: 9px 15px;
    color: var(--cyan);
    font-size: 14px;
    font-weight: 800;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
}
.premium-cta-content h2 {
    max-width: 820px;
    color: white;
    font-size: clamp(40px, 4vw, 50px);
    line-height: 1;
    letter-spacing: -3px;
}
.premium-cta-content p {
    max-width: 620px;
    margin-top: 24px;
    color: rgba(255,255,255,.68);
    font-size: 17px;
    line-height: 1.8;
}
.premium-cta-actions {
    margin-top: 38px;
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}
.premium-cta-primary {
    padding: 16px 28px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 800;
    text-decoration: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 20px 45px rgba(0,110,234,.38);
    transition: .35s ease;
}
.premium-cta-primary:hover {
    transform: translateY(-4px);
}
.premium-cta-link {
    color: rgba(255,255,255,.82);
    font-weight: 800;
    text-decoration: none;
}
.premium-cta-form {
    padding: 34px;
    border-radius: 32px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: 0 30px 80px rgba(0,0,0,.22);
    backdrop-filter: blur(22px);
}
.premium-cta-form h3 {
    margin-bottom: 24px;
    color: white;
    font-size: 26px;
    letter-spacing: -.6px;
}
.premium-cta-form form {
    display: grid;
    gap: 14px;
}
.premium-cta-form input,
.premium-cta-form select {
    width: 100%;
    height: 54px;
    padding: 0 16px;
    border: 1px solid rgba(255,255,255,.14);
    outline: none;
    border-radius: 16px;
    color: white;
    background: rgba(255,255,255,.08);
}
.premium-cta-form input::placeholder {
    color: rgba(255,255,255,.56);
}
.premium-cta-form select {
    color: rgba(255,255,255,.7);
}
.premium-cta-form button {
    height: 56px;
    margin-top: 6px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    color: white;
    font-weight: 900;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 18px 35px rgba(0,110,234,.28);
}
@media(max-width: 1050px) {
    .premium-cta-container {
        grid-template-columns: 1fr;
    }
    .premium-cta-form {
        max-width: 520px;
    }
}
@media(max-width: 650px) {
    .premium-cta {
        padding: 75px 16px;
    }
    .premium-cta-content h2 {
        letter-spacing: -2px;
    }
    .premium-cta-actions,
    .premium-cta-primary {
        width: 100%;
    }
    .premium-cta-primary {
        justify-content: center;
    }
    .premium-cta-form {
        padding: 24px;
        border-radius: 24px;
    }
}

.st-footer {
    position: relative;
    padding: 100px 24px 30px;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 15%, rgba(24,184,255,.16), transparent 32%),
        linear-gradient(180deg, #ffffff, #f5f9ff);
}
.st-footer::before {
    content: "";
    position: absolute;
    inset: auto -15% -45% auto;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(0,110,234,.08);
    filter: blur(40px);
}
.st-footer-container {
    position: relative;
    max-width: 1320px;
    margin: auto;
}
.st-footer-top {
    padding-bottom: 55px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    border-bottom: 1px solid var(--border);
}
.st-footer-brand img {
    width: 220px;
    margin-bottom: 22px;
}
.st-footer-brand p {
    max-width: 520px;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
}
.st-footer-contact {
    text-align: right;
}
.st-footer-contact span {
    display: block;
    margin-bottom: 18px;
    color: var(--navy);
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -1px;
}
.st-footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 26px;
    color: white;
    font-weight: 800;
    text-decoration: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 18px 38px rgba(0,110,234,.28);
}
.st-footer-main {
    padding: 55px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}
.st-footer-column h4 {
    margin-bottom: 20px;
    color: var(--navy);
    font-size: 17px;
}
.st-footer-column a,
.st-footer-column span {
    display: block;
    margin-bottom: 13px;
    color: var(--text-muted);
    font-size: 14px;
    text-decoration: none;
    transition: .3s ease;
}
.st-footer-column a:hover {
    color: var(--blue);
    transform: translateX(5px);
}
.st-social {
    margin-top: 22px;
    display: flex;
    gap: 12px;
}
.st-social a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--blue);
    background: white;
    border: 1px solid var(--border);
}
.st-footer-bottom {
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid var(--border);
}
.st-footer-bottom p,
.st-footer-bottom a {
    color: var(--text-muted);
    font-size: 14px;
    text-decoration: none;
}
.st-footer-bottom div {
    display: flex;
    gap: 24px;
}
.st-floating-actions {
    position: fixed;
    right: 26px;
    bottom: 26px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.st-scroll-top,
.st-chat-toggle {
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    color: white;
    font-size: 18px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 18px 42px rgba(0,110,234,.32);
}
.st-chatbot {
    position: fixed;
    right: 100px;
    bottom: 26px;
    z-index: 999;
    width: 360px;
    overflow: hidden;
    display: none;
    border-radius: 28px;
    background: white;
    border: 1px solid var(--border);
    box-shadow: 0 30px 90px rgba(6,25,54,.22);
}
.st-chat-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    background: linear-gradient(135deg, var(--navy), var(--deep-blue));
}
.st-chat-header strong,
.st-chat-header span {
    display: block;
}
.st-chat-header span {
    margin-top: 4px;
    color: rgba(255,255,255,.65);
    font-size: 12px;
}
.st-chat-close {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    color: white;
    background: rgba(255,255,255,.1);
}
.st-chat-body {
    height: 260px;
    padding: 18px;
    overflow-y: auto;
    background: #f6faff;
}
.chat-message {
    max-width: 82%;
    margin-bottom: 12px;
    padding: 12px 14px;
    font-size: 14px;
    line-height: 1.5;
    border-radius: 16px;
}
.chat-message.bot {
    color: var(--navy);
    background: white;
    border: 1px solid var(--border);
}
.chat-message.user {
    margin-left: auto;
    color: white;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
}
.st-chat-options {
    padding: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    background: white;
}
.st-chat-options button {
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    cursor: pointer;
    color: var(--navy);
    background: #f6faff;
    font-size: 12px;
}
.st-chat-form {
    padding: 14px;
    display: flex;
    gap: 10px;
    border-top: 1px solid var(--border);
}
.st-chat-form input {
    flex: 1;
    height: 44px;
    padding: 0 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    outline: none;
}
.st-chat-form button {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    color: white;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
}
.st-chatbot.active {
    display: flex;
    flex-direction: column;
}
.quick-options {
    padding: 0 18px 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    background: #f6faff;
}
.quick-btn {
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    cursor: pointer;
    color: var(--navy);
    background: #ffffff;
    font-size: 12px;
    font-weight: 700;
}
.chat-links {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.chat-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
}
.whatsapp-btn {
    background: #25d366;
}
.typing {
    width: fit-content;
    display: flex;
    gap: 4px;
}
.typing span {
    width: 6px;
    height: 6px;
    display: block;
    border-radius: 50%;
    background: var(--blue);
    animation: typingBounce 0.8s infinite alternate;
}
.typing span:nth-child(2) {
    animation-delay: 0.15s;
}
.typing span:nth-child(3) {
    animation-delay: 0.3s;
}
@keyframes typingBounce {
    from {
        transform: translateY(0);
        opacity: 0.4;
    }
    to {
        transform: translateY(-5px);
        opacity: 1;
    }
}
@media(max-width: 900px) {
    .st-footer-top,
    .st-footer-bottom {
        flex-direction: column;
    }
    .st-footer-contact {
        text-align: left;
    }
    .st-footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media(max-width: 575px) {
    .st-footer {
        padding: 75px 16px 25px;
    }
    .st-footer-main {
        grid-template-columns: 1fr;
    }
    .st-chatbot {
        right: 16px;
        left: 16px;
        bottom: 96px;
        width: auto;
    }
    .st-floating-actions {
        right: 16px;
        bottom: 16px;
    }
}

.about-hero-v2 {
    position: relative;
    padding: 60px 24px;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 20%, rgba(24,184,255,.16), transparent 32%),
        radial-gradient(circle at 90% 15%, rgba(0,110,234,.12), transparent 28%),
        linear-gradient(180deg, #ffffff, #f4f9ff);
}
.about-hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(8,47,120,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8,47,120,.045) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.about-hero-container {
    position: relative;
    max-width: 1320px;
    margin: auto;
}
.about-breadcrumb {
    margin-bottom: 55px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 700;
}
.about-breadcrumb a {
    color: var(--blue);
    text-decoration: none;
}
.about-breadcrumb i {
    color: var(--text-muted);
    font-size: 11px;
}
.about-breadcrumb span {
    color: var(--navy);
}
.about-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 70px;
    align-items: center;
}
.about-hero-content h1 {
    max-width: 820px;
    margin-top: 22px;
    color: var(--navy);
    font-size: clamp(40px, 4vw, 50px);
    line-height: .96;
    letter-spacing: -4px;
}
.about-hero-content p {
    max-width: 680px;
    margin-top: 28px;
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.8;
}
.about-hero-points {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.about-hero-points span {
    padding: 11px 16px;
    color: var(--deep-blue);
    font-size: 14px;
    font-weight: 800;
    border-radius: 999px;
    background: white;
    border: 1px solid var(--border);
    box-shadow: 0 12px 28px rgba(6,25,54,.06);
}
.about-hero-panel {
    position: relative;
    padding: 42px;
    border-radius: 36px;
    color: white;
    background:
        radial-gradient(circle at top right, rgba(24,184,255,.3), transparent 34%),
        linear-gradient(135deg, var(--navy), var(--deep-blue));
    box-shadow: 0 35px 90px rgba(6,25,54,.22);
}
.about-hero-panel::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 35px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
    pointer-events: none;
}
.about-hero-panel > * {
    position: relative;
    z-index: 2;
}
.about-hero-panel > span {
    color: var(--cyan);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.about-hero-panel h3 {
    margin-top: 22px;
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -1.2px;
}
.about-panel-line {
    height: 1px;
    margin: 38px 0;
    background: linear-gradient(90deg, rgba(255,255,255,.12), var(--cyan), rgba(255,255,255,.08));
}
.about-panel-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.about-panel-meta strong {
    display: block;
    color: white;
    font-size: 32px;
    line-height: 1;
}
.about-panel-meta small {
    display: block;
    margin-top: 9px;
    color: rgba(255,255,255,.62);
    font-size: 13px;
}
@media(max-width: 992px) {
    .about-hero-grid {
        grid-template-columns: 1fr;
    }
    .about-breadcrumb {
        margin-bottom: 35px;
    }
}
@media(max-width: 650px) {
    .about-hero-v2 {
        padding: 80px 16px;
    }
    .about-hero-content h1 {
        letter-spacing: -2.5px;
    }
    .about-hero-panel {
        padding: 28px;
        border-radius: 28px;
    }
    .about-hero-panel h3 {
        font-size: 27px;
    }
    .about-panel-meta {
        grid-template-columns: 1fr;
    }
}

.about-story {
    padding: 50px 24px;
    background: #ffffff;
}
.about-story-container {
    max-width: 1320px;
    margin: auto;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
}
.about-story-left h2 {
    margin-top: 18px;
    color: var(--navy);
    font-size: clamp(40px, 4vw, 50px);
    line-height: 1.08;
    letter-spacing: -2px;
}
.about-story-right {
    padding-top: 46px;
}
.about-story-right p {
    margin-bottom: 22px;
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.9;
}
@media(max-width: 992px) {
    .about-story-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .about-story-right {
        padding-top: 0;
    }
}
@media(max-width: 650px) {
    .about-story {
        padding: 75px 16px;
    }
}

.about-principles {
    position: relative;
    padding: 50px 24px;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 20%, rgba(24,184,255,.22), transparent 32%),
        radial-gradient(circle at 90% 80%, rgba(0,110,234,.24), transparent 30%),
        linear-gradient(135deg, #041226, #061936 50%, #082f78);
}
.about-principles::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(to bottom, black, transparent 88%);
}
.about-principles-container {
    position: relative;
    max-width: 1320px;
    margin: auto;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 80px;
    align-items: center;
}
.principles-left h2 {
    margin-top: 20px;
    color: white;
    font-size: clamp(40px, 4vw, 50px);
    line-height: 1;
    letter-spacing: -2.5px;
}
.principles-left p {
    max-width: 520px;
    margin-top: 24px;
    color: rgba(255,255,255,.68);
    font-size: 17px;
    line-height: 1.8;
}
.principles-right {
    display: grid;
    gap: 18px;
}
.principle-item {
    position: relative;
    padding: 30px 34px 30px 110px;
    overflow: hidden;
    border-radius: 30px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(18px);
    transition: .35s ease;
}
.principle-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(24,184,255,.14), transparent 55%);
    opacity: 0;
    transition: .35s ease;
}
.principle-item:hover,
.principle-item.active {
    transform: translateX(10px);
    background: rgba(255,255,255,.12);
    border-color: rgba(24,184,255,.38);
}
.principle-item:hover::before,
.principle-item.active::before {
    opacity: 1;
}
.principle-item span {
    position: absolute;
    left: 30px;
    top: 30px;
    color: transparent;
    font-size: 46px;
    font-weight: 900;
    line-height: 1;
    -webkit-text-stroke: 1px rgba(24,184,255,.75);
}
.principle-item h3,
.principle-item p {
    position: relative;
    z-index: 2;
}
.principle-item h3 {
    color: white;
    font-size: 28px;
    margin-bottom: 10px;
}
.principle-item p {
    max-width: 650px;
    color: rgba(255,255,255,.64);
    line-height: 1.7;
}
@media(max-width: 992px) {
    .about-principles-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}
@media(max-width: 650px) {
    .about-principles {
        padding: 75px 16px;
    }
    .principle-item {
        padding: 28px;
    }
    .principle-item span {
        position: static;
        display: block;
        margin-bottom: 18px;
    }
    .principle-item:hover,
    .principle-item.active {
        transform: translateY(-6px);
    }
}

.about-capabilities {
    padding: 0 0 70px;
    background: #ffffff;
    overflow: hidden;
}
.capabilities-marquee {
    overflow: hidden;
    padding: 30px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: #f7fbff;
}
.capabilities-track {
    display: flex;
    gap: 70px;
    white-space: nowrap;
    animation: capabilitiesMove 24s linear infinite;
}
.capabilities-track span {
    color: transparent;
    font-size: clamp(44px, 7vw, 104px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -4px;
    -webkit-text-stroke: 1px rgba(0,110,234,.32);
}
@keyframes capabilitiesMove {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
.capabilities-container {
    max-width: 1320px;
    margin: auto;
    padding: 100px 24px 0;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
}
.capabilities-left {
    position: sticky;
    top: 120px;
    align-self: start;
}
.capabilities-left h2 {
    margin-top: 18px;
    color: var(--navy);
    font-size: clamp(40px, 4vw, 50px);
    line-height: 1;
    letter-spacing: -2.6px;
}
.capabilities-btn{
    margin-top:35px;
    width:fit-content;
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:16px 28px;
    border-radius:999px;
    color:white;
    font-weight:800;
    text-decoration:none;
    background:
    linear-gradient(
        135deg,
        var(--blue),
        var(--cyan)
    );
    box-shadow: 0 18px 45px rgba(0,110,234,.28);
    transition:.4s ease;
}
.capabilities-btn:hover{
    transform:translateY(-6px);
}
.capabilities-btn i{
    transition:.4s;
}
.capabilities-btn:hover i{
    transform:translateX(5px);
}
.capabilities-right {
    border-top: 1px solid var(--border);
}
.capability-row {
    padding: 34px 0;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 35px;
    border-bottom: 1px solid var(--border);
}
.capability-row h3 {
    color: var(--navy);
    font-size: 26px;
    letter-spacing: -1px;
}
.capability-row p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
}
@media(max-width: 992px) {
    .capabilities-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    .capabilities-left {
        position: static;
    }
}
@media(max-width: 650px) {
    .about-capabilities {
        padding-bottom: 75px;
    }
    .capabilities-container {
        padding: 75px 16px 0;
    }
    .capability-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.process-overview {
    padding: 60px 24px;
    background: #ffffff;
}
.process-overview-container {
    max-width: 1320px;
    margin: auto;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: start;
}
.process-overview-left {
    position: sticky;
    top: 120px;
}
.process-overview-left h2 {
    margin-top: 18px;
    color: var(--navy);
    font-size: clamp(40px, 4vw, 50px);
    line-height: 1;
    letter-spacing: -2.5px;
}
.process-overview-left p {
    margin-top: 22px;
    max-width: 560px;
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.8;
}
.process-overview-btn {
    margin-top: 34px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    color: white;
    font-weight: 800;
    text-decoration: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 18px 45px rgba(0,110,234,.28);
}
.process-overview-right {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--border);
}
.process-overview-step {
    padding: 34px 0;
    display: grid;
    grid-template-columns: 90px .7fr 1fr;
    gap: 24px;
    align-items: start;
    border-bottom: 1px solid var(--border);
}
.process-overview-step span {
    color: transparent;
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    -webkit-text-stroke: 1px rgba(0,110,234,.42);
}
.process-overview-step h3 {
    color: var(--navy);
    font-size: 28px;
    letter-spacing: -1px;
}
.process-overview-step p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
}
@media(max-width: 992px) {
    .process-overview-container {
        grid-template-columns: 1fr;
    }
    .process-overview-left {
        position: static;
    }
}
@media(max-width: 650px) {
    .process-overview {
        padding: 75px 16px;
    }
    .process-overview-step {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

.faq-section {
    position: relative;
    padding: 50px 24px;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(24,184,255,.14), transparent 30%),
        radial-gradient(circle at 90% 10%, rgba(0,110,234,.1), transparent 28%),
        linear-gradient(180deg, #ffffff, #f6faff);
}
.faq-container {
    max-width: 1200px;
    margin: auto;
}
.faq-section h2 {
    max-width: 760px;
    margin-bottom: 35px;
    color: var(--navy);
    font-size: clamp(40px, 4vw, 50px);
    line-height: 1.05;
    letter-spacing: -2.5px;
}
.faq-search {
    position: relative;
    margin-bottom: 24px;
}
.faq-search input {
    width: 100%;
    height: 62px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid var(--border);
    outline: none;
    color: var(--navy);
    font-size: 15px;
    background: rgba(255,255,255,.9);
    box-shadow: 0 18px 45px rgba(6,25,54,.06);
}
.faq-search input:focus {
    border-color: rgba(0,110,234,.35);
    box-shadow: 0 20px 50px rgba(0,110,234,.12);
}
.faq-categories {
    margin-bottom: 35px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.faq-categories button {
    padding: 11px 18px;
    border-radius: 999px;
    border: 1px solid var(--border);
    cursor: pointer;
    color: var(--navy);
    font-size: 14px;
    font-weight: 800;
    background: #ffffff;
    transition: .3s ease;
}
.faq-categories button:hover,
.faq-categories button.active {
    color: #ffffff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 15px 34px rgba(0,110,234,.24);
}
.faq-list {
    display: grid;
    gap: 16px;
}
.faq-item {
    display: block;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 18px 45px rgba(6,25,54,.055);
    transition: .35s ease;
}
.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 60px rgba(6,25,54,.09);
}
.faq-question {
    width: 100%;
    padding: 24px 26px;
    border: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 22px;
    color: var(--navy);
    font-size: 18px;
    font-weight: 850;
    line-height: 1.45;
    text-align: left;
    background: transparent;
}
.faq-question:hover {
    color: var(--blue);
}
.faq-question span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    color: var(--blue);
    font-size: 22px;
    line-height: 1;
    background: var(--sky);
    transition: .3s ease;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
    transition: max-height .35s ease, padding .35s ease;
}
.faq-item.active {
    border-color: rgba(0,110,234,.24);
    box-shadow: 0 26px 70px rgba(0,110,234,.11);
}
.faq-item.active .faq-answer {
    max-height: 260px;
    padding: 0 26px 26px;
}
.faq-item.active .faq-question span {
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    transform: rotate(45deg);
}
@media(max-width: 650px) {
    .faq-section {
        padding: 75px 16px;
    }
    .faq-search input {
        height: 56px;
        border-radius: 18px;
    }
    .faq-categories {
        display: grid;
        grid-template-columns: 1fr;
    }
    .faq-question {
        padding: 20px;
        font-size: 16px;
    }
    .faq-item.active .faq-answer {
        padding: 0 20px 22px;
    }
}

.error-page {
    min-height: 70vh;
    position: relative;
    padding: 70px 24px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(24,184,255,.16), transparent 30%),
        radial-gradient(circle at 90% 20%, rgba(0,110,234,.12), transparent 28%),
        linear-gradient(180deg, #ffffff, #f5f9ff);
}
.error-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(8,47,120,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8,47,120,.045) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.error-container {
    position: relative;
    max-width: 1320px;
    width: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr .8fr;
    gap: 70px;
    align-items: center;
}
.error-breadcrumb {
    margin-bottom: 34px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 700;
}
.error-breadcrumb a {
    color: var(--blue);
    text-decoration: none;
}
.error-breadcrumb i {
    font-size: 11px;
}
.error-label {
    display: inline-flex;
    padding: 9px 15px;
    color: var(--deep-blue);
    font-size: 14px;
    font-weight: 900;
    border-radius: 999px;
    background: var(--sky);
    border: 1px solid var(--border);
}
.error-content h1 {
    margin-top: 24px;
    color: transparent;
    font-size: clamp(110px, 16vw, 230px);
    line-height: .8;
    font-weight: 950;
    letter-spacing: -10px;
    -webkit-text-stroke: 2px rgba(0,110,234,.45);
}
.error-content h2 {
    max-width: 720px;
    margin-top: 28px;
    color: var(--navy);
    font-size: clamp(40px, 4vw, 50px);
    line-height: 1.05;
    letter-spacing: -2.2px;
}
.error-content p {
    max-width: 620px;
    margin-top: 22px;
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.8;
}
.error-actions {
    margin-top: 36px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.error-primary-btn,
.error-secondary-btn {
    min-height: 54px;
    padding: 0 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 850;
    text-decoration: none;
}
.error-primary-btn {
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 18px 42px rgba(0,110,234,.28);
}
.error-secondary-btn {
    color: var(--navy);
    background: #ffffff;
    border: 1px solid var(--border);
}
.error-links-panel {
    padding: 38px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(24,184,255,.24), transparent 35%),
        linear-gradient(135deg, var(--navy), var(--deep-blue));
    box-shadow: 0 35px 90px rgba(6,25,54,.2);
}
.error-links-panel > span {
    display: block;
    margin-bottom: 24px;
    color: var(--cyan);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.error-links {
    display: grid;
    gap: 12px;
}
.error-links a {
    padding: 16px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,.82);
    text-decoration: none;
    border-radius: 16px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.1);
    transition: .3s ease;
}
.error-links a:hover {
    color: #ffffff;
    background: rgba(255,255,255,.14);
    transform: translateX(6px);
}
@media(max-width: 992px) {
    .error-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}
@media(max-width: 650px) {
    .error-page {
        padding: 80px 16px;
    }
    .error-content h1 {
        letter-spacing: -5px;
    }
    .error-primary-btn,
    .error-secondary-btn {
        width: 100%;
    }
    .error-links-panel {
        padding: 26px;
        border-radius: 26px;
    }
}

.services-directory{
    padding:60px 24px;
    background:#fff;
}
.services-directory-container{
    max-width:1320px;
    margin:auto;
}
.services-directory-header{
    max-width:800px;
    margin-bottom:70px;
}
.services-directory-header h2{
    margin-top:18px;
    color:var(--navy);
    font-size:clamp(40px,4vw,50px);
    line-height:1;
    letter-spacing:-2px;
}
.services-directory-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
}
.service-group{
    padding:35px;
    border-radius:32px;
    border:1px solid var(--border);
    background:
    linear-gradient(
        180deg,
        #ffffff,
        #f8fbff
    );
    transition:.4s ease;
}
.service-group:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(6,25,54,.08);
}
.service-group-head{
    margin-bottom:28px;
}
.service-group-head span{
    color:transparent;
    font-size:48px;
    font-weight:900;
    -webkit-text-stroke:1px rgba(0,110,234,.35);
}
.service-group-head h3{
    margin-top:10px;
    color:var(--navy);
    font-size:30px;
}
.service-links{
    display:grid;
    gap:12px;
}
.service-links a{
    padding:16px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    text-decoration:none;
    color:var(--navy);
    border-radius:16px;
    background:white;
    border:1px solid var(--border);
    transition:.35s;
}
.service-links a:hover{
    color:var(--blue);
    transform:translateX(8px);
}
.service-group-head p{
    margin-top:12px;
    color:var(--text-muted);
    line-height:1.7;
}
.service-sub-groups{
    display:flex;
    flex-direction:column;
    gap:28px;
}
.service-sub-item{
    padding-top:25px;
    border-top:1px solid var(--border);
}
.service-sub-title{
    margin-bottom:18px;
}
.service-sub-title h4{
    color:var(--navy);
    font-size:20px;
    letter-spacing:-.5px;
}
@media(max-width:992px){
    .services-directory-grid{
        grid-template-columns:1fr;
    }
}
@media(max-width:768px){
    .services-directory{
        padding:75px 16px;
    }
    .service-group{
        padding:24px;
    }
}

.service-detail-hero {
    position: relative;
    padding: 50px 24px;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 20%, rgba(24,184,255,.16), transparent 32%),
        radial-gradient(circle at 90% 15%, rgba(0,110,234,.12), transparent 28%),
        linear-gradient(180deg, #ffffff, #f4f9ff);
}
.service-detail-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(8,47,120,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8,47,120,.045) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.service-detail-container {
    position: relative;
    max-width: 1320px;
    margin: auto;
}
.service-detail-breadcrumb {
    margin-bottom: 55px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 700;
}
.service-detail-breadcrumb a {
    color: var(--blue);
    text-decoration: none;
}
.service-detail-breadcrumb i {
    color: var(--text-muted);
    font-size: 11px;
}
.service-detail-breadcrumb span {
    color: var(--navy);
}
.service-detail-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 70px;
    align-items: center;
}
.service-detail-content h1 {
    max-width: 850px;
    margin-top: 22px;
    color: var(--navy);
    font-size:clamp(50px,4vw,60px);
    line-height: .96;
    letter-spacing: -4px;
}
.service-detail-content p {
    max-width: 680px;
    margin-top: 28px;
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.8;
}
.service-detail-actions {
    margin-top: 38px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.service-detail-primary,
.service-detail-secondary {
    min-height: 54px;
    padding: 0 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 850;
    text-decoration: none;
}
.service-detail-primary {
    color: white;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 18px 40px rgba(0,110,234,.3);
}
.service-detail-secondary {
    color: var(--navy);
    background: white;
    border: 1px solid var(--border);
}
.service-detail-panel {
    padding: 38px;
    border-radius: 34px;
    color: white;
    background:
        radial-gradient(circle at top right, rgba(24,184,255,.3), transparent 34%),
        linear-gradient(135deg, var(--navy), var(--deep-blue));
    box-shadow: 0 35px 90px rgba(6,25,54,.22);
}
.service-detail-panel > span {
    display: block;
    margin-bottom: 24px;
    color: var(--cyan);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.snapshot-list {
    display: grid;
    gap: 14px;
}
.snapshot-list div {
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
}
.snapshot-list strong {
    display: block;
    color: white;
    font-size: 15px;
}
.snapshot-list p {
    margin-top: 6px;
    color: rgba(255,255,255,.64);
    font-size: 14px;
    line-height: 1.5;
}
@media(max-width: 992px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
}
@media(max-width: 650px) {
    .service-detail-hero {
        padding: 80px 16px;
    }
    .service-detail-content h1 {
        letter-spacing: -2.5px;
    }
    .service-detail-primary,
    .service-detail-secondary {
        width: 100%;
    }
    .service-detail-panel {
        padding: 26px;
        border-radius: 26px;
    }
}

.service-detail-body {
    padding: 50px 24px;
    background: linear-gradient(180deg, #ffffff, #f7fbff);
}
.service-detail-body-container {
    max-width: 1320px;
    margin: auto;
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 45px;
    align-items: start;
}
.service-sidebar {
    position: sticky;
    top: 110px;
}
.sidebar-toggle {
    display: none;
}
.sidebar-content {
    display: grid;
    gap: 22px;
}
.sidebar-block,
.sidebar-cta {
    padding: 26px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 18px 45px rgba(6,25,54,.055);
}
.sidebar-block h4 {
    margin-bottom: 18px;
    color: var(--navy);
    font-size: 18px;
}
.sidebar-block a {
    padding: 12px 0;
    display: block;
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: .3s ease;
}
.sidebar-block a:last-child {
    border-bottom: 0;
}
.sidebar-block a:hover {
    color: var(--blue);
    padding-left: 8px;
}
.sidebar-cta {
    color: white;
    background:
        radial-gradient(circle at top right, rgba(24,184,255,.28), transparent 35%),
        linear-gradient(135deg, var(--navy), var(--deep-blue));
}
.sidebar-cta span {
    color: var(--cyan);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}
.sidebar-cta h3 {
    margin: 14px 0 24px;
    font-size: 26px;
    line-height: 1.15;
}
.sidebar-cta a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 20px;
    color: white;
    font-weight: 800;
    text-decoration: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
}
.service-main-content {
    min-width: 0;
}
.service-content-section {
    padding: 0 0 70px;
    margin-bottom: 70px;
    border-bottom: 1px solid var(--border);
}
.service-content-section:last-child {
    margin-bottom: 0;
}
.service-content-section h2 {
    margin-bottom: 22px;
    color: var(--navy);
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.05;
    letter-spacing: -2px;
}
.service-content-section p {
    max-width: 850px;
    margin-bottom: 18px;
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.85;
}
.service-content-section ul{
    padding-left: 25px;
    margin-bottom: 15px;
}
.service-content-section ul li, .service-content-section ul li a {
    max-width: 850px;
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.85;
}
.service-content-section ul li a:hover{
    color: var(--blue)
}
.service-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.service-info-grid div {
    padding: 26px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid var(--border);
}
.service-content-section h3{
    margin-bottom: 15px;
}
.service-info-grid h3,
.service-process-list h3 {
    color: var(--navy);
    font-size: 22px;
    margin-bottom: 10px;
}
.service-benefit-list {
    display: grid;
    gap: 14px;
    list-style: none;
}
.service-benefit-list li {
    position: relative;
    padding: 18px 20px 18px 48px;
    color: var(--navy);
    font-weight: 750;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid var(--border);
}
.service-benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 18px;
    top: 17px;
    color: var(--blue);
    font-weight: 900;
}
.service-process-list {
    display: grid;
    gap: 20px;
}
.service-process-list div {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 22px;
    padding: 26px 0;
    border-bottom: 1px solid var(--border);
}
.service-process-list span {
    color: transparent;
    font-size: 44px;
    font-weight: 900;
    -webkit-text-stroke: 1px rgba(0,110,234,.42);
}
.service-faq-list {
    display: grid;
    gap: 14px;
}
.service-faq-item {
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid var(--border);
    overflow: hidden;
}
.service-faq-item button {
    width: 100%;
    padding: 22px 24px;
    border: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    color: var(--navy);
    font-size: 18px;
    font-weight: 850;
    text-align: left;
    background: transparent;
}
.service-faq-item button span {
    color: var(--blue);
    font-size: 24px;
    transition: .3s ease;
}
.service-faq-item p {
    max-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0 24px;
    transition: .35s ease;
}
.service-faq-item.active p {
    max-height: 180px;
    padding: 0 24px 24px;
}
.service-faq-item.active button span {
    transform: rotate(45deg);
}
@media(max-width: 992px) {
    .service-detail-body-container {
        grid-template-columns: 1fr;
    }
    .service-sidebar {
        position: static;
    }
    .sidebar-toggle {
        width: 100%;
        margin-bottom: 14px;
        padding: 16px 20px;
        border: 1px solid var(--border);
        border-radius: 18px;
        display: flex;
        justify-content: space-between;
        color: var(--navy);
        font-weight: 850;
        background: white;
    }
    .sidebar-content {
        display: none;
    }
    .service-sidebar.active .sidebar-content {
        display: grid;
    }
}
@media(max-width: 650px) {
    .service-detail-body {
        padding: 75px 16px;
    }
    .service-info-grid {
        grid-template-columns: 1fr;
    }
    .service-process-list div {
        grid-template-columns: 1fr;
    }
}
.sidebar-service-group{
    border-bottom:1px solid var(--border);
}
.sidebar-service-group:last-child{
    border-bottom:0;
}
.sidebar-service-parent{
    width:100%;
    padding:16px 0;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    border:0;
    cursor:pointer;
    color:var(--navy);
    font-size:15px;
    font-weight:800;
    text-align:left;
    background:transparent;
}
.sidebar-service-parent i{
    font-size:13px;
    transition:.3s ease;
}
.sidebar-service-parent.active i{
    transform:rotate(180deg);
}
.sidebar-service-children{
    max-height:0;
    overflow:hidden;
    display:grid;
    gap:6px;
    transition:max-height .35s ease;
}
.sidebar-service-children.active{
    max-height:500px;
    padding-bottom:18px;
}
.sidebar-service-children a{
    padding:11px 14px;
    display:flex;
    align-items:center;
    border-radius:12px;
    color:var(--text-muted);
    font-size:14px;
    font-weight:700;
    text-decoration:none;
    background:#f7fbff;
    transition:.3s ease;
}
.sidebar-service-children a:hover{
    color:var(--blue);
    transform:translateX(6px);
}
.sidebar-sub-service{
    margin-top:10px;
}
.sidebar-sub-parent{
    width:100%;
    padding:12px 14px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    border:0;
    cursor:pointer;
    border-radius:14px;
    color:var(--navy);
    font-size:14px;
    font-weight:800;
    text-align:left;
    background:#f7fbff;
}
.sidebar-sub-parent i{
    font-size:11px;
    transition:.3s ease;
}
.sidebar-sub-parent.active i{
    transform:rotate(180deg);
}
.sidebar-sub-children{
    max-height:0;
    overflow:hidden;
    display:grid;
    gap:6px;
    padding-left:16px;
    transition:max-height .35s ease;
}
.sidebar-sub-children.active{
    max-height:400px;
    padding-top:10px;
}
.sidebar-sub-children a{
    position:relative;
    padding:10px 14px 10px 24px;
    color:var(--text-muted);
    font-size:13px;
    font-weight:700;
    text-decoration:none;
    transition:.3s ease;
}
.sidebar-sub-children a::before{
    content:"";
    position:absolute;
    left:8px;
    top:50%;
    width:6px;
    height:6px;
    border-radius:50%;
    background:var(--blue);
    transform:translateY(-50%);
}
.sidebar-sub-children a:hover{
    color:var(--blue);
}
.execution-system {
    margin-top: 42px;
    position: relative;
    display: grid;
    gap: 22px;
}
.execution-system::before {
    content: "";
    position: absolute;
    left: 34px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: linear-gradient(
        180deg,
        rgba(0,110,234,0),
        rgba(24,184,255,.65),
        rgba(0,110,234,0)
    );
}
.execution-stage {
    position: relative;
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 26px;
}
.execution-number {
    position: relative;
    z-index: 2;
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    color: white;
    font-size: 20px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 16px 35px rgba(0,110,234,.24);
}
.execution-content {
    padding: 28px 30px;
    border-radius: 26px;
    background:
        radial-gradient(circle at top right, rgba(24,184,255,.12), transparent 32%),
        #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 18px 45px rgba(6,25,54,.055);
}
.execution-content h3 {
    margin-bottom: 12px;
    color: var(--navy);
    font-size: 25px;
    line-height: 1.2;
    letter-spacing: -.8px;
}
.execution-content p {
    max-width: 760px;
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.75;
}
.execution-tags {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.execution-tags span {
    padding: 8px 12px;
    color: var(--deep-blue);
    font-size: 13px;
    font-weight: 800;
    border-radius: 999px;
    background: var(--sky);
    border: 1px solid rgba(0,110,234,.1);
}
@media(max-width: 650px) {
    .execution-system::before {
        left: 24px;
    }
    .execution-stage {
        grid-template-columns: 50px 1fr;
        gap: 18px;
    }
    .execution-number {
        width: 50px;
        height: 50px;
        border-radius: 16px;
        font-size: 15px;
    }
    .execution-content {
        padding: 22px;
        border-radius: 22px;
    }
}

.industries-container {
    width: min(1180px, 92%);
    margin: 0 auto;
}
.industries-hero {
    position: relative;
    padding: 50px 0 90px;
    background:
        radial-gradient(circle at top right, rgba(79, 70, 229, 0.16), transparent 35%),
        linear-gradient(135deg, #07111f, #10243f);
    color: #fff;
    overflow: hidden;
}
.industries-hero-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 50px;
    align-items: center;
}
.section-badge {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    color: #7dd3fc;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
}
.industries-hero h1 {
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.05;
    margin-bottom: 22px;
    max-width: 820px;
}
.industries-hero p {
    color: rgba(255,255,255,0.78);
    font-size: 18px;
    line-height: 1.8;
    max-width: 760px;
}
.industries-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 34px;
}
.industries-primary,
.industries-secondary,
.industries-feature-card a,
.industries-cta-box a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
}
.industries-primary,
.industries-cta-box a {
    background: #38bdf8;
    color: #06111f;
}
.industries-secondary {
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
}
.industries-hero-card {
    padding: 30px;
    border-radius: 28px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.16);
    backdrop-filter: blur(18px);
}
.industries-hero-card span {
    color: #7dd3fc;
    font-weight: 700;
    display: block;
    margin-bottom: 18px;
}
.industries-hero-card div {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}
.industries-hero-card div:last-child {
    border-bottom: 0;
}
.industries-hero-card strong {
    display: block;
    margin-bottom: 6px;
}
.industries-section,
.industries-process {
    padding: 50px 0;
    background: #f8fafc;
}
.industries-section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 50px;
}
.industries-section-head .section-badge {
    background: #e0f2fe;
    color: #0369a1;
}
.industries-section-head h2 {
    font-size: clamp(30px, 4vw, 48px);
    color: #0f172a;
    margin-bottom: 14px;
}
.industries-section-head p {
    color: #64748b;
    line-height: 1.8;
    font-size: 17px;
}
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.industry-card {
    background: #fff;
    padding: 28px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    transition: 0.35s ease;
}
.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
}
.industry-card i {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e0f2fe;
    color: #0369a1;
    font-size: 22px;
    margin-bottom: 22px;
}
.industry-card h3 {
    color: #0f172a;
    font-size: 20px;
    margin-bottom: 12px;
}
.industry-card p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}
.industry-card a {
    color: #0369a1;
    font-weight: 700;
    text-decoration: none;
}
.industries-feature {
    padding: 50px 0;
    background: #fff;
}
.industries-feature-box {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    padding: 50px;
    border-radius: 34px;
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    color: #fff;
}
.industries-feature-box h2 {
    font-size: clamp(30px, 4vw, 48px);
    margin-bottom: 20px;
}
.industries-feature-box p {
    color: rgba(255,255,255,0.78);
    line-height: 1.8;
}
.feature-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 28px;
}
.feature-points span {
    display: flex;
    gap: 10px;
    align-items: center;
    color: rgba(255,255,255,0.9);
}
.feature-points i {
    color: #7dd3fc;
}
.industries-feature-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 26px;
    padding: 30px;
    align-self: center;
}
.industries-feature-card h3 {
    font-size: 26px;
    margin-bottom: 14px;
}
.industries-feature-card a {
    margin-top: 22px;
    background: #fff;
    color: #0f172a;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.process-grid div {
    background: #fff;
    padding: 30px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
}
.process-grid span {
    display: block;
    color: #0369a1;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
}
.process-grid h3 {
    color: #0f172a;
    margin-bottom: 10px;
}
.process-grid p {
    color: #64748b;
    line-height: 1.7;
}
.industries-cta {
    padding: 60px 0;
    background: #fff;
}
.industries-cta-box {
    text-align: center;
    padding: 60px 30px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top left, rgba(56,189,248,0.22), transparent 35%),
        linear-gradient(135deg, #07111f, #10243f);
    color: #fff;
}
.industries-cta-box span {
    color: #7dd3fc;
    font-weight: 700;
}
.industries-cta-box h2 {
    font-size: clamp(30px, 4vw, 48px);
    margin: 14px 0;
}
.industries-cta-box p {
    color: rgba(255,255,255,0.78);
    max-width: 680px;
    margin: 0 auto 28px;
    line-height: 1.8;
}
@media (max-width: 1100px) {
    .industries-hero-grid,
    .industries-feature-box {
        grid-template-columns: 1fr;
    }
    .industries-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .industries-hero {
        padding: 90px 0 70px;
    }
    .industries-grid,
    .process-grid,
    .feature-points {
        grid-template-columns: 1fr;
    }
    .industries-feature-box {
        padding: 30px;
    }
    .industries-actions {
        flex-direction: column;
    }
    .industries-primary,
    .industries-secondary {
        justify-content: center;
    }
}

.industry-container {
    width: min(1180px, 92%);
    margin: 0 auto;
}
.industry-article-hero {
    padding: 50px 0 60px;
    background:
        radial-gradient(circle at top right, rgba(56,189,248,0.18), transparent 35%),
        linear-gradient(135deg, #07111f, #10243f);
    color: #fff;
}
.industry-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.7);
}
.industry-breadcrumb a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
}
.industry-breadcrumb span {
    color: #fff;
}
.section-badge {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    color: #7dd3fc;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 18px;
}
.industry-article-hero h1 {
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.08;
    margin-bottom: 18px;
    max-width: 850px;
}
.industry-article-hero p {
    max-width: 760px;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,0.78);
}

.industry-article-section {
    padding: 50px 0;
    background: #f8fafc;
}
.industry-article-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    align-items: start;
}
.industry-sidebar {
    position: sticky;
    top: 110px;
}
.industry-sidebar-box,
.industry-sidebar-cta,
.industry-article-content {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 26px;
}
.industry-sidebar-box {
    padding: 22px;
}
.industry-sidebar-box h3 {
    color: #0f172a;
    font-size: 22px;
    margin-bottom: 18px;
}
.industry-sidebar-box a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 14px;
    border-radius: 14px;
    text-decoration: none;
    color: #475569;
    font-weight: 700;
    transition: 0.3s ease;
}
.industry-sidebar-box a:hover,
.industry-sidebar-box a.active {
    background: #e0f2fe;
    color: #0369a1;
}
.industry-sidebar-box i {
    width: 22px;
}
.industry-sidebar-cta {
    padding: 24px;
    margin-top: 22px;
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    color: #fff;
}
.industry-sidebar-cta span {
    color: #7dd3fc;
    font-weight: 800;
}
.industry-sidebar-cta h4 {
    font-size: 22px;
    line-height: 1.3;
    margin: 12px 0 20px;
}
.industry-sidebar-cta a,
.industry-bottom-cta a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 18px;
    border-radius: 999px;
    background: #38bdf8;
    color: #06111f;
    text-decoration: none;
    font-weight: 800;
}
.industry-article-content {
    padding: 36px;
}
.industry-feature-image {
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 34px;
}
.industry-feature-image img {
    width: 100%;
    height: 390px;
    object-fit: cover;
    display: block;
}
.industry-article-content h2 {
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.2;
    color: #0f172a;
    margin: 34px 0 16px;
}
.industry-article-content h3{
    line-height: 1.85;
    font-size: 20px;
    margin-bottom: 18px;
}
.industry-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 34px 0;
}
.industry-highlight-grid div,
.industry-service-grid div {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 24px;
}
.industry-highlight-grid i {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e0f2fe;
    color: #0369a1;
    font-size: 20px;
    margin-bottom: 16px;
}
.industry-highlight-grid h3,
.industry-service-grid h3 {
    color: #0f172a;
    margin-bottom: 10px;
}
.industry-highlight-grid p,
.industry-service-grid p {
    font-size: 15.5px;
    line-height: 1.7;
    margin: 0;
}
.industry-list {
    padding: 0;
    margin: 26px 0;
    list-style: none;
    display: grid;
    gap: 14px;
}
.industry-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #475569;
    font-weight: 700;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 15px;
    border-radius: 14px;
}
.industry-list i {
    color: #0369a1;
    margin-top: 3px;
}
.industry-service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 24px;
}
.industry-bottom-cta {
    margin-top: 42px;
    padding: 38px;
    border-radius: 26px;
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    color: #fff;
}
.industry-bottom-cta h2 {
    color: #fff;
    margin-top: 0;
}
.industry-bottom-cta p {
    color: rgba(255,255,255,0.78);
}
.industry-article-content p,
.industry-article-content ul li {
    color: #64748b;
    line-height: 1.85;
    font-size: 17px;
    margin-bottom: 15px;
}
.industry-article-content ul{
    padding-left: 25px;
}
@media (max-width: 1100px) {
    .industry-article-layout {
        grid-template-columns: 1fr;
    }
    .industry-sidebar {
        position: static;
    }
    .industry-sidebar-box {
        display: grid;
        gap: 8px;
    }
}
@media (max-width: 700px) {
    .industry-article-content {
        padding: 24px;
    }
    .industry-feature-image img {
        height: 240px;
    }
    .industry-highlight-grid,
    .industry-service-grid {
        grid-template-columns: 1fr;
    }
}

.insights-container {
    width: min(1180px, 92%);
    margin: 0 auto;
}
.insights-hero {
    padding: 50px 0 90px;
    background:
        radial-gradient(circle at top right, rgba(56,189,248,0.18), transparent 36%),
        linear-gradient(135deg, #07111f, #10243f);
    color: #fff;
}
.insights-hero h1 {
    max-width: 850px;
    font-size: clamp(35px, 4vw, 60px);
    line-height: 1.06;
    margin-bottom: 22px;
}
.insights-hero p {
    max-width: 760px;
    color: rgba(255,255,255,0.78);
    font-size: 18px;
    line-height: 1.8;
}
.insights-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 34px;
}
.insights-primary,
.insights-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
}
.insights-primary {
    background: #38bdf8;
    color: #06111f;
}
.insights-secondary {
    color: #fff;
    border: 1px solid rgba(255,255,255,0.24);
}
.insights-section {
    padding: 50px 0;
    background: #f8fafc;
}
.insights-head {
    max-width: 760px;
    margin-bottom: 44px;
}
.insights-head.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.insights-head h2 {
    font-size: clamp(30px, 4vw, 48px);
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 14px;
}
.insights-head p {
    color: #64748b;
    font-size: 17px;
    line-height: 1.8;
}
.insight-categories {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.insight-categories a {
    padding: 12px 18px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #334155;
    text-decoration: none;
    font-weight: 800;
    transition: 0.3s ease;
}
.insight-categories a:hover,
.insight-categories a.active {
    background: #0f172a;
    color: #fff;
    border-color: #0f172a;
}
.insight-feature-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
}
.insight-feature-card {
    padding: 38px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid #e2e8f0;
}
.insight-feature-card.dark {
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    color: #fff;
}
.insight-feature-card span {
    display: inline-flex;
    color: #0369a1;
    font-weight: 800;
    margin-bottom: 14px;
}
.insight-feature-card.dark span {
    color: #7dd3fc;
}
.insight-feature-card h3 {
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.18;
    margin-bottom: 16px;
    color: #0f172a;
}
.insight-feature-card.dark h3 {
    color: #fff;
}
.insight-feature-card p {
    color: #64748b;
    line-height: 1.8;
    font-size: 16.5px;
}
.insight-feature-card.dark p {
    color: rgba(255,255,255,0.78);
}
.insight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.insight-card {
    padding: 28px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid #e2e8f0;
    transition: 0.35s ease;
}
.insight-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 60px rgba(15,23,42,0.1);
}
.insight-card i {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: #e0f2fe;
    color: #0369a1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 22px;
}
.insight-card h3 {
    color: #0f172a;
    font-size: 21px;
    margin-bottom: 12px;
}
.insight-card p {
    color: #64748b;
    line-height: 1.75;
}
.industry-intelligence {
    background: #fff;
}
.industry-insight-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.industry-insight-item {
    display: flex;
    gap: 18px;
    padding: 24px;
    border-radius: 22px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}
.industry-insight-item i {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 15px;
    background: #e0f2fe;
    color: #0369a1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.industry-insight-item h3 {
    color: #0f172a;
    margin-bottom: 8px;
}
.industry-insight-item p {
    color: #64748b;
    line-height: 1.7;
}
.resources-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.resource-card {
    padding: 26px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid #e2e8f0;
}
.resource-card span {
    display: block;
    color: #0369a1;
    font-weight: 900;
    margin-bottom: 12px;
}
.resource-card h3 {
    color: #0f172a;
    font-size: 20px;
    line-height: 1.35;
    margin-bottom: 12px;
}
.resource-card p {
    color: #64748b;
    line-height: 1.7;
}
.insights-cta {
    padding: 90px 0;
    background: #fff;
}
.insights-cta-box {
    text-align: center;
    padding: 60px 30px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top left, rgba(56,189,248,0.22), transparent 35%),
        linear-gradient(135deg, #07111f, #10243f);
    color: #fff;
}
.insights-cta-box span {
    color: #7dd3fc;
    font-weight: 900;
}
.insights-cta-box h2 {
    font-size: clamp(30px, 4vw, 48px);
    margin: 14px 0;
}
.insights-cta-box p {
    color: rgba(255,255,255,0.78);
    max-width: 680px;
    margin: 0 auto 28px;
    line-height: 1.8;
}
.insights-cta-box a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 999px;
    background: #38bdf8;
    color: #06111f;
    text-decoration: none;
    font-weight: 900;
}
@media (max-width: 1100px) {
    .insight-feature-grid,
    .industry-insight-list {
        grid-template-columns: 1fr;
    }
    .insight-grid,
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .insights-hero {
        padding: 90px 0 70px;
    }
    .insights-actions {
        flex-direction: column;
    }
    .insights-primary,
    .insights-secondary {
        justify-content: center;
    }
    .insight-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }
    .industry-insight-item {
        flex-direction: column;
    }
    .insight-feature-card {
        padding: 28px;
    }
}

.insights-filter-box {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    padding: 24px;
    margin-bottom: 34px;
}
.insights-search {
    position: relative;
    margin-bottom: 20px;
}
.insights-search i {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    color: #64748b;
}
.insights-search input {
    width: 100%;
    height: 56px;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
    padding: 0 20px 0 48px;
    outline: none;
    font-size: 16px;
}
.insights-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.insight-tab {
    border: 0;
    padding: 11px 16px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #334155;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s ease;
}
.insight-tab.active,
.insight-tab:hover {
    background: #0f172a;
    color: #fff;
}
.insight-library-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.insight-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 28px;
    transition: 0.35s ease;
}
.insight-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 60px rgba(15,23,42,0.1);
}
.insight-card span {
    color: #0369a1;
    font-weight: 900;
    display: block;
    margin-bottom: 14px;
}
.insight-card h3 {
    color: #0f172a;
    font-size: 22px;
    line-height: 1.35;
    margin-bottom: 12px;
}
.insight-card p {
    color: #64748b;
    line-height: 1.75;
    margin-bottom: 20px;
}
.insight-card a {
    color: #0369a1;
    font-weight: 900;
    text-decoration: none;
}
.insight-card.hide {
    display: none;
}
@media(max-width: 991px) {
    .insight-library-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media(max-width: 640px) {
    .insight-library-grid {
        grid-template-columns: 1fr;
    }
}

.case-container {
    width: min(1180px, 92%);
    margin: 0 auto;
}
.case-hero {
    padding: 50px 0 90px;
    background:
        radial-gradient(circle at top right, rgba(56,189,248,0.18), transparent 36%),
        linear-gradient(135deg, #07111f, #10243f);
    color: #fff;
}
.case-hero h1 {
    max-width: 900px;
    font-size: clamp(38px, 5vw, 66px);
    line-height: 1.06;
    margin-bottom: 22px;
}
.case-hero p {
    max-width: 760px;
    color: rgba(255,255,255,0.78);
    font-size: 18px;
    line-height: 1.8;
}
.case-section {
    padding: 50px 0;
    background: #f8fafc;
}
.case-head.center {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 44px;
}
.case-head h2 {
    font-size: clamp(30px, 4vw, 48px);
    color: #0f172a;
    margin-bottom: 14px;
}
.case-head p {
    color: #64748b;
    line-height: 1.8;
}
.section-badge.light {
    background: #e0f2fe;
    color: #0369a1;
}
.case-filter-box {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    padding: 24px;
    margin-bottom: 34px;
}
.case-search {
    position: relative;
    margin-bottom: 20px;
}
.case-search i {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    color: #64748b;
}
.case-search input {
    width: 100%;
    height: 56px;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
    padding: 0 20px 0 48px;
    outline: none;
    font-size: 16px;
}
.case-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.case-tab {
    border: 0;
    padding: 11px 16px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #334155;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s ease;
}
.case-tab.active,
.case-tab:hover {
    background: #0f172a;
    color: #fff;
}
.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.case-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    overflow: hidden;
    transition: 0.35s ease;
}
.case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(15,23,42,0.1);
}
.case-image img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}
.case-content {
    padding: 28px;
}
.case-content > span {
    display: block;
    color: #0369a1;
    font-weight: 900;
    margin-bottom: 14px;
}
.case-content h3 {
    color: #0f172a;
    font-size: 23px;
    line-height: 1.35;
    margin-bottom: 14px;
}
.case-content p {
    color: #64748b;
    line-height: 1.75;
    margin-bottom: 22px;
}
.case-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}
.case-metrics div {
    padding: 16px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}
.case-metrics strong {
    display: block;
    color: #0f172a;
    font-size: 24px;
}
.case-metrics small {
    color: #64748b;
    font-weight: 700;
}
.case-content a {
    color: #0369a1;
    font-weight: 900;
    text-decoration: none;
}
.case-card.hide {
    display: none;
}
@media(max-width: 991px) {
    .case-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media(max-width: 640px) {
    .case-hero {
        padding: 90px 0 70px;
    }
    .case-grid {
        grid-template-columns: 1fr;
    }
}

.journal-container {
    width: min(1180px, 92%);
    margin: 0 auto;
}
.journal-hero {
    padding: 50px 0 50px;
    background:
        radial-gradient(circle at top right, rgba(56,189,248,0.18), transparent 36%),
        linear-gradient(135deg, #07111f, #10243f);
    color: #fff;
}
.journal-hero h1 {
    max-width: 880px;
    font-size: clamp(38px, 5vw, 66px);
    line-height: 1.06;
    margin-bottom: 22px;
}
.journal-hero p {
    max-width: 760px;
    color: rgba(255,255,255,0.78);
    font-size: 18px;
    line-height: 1.8;
}
.journal-area {
    padding: 50px 0;
    background: #f8fafc;
}
.journal-top {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 30px;
    align-items: end;
    margin-bottom: 28px;
}
.journal-top h2 {
    font-size: clamp(30px, 4vw, 48px);
    color: #0f172a;
    margin-bottom: 14px;
}
.journal-top p {
    color: #64748b;
    line-height: 1.8;
    max-width: 680px;
}
.journal-search {
    position: relative;
}
.journal-search i {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    color: #64748b;
}
.journal-search input,
.journal-newsletter input {
    width: 100%;
    height: 54px;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
    padding: 0 18px 0 48px;
    outline: none;
    font-size: 15px;
}
.journal-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 34px;
}
.journal-tab {
    border: 0;
    padding: 11px 16px;
    border-radius: 999px;
    background: #fff;
    color: #334155;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s ease;
}
.journal-tab.active,
.journal-tab:hover {
    background: #0f172a;
    color: #fff;
}
.journal-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    align-items: start;
}
.journal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.journal-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    overflow: hidden;
    transition: 0.35s ease;
}
.journal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(15,23,42,0.1);
}
.journal-img img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}
.journal-content {
    padding: 28px;
}
.journal-content > span {
    display: block;
    color: #0369a1;
    font-weight: 900;
    margin-bottom: 14px;
}
.journal-content h3 {
    color: #0f172a;
    font-size: 23px;
    line-height: 1.35;
    margin-bottom: 14px;
}
.journal-content p {
    color: #64748b;
    line-height: 1.75;
    margin-bottom: 20px;
}
.journal-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.journal-meta small {
    padding: 7px 12px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #475569;
    font-weight: 800;
}
.journal-content a {
    color: #0369a1;
    font-weight: 900;
    text-decoration: none;
}
.journal-sidebar {
    position: sticky;
    top: 110px;
    display: grid;
    gap: 22px;
}
.journal-side-box,
.journal-newsletter {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 24px;
}
.journal-side-box h3,
.journal-newsletter h3 {
    color: #0f172a;
    margin-bottom: 16px;
    font-size: 22px;
}
.journal-side-box a {
    display: block;
    padding: 13px 0;
    border-bottom: 1px solid #e2e8f0;
    color: #475569;
    text-decoration: none;
    font-weight: 800;
}
.journal-side-box a:last-child {
    border-bottom: 0;
}
.journal-newsletter {
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    color: #fff;
}
.journal-newsletter span {
    color: #7dd3fc;
    font-weight: 900;
}
.journal-newsletter h3 {
    color: #fff;
    line-height: 1.35;
}
.journal-newsletter input {
    padding-left: 18px;
    margin-bottom: 12px;
}
.journal-newsletter button {
    width: 100%;
    height: 50px;
    border: 0;
    border-radius: 999px;
    background: #38bdf8;
    color: #06111f;
    font-weight: 900;
    cursor: pointer;
}
.journal-card.hide {
    display: none;
}
@media(max-width: 1100px) {
    .journal-layout,
    .journal-top {
        grid-template-columns: 1fr;
    }
    .journal-sidebar {
        position: static;
    }
}
@media(max-width: 700px) {
    .journal-grid {
        grid-template-columns: 1fr;
    }
    .journal-hero {
        padding: 90px 0 70px;
    }
}

.contact-container {
    width: min(1180px, 92%);
    margin: 0 auto;
}
.contact-hero {
    padding: 50px 0 90px;
    background:
        radial-gradient(circle at top right, rgba(56,189,248,0.18), transparent 36%),
        linear-gradient(135deg, #07111f, #10243f);
    color: #fff;
}
.contact-hero h1 {
    max-width: 850px;
    font-size: clamp(38px, 5vw, 66px);
    line-height: 1.06;
    margin-bottom: 22px;
}
.contact-hero p {
    max-width: 760px;
    color: rgba(255,255,255,0.78);
    font-size: 18px;
    line-height: 1.8;
}
.contact-area {
    padding: 50px 0;
    background: #f8fafc;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 34px;
    align-items: start;
}
.contact-form-box,
.contact-info-card,
.contact-side-cta {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 28px;
}
.contact-form-box {
    padding: 40px;
}
.section-badge.light {
    background: #e0f2fe;
    color: #0369a1;
}
.contact-form-box h2 {
    font-size: clamp(30px, 4vw, 46px);
    color: #0f172a;
    margin-bottom: 14px;
}
.contact-form-box p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 28px;
}
.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 15px 16px;
    outline: none;
    font-size: 15px;
    margin-bottom: 16px;
    background: #fff;
}
.contact-form-box textarea {
    min-height: 150px;
    resize: vertical;
}
.contact-form-box input:focus,
.contact-form-box select:focus,
.contact-form-box textarea:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 0 4px rgba(56,189,248,0.12);
}
.contact-form-box button {
    border: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 24px;
    border-radius: 999px;
    background: #0f172a;
    color: #fff;
    font-weight: 900;
    cursor: pointer;
}
.contact-info-wrap {
    display: grid;
    gap: 18px;
}
.contact-info-card {
    display: flex;
    gap: 18px;
    padding: 24px;
    align-items: flex-start;
}
.contact-info-card i {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: #e0f2fe;
    color: #0369a1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex: 0 0 52px;
}
.contact-info-card h3 {
    color: #0f172a;
    margin-bottom: 6px;
}
.contact-info-card p {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}
.contact-side-cta {
    padding: 28px;
    background:
        radial-gradient(circle at top left, rgba(56,189,248,0.22), transparent 35%),
        linear-gradient(135deg, #07111f, #10243f);
    color: #fff;
}
.contact-side-cta span {
    color: #7dd3fc;
    font-weight: 900;
}
.contact-side-cta h3 {
    font-size: 26px;
    line-height: 1.3;
    margin: 12px 0;
}
.contact-side-cta p {
    color: rgba(255,255,255,0.78);
    line-height: 1.8;
    margin-bottom: 22px;
}
.contact-side-cta a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 900;
    text-decoration: none;
}
@media(max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
@media(max-width: 640px) {
    .contact-hero {
        padding: 90px 0 70px;
    }
    .contact-form-box {
        padding: 28px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.career-container {
    width: min(1180px, 92%);
    margin: 0 auto;
}
.career-hero {
    padding: 50px 0 50px;
    background:
        radial-gradient(circle at top right, rgba(56,189,248,0.18), transparent 36%),
        linear-gradient(135deg, #07111f, #10243f);
    color: #fff;
}
.career-hero h1 {
    max-width: 850px;
    font-size: clamp(38px, 5vw, 66px);
    line-height: 1.06;
    margin-bottom: 22px;
}
.career-hero p {
    max-width: 760px;
    color: rgba(255,255,255,0.78);
    font-size: 18px;
    line-height: 1.8;
}
.career-area {
    padding: 50px 0;
    background: #f8fafc;
}
.career-head {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 30px;
    align-items: end;
    margin-bottom: 28px;
}
.career-head h2 {
    font-size: clamp(30px, 4vw, 48px);
    color: #0f172a;
    margin-bottom: 14px;
}
.career-head p {
    color: #64748b;
    line-height: 1.8;
}
.career-search {
    position: relative;
}
.career-search i {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    color: #64748b;
}
.career-search input {
    width: 100%;
    height: 56px;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
    padding: 0 18px 0 48px;
    outline: none;
    font-size: 15px;
}
.career-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 34px;
}
.career-tab {
    border: 0;
    padding: 11px 16px;
    border-radius: 999px;
    background: #fff;
    color: #334155;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s ease;
}
.career-tab.active,
.career-tab:hover {
    background: #0f172a;
    color: #fff;
}
.career-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.career-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 26px;
    padding: 28px;
    transition: 0.35s ease;
}
.career-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 60px rgba(15,23,42,0.1);
}
.career-card span {
    display: block;
    color: #0369a1;
    font-weight: 900;
    margin-bottom: 12px;
}
.career-card h3 {
    color: #0f172a;
    font-size: 24px;
    margin-bottom: 12px;
}
.career-card p {
    color: #64748b;
    line-height: 1.75;
    margin-bottom: 22px;
}
.career-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}
.career-meta small {
    padding: 7px 12px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #475569;
    font-weight: 800;
}
.career-card a {
    color: #0369a1;
    font-weight: 900;
    text-decoration: none;
}
.career-card.hide {
    display: none;
}
.career-empty {
    display: none;
    margin-top: 26px;
    padding: 22px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #e2e8f0;
    text-align: center;
    color: #64748b;
    font-weight: 800;
}
.career-card.hide {
    display: none;
}
.career-empty {
    display: none;
}
@media(max-width: 991px) {
    .career-head {
        grid-template-columns: 1fr;
    }
}
@media(max-width: 700px) {
    .career-hero {
        padding: 90px 0 70px;
    }
    .career-grid {
        grid-template-columns: 1fr;
    }
}

.legal-container{
    width:min(1180px,92%);
    margin:auto;
}
.legal-hero{
    padding:60px 0 90px;
    background:
    radial-gradient(circle at top right,
    rgba(56,189,248,.18),
    transparent 36%),
    linear-gradient(135deg,#07111f,#10243f);
    color:#fff;
}
.legal-hero h1{
    font-size:clamp(40px,5vw,68px);
    margin-bottom:18px;
}
.legal-hero p{
    max-width:760px;
    line-height:1.8;
    color:rgba(255,255,255,.78);
}
.legal-hero small{
    display:block;
    margin-top:16px;
    color:#7dd3fc;
}
.legal-layout-wrap{
    padding:50px 0;
    background:#f8fafc;
}
.legal-layout{
    display:grid;
    grid-template-columns:280px 1fr;
    gap:40px;
    align-items:start;
}
.legal-sidebar{
    position:sticky;
    top:110px;
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:24px;
    padding:24px;
}
.legal-sidebar h3{
    margin-bottom:18px;
    color:#0f172a;
}
.legal-sidebar a{
    display:block;
    padding:12px 0;
    color:#475569;
    text-decoration:none;
    font-weight:700;
    border-bottom:1px solid #e2e8f0;
}
.legal-sidebar a:last-child{
    border-bottom:0;
}
.legal-content{
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:28px;
    padding:45px;
}
.legal-content section{
    margin-bottom:45px;
}
.legal-content section:last-child{
    margin-bottom:0;
}
.legal-content h2{
    color:#0f172a;
    margin-bottom:16px;
    font-size:30px;
}
.legal-content p{
    color:#64748b;
    line-height:1.9;
}
.legal-content ul{
    padding-left:20px;
}
.legal-content li{
    margin-bottom:12px;
    color:#64748b;
}
@media(max-width:991px){
    .legal-layout{
        grid-template-columns:1fr;
    }
    .legal-sidebar{
        position:static;
    }
    .legal-content{
        padding:30px;
    }
}

.blog-detail-hero {
    position: relative;
    padding: 50px 25px;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(24,184,255,.16), transparent 32%),
        radial-gradient(circle at 90% 15%, rgba(0,110,234,.12), transparent 28%),
        linear-gradient(180deg, #ffffff, #f4f9ff);
}
.blog-detail-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(8,47,120,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8,47,120,.045) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.blog-detail-container {
    position: relative;
    max-width: 1050px;
    margin: auto;
    text-align: center;
}
.blog-breadcrumb {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 700;
}
.blog-breadcrumb a {
    color: var(--blue);
    text-decoration: none;
}
.blog-breadcrumb i {
    font-size: 11px;
    color: var(--text-muted);
}
.blog-breadcrumb span {
    color: var(--navy);
}
.blog-detail-meta {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}
.blog-detail-meta span {
    padding: 9px 14px;
    color: var(--deep-blue);
    font-size: 13px;
    font-weight: 850;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 10px 24px rgba(6,25,54,.05);
}
.blog-detail-hero h1 {
    color: var(--navy);
    font-size: clamp(40px, 4vw, 60px);
    line-height: .98;
    letter-spacing: -3.5px;
}
.blog-detail-hero p {
    max-width: 720px;
    margin: 20px auto 0;
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.8;
}
.blog-author-row {
    width: fit-content;
    margin: 20px auto 0;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 13px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 18px 45px rgba(6,25,54,.07);
}
.blog-author-avatar {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
}
.blog-author-row strong,
.blog-author-row span {
    display: block;
    text-align: left;
}
.blog-author-row strong {
    color: var(--navy);
    font-size: 14px;
}
.blog-author-row span {
    margin-top: 3px;
    color: var(--text-muted);
    font-size: 12px;
}
@media(max-width: 650px) {
    .blog-detail-hero h1 {
        letter-spacing: -2px;
    }
    .blog-detail-hero p {
        font-size: 16px;
    }
    .blog-author-row {
        border-radius: 22px;
    }
}

.blog-detail-body {
    padding: 50px 20px;
    background: linear-gradient(180deg, #ffffff, #f7fbff);
}
.blog-detail-body-container {
    max-width: 1320px;
    margin: auto;
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 45px;
    align-items: start;
}
.blog-sidebar {
    position: sticky;
    top: 110px;
    display: grid;
    gap: 22px;
}
.blog-sidebar-card,
.blog-sidebar-cta {
    padding: 26px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 18px 45px rgba(6,25,54,.055);
}
.blog-sidebar-card h4 {
    margin-bottom: 18px;
    color: var(--navy);
    font-size: 18px;
}
.blog-sidebar-card > a {
    padding: 13px 0;
    display: block;
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 750;
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: .3s ease;
}
.blog-sidebar-card > a:last-child {
    border-bottom: 0;
}
.blog-sidebar-card > a:hover {
    color: var(--blue);
    padding-left: 8px;
}
.related-blog-mini {
    padding: 16px 0 !important;
}
.related-blog-mini span {
    display: block;
    margin-bottom: 7px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 850;
}
.related-blog-mini strong {
    display: block;
    color: var(--navy);
    font-size: 15px;
    line-height: 1.45;
}
.blog-sidebar-cta {
    color: #ffffff;
    background:
        radial-gradient(circle at top right, rgba(24,184,255,.28), transparent 35%),
        linear-gradient(135deg, var(--navy), var(--deep-blue));
}
.blog-sidebar-cta > span {
    color: var(--cyan);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}
.blog-sidebar-cta h3 {
    margin: 14px 0 24px;
    color: #ffffff;
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: -.8px;
}
.blog-sidebar-cta a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 20px;
    color: #ffffff;
    font-weight: 800;
    text-decoration: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
}
.blog-detail-content {
    min-width: 0;
}
.blog-feature-image {
    margin-bottom: 25px;
    overflow: hidden;
    border-radius: 34px;
    background: #eaf7ff;
    box-shadow: 0 28px 75px rgba(6,25,54,.12);
}
.blog-feature-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.blog-article {
    padding: 55px;
    border-radius: 34px;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 20px 55px rgba(6,25,54,.055);
}
.blog-article .blog-lead {
    color: var(--navy);
    font-size: 23px;
    line-height: 1.7;
    font-weight: 650;
}
.blog-article h2 {
    margin: 42px 0 18px;
    color: var(--navy);
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.12;
    letter-spacing: -1.5px;
}
.blog-article h3 {
    color: var(--navy);
    font-size: 24px;
    margin-bottom: 15px;
}
.blog-article p {
    margin-bottom: 18px;
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.9;
}
.blog-article blockquote {
    margin: 38px 0;
    padding: 34px;
    color: var(--navy);
    font-size: 26px;
    line-height: 1.45;
    font-weight: 850;
    border-left: 5px solid var(--blue);
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(24,184,255,.15), transparent 35%),
        #f7fbff;
}
.blog-highlight-box {
    margin: 38px 0;
    padding: 32px;
    border-radius: 26px;
    background:
        radial-gradient(circle at top right, rgba(24,184,255,.18), transparent 35%),
        linear-gradient(135deg, var(--navy), var(--deep-blue));
}
.blog-highlight-box h3 {
    color: #ffffff;
    margin-bottom: 20px;
}
.blog-highlight-box p {
    color: rgba(255,255,255,.7);
    margin-bottom: 0;
}
.blog-article ul {
    margin: 20px 0px;
    padding: 0;
    display: grid;
    gap: 14px;
    list-style: none;
}
.blog-article li {
    position: relative;
    padding: 16px 18px 16px 48px;
    color: var(--navy);
    font-weight: 750;
    line-height: 1.6;
    border-radius: 18px;
    background: #f7fbff;
    border: 1px solid var(--border);
}
.blog-article li::before {
    content: "✓";
    position: absolute;
    left: 18px;
    top: 15px;
    color: var(--blue);
    font-weight: 900;
}
.blog-prev-next {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}
.blog-nav-card {
    padding: 28px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 18px 45px rgba(6,25,54,.055);
    transition: .35s ease;
}
.blog-nav-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(6,25,54,.1);
    border-color: rgba(0,110,234,.22);
}
.blog-nav-card span {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .8px;
}
.blog-nav-card h3 {
    color: var(--navy);
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: -.8px;
}
.next-blog {
    text-align: right;
}
.next-blog span {
    justify-content: flex-end;
}
.blog-article table {
    width: 100%;
    margin: 40px 0;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 20px 55px rgba(6, 25, 54, 0.06);
}
.blog-article table thead {
    background:
        radial-gradient(circle at top right, rgba(24, 184, 255, 0.18), transparent 35%),
        linear-gradient(135deg, var(--navy), var(--deep-blue));
}
.blog-article table th {
    padding: 20px 24px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 850;
    line-height: 1.5;
    text-align: left;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.blog-article table th:last-child {
    border-right: 0;
}
.blog-article table td {
    padding: 18px 24px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    vertical-align: top;
    border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
}
.blog-article table td:last-child {
    border-right: 0;
}
.blog-article table tbody tr:last-child td {
    border-bottom: 0;
}
.blog-article table tbody tr {
    transition: 0.3s ease;
}
.blog-article table tbody tr:hover {
    background: #f7fbff;
}
.blog-article table td:first-child {
    color: var(--navy);
    font-weight: 750;
}
.blog-article table a {
    color: var(--blue);
    font-weight: 800;
    text-decoration: none;
}
.blog-article table a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .blog-article table {
        display: block;
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        border-radius: 18px;
        -webkit-overflow-scrolling: touch;
    }
    .blog-article table th,
    .blog-article table td {
        padding: 16px 18px;
        font-size: 14px;
    }
    .blog-article table::-webkit-scrollbar {
        height: 8px;
    }
    .blog-article table::-webkit-scrollbar-track {
        background: #eef5ff;
        border-radius: 999px;
    }
    .blog-article table::-webkit-scrollbar-thumb {
        background: linear-gradient(135deg, var(--blue), var(--cyan));
        border-radius: 999px;
    }
}
@media(max-width: 992px) {
    .blog-detail-body-container {
        display:flex;
        flex-direction:column;
    }
    .blog-detail-content{
        order:1;
    }
    .blog-sidebar {
        order:2;
        position: static;
        grid-template-columns: repeat(2, 1fr);
    }
}
@media(max-width: 650px) {
    .blog-detail-body {
        padding: 75px 16px;
    }
    .blog-sidebar {
        display:grid;
        gap:18px;
        margin-top:30px;
    }
    .blog-sidebar-card,
    .blog-sidebar-cta{
        padding:22px;
        border-radius:22px;
    }
    .blog-feature-image img {
        height: 260px;
    }
    .blog-article {
        padding: 26px;
        border-radius: 26px;
    }
    .blog-article .blog-lead {
        font-size: 19px;
    }
    .blog-article blockquote {
        padding: 24px;
        font-size: 21px;
    }
    .blog-prev-next {
        grid-template-columns: 1fr;
    }
    .next-blog {
        text-align: left;
    }
    .next-blog span {
        justify-content: flex-start;
    }
    .blog-article table {
        margin: 30px 0;
    }
    .blog-article table th,
    .blog-article table td {
        padding: 14px 16px;
        font-size: 13px;
    }
}

.insight-detail-hero {
    position: relative;
    padding: 50px 25px;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(24,184,255,.16), transparent 32%),
        radial-gradient(circle at 90% 15%, rgba(0,110,234,.12), transparent 28%),
        linear-gradient(180deg, #ffffff, #f4f9ff);
}
.insight-detail-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(8,47,120,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8,47,120,.045) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.insight-detail-container {
    position: relative;
    max-width: 1120px;
    margin: auto;
    text-align: center;
}
.insight-breadcrumb {
    margin-bottom: 34px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 700;
}
.insight-breadcrumb a {
    color: var(--blue);
    text-decoration: none;
}
.insight-breadcrumb i {
    font-size: 11px;
}
.insight-category {
    display: inline-flex;
    margin-bottom: 24px;
    padding: 10px 16px;
    color: var(--deep-blue);
    font-size: 13px;
    font-weight: 900;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 10px 24px rgba(6,25,54,.05);
}
.insight-detail-hero h1 {
    color: var(--navy);
    font-size: clamp(40px, 4vw, 60px);
    line-height: .98;
    letter-spacing: -3.5px;
}
.insight-detail-hero p {
    max-width: 760px;
    margin: 26px auto 0;
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.8;
}
.insight-meta {
    max-width: 780px;
    margin: 42px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-radius: 28px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 18px 45px rgba(6,25,54,.07);
}
.insight-meta div {
    padding: 22px;
    border-right: 1px solid var(--border);
}
.insight-meta div:last-child {
    border-right: 0;
}
.insight-meta strong,
.insight-meta span {
    display: block;
}
.insight-meta strong {
    color: var(--navy);
    font-size: 14px;
}
.insight-meta span {
    margin-top: 6px;
    color: var(--text-muted);
    font-size: 13px;
}
.insight-stats-section {
    padding: 50px 25px;
    background: #ffffff;
}
.insight-stats-container {
    max-width: 1320px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.insight-stat {
    padding: 34px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(24,184,255,.16), transparent 34%),
        linear-gradient(180deg, #ffffff, #f8fbff);
    border: 1px solid var(--border);
    box-shadow: 0 18px 45px rgba(6,25,54,.055);
}
.insight-stat strong {
    display: block;
    font-size: 50px;
    line-height: 1;
    color: var(--navy);
}
.insight-stat span {
    display: block;
    margin-top: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}
.insight-detail-body {
    padding: 50px 25px;
    background: linear-gradient(180deg, #ffffff, #f7fbff);
}
.insight-detail-body-container {
    max-width: 1320px;
    margin: auto;
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 45px;
    align-items: start;
}
.insight-sidebar {
    position: sticky;
    top: 110px;
    display: grid;
    gap: 22px;
}
.insight-sidebar-card,
.insight-download-card,
.insight-sidebar-cta {
    padding: 26px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 18px 45px rgba(6,25,54,.055);
}
.insight-sidebar-card h4 {
    margin-bottom: 18px;
    color: var(--navy);
    font-size: 18px;
}
.insight-sidebar-card a {
    padding: 13px 0;
    display: block;
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 750;
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: .3s ease;
}
.insight-sidebar-card a:last-child {
    border-bottom: 0;
}
.insight-sidebar-card a:hover {
    color: var(--blue);
    padding-left: 8px;
}
.insight-download-card,
.insight-sidebar-cta {
    color: white;
    background:
        radial-gradient(circle at top right, rgba(24,184,255,.28), transparent 35%),
        linear-gradient(135deg, var(--navy), var(--deep-blue));
}
.insight-download-card span,
.insight-sidebar-cta span {
    color: var(--cyan);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}
.insight-download-card h3,
.insight-sidebar-cta h3 {
    margin: 14px 0 24px;
    color: white;
    font-size: 25px;
    line-height: 1.15;
}
.insight-download-card .download-report-btn,
.insight-sidebar-cta a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 20px;
    color: white;
    font-weight: 800;
    text-decoration: none;
    border-radius: 999px;
    cursor: pointer;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
}
.insight-content {
    min-width: 0;
    padding: 55px;
    border-radius: 34px;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 20px 55px rgba(6,25,54,.055);
}
.insight-content-section {
    padding-bottom: 65px;
    margin-bottom: 65px;
    border-bottom: 1px solid var(--border);
}
.insight-content-section h2,
.insight-takeaways h2 {
    margin-bottom: 22px;
    color: var(--navy);
    font-size: clamp(30px, 4vw, 45px);
    line-height: 1.05;
    letter-spacing: -2px;
}
.insight-content-section p {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 18px;
}
.insight-finding-list {
    display: grid;
    gap: 22px;
}
.insight-finding {
    padding: 30px;
    border-radius: 26px;
    background: #f7fbff;
    border: 1px solid var(--border);
}
.insight-finding span {
    color: var(--blue);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}
.insight-finding h3 {
    margin: 12px 0;
    color: var(--navy);
    font-size: 26px;
    line-height: 1.2;
}
.insight-timeline {
    display: grid;
    gap: 18px;
}
.insight-timeline div {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}
.insight-timeline span {
    color: transparent;
    font-size: 38px;
    font-weight: 900;
    -webkit-text-stroke: 1px rgba(0,110,234,.45);
}
.insight-list {
    display: grid;
    gap: 14px;
    list-style: none;
    padding: 0;
}
.insight-list li {
    position: relative;
    padding: 16px 18px 16px 48px;
    color: var(--navy);
    font-weight: 750;
    border-radius: 18px;
    background: #f7fbff;
    border: 1px solid var(--border);
}
.insight-list li::before {
    content: "✓";
    position: absolute;
    left: 18px;
    color: var(--blue);
    font-weight: 900;
}
.insight-takeaways {
    padding-bottom: 30px;
}
.takeaway-grid {
    display: grid;
    gap: 18px;
}
.takeaway-grid div {
    padding: 26px;
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(24,184,255,.14), transparent 35%),
        #f7fbff;
    border: 1px solid var(--border);
}
.takeaway-grid strong {
    display: block;
    margin-bottom: 12px;
    color: var(--blue);
    font-size: 22px;
}
.takeaway-grid p {
    color: var(--navy);
    font-weight: 750;
    line-height: 1.7;
}
.insight-prev-next {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}
.insight-nav-card {
    padding: 28px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 18px 45px rgba(6,25,54,.055);
    transition: .35s ease;
}
.insight-nav-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(6,25,54,.1);
}
.insight-nav-card span {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}
.insight-nav-card h3 {
    color: var(--navy);
    font-size: 24px;
    line-height: 1.25;
}
.insight-nav-card.next {
    text-align: right;
}
.insight-nav-card.next span {
    justify-content: flex-end;
}
.related-insight-item{
    display:block;
    padding:18px 0 !important;
    text-decoration:none;
    border-bottom:1px solid var(--border);
    transition:.3s ease;
}
.related-insight-item:last-child{
    border-bottom:0;
}
.related-insight-item:hover{
    padding-left:10px !important;
}
.related-insight-item span{
    display:inline-flex;
    align-items:center;
    gap:6px;
    margin-bottom:10px;
    color:var(--blue);
    font-size:11px;
    font-weight:900;
    letter-spacing:.8px;
    text-transform:uppercase;
}
.related-insight-item span::before{
    content:"";
    width:6px;
    height:6px;
    border-radius:50%;
    background:var(--blue);
}
.related-insight-item strong{
    display:block;
    color:var(--navy);
    font-size:15px;
    font-weight:800;
    line-height:1.5;
    transition:.3s ease;
}
.related-insight-item:hover strong{
    color:var(--blue);
}
.insight-content table {
    width: 100%;
    margin: 40px 0;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 20px 55px rgba(6,25,54,.06);
}
.insight-content table thead {
    background:
        radial-gradient(
            circle at top right,
            rgba(24,184,255,.16),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            var(--navy),
            var(--deep-blue)
        );
}
.insight-content table th {
    padding: 22px 26px;
    text-align: left;
    color: #ffffff;
    font-size: 15px;
    font-weight: 850;
    letter-spacing: .3px;
    border-right: 1px solid rgba(255,255,255,.1);
}
.insight-content table th:last-child {
    border-right: 0;
}
.insight-content table td {
    padding: 20px 26px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
    vertical-align: top;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.insight-content table td:last-child {
    border-right: 0;
}
.insight-content table tbody tr:last-child td {
    border-bottom: 0;
}
.insight-content table tbody tr {
    transition: .3s ease;
}
.insight-content table tbody tr:hover {
    background: #f7fbff;
}
.insight-content table td:first-child {
    color: var(--navy);
    font-weight: 800;
}
.insight-content table tbody tr:nth-child(even) {
    background: rgba(247,251,255,.6);
}
.insight-content table a {
    color: var(--blue);
    font-weight: 800;
    text-decoration: none;
}
.insight-content table a:hover {
    text-decoration: underline;
}
@media(max-width: 992px) {
    .insight-detail-body-container {
        display: flex;
        flex-direction: column;
    }
    .insight-content {
        order: 1;
    }
    .insight-sidebar {
        order: 2;
        position: static;
        margin-top: 40px;
    }
    .insight-stats-container {
        grid-template-columns: 1fr;
    }
     .insight-content table{
        display:block;
        width:100%;
        overflow-x:auto;
        white-space:nowrap;
        -webkit-overflow-scrolling:touch;
        border-radius:20px;
    }
    .insight-content table th,
    .insight-content table td{
        padding:16px 18px;
        font-size:14px;
    }
    .insight-content table::-webkit-scrollbar{
        height:8px;
    }
    .insight-content table::-webkit-scrollbar-track{
        background:#edf4ff;
        border-radius:999px;
    }
    .insight-content table::-webkit-scrollbar-thumb{
        background:linear-gradient(
            135deg,
            var(--blue),
            var(--cyan)
        );
        border-radius:999px;
    }
}
@media(max-width: 650px) {
    .insight-detail-hero {
        padding: 80px 16px 70px;
    }
    .insight-meta {
        grid-template-columns: 1fr;
    }
    .insight-meta div {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }
    .insight-meta div:last-child {
        border-bottom: 0;
    }
    .insight-stats-section,
    .insight-detail-body {
        padding-left: 16px;
        padding-right: 16px;
    }
    .insight-content {
        padding: 26px;
        border-radius: 26px;
    }
    .insight-timeline div {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .insight-prev-next {
        grid-template-columns: 1fr;
    }
    .insight-nav-card.next {
        text-align: left;
    }
    .insight-nav-card.next span {
        justify-content: flex-start;
    }
    .insight-content table{
        margin:30px 0;
    }
    .insight-content table th,
    .insight-content table td{
        padding:14px 16px;
        font-size:13px;
    }
}

.report-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    place-items: center;
    padding: 24px;
}
.report-modal.active {
    display: grid;
}
.report-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(4,18,38,.68);
    backdrop-filter: blur(10px);
}
.report-modal-box {
    position: relative;
    z-index: 2;
    width: min(100%, 480px);
    padding: 36px;
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(24,184,255,.14), transparent 34%),
        #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 35px 100px rgba(6,25,54,.28);
}
.report-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    color: var(--navy);
    background: #f4f9ff;
}
.report-modal-box > span {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 8px 13px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 999px;
    background: var(--sky);
}
.report-modal-box h3 {
    color: var(--navy);
    font-size: 32px;
    line-height: 1.1;
    letter-spacing: -1px;
}
.report-modal-box p {
    margin-top: 12px;
    color: var(--text-muted);
    line-height: 1.7;
}
.report-download-form {
    margin-top: 26px;
    display: grid;
    gap: 12px;
}
.report-download-form input {
    width: 100%;
    height: 52px;
    padding: 0 16px;
    border: 1px solid var(--border);
    outline: none;
    border-radius: 16px;
    color: var(--navy);
    background: #ffffff;
}
.report-download-form input:focus {
    border-color: rgba(0,110,234,.35);
    box-shadow: 0 0 0 4px rgba(24,184,255,.12);
}
.report-download-form button {
    height: 54px;
    border: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffffff;
    font-weight: 900;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 18px 38px rgba(0,110,234,.28);
}
@media(max-width: 575px) {
    .report-modal-box {
        padding: 28px 22px;
        border-radius: 24px;
    }
    .report-modal-box h3 {
        font-size: 27px;
    }
}

.cs-hero{
    position:relative;
    overflow:hidden;
    padding:60px 20px;
    background:
    radial-gradient(circle at top right,#d9f5ff 0%,transparent 28%),
    linear-gradient(180deg,#ffffff,#f7fbff);
}
.cs-pattern{
    position:absolute;
    inset:0;
    background-image:
    linear-gradient(rgba(0,100,255,.03) 1px,transparent 1px),
    linear-gradient(90deg,rgba(0,100,255,.03) 1px,transparent 1px);
    background-size:60px 60px;
}
.cs-container{
    max-width:1320px;
    margin:auto;
    position:relative;
    z-index:2;
}
.cs-breadcrumb{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:35px;
    color:#6d7b92;
    font-size:14px;
}
.cs-breadcrumb a{
    color:#6d7b92;
    text-decoration:none;
}
.cs-breadcrumb a:hover{
    color:var(--blue);
}
.cs-hero-grid{
    display:grid;
    grid-template-columns:1.6fr .9fr;
    gap:60px;
    align-items:center;
}
.cs-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:9px 18px;
    border-radius:100px;
    font-size:13px;
    font-weight:700;
    color:var(--blue);
    background:#e9f6ff;
    margin-bottom:22px;
}
.cs-hero-content h1{
    font-size:58px;
    line-height:1.08;
    letter-spacing:-2px;
    color:var(--navy);
    margin-bottom:28px;
}
.cs-hero-content p{
    font-size:19px;
    line-height:1.9;
    color:#68778d;
    max-width:760px;
}
.cs-actions{
    display:flex;
    gap:16px;
    margin-top:40px;
    flex-wrap:wrap;
}
.cs-primary-btn{
    padding:16px 28px;
    border-radius:100px;
    text-decoration:none;
    color:#fff;
    font-weight:700;
    background:linear-gradient(135deg,#0070ff,#18b8ff);
    box-shadow:0 20px 50px rgba(0,112,255,.25);
}
.cs-primary-btn:hover{
    transform:translateY(-3px);
}
.cs-secondary-btn{
    padding:16px 28px;
    border-radius:100px;
    border:1px solid #d8e4f2;
    text-decoration:none;
    color:var(--navy);
    font-weight:600;
    background:#fff;
}
.cs-results-card{
    padding:40px;
    border-radius:30px;
    background:#fff;
    border:1px solid #e5edf6;
    box-shadow:0 30px 70px rgba(15,50,90,.08);
}
.cs-results-title{
    display:block;
    margin-bottom:30px;
    font-size:13px;
    font-weight:700;
    color:var(--blue);
    text-transform:uppercase;
    letter-spacing:1px;
}
.cs-result-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
}
.cs-result-item{
    padding:26px;
    border-radius:20px;
    background:#f8fbfe;
    transition:.35s;
}
.cs-result-item:hover{
    transform:translateY(-6px);
}
.cs-result-item strong{
    display:block;
    font-size:44px;
    color:var(--blue);
}
.cs-result-item p{
    margin-top:10px;
    color:#67758d;
}

.cs-overview{
    padding:20px;
}
.cs-overview-card{
    border-radius:34px;
    padding:55px;
    background:#fff;
    border:1px solid #e6edf5;
    box-shadow:0 30px 70px rgba(15,50,90,.06);
}
.cs-overview-title{
    margin-bottom:45px;
}
.cs-overview-title h2{
    font-size:42px;
    margin-top:14px;
    color:var(--navy);
}
.cs-overview-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}
.cs-overview-item{
    padding:28px;
    border-radius:22px;
    background:#f8fbfe;
}
.cs-overview-item span{
    display:block;
    color:#6b7992;
    margin-bottom:10px;
}
.cs-overview-item strong{
    font-size:20px;
    color:var(--navy);
}
.cs-tags{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}
.cs-tags span{
    padding:8px 15px;
    border-radius:100px;
    background:#eaf6ff;
    color:var(--blue);
    font-weight:600;
}
@media (max-width:1400px){
    .cs-container{
        max-width:1200px;
    }
    .cs-hero-content h1{
        font-size:52px;
    }
}
@media (max-width:1200px){
    .cs-hero-grid{
        gap:40px;
    }
    .cs-hero-content h1{
        font-size:46px;
    }
    .cs-overview-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media (max-width:992px){
    .cs-hero{
        padding:90px 20px 70px;
    }
    .cs-hero-grid{
        grid-template-columns:1fr;
        gap:45px;
    }
    .cs-results-card{
        max-width:650px;
    }
    .cs-hero-content h1{
        font-size:42px;
        letter-spacing:-1px;
    }
    .cs-hero-content p{
        font-size:17px;
        line-height:1.8;
    }
    .cs-overview{
        padding:70px 20px;
    }
}
@media (max-width:768px){
    .cs-breadcrumb{
        flex-wrap:wrap;
        gap:8px;
        font-size:13px;
    }
    .cs-hero-content h1{
        font-size:36px;
    }
    .cs-actions{
        flex-direction:column;
    }
    .cs-primary-btn,
    .cs-secondary-btn{
        width:100%;
        justify-content:center;
        display:flex;
        align-items:center;
    }
    .cs-results-card{
        padding:28px;
    }
    .cs-result-grid{
        gap:16px;
    }
    .cs-result-item{
        padding:18px;
    }
    .cs-result-item strong{
        font-size:34px;
    }
    .cs-overview-card{
        padding:35px 28px;
    }
    .cs-overview-grid{
        grid-template-columns:1fr;
    }
    .cs-overview-title h2{
        font-size:34px;
    }
}
@media (max-width:576px){
    .cs-hero{
        padding:40px 15px;
    }
    .cs-hero-content h1{
        font-size:30px;
        line-height:1.2;
    }
    .cs-hero-content p{
        font-size:15px;
    }
    .cs-results-card{
        padding:22px;
        border-radius:22px;
    }
    .cs-result-grid{
        grid-template-columns:1fr;
    }
    .cs-result-item{
        text-align:center;
    }
    .cs-result-item strong{
        font-size:30px;
    }
    .cs-overview-card{
        padding:24px;
        border-radius:24px;
    }
    .cs-overview-title h2{
        font-size:28px;
    }
    .cs-overview-item{
        padding:20px;
    }
    .cs-overview-item strong{
        font-size:18px;
    }
    .cs-tags span{
        font-size:13px;
    }
}

.cs-detail-section{
    padding:50px 20px;
}
.cs-layout{
    display:grid;
    grid-template-columns:320px 1fr;
    gap:45px;
    align-items:start;
}
.cs-sidebar{
    position:sticky;
    top:100px;
}
.cs-sidebar-card{
    background:#fff;
    border:1px solid #e6edf5;
    border-radius:24px;
    padding:28px;
    margin-bottom:25px;
    box-shadow:0 20px 50px rgba(18,43,71,.05);
}
.cs-sidebar-card h4{
    margin-bottom:22px;
    color:var(--navy);
}
.cs-sidebar-card ul{
    list-style:none;
    padding:0;
    margin:0;
}
.cs-sidebar-card li{
    padding:14px 0;
    border-bottom:1px solid #eef3f8;
}
.cs-sidebar-card li:last-child{
    border-bottom:none;
}
.cs-sidebar-card strong{
    display:block;
    margin-bottom:6px;
}
.cs-sidebar-card nav{
    display:flex;
    flex-direction:column;
}
.cs-sidebar-card nav a{
    padding:14px 0;
    text-decoration:none;
    color:#61728b;
    transition:.3s;
}
.cs-sidebar-card nav a:hover{
    color:var(--blue);
    padding-left:10px;
}
.cs-sidebar-cta{
    border-radius:26px;
    padding:30px;
    background:linear-gradient(135deg,#0057ff,#14b5ff);
    color:#fff;
}
.cs-sidebar-cta span{
    font-size:13px;
    text-transform:uppercase;
    opacity:.8;
}
.cs-sidebar-cta h3{
    margin:18px 0 25px;
}
.cs-sidebar-cta a{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#fff;
    text-decoration:none;
    font-weight:700;
}
.cs-content-block h2{
    font-size:42px;
    margin:18px 0 25px;
}
.cs-content-block>p{
    font-size:18px;
    line-height:1.9;
    color:#6b7a91;
}
.cs-content-block ul.related-link{
    list-style: none;
    padding-left: 15px;
}
.cs-content-block ul.related-link li{
    margin-bottom: 10px;
}
.cs-content-block ul.related-link li a{
    text-decoration: none;
    font-size: 18px;
    color:var(--blue);
}
.cs-challenge-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
    margin-top:40px;
}
.cs-challenge-card{
    padding:30px;
    border-radius:24px;
    border:1px solid #e7edf5;
    background:#fff;
    transition:.35s;
}
.cs-challenge-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(18,43,71,.08);
}
.cs-challenge-card i{
    width:62px;
    height:62px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:18px;
    background:#eef7ff;
    color:var(--blue);
    font-size:22px;
    margin-bottom:20px;
}
.cs-challenge-card h3{
    margin-bottom:12px;
}
.cs-note{
    margin-top:40px;
    padding:30px;
    border-left:5px solid var(--blue);
    background:#f8fbff;
    border-radius:0 20px 20px 0;
}
.cs-note strong{
    display:block;
    margin-bottom:10px;
    color:var(--navy);
}
@media (max-width:1400px){
    .cs-layout{
        grid-template-columns:300px 1fr;
        gap:35px;
    }
}
@media (max-width:1200px){
    .cs-layout{
        grid-template-columns:280px 1fr;
        gap:30px;
    }
    .cs-content-block h2{
        font-size:38px;
    }
    .cs-challenge-card{
        padding:24px;
    }
}
@media (max-width:992px){
    .cs-detail-section{
        padding:70px 20px;
    }
    .cs-layout{
        grid-template-columns:1fr;
    }
    .cs-sidebar{
        position:static;
        order:2;
        margin-top:50px;
    }
    .cs-content{
        order:1;
    }
    .cs-challenge-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media (max-width:768px){
    .cs-detail-section{
        padding:60px 15px;
    }
    .cs-content-block h2{
        font-size:32px;
    }
    .cs-content-block>p{
        font-size:16px;
    }
    .cs-challenge-grid{
        grid-template-columns:1fr;
        gap:18px;
    }
    .cs-sidebar-card{
        padding:22px;
    }
    .cs-sidebar-cta{
        padding:24px;
    }
    .cs-sidebar-card nav{
        gap:4px;
    }
    .cs-sidebar-card nav a{
        padding:12px 0;
    }
}
@media (max-width:576px){
    .cs-detail-section{
        padding:50px 15px;
    }
    .cs-content-block h2{
        font-size:28px;
        line-height:1.25;
    }
    .cs-content-block>p{
        font-size:15px;
        line-height:1.8;
    }
    .cs-sidebar-card{
        border-radius:18px;
        padding:20px;
    }
    .cs-sidebar-cta{
        border-radius:18px;
        padding:20px;
    }
    .cs-challenge-card{
        padding:20px;
        border-radius:18px;
    }
    .cs-challenge-card i{
        width:54px;
        height:54px;
        font-size:18px;
        border-radius:14px;
    }
    .cs-note{
        padding:22px;
        margin-top:30px;
    }
}
.cs-content-block table {
    width: 100%;
    margin: 40px 0;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 20px 55px rgba(6, 25, 54, 0.06);
}
.cs-content-block table thead {
    background:
        radial-gradient(circle at top right, rgba(24, 184, 255, 0.18), transparent 35%),
        linear-gradient(135deg, var(--navy), var(--deep-blue));
}
.cs-content-block table th {
    padding: 20px 24px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 850;
    line-height: 1.5;
    text-align: left;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.cs-content-block table th:last-child {
    border-right: 0;
}
.cs-content-block table td {
    padding: 18px 24px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    vertical-align: top;
    border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
}
.cs-content-block table td:last-child {
    border-right: 0;
}
.cs-content-block table tbody tr:last-child td {
    border-bottom: 0;
}
.cs-content-block table tbody tr {
    transition: 0.3s ease;
}
.cs-content-block table tbody tr:hover {
    background: #f7fbff;
}
.cs-content-block table td:first-child {
    color: var(--navy);
    font-weight: 750;
}
.cs-content-block table a {
    color: var(--blue);
    font-weight: 800;
    text-decoration: none;
}
.cs-content-block table a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .cs-content-block table {
        display: block;
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        border-radius: 18px;
        -webkit-overflow-scrolling: touch;
    }
    .cs-content-block table th,
    .cs-content-block table td {
        padding: 16px 18px;
        font-size: 14px;
    }
    .cs-content-block table::-webkit-scrollbar {
        height: 8px;
    }
    .cs-content-block table::-webkit-scrollbar-track {
        background: #eef5ff;
        border-radius: 999px;
    }
    .cs-content-block table::-webkit-scrollbar-thumb {
        background: linear-gradient(135deg, var(--blue), var(--cyan));
        border-radius: 999px;
    }
}
@media(max-width: 650px) {
    .cs-content-block table {
        margin: 30px 0;
    }
    .cs-content-block table th,
    .cs-content-block table td {
        padding: 14px 16px;
        font-size: 13px;
    }
}

.cs-pagination{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    margin-top:90px;
}
.cs-page-card{
    position:relative;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    min-height:220px;
    padding:34px;
    border-radius:28px;
    text-decoration:none;
    background:#fff;
    border:1px solid #e7edf5;
    transition:.35s;
    box-shadow:0 15px 45px rgba(20,40,70,.05);
}
.cs-page-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#006dff,#18b8ff);
    transform:scaleX(0);
    transition:.35s;
}
.cs-page-card:hover{
    transform:translateY(-8px);
    box-shadow:0 30px 70px rgba(16,55,95,.12);
}
.cs-page-card:hover::before{
    transform:scaleX(1);
}
.cs-page-label{
    display:flex;
    align-items:center;
    gap:10px;
    color:var(--blue);
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}
.cs-page-card h3{
    margin:28px 0;
    font-size:28px;
    line-height:1.35;
    color:var(--navy);
}
.cs-page-meta{
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:#70819a;
    font-size:15px;
}
.cs-page-meta i{
    color:var(--blue);
    transition:.3s;
}
.cs-page-card:hover .cs-page-meta i{
    transform:translateX(6px);
}
.next{
    text-align:right;
}
.next .cs-page-label{
    justify-content:flex-end;
}
.next .cs-page-meta{
    flex-direction:row-reverse;
}
@media (max-width:992px){
    .cs-pagination{
        gap:24px;
        margin-top:70px;
    }
}
@media (max-width:768px){
    .cs-pagination{
        grid-template-columns:1fr;
    }
}
@media (max-width:576px){
    .cs-page-card{
        min-height:auto;
        padding:24px;
        border-radius:20px;
    }
    .cs-page-card h3{
        font-size:22px;
        margin:20px 0;
    }
    .next{
        text-align:left;
    }
    .next .cs-page-label{
        justify-content:flex-start;
    }
    .next .cs-page-meta{
        flex-direction:row;
    }
}

.cs-takeaways{
    margin-bottom:50px;
}
.cs-takeaways h2{
    font-size: 42px;
    margin: 18px 0 25px;
    margin-bottom:20px;
}
.cs-takeaway-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    margin-top:30px;
}
.cs-takeaway-grid article{
    background:#fff;
    border:1px solid var(--border);
    border-radius:24px;
    padding:30px;
    transition:.35s ease;
    box-shadow:0 15px 40px rgba(15,35,65,.05);
}
.cs-takeaway-grid article:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(15,35,65,.10);
}
.cs-takeaway-grid i{
    width:62px;
    height:62px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:18px;
    background:rgba(30,98,255,.08);
    color:var(--blue);
    font-size:24px;
    margin-bottom:22px;
}
.cs-takeaway-grid h3{
    font-size:22px;
    margin-bottom:14px;
    color:var(--navy);
}
.cs-takeaway-grid p{
    color:var(--text-muted);
    line-height:1.8;
}

.cs-methodology{
    margin-bottom:50px;
}
.cs-methodology-card{
    display:flex;
    align-items:flex-start;
    gap:25px;
    padding:40px;
    border-radius:28px;
    background:linear-gradient(135deg,#0b1736,#143f8b);
    color:#fff;
    overflow:hidden;
    position:relative;
}
.cs-methodology-card::before{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    right:-90px;
    top:-90px;
    border-radius:50%;
    background:rgba(255,255,255,.06);
}
.cs-methodology-card i{
    width:72px;
    height:72px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:20px;
    background:rgba(255,255,255,.12);
    font-size:28px;
    flex-shrink:0;
}
.cs-methodology-card h3{
    font-size:28px;
    margin-bottom:15px;
    color:#fff;
}
.cs-methodology-card p{
    color:rgba(255,255,255,.82);
    line-height:1.9;
}

@media(max-width:1200px){
    .cs-executive-summary h2{
        font-size:38px;
    }
}
@media(max-width:992px){
    .cs-executive-summary,
    .cs-takeaways,
    .cs-methodology{
        margin-bottom:65px;
    }
    .cs-takeaway-grid,
    .cs-objective-grid{
        grid-template-columns:repeat(2,1fr);
    }
    .cs-methodology-card{
        padding:35px;
    }
}
@media(max-width:768px){
    .cs-executive-summary h2{
        font-size:32px;
    }
    .cs-executive-summary p{
        font-size:16px;
    }
    .cs-takeaway-grid,
    .cs-objective-grid{
        grid-template-columns:1fr;
    }
    .cs-methodology-card{
        flex-direction:column;
        padding:30px;
    }
    .cs-methodology-card i{
        width:64px;
        height:64px;
        font-size:24px;
    }
}
@media(max-width:576px){
    .cs-executive-summary,
    .cs-takeaways,
    .cs-methodology{
        margin-bottom:50px;
    }
    .cs-executive-summary h2{
        font-size:28px;
    }
    .cs-executive-summary p{
        font-size:15px;
        line-height:1.8;
    }
    .cs-takeaway-grid article{
        padding:22px;
        border-radius:18px;
    }
    .cs-methodology-card{
        padding:24px;
        border-radius:20px;
    }
    .cs-methodology-card h3{
        font-size:24px;
    }
    .cs-methodology-card p{
        font-size:15px;
    }
    .cs-takeaway-grid h3,
    .cs-objective-grid h3{
        font-size:20px;
    }
    .cs-takeaway-grid i{
        width:54px;
        height:54px;
        font-size:20px;
        border-radius:14px;
    }
}

.cs-impact-comparison{
    display:grid;
    grid-template-columns:1fr 90px 1fr;
    gap:30px;
    margin-top:40px;
    align-items:center;
}
.cs-impact-column{
    background:#fff;
    border:1px solid var(--border);
    border-radius:24px;
    padding:35px;
}
.cs-impact-head{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:28px;
}
.cs-impact-head i{
    width:56px;
    height:56px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff4e8;
    color:#ff8a00;
    font-size:22px;
}
.cs-impact-head.success i{
    background:#eafaf0;
    color:#18b45a;
}
.cs-impact-head h3{
    font-size:28px;
    color:var(--navy);
}
.cs-impact-column ul{
    margin:0;
    padding:0;
    list-style:none;
}
.cs-impact-column li{
    position:relative;
    padding-left:30px;
    margin-bottom:18px;
    line-height:1.8;
    color:#6b7a91;
}
.before li::before{
    content:"✕";
    position:absolute;
    left:0;
    color:#ff8a00;
    font-weight:700;
}
.after li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:#18b45a;
    font-weight:700;
}
.cs-impact-arrow{
    display:flex;
    justify-content:center;
    align-items:center;
}
.cs-impact-arrow i{
    width:70px;
    height:70px;
    border-radius:50%;
    background:var(--gradient-brand);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:26px;
}
.cs-faq{
    margin-top:40px;
}
.cs-faq-item{
    border:1px solid var(--border);
    border-radius:18px;
    overflow:hidden;
    margin-bottom:18px;
    background:#fff;
}
.cs-faq-item button{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:none;
    border:none;
    cursor:pointer;
    padding:22px 28px;
    font-size:18px;
    font-weight:600;
    color:var(--navy);
    text-align:left;
}
.cs-faq-item button i{
    transition:.3s;
    color:var(--blue);
}
.cs-faq-content{
    display:none;
    padding:0 28px 24px;
}
.cs-faq-item.active .cs-faq-content{
    display:block;
}
.cs-faq-item.active button i{
    transform:rotate(45deg);
}
.cs-faq-content p{
    color:#6b7a91;
    line-height:1.9;
    margin:0;
}
@media(max-width:992px){
    .cs-impact-comparison{
        grid-template-columns:1fr;
    }
    .cs-impact-arrow{
        transform:rotate(90deg);
    }
}
@media(max-width:576px){
    .cs-impact-column{
        padding:24px;
    }
    .cs-impact-head h3{
        font-size:24px;
    }
    .cs-impact-head i{
        width:48px;
        height:48px;
        font-size:18px;
    }
    .cs-faq-item button{
        padding:18px 20px;
        font-size:16px;
    }
    .cs-faq-content{
        padding:0 20px 20px;
    }
}

.cs-audit-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:24px;
    margin-top:40px;
}
.cs-audit-grid article{
    background:#fff;
    border:1px solid var(--border);
    border-radius:24px;
    padding:32px;
    transition:.35s;
    position:relative;
    overflow:hidden;
}
.cs-audit-grid article::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,#2563eb,#38bdf8);
    opacity:0;
    transition:.35s;
}
.cs-audit-grid article:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(15,35,65,.08);
}
.cs-audit-grid article:hover::before{
    opacity:.03;
}
.cs-audit-grid article>*{
    position:relative;
    z-index:2;
}
.cs-audit-grid i{
    width:62px;
    height:62px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(37,99,235,.08);
    color:var(--blue);
    font-size:24px;
    margin-bottom:20px;
}
.cs-audit-grid h3{
    font-size:22px;
    margin-bottom:12px;
    color:var(--navy);
}
.cs-audit-grid p{
    font-size:16px;
    color:#6b7a91;
    line-height:1.8;
}
.cs-process{
    margin-top:45px;
    position:relative;
}
.cs-process::before{
    content:"";
    position:absolute;
    left:30px;
    top:0;
    bottom:0;
    width:2px;
    background:#dfe8f5;
}
.cs-process-item{
    position:relative;
    display:flex;
    gap:28px;
    padding-bottom:35px;
}
.cs-process-item:last-child{
    padding-bottom:0;
}
.cs-process-item span{
    width:60px;
    height:60px;
    flex-shrink:0;
    border-radius:50%;
    background:var(--gradient-brand);
    color:#fff;
    font-size:20px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    z-index:2;
}
.cs-process-item h3{
    font-size:24px;
    margin-bottom:10px;
    color:var(--navy);
}
.cs-process-item p{
    color:#6b7a91;
    line-height:1.9;
}
.cs-strategy-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
    margin-top:40px;
}
.cs-strategy-grid article{
    background:#fff;
    border-left:5px solid var(--blue);
    border-radius:18px;
    padding:30px;
    box-shadow:0 12px 35px rgba(15,35,65,.05);
    transition:.35s;
}
.cs-strategy-grid article:hover{
    transform:translateY(-8px);
}
.cs-strategy-grid h3{
    font-size:22px;
    margin-bottom:15px;
    color:var(--navy);
}
.cs-strategy-grid p{
    color:#6b7a91;
    line-height:1.8;
}
.cs-deliverables{
    margin-top:35px;
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px;
}
.cs-deliverables div{
    display:flex;
    align-items:center;
    gap:14px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    padding:18px 22px;
    font-weight:600;
    color:var(--navy);
    transition:.3s;
}
.cs-deliverables div:hover{
    transform:translateX(8px);
    box-shadow:0 12px 30px rgba(15,35,65,.06);
}
.cs-deliverables i{
    width:36px;
    height:36px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#eafaf0;
    color:#18b45a;
    font-size:14px;
}
.cs-timeline{
    margin-top:45px;
    display:grid;
    gap:24px;
}
.cs-timeline>div{
    display:flex;
    gap:28px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:22px;
    padding:28px;
    transition:.35s;
}
.cs-timeline>div:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 45px rgba(15,35,65,.07);
}
.cs-timeline span{
    width:140px;
    flex-shrink:0;
    font-weight:700;
    color:var(--blue);
}
.cs-timeline h3{
    font-size:22px;
    margin-bottom:10px;
    color:var(--navy);
}
.cs-timeline p{
    color:#6b7a91;
    line-height:1.8;
}
@media(max-width:992px){
    .cs-audit-grid,
    .cs-strategy-grid,
    .cs-deliverables{
        grid-template-columns:1fr;
    }
    .cs-timeline>div{
        flex-direction:column;
        gap:16px;
    }
    .cs-timeline span{
        width:auto;
    }
}
@media(max-width:768px){
    .cs-process::before{
        left:24px;
    }
    .cs-process-item{
        gap:18px;
    }
    .cs-process-item span{
        width:48px;
        height:48px;
        font-size:16px;
    }
    .cs-process-item h3,
    .cs-strategy-grid h3,
    .cs-audit-grid h3,
    .cs-timeline h3{
        font-size:20px;
    }
}
@media(max-width:576px){
    .cs-audit-grid article,
    .cs-strategy-grid article,
    .cs-timeline>div{
        padding:22px;
    }
    .cs-deliverables div{
        padding:16px 18px;
        font-size:15px;
    }
    .cs-process-item p,
    .cs-strategy-grid p,
    .cs-audit-grid p,
    .cs-timeline p{
        font-size:15px;
    }
}

.cs-related-item{
    display:block;
    padding:20px;
    margin-bottom:18px;
    border:1px solid var(--border);
    border-radius:18px;
    background:#fff;
    text-decoration:none;
    transition:.35s ease;
}
.cs-related-item:last-child{
    margin-bottom:0;
}
.cs-related-item:hover{
    transform:translateY(-6px);
    border-color:rgba(37,99,235,.25);
    box-shadow:0 18px 40px rgba(15,35,65,.08);
}
.cs-related-category{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:6px 12px;
    border-radius:999px;
    background:rgba(37,99,235,.08);
    color:var(--blue);
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.5px;
    margin-bottom:14px;
}
.cs-related-item h5{
    margin:0;
    font-size:18px;
    line-height:1.55;
    color:var(--navy);
    font-weight:700;
}
.cs-related-footer{
    margin-top:18px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    color:var(--blue);
    font-weight:600;
    font-size:15px;
}
.cs-related-footer i{
    transition:.3s ease;
}
.cs-related-item:hover .cs-related-footer i{
    transform:translateX(5px);
}
@media(max-width:768px){
    .cs-related-item{
        padding:18px;
    }
    .cs-related-item h5{
        font-size:17px;
    }
}
.cta-cases{
    margin-top: 20px;
}

.apply-container {
    width: min(1180px, 92%);
    margin: 0 auto;
}
.apply-hero {
    padding: 50px 0 90px;
    background:
        radial-gradient(circle at top right, rgba(56,189,248,.18), transparent 36%),
        linear-gradient(135deg,#07111f,#10243f);
    color: #fff;
}
.apply-hero h1 {
    max-width: 850px;
    font-size: clamp(38px,5vw,66px);
    line-height: 1.06;
    margin-bottom: 22px;
}
.apply-hero p {
    max-width: 760px;
    color: rgba(255,255,255,.78);
    font-size: 18px;
    line-height: 1.8;
}
.apply-section {
    padding: 50px 0;
    background: #f8fafc;
}
.apply-form-box {
    max-width: 900px;
    margin: auto;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    padding: 42px;
}
.apply-header {
    text-align: center;
    margin-bottom: 35px;
}
.apply-header h2 {
    font-size: clamp(30px,4vw,46px);
    color: #0f172a;
    margin-bottom: 12px;
}
.apply-header p {
    color: #64748b;
    line-height: 1.8;
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
}
.form-group.full {
    grid-column: 1/-1;
}
.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #fff;
    font-size: 15px;
    outline: none;
    transition: .3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 0 4px rgba(56,189,248,.12);
}
.file-upload {
    display: flex;
    align-items: center;
    gap: 18px;
    border: 2px dashed #cbd5e1;
    border-radius: 18px;
    padding: 20px;
    background: #f8fafc;
}
.file-upload input {
    display: none;
}
.file-upload label {
    margin: 0;
    padding: 12px 22px;
    border-radius: 999px;
    background: #0f172a;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    transition: .3s;
}
.file-upload label:hover {
    background: #0369a1;
}
.file-upload span {
    color: #64748b;
    font-size: 14px;
}
.submit-btn {
    margin-top: 30px;
    border: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 999px;
    background: #0f172a;
    color: #fff;
    font-weight: 800;
    cursor: pointer;
    transition: .3s;
}
.submit-btn:hover {
    transform: translateY(-2px);
    background: #0369a1;
    box-shadow: 0 15px 35px rgba(3,105,161,.25);
}
@media (max-width:991px){
    .apply-form-box{
        padding:32px;
    }
    .form-grid{
        grid-template-columns:1fr;
    }
    .form-group.full{
        grid-column:auto;
    }
}
@media(max-width:640px){
    .apply-hero{
        padding:90px 0 70px;
    }
    .apply-form-box{
        padding:24px;
    }
    .file-upload{
        flex-direction:column;
        align-items:flex-start;
    }
}

.thankyou-section{
    position:relative;
    overflow:hidden;
    background:#f8fafc;
    padding:80px 0;
}
.thankyou-pattern{
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at top right,rgba(56,189,248,.15),transparent 35%),
        radial-gradient(circle at bottom left,rgba(14,91,255,.08),transparent 35%);
}
.thankyou-container{
    width:min(760px,92%);
    margin:auto;
    position:relative;
}
.thankyou-card{
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:32px;
    padding:55px;
    text-align:center;
    box-shadow:0 25px 80px rgba(15,23,42,.08);
}
.thankyou-icon{
    width:95px;
    height:95px;
    margin:auto;
    border-radius:50%;
    background:#dcfce7;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:44px;
    color:#16a34a;
    margin-bottom:28px;
}
.thankyou-card h1{
    font-size:clamp(36px,5vw,58px);
    color:#0f172a;
    line-height:1.1;
    margin:20px 0;
}
.thankyou-card p{
    max-width:620px;
    margin:auto;
    color:#64748b;
    font-size:17px;
    line-height:1.8;
}
.thankyou-timeline{
    margin:50px 0;
    display:grid;
    gap:18px;
}
.timeline-item{
    display:flex;
    align-items:center;
    gap:20px;
    padding:22px;
    border:1px solid #e2e8f0;
    border-radius:18px;
    text-align:left;
}
.timeline-item span{
    width:52px;
    height:52px;
    border-radius:50%;
    background:#0f172a;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
    flex:0 0 52px;
}
.timeline-item h3{
    color:#0f172a;
    margin-bottom:6px;
}
.timeline-item p{
    margin:0;
    font-size:15px;
}
.thankyou-actions{
    display:flex;
    justify-content:center;
    gap:16px;
    flex-wrap:wrap;
}
.primary-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:15px 28px;
    border-radius:999px;
    background:#0f172a;
    color:#fff;
    text-decoration:none;
    font-weight:800;
    transition:.3s;
}
.primary-btn:hover{
    background:#0369a1;
    transform:translateY(-3px);
}
.secondary-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 28px;
    border-radius:999px;
    border:1px solid #cbd5e1;
    color:#0f172a;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}
.secondary-btn:hover{
    border-color:#0369a1;
    color:#0369a1;
}
@media(max-width:768px){
    .thankyou-card{
        padding:35px 25px;
    }
    .timeline-item{
        align-items:flex-start;
    }
}

