* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.Whyte {
  font-family: "Whyte Inktrap", sans-serif;
}
body {
  background: #ffffff;
  font-family: Inter, Arial, sans-serif;
}
@font-face {
  font-family: "Whyte Inktrap";
  src: url("../fonts/whyte-inktrap/WhyteInktrap-Bold.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
.hero {
  width: calc(100% - 32px);
  min-height: 730px;
  margin: 14px auto;
  padding: 26px 78px;
  border-radius: 0 20px 20px 0;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
} */

#header,
.hero-content,
.product-card {
  position: relative;
  z-index: 2;
}

.hero-content,
.product-card {
  position: relative;
  z-index: 2;
}

.hero-content {
  text-align: center;
  margin-top: 72px;
}

.hero-content h1 {
  color: rgba(222, 242, 255, 0.95);
  font-size: 60px;
  line-height: 0.96;
  font-weight: 700;
  letter-spacing: -1.8px;
}

.hero-content p {
  max-width: 770px;
  margin: 18px auto 0;
  color: #edf5ff;
  font-size: 17px;
  line-height: 1.35;
}

.hero-buttons {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.btn {
  padding: 15px 17px;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}

.white {
  background: #ffffff;
  color: #111111;
}

.black {
  background: #030303;
  color: #ffffff;
}

.product-card {
  max-width: 1226px;
  min-height: 238px;
  margin: 44px auto 0;
  padding: 49px 32px;
  border-radius: 18px;

  background-image: url("../assets/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: space-between;

  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.product-card > * {
  position: relative;
  z-index: 2;
}
.badge {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 5px;
  background: linear-gradient(90deg, #61b7ff, #3735aa);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.product-card h2 {
  margin-top: 14px;
  color: #ffffff;
  font-size: 38px;
  line-height: 1.15;
  font-weight: 800;
}

.product-card p {
  max-width: 570px;
  margin-top: 10px;
  color: rgba(230, 238, 255, 0.88);
  font-size: 17px;
  line-height: 1.35;
}

.arrow {
  min-width: 62px;
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #000000;
  font-size: 38px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  flex-shrink: 0;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.arrow:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  color: #000000;
}

/* partners */

.partners-section {
  width: 100%;
  background: #ffffff;
  padding: 135px 60px 145px;
  overflow: hidden;
}

.partners-title {
  text-align: center;
  color: #a9a9a9;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0.2px;
  margin-bottom: 55px;
}

.partners-slider {
  width: 100%;
  overflow: hidden;
}

.partners-track {
  width: max-content;
  animation: marquee 25s linear infinite;
}

.partner-logo {
  flex: 0 0 auto;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.partners-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}

.partner-logo {
  flex: 0 0 auto;
  width: 150px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}

/* stages */
.delivery-section {
  background: #01031d;
  color: #ffffff;
  padding: 72px 0 90px;
  overflow: hidden;
}

.delivery-container {
  width: 100%;
  max-width: 1226px;
  margin: 0 auto;
  padding: 0 24px;
}
.desktop-title {
  display: block;
}

.mobile-title {
  display: none;
}

.delivery-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 95px;
}

.delivery-heading span {
  color: #5368ff;
  font-size: 14px;
  font-weight: 500;
}

.delivery-heading h2 {
  font-size: 40px;
  line-height: 1.35;
  font-weight: 800;
  margin: 24px 0;
}

.delivery-heading p {
  color: #d7d8e8;
  font-size: 15.5px;
  line-height: 1.55;
}

.stage-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
  min-height: 470px;
  margin-bottom: 90px;
}

.stage-content {
  max-width: 560px;
}

.stage-badge {
  display: inline-flex;
  padding: 8px 16px;
  background: rgba(83, 104, 255, 0.12);
  border-radius: 6px;
  color: #b8bcda;
  font-size: 14px;
  margin-bottom: 16px;
}

.stage-content h3 {
  font-size: 26px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 14px;
}

.stage-content p {
  color: #d7d8e8;
  font-size: 15.5px;
  line-height: 1.5;
  margin-bottom: 24px;
}

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

.stage-content li {
  position: relative;
  color: #d7d8e8;
  font-size: 15px;
  line-height: 1.45;
  padding-left: 28px;
  margin-bottom: 20px;
}

.stage-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #5368ff;
  font-size: 18px;
  font-weight: 700;
}

.stage-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.stage-image img {
  width: 100%;
  max-width: 430px;
  object-fit: contain;
}

/* why us */
.choose-section {
  background: #ffffff;
  padding: 90px 0 105px;
}

.choose-container {
  max-width: 1226px;
  margin: 0 auto;
  padding: 0 50px;
}

.choose-heading {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 55px;
}

.choose-heading span {
  color: #435cff;
  font-size: 13px;
  font-weight: 500;
}

.choose-heading h2 {
  color: #000;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 800;
  margin: 22px 0;
}

.choose-heading p {
  color: #222;
  font-size: 14px;
  line-height: 1.45;
}

.choose-grid {
  display: grid;
  grid-template-columns: 1.15fr 1.35fr;
  gap: 18px;
}

/* .choose-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  min-height: 300px;
  padding: 32px 24px;
  color: #fff;
  background:
    radial-gradient(
      circle at 25% 100%,
      rgba(38, 134, 255, 0.95),
      transparent 45%
    ),
    radial-gradient(
      circle at 70% 90%,
      rgba(48, 200, 226, 0.45),
      transparent 45%
    ),
    linear-gradient(180deg, #020406 0%, #051624 58%, #197ee7 100%);
} */
.choose-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  min-height: 300px;
  padding: 32px 24px;
  color: #fff;

  background:
    url("../assets/Gradient.svg") center center / cover no-repeat,
    radial-gradient(
      circle at 25% 100%,
      rgba(38, 134, 255, 0.95),
      transparent 45%
    ),
    radial-gradient(
      circle at 70% 90%,
      rgba(48, 200, 226, 0.45),
      transparent 45%
    ),
    linear-gradient(180deg, #020406 0%, #051624 58%, #197ee7 100%);
}

.choose-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.18) 1px,
    transparent 1px
  );
  background-size: 3px 3px;
  opacity: 0.18;
  pointer-events: none;
}

