/* ============ TCW Design System ============ */
:root {
  --tcw-bg: #020233;
  --tcw-bg-2: #050740;
  --tcw-primary: #01AEFF;
  --tcw-secondary: #011F96;
  --tcw-accent: #016899;
  --tcw-text: #D1D1D3;
  --tcw-white: #FFFFFF;
  --tcw-offwhite: #F7F8FA;
  --tcw-dark: #414651;
  --tcw-muted: #8A8CB0;
  --tcw-border: rgba(255, 255, 255, 0.08);
  --tcw-card: rgba(255, 255, 255, 0.03);
  --tcw-card-2: rgba(1, 31, 150, 0.25);
  --grad-hero: radial-gradient(1200px 600px at 50% -100px, rgba(1, 174, 255, 0.25), transparent 60%),
    radial-gradient(900px 500px at 80% 40%, rgba(1, 31, 150, 0.35), transparent 60%);
  --grad-blue: linear-gradient(135deg, #0a2a8a 0%, #01AEFF 100%);
  --grad-card: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

* {
  box-sizing: border-box
}

html {
  overflow-x: hidden;
}

html,
body {
  background: var(--tcw-bg);
  color: var(--tcw-text);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--tcw-white);
  font-weight: 700;
}

a {
  color: var(--tcw-primary);
  text-decoration: none
}

a:hover {
  color: #4dc5ff
}

img {
  max-width: 100%;
  display: block
}

/* ============ Header ============ */
.tcw-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.tcw-header.sticky {
  background: rgba(3, 2, 51, 0.98);
  border-bottom: 1px solid var(--tcw-border);
  box-shadow: 0 -8px 20px rgb(0 171 253 / 30%);
}

/* Desktop admin bar */
body.admin-bar .tcw-header.sticky {
    top: 32px;
}

/* Mobile admin bar */
@media (max-width: 782px) {
    body.admin-bar .tcw-header.sticky {
        top: 46px;
    }
}

.navbar-nav .menu-item a {
  color: var(--tcw-offwhite);
  font-family: 'Outfit';
  font-weight: 500;
  font-size: 15px;
  padding: .4rem .75rem;
}

.navbar-nav .menu-item a:hover,
.navbar-nav .menu-item.current-menu-item a {
  color: var(--tcw-primary);
  text-decoration: underline;
}

.contactBtn {
  background: linear-gradient(90deg, var(--tcw-primary) -3.25%, #016899 144.72%);
  border-radius: 8px;
  line-height: 50px;
  transition: all 0.5s ease-in-out;
}

.contactBtn:hover {
  background: linear-gradient(-90deg, var(--tcw-primary) -3.25%, #016899 144.72%);
}

.navbar-nav .menu-item.contactBtn:hover a {
  color: var(--tcw-offwhite) !important;
}

/* Buttons */
.btn-primary-tcw,
.btn-outline-tcw {
  background: linear-gradient(90deg, var(--tcw-primary) -3.25%, #016899 144.72%);
  color: var(--tcw-offwhite);
  border: none;
  font-family: 'Outfit';
  font-weight: 700;
  font-size: 17px;
  line-height: 25px;
  padding: 17px 25px;
  border-radius: 13px;
  transition: transform .15s ease, background .15s ease;
}

.btn-primary-tcw:hover {
  background: linear-gradient(-90deg, var(--tcw-primary) -3.25%, #016899 144.72%);
  color: var(--tcw-offwhite);
  transform: translateY(-1px);
}

.btn-outline-tcw {
  outline: 1px solid var(--tcw-primary);
  background: transparent;
}

.btn-outline-tcw:hover {
  background: linear-gradient(-90deg, var(--tcw-primary) -3.25%, #016899 144.72%);
  color: var(--tcw-offwhite);
  transform: translateY(-1px);
}

/* ============ Hero ============ */
.hero-section {
  position: relative;
  padding: 96px 0 60px;
}

.hero-circle {
  position: absolute;
  width: 540px;
  height: 540px;
  left: 0px;
  top: 7px;
  background: rgba(1, 174, 255, 0.4);
  filter: blur(250px);
  z-index: 1;
}

.hero-globe {
  position: absolute;
  inset: 0;
  background-size: auto;
  background-position: center bottom;
  background-repeat: no-repeat;
  margin-bottom: -200px;
}

.hero-title {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  margin-bottom: 1.25rem;
  max-width: 900px;
  margin-inline-start: auto;
  margin-inline-end: auto;
}

.text-primary-tcw {
  color: var(--tcw-primary)
}

.hero-sub {
  max-width: 720px;
  color: var(--tcw-text);
  font-size: 1rem;
}

.hero-stats {
  margin-top: 56px
}

.stat-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border-radius: 13px;
  padding: 14px 70px 39px 18px;
  text-align: left;
  transition: transform .2s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 0.70px;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--tcw-primary), #01AEFF10);
  -webkit-mask: linear-gradient(var(--tcw-white) 0 0) content-box, linear-gradient(var(--tcw-white) 0 0);
  -webkit-mask-composite: xor;
  z-index: -1;
}

.stat-card.secondCard::before {
  background: linear-gradient(180deg, var(--tcw-primary), #01AEFF10);
}

.stat-card.lastCard::before {
  background: linear-gradient(-90deg, var(--tcw-primary), #01AEFF10);
}

.stat-num {
  font-family: 'Outfit';
  font-weight: 600;
  font-size: 36px;
  line-height: 38px;
  color: var(--tcw-white);
  margin-bottom: .35rem;
}

.stat-label {
  color: var(--tcw-text);
  font-size: .9rem;
  line-height: 1.4
}

/* ============ Logo strip ============ */
.logo-strip {
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: transparent;
  margin-inline: auto;
}

.logo-strip-heading {
  font-family: 'Inter';
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  color: var(--tcw-text);
  margin-bottom: 29px;
}

.logo-slider {
  width:100%;
  max-width: 90%;
  margin: auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  padding: 35px 77px;
  overflow:hidden;
  position:relative;
}

.logo-track {
  display:flex;
  align-items:center;
  width:max-content;
  animation:logoTicker 35s linear infinite;
}

.logo-item {
  flex-shrink:0;
  width:180px;
  margin:0 40px;
  display:flex;
  justify-content:center;
  align-items:center;
}

.logo-item img {
    max-height:55px;
    width:auto;
    transition:.3s ease;
}

@keyframes logoTicker {
  from {
    transform:translateX(0);
  }
  to {
    transform:translateX(-50%);
  }
}

.logo-track:hover {
  animation-play-state:paused;
}

.logo-slider::before,
.logo-slider::after {
  content:"";
  position:absolute;
  top:0;
  width:178px;
  height:100%;
  z-index:2;
}

.logo-slider::before{
  left:0;
  background:linear-gradient(
      to right,
      var(--tcw-bg),
      transparent
  );
}

.logo-slider::after {
  right:0;
  background:linear-gradient(
      to left,
      var(--tcw-bg),
      transparent
  );
}

/* ============ Sections ============ */
.section {
  padding: 83px 0;
  position: relative
}

.section-alt {
  background: linear-gradient(180deg, rgba(1, 31, 150, 0.08), transparent)
}

.eyebrow {
  display: inline-block;
  padding: .35rem 1rem;
  border-radius: 999px;
  background: rgba(1, 174, 255, 0.12);
  color: var(--tcw-primary);
  font-family: 'Outfit';
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(26px, 3.4vw, 56px);
  line-height: 1.15;
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 0;
}

.section-lead {
  max-width: 1088px;
  color: var(--tcw-text);
  font-size: 1rem
}

/* Panels (intro) */
.panel-cards-row {
  margin-top: 87px;
  background: var(--tcw-bg);
  border: 1px solid #272651;
  border-radius: 16px;
}

.panel-cards-row > * {
  margin: 0;
  padding: 0;
}

.panel-card {
  padding: 64px 0 64px 36px;
  padding: 64px 0 64px 36px;
  background: #000033;
  overflow: hidden;
  border-radius: 16px;
}

.panel-card.panel-dark {
  background: linear-gradient(134deg, rgba(30, 30, 84, 0.28) 13.74%, rgba(68, 68, 186, 0.66) 95.2%);
  border-radius: 16px;
  padding: 46px 103px 44px 36px;
}

.panel-card.panel-blue {
  background: linear-gradient(107.79deg, #0D0D43 13.29%, #217FAB 97.7%);
  border: 1px solid #262651;
  border-radius: 16px;
  padding: 46px 103px 44px 36px;
}

.panel-title {
  font-size: 22px;
  margin-bottom: 1rem
}

.panel-content ul {
  margin:0;
  padding:0;
  list-style:none;
}

.panel-content li {
  position:relative;
  padding-left:1.5rem;
  margin-bottom:.65rem;
}

.panel-content li::before {
  content:"";
  position:absolute;
  left:0;
  top:.6rem;
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--tcw-text);
  box-shadow:0 0 0 3px rgba(1,174,255,.2);
}

.panel-content p {
  color:var(--tcw-text);
}

.panel-image {
  border-radius: 0 16px 16px 0;
  overflow: hidden;
  min-height: 280px;
  position: relative;
}

.panel-image:before {
    content: "";
    position: absolute;
    width: 460px;
    left: -196px;
    top: 0;
    bottom: 0;
    background: linear-gradient(60deg, #010133 28.91%, rgba(1, 1, 51, 0) 63.45%);
    z-index: 1;
}

.panel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px
}

/* Feature cards (capabilities) */
.capabilities {
  background: #0E0E3C;
}

.capabilities .section-lead {
  max-width:674px;
  margin-bottom: 59px;
}

.icon-card {
  background:linear-gradient(180deg,#24245a 0%,#1f214c 100%);
  border:1px solid rgba(255, 255, 255, 0.05);
  border-radius:24px;
  padding:30px 23px 53px 23px;
  height:100%;
  transition:.3s ease;
}

.icon-card:hover {
  transform:translateY(-3px);
  border-color:var(--tcw-primary);
}

.icon-card__icon {
  width:48px;
  height:48px;
  border-radius:10px;
  background:rgba(255, 255, 255, 0.1);
  display:flex;
  justify-content:center;
  align-items:center;
  margin-bottom:12px;
}

.icon-card__icon i {
  font-size:24px;
  color:var(--tcw-primary);
  line-height:1;
}

.icon-card__title {
  font-size: 20px;
  line-height: 1.3;
  font-weight:700;
  color: var(--tcw-white);
  margin-bottom:12px;
}

.icon-card__description p {  
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  margin:0;
  color:var(--tcw-text);
}

.capabilitiesSwiper.swiper {
  padding:10px 0 !important;
}

.swiper-slide {
  height:auto;
}

.swiper-slide .icon-card {
  height:100%;
}

.slider-controls {
  display:flex;
  justify-content:center;
  align-items:center;
  gap:42px;
  margin-top:70px;
}

.slider-arrow {
  width:34px;
  height:34px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.28);
  background:transparent;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--tcw-white);
  transition:.3s ease;
  cursor:pointer;
}

.slider-arrow:hover {
  background:rgba(0,183,255,.08);
  border-color:var(--tcw-primary);
  color:var(--tcw-primary);
}

.slider-arrow i {
  font-size:18px;
  line-height:1;
}

.slider-controls .swiper-pagination {
  position:relative;
  width:auto;
  bottom:auto;
  display:flex;
  align-items:center;
  gap:10px;
  max-width: fit-content;
  bottom: auto !important;
}

.slider-controls .swiper-pagination-bullet {
  width:30px;
  height:12px;
  border-radius:30px;
  margin:0 !important;
  background:rgba(255,255,255,.16);
  opacity:1;
  transition:.3s ease;

}

.slider-controls .swiper-pagination-bullet-active {
  background: var(--tcw-primary);

}

.slider-arrow.swiper-button-disabled {
  opacity:.35;
  cursor:not-allowed;

}

/* ai-section Icon items (AI engineered / secure) */
.ai-section {
  position: relative;
  overflow: hidden;
}

.ai-section .container {
  position: relative;
  z-index: 1;
}

.ai-section::before {
  content:"";
  position: absolute;
  width: 632px;
  height: 632px;
  left: -100px;
  top: 80px;
  background: rgba(1, 174, 255, 0.25);
  filter: blur(250px);
  z-index: 0;
}

.ai-section::after {
  content:"";
  position: absolute;
  width: 778px;
  height: 757px;
  left: auto;
  right: -389px;
  top: 400px;
  background: rgba(73, 197, 255, 0.25);
  filter: blur(254px);
  z-index: 0;
}

.ai-section .section-header {
  margin-bottom: 100px;
}

.ai-team-section .section-header {
  margin-bottom: 29px;
}

.icon-item {
  padding: 8px 4px
}

.mini-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--tcw-white);
  border: 1px solid #D5D7DA;
  box-shadow: 0px 1px 2px rgba(10, 13, 18, 0.05), inset 0px 0px 0px 1px rgba(10, 13, 18, 0.18), inset 0px -2px 0px rgba(10, 13, 18, 0.05);
  color: var(--tcw-dark);
  font-size: 24px;
  margin-bottom: 12px;
}

.icon-item h5 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  margin-bottom: 12px
}

.icon-item p {
  color: var(--tcw-text);
  font-size: 14px;
  line-height: 24px;
  margin: 0;
}

/* meet our team inner section */
.ai-team-section {
  margin-top:107px;
  margin-bottom:308px;
}

.use-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 475px;
  padding: 0 24px 51px;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.use-card-body {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 6px;
  height: 150px;
}

.use-card-body h5 {
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
  margin: 0;
}

.use-card-body p {
  color: var(--tcw-text);
  font-size: 15px;
  line-height: 24px;
  margin: 0;
}

/* Integration cards */
.integration-section {
  background:rgba(14,14,60,1);
}

.cards-row {
  position:relative;
  margin-top: 82px;
  z-index:1;
}

.integration-section .cards-row::before {
  content:"";
  position:absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  width: 1px;
  height: 100%;
  max-height: 680px;
  background: #21262D;
  z-index:0;
}

.integration-section .cards-row::after {
  content:"";
  position:absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%);
  width: 100%;
  max-width: 1280px;
  height: 1px;
  background: #21262D;
  z-index:0;
}

.int-card {
  padding: 30px 90px 100px 0;
  text-align: center;
}

.int-card.rightSide {
  padding: 30px 20px 100px 100px;
}

.int-card h5 {
  font-size: 18px;
  margin-bottom: 12px;
}

.int-card p {
  color: var(--tcw-text);
  font-size: 14px;
  line-height: 24px;
  margin: 0;
}

/* Why cards */
.why-choose-section {
  padding-bottom: 176px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.why-choose-section:after {
  content: "";
  position: absolute;
  width: 632px;
  height: 632px;
  right: 0;
  top: 312px;
  background: rgba(1, 174, 255, 0.25);
  filter: blur(250px);
  z-index: -1;
}

.why-cards-row {
  margin-top: 56px;
}

.why-card {
  background: var(--grad-card);
  border: 1px solid var(--tcw-border);
  border-radius: 16px;
  padding: 26px;
  color: var(--tcw-white);
}

.why-card:hover {
  transform: translateY(-3px);
  border-color: rgba(1, 174, 255, 0.35);
}

.why-icon img {
  width: 100%;
  max-width: 44px;
  margin-bottom: 28px;
  margin-inline: auto;
}

.why-card h5 {
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  margin: 0;
  max-width: 212px;
  margin-inline: auto;
}

.why-card p {
  margin: 0;
}

/* Secure & Trusted Cards */
.secure-trusted-section {
  background-color: #0E0E3C;
}

.secure-trusted-section .section-lead {
  max-width: 898px;
  margin-bottom: 27px;
}

.secure-trusted-section .mini-icon {
  width: 40px;
  height: 40px;
  border-radius: 100px;
}

.secure-trusted-section .mini-icon i {
  font-size: 20px;
}

/* Accordion / FAQ */
.faq-section {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.faq-section:before {
  content: "";
  position: absolute;
  width: 632px;
  height: 632px;
  left: -226px;
  top: -196px;
  background: rgba(1, 174, 255, 0.25);
  filter: blur(250px);
  z-index: -1;
}

.tcw-accordion {
  margin-top: 56px;
  max-width: 768px;
}

.tcw-accordion .accordion-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #E9EAEB;
  border-radius: 0;
  overflow: hidden;
}

.tcw-accordion .accordion-item:last-child {
  border-bottom: none;
}

.tcw-accordion .accordion-button {
  background: transparent;
  color: #fff;
  font-family: 'Outfit';
  font-weight: 600;
  font-size: 16px;
  box-shadow: none;
  padding: 24px 0 32px;
}

.tcw-accordion .accordion-button:not(.collapsed) {
  background: transparent
}

.tcw-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent
}

.tcw-accordion .accordion-button::after {
  content: "\F4FA";
  font-family: 'bootstrap-icons';
  font-size: 20px;
  font-weight: 400;
  color: #A4A7AE;
  background-image: none;
  transform: none;
}

.accordion-button:not(.collapsed)::after {
    content: "\F2E6";
    background-image: none;
    transform: none;
}

.tcw-accordion .accordion-body {
  color: var(--tcw-text);
  padding: 0;
  padding-bottom: 30px;
  font-size: 14px;
  line-height: 24px;
}

/* CTA */
.cta-section .section-lead {
  max-width: 768px;
}

.cta-panel {
  padding: 14px 10px;
  border: 1px solid #272651;
  border-radius: 10px;
}

.content-wrapper {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  place-content: center;
  gap: 24px;
  min-height: 406px;
  padding: 43px 30px;
  z-index: 1;
  background: linear-gradient(180.17deg, rgba(0, 0, 50, 0) 15.64%, #000032 99.86%);
}

.content-wrapper:before {
  content: "";
  position: absolute;
  width: 704px;
  height: 534px;
  left: 50%;
  top: -367px;
  transform: translate(-50%);
  background: rgba(140, 69, 255, 0.49);
  filter: blur(152px);
  z-index: -1;
}

.content-wrapper:after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/pattern.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 15px;
  z-index: -1;
}

/* Footer */
.tcw-footer {
  padding: 67px 0 50px;
  background: #0E0E3C;
}

.footer-nav,
.footer-legal-nav {
  list-style: none;
  padding: 0;
  margin: 33px 0 67px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
}

.footer-nav a,
.footer-legal-nav a {
  color: #E9D7FE;
  font-family: 'Outfit';
  font-weight: 500;
  font-size: 17px;
  line-height: 25px;
}

.footer-nav a:hover,
.footer-legal-nav a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 33px;
}

.footer-copy,
.footer-legal-nav a {
  color: #D6BBFB;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 400;
}

.footer-legal-nav {
  justify-content: flex-end;
  margin: 0;
  gap: 1rem;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(3, 2, 51, 0.98);
    border-radius: 14px;
    margin-top: 12px;
    padding: 16px
  }

  .hero-section {
    padding: 64px 0 40px
  }

  .section {
    padding: 64px 0
  }
}