.choose-card > * {
  position: relative;
  z-index: 2;
}

.choose-card h3 {
  font-size: 21px;
  line-height: 1.25;
  font-weight: 800;
  margin: 0;
}

.card-ecosystem {
  min-height: 300px;
}

.pill-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 10px;
  margin-top: 32px;
}

.pill-wrap span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.card-accuracy {
  min-height: 300px;
  text-align: left;
}

.accuracy-box {
  width: 185px;
  height: 135px;
  margin: 50px auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
}

.accuracy-box strong {
  font-size: 50px;
  line-height: 1;
  font-weight: 800;
}

.card-accuracy p {
  text-align: center;
  font-size: 15px;
  margin: 0;
}

.card-agent {
  grid-column: span 1;
  min-height: 300px;
}

.card-agent {
  grid-column: 1 / 2;
  width: calc(100% + 220px);
}

.card-agent h3 {
  max-width: 620px;
}

.chat-box {
  border-radius: 14px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
}

.chat-box span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.chat-box p {
  margin: 7px 0 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
}

.chat-box.small {
  max-width: 520px;
  margin-top: 20px;
}

.chat-box.large {
  max-width: 520px;
  margin: 18px 0 0 110px;
}

.card-cloud {
  grid-column: 2 / 3;
  min-height: 300px;
  /* margin-left: 220px; */
}

.db-box {
  width: 140px;
  height: 140px;
  margin: 55px auto 0;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
}

.db-box span {
  width: 58px;
  height: 58px;
  display: block;
  position: relative;
  border: 3px solid #fff;
  border-radius: 50% / 18%;
}

.db-box span::before,
.db-box span::after {
  content: "";
  position: absolute;
  left: -3px;
  right: -3px;
  height: 18px;
  border: 3px solid #fff;
  border-top: 0;
  border-radius: 0 0 50% 50%;
}

.db-box span::before {
  top: 18px;
}

.db-box span::after {
  top: 38px;
}

/* capabilities */

.capabilities-section {
  background: #f5f5f5;
  padding: 100px 0;
  overflow: hidden;
}

.capabilities-section .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

.capabilities-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  color: #4f5dff;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}

.header-content h2 {
  font-size: 2.875rem;
  line-height: 1.12;
  font-weight: 700;
  color: #000;
  max-width: 820px;
  margin-bottom: 24px;
}

.header-content p {
  max-width: 760px;
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

.slider-nav {
  display: flex;
  gap: 18px;
  margin-top: 60px;
}

.nav-btn {
  width: 62px;
  height: 62px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 32px;
  color: #000;
  transition: 0.3s;
}

.nav-btn:hover {
  transform: translateY(-3px);
}

.cards-wrapper {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scrollbar-width: none;
}

.cards-wrapper::-webkit-scrollbar {
  display: none;
}

.capability-card {
  flex: 0 0 410px;
  min-height: 380px;
  background: #e9edf1;
  border: 1px solid #d7dde2;
  border-radius: 22px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.capability-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
}

.capability-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

/* ai delivery  */
.ai-delivery-section {
  background: #02041b;
  padding: 82px 20px 70px;
  color: #ffffff;
  font-family: Arial, sans-serif;
}

.ai-container {
  max-width: 1226px;
  margin: 0 auto;
}

.ai-heading {
  text-align: center;
  margin-bottom: 54px;
}

.ai-heading h2 {
  font-size: 42px;
  line-height: 1.32;
  font-weight: 800;
  margin: 0 0 26px;
  color: #ffffff;
}

.ai-heading p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.45;
  color: #d5d6df;
}

.ai-card {
  background: #151c2a;
  border-radius: 18px;
  padding: 62px 36px;
}

.ai-row {
  display: grid;
  grid-template-columns: 160px 140px 1fr;
  align-items: center;
  gap: 34px;
  margin-bottom: 58px;
}

.ai-row:last-child {
  margin-bottom: 0;
}

.ai-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.ai-line {
  width: 100%;
  border-top: 2px dashed rgba(39, 113, 209, 0.5);
}

.ai-content h3 {
  font-size: 25px;
  line-height: 1.2;
  font-weight: 800;
  margin: 0 0 12px;
  color: #ffffff;
}

.ai-content p {
  font-size: 16px;
  line-height: 1.35;
  margin: 0;
  color: #d2d4dd;
  max-width: 480px;
}

/* zuplon hero */
.zuplon-hero {
  background: #ffffff;
  padding: 120px 64px;
  font-family: Arial, sans-serif;
}

.zuplon-container {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.zuplon-content-card {
  min-height: 580px;
  background: #f7f7f7;
  border: 1px solid #dddddd;
  border-radius: 22px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.zuplon-badge {
  width: fit-content;
  padding: 14px 18px;
  border-radius: 8px;
  background: linear-gradient(230.59deg, #3873ee 33.13%, #184dbb 63.19%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 90px;
}

.zuplon-badge span {
  margin-left: 8px;
}

.zuplon-content-card h2 {
  max-width: 610px;
  font-size: 36px;
  line-height: 1.18;
  font-weight: 800;
  color: #000000;
  margin: 0 0 24px;
}

.zuplon-content-card p {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.35;
  color: #333333;
  margin: 0 0 20px;
}

.zuplon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 178px;
  height: 44px;
  padding: 0 24px;
  background: #000000;
  color: #ffffff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
}

.zuplon-visual-card {
  position: relative;
  min-height: 580px;
  border-radius: 22px;
  overflow: hidden;
  background:
    url("../assets/Gradient.svg") center center / cover no-repeat,
    radial-gradient(circle at 85% 10%, rgba(0, 0, 0, 0.9), transparent 36%),
    radial-gradient(
      circle at 15% 80%,
      rgba(34, 107, 255, 0.95),
      transparent 46%
    ),
    linear-gradient(135deg, #101726, #062034 48%, #2a8fe9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.zuplon-visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.12) 1px,
    transparent 1px
  );
  background-size: 3px 3px;
  opacity: 0.45;
}

.zuplon-logo-box {
  position: absolute;
  top: 52px;
  left: 78px;
  width: 98px;
  height: 98px;
  border-radius: 34px;
  background: #f0eaff;
  color: #1f5dcf;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  font-weight: 500;
  z-index: 5;
}

.efficiency-box {
  width: 372px;
  height: 300px;
  background: #ffffff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.gauge {
  position: relative;
  width: 260px;
  height: 130px;
  border-top: 10px solid #6cc43c;
  border-left: 10px solid #6cc43c;
  border-right: 10px solid #252525;
  border-bottom: 0;
  border-radius: 260px 260px 0 0;
}

.gauge-text {
  position: absolute;
  inset: 38px 0 auto;
  text-align: center;
}

.gauge-text strong {
  display: block;
  font-size: 64px;
  line-height: 1;
  font-weight: 400;
  color: #000000;
}

.gauge-text span {
  font-size: 14px;
  color: #333333;
}

.feature-box {
  width: 372px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px 30px;
  display: flex;
  justify-content: space-between;
  margin-top: 22px;
  z-index: 2;
}

.feature-item {
  text-align: center;
  color: #333333;
  font-size: 13px;
  line-height: 1.05;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: #f0eaff;
  color: #5a2be9;
  border-radius: 14px;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
}

/* blogs & insights */
.blogs-section {
  background: #fff;
  padding: 55px 58px 80px;
  font-family: Arial, sans-serif;
}

.blogs-section h2 {
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  margin: 0 0 36px;
  color: #000;
}

.blog-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1226px;
  margin: 0 auto;
}

.blog-card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.blog-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 14px 0 5px;
  color: #000;
}

.blog-card p {
  font-size: 14px;
  line-height: 1.15;
  color: #555;
  margin: 0;
}

.view-more-btn {
  width: 132px;
  height: 35px;
  background: #000;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto 0;
  font-size: 12px;
  font-weight: 700;
}

.platform-section {
  background: #fff;
  padding: 30px 0px 70px;
  display: grid;
  grid-template-columns: 0.9fr 1.45fr;
  gap: 62px;
  align-items: center;
  max-width: 1226px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
}

.platform-content h2 {
  font-size: 44px;
  font-weight: 700;
  margin: 0 0 18px;
  color: #000;
  line-height: 57px;
}

.platform-content h2 span {
  color: #2f65d9;
}

.platform-content p {
  font-size: 15px;
  line-height: 1.35;
  color: #222;
  margin: 0 0 68px;
}

.platform-buttons {
  display: flex;
  gap: 14px;
}

.platform-buttons a {
  height: 38px;
  padding: 0 14px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.btn-dark {
  background: #000;
  color: #fff;
  border: 1px solid #000;
}

.btn-light {
  background: #fff;
  color: #000;
  border: 1px solid #000;
}

.platform-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

/* Mobile */
.faq-section {
  padding: 30px 20px 80px;
  background: #fff;
}

.faq-container {
  max-width: 1226px;
  margin: 0 auto;
}

.faq-container h2 {
  text-align: center;
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 42px;
}

.faq-item {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  margin-bottom: 24px;
  padding: 16px;
}

.faq-item.active {
  background: #f7f8fb;
  border-color: transparent;
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 700;
  text-align: left;
}

.faq-question span {
  width: 26px;
  height: 26px;
  border: 1px solid #000;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 400;
}

.faq-item p {
  margin: 12px 42px 0 0;
  font-size: 16px;
  line-height: 1.45;
  color: #555;
}

/* cta */
.cta-section {
  background: #fff;
  padding: 30px 20px 80px;
}

.cta-box {
  max-width: 1226px;
  min-height: 310px;
  margin: 0 auto;
  border-radius: 18px;
  padding: 0 36px;
  background:
    url("../assets/Gradient.svg") center center / cover no-repeat,
    radial-gradient(circle at left bottom, #2167f3, transparent 45%),
    radial-gradient(circle at right bottom, #0d5d61, transparent 45%),
    linear-gradient(135deg, #1454d6, #07111c);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cta-box h2 {
  color: #fff;
  font-size: 42px;
  line-height: 1.25;
  font-weight: 800;
  margin: 0;
}

.cta-btn {
  background: #fff;
  color: #000;
  text-decoration: none;
  padding: 16px 24px;
  border-radius: 8px;
  font-weight: 700;
}
