* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --deep-navy: #0a1628;
  --electric-blue: #00d4ff;
  --vibrant-purple: #6b4ce6;
  --accent-green: #00e6b8;
  /* --soft-white: #f8fafc; */
  --dark-bg: #0f1419;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter",
    sans-serif;
  color: var(--deep-navy);
  background: var(--soft-white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Animated Gradient Background */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Navigation */
nav {
  width: 100%;
  padding: 1.5rem 5%;
  background: white;
  backdrop-filter: blur(10px);
  z-index: 1000;
  position: sticky;
  top: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

nav .container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  font-size: 1.5rem;
}

.logo-img {
  height: 50px;
  width: auto;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  color: var(--deep-navy);
}

nav a:hover {
  color: var(--electric-blue);
}

/* Mobile Menu Styles */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  padding: 1rem 0;
  gap: 0;
  align-items: stretch;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.nav-menu.active li {
  padding: 0;
}

.nav-menu.active a {
  display: block;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-menu.active a:last-child {
  border-bottom: none;
}

.nav-cta {
  padding: 0.75rem 1.5rem;
  background-color: #0a66c2;
  color: white;
  font-weight: 600;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(107, 76, 230, 0.3);
} 

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 5% 4rem;
    background-color: #020842;
  position: relative;
}

.hero .container {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-content {
  color: white;
}

.pre-headline {
  color: var(--electric-blue);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.hero h1 strong {
  color: var(--electric-blue);
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

/* Hero actions: stats + CTAs alignment */
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin: 1.5rem 0 2rem 0;
  width: 100%;
  flex-wrap: nowrap;
}

.hero-actions .trust-stats {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin: 0;
  flex: 1 1 auto;
  justify-content: flex-start;
}

.hero-actions .stat {
  text-align: left;
  flex: 0 0 auto;
  min-width: 120px;
}

.stat-value {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  display: block;
}

.stat-label {
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.25rem;
  display: block;
}

.btn-primary {
  padding: 1rem 2.5rem;
    background-color: #0a66c2;
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(107, 76, 230, 0.4);
}

.btn-secondary {
  padding: 1rem 2.5rem;
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--electric-blue);
}

.hero-actions .cta-buttons1 {
  display: flex;
  gap: 1rem;
  margin: 0;
  align-items: center;
  flex-shrink: 0;
}

/* 3D Card Visual */
.hero-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-card {
  position: absolute;
  width: 280px;
  height: 180px;
  background-color: #2c2f84;
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid white;
  padding: 1.5rem;
  color: white;
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


.floating-card:nth-child(1) {
  top: 100px;
  right: 50px;
  animation-delay: 0s;
  z-index: 2;
}

.floating-card:nth-child(2) {
  top: 300px;
  right: 50px;
  z-index: 1;
  animation-delay: 2s;
}

.floating-card:nth-child(3) {
  top: 200px;
  right: 250px;
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.card-icon>img {
  height: 40px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.card-title {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.card-value {
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 800;
  color: var(--accent-green);
}

/* Trust Section */

.trust-section {
  overflow: hidden;
}

.trust-section h3 {
  text-align: center;
  color: rgba(69, 64, 64, 0.429);
  /* font-size: clamp(0.8rem, 1.5vw, 0.9rem); */
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 1rem 1rem 2rem 0rem;
  font-weight: 800;
}

.marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 0.5rem;
  display: flex;
  margin: 0px 0px;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 50px;
  animation: scroll-left 25s linear infinite;
  flex-shrink: 0;

}

/* Pause marquee on hover */
.marquee:hover .marquee-content {
  animation-play-state: paused;
}

.marquee.slow .marquee-content {
  animation-duration: 30s;

}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.partner-1 img,
.partner-2 img,
.partner-3 img,
.partner-4 img,
.partner-5 img,
.partner-6 img,
.partner-7 img {

  width: 200px;
  height: auto;
  max-height: 60px;
  object-fit: contain;
}

.issuer-1 img,
.issuer-4 img,
.issuer-3 img,
.issuer-7 img,
.issuer-6 img {
  width: 200px;
  height: auto;
  max-height: 50px;
  object-fit: contain;
}

.issuer-2 img,
.issuer-5 img {
  width: 150px;
  height: auto;
  /* max-height: 50px; */
  /* object-fit: contain; */
}

/* Section Styles */
section {
  padding: clamp(3rem, 8vw, 6rem) 5%;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--deep-navy);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(0, 0, 0, 0.6);
}

/* Target Audience Cards */
.audience-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.audience-card {
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: clamp(2rem, 4vw, 3rem);
  border: 2px solid rgba(195, 51, 51, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  background-color: rgba(226, 224, 224, 0.6);

}

.audience-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.1);
}

.card-icon-large {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.audience-card h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  margin-bottom: 0.5rem;
  color: var(--deep-navy);
}

.audience-card h4 {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--vibrant-purple);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.audience-card ul {
  list-style: none;
}

.audience-card li {
  padding: 0.75rem 0;
  color: rgba(0, 0, 0, 0.7);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.audience-card li:before {
  content: "✓ ";
  color: var(--accent-green);
  font-weight: 800;
  margin-right: 0.5rem;
}

/* Value Proposition Grid */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
 
}

.value-card {
  background: white;
  border-radius: 20px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid rgb(220, 206, 206);
  transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.value-icon {
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
  display: block;
}

.value-card h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin-bottom: 1rem;
  color: var(--deep-navy);
}

.value-card p {
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.8;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.product-card {
  background: white;
  border-radius: 20px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  overflow: hidden;
  border: 1px solid rgb(226, 211, 211);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 50px 100px rgba(107, 76, 230, 0.2);
}

.product-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.product-icon>img {
  height: 60px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.product-card h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin-bottom: 0.5rem;
  color: var(--deep-navy);
}

.product-tagline {
  color: var(--vibrant-purple);
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.product-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.product-features li {
  padding: 0.5rem 0;
  color: rgba(0, 0, 0, 0.6);
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
}

.product-features li:before {
  content: "• ";
  color: var(--electric-blue);
  font-weight: 800;
  margin-right: 0.5rem;
}

/* SDK Section */
.sdk-section {
    background-color: #020842;
  color: white;
}

.sdk-section .section-header h2,
.sdk-section .section-header p {
  color: white;
}

.sdk-content {
  display: flex;
  gap: 4rem;
  align-items: center;
  flex-direction: column;
  padding: 0 1rem;
}

.code-sample {
  padding: 2rem;
  font-family: "Courier New", monospace;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.code-sample>img {
  height: auto;
  max-height: 500px;
  width: 100%;
  object-fit: contain;
}

.sdk-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.sdk-feature {
  margin-bottom: 2rem;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: transform 0.3s;
}

.sdk-feature:hover {
  transform: translateY(-5px);
}

.sdk-feature h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin-bottom: 0.5rem;
  color: var(--electric-blue);
}

.sdk-feature h4 {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.sdk-feature p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

/* How It Works */
.steps {
  background: white;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  position: relative;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: clamp(80px, 15vw, 120px);
  height: clamp(80px, 15vw, 120px);
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg,
      var(--electric-blue),
      var(--vibrant-purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  position: relative;
  z-index: 1;
}

.step h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin-bottom: 0.5rem;
  color: var(--deep-navy);
}

.step p {
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 1rem;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

/* CTA Section */
.final-cta {
  padding: clamp(4rem, 10vw, 8rem) 5%;
    background-color: #020842;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta .container {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  color: white;
  margin-bottom: 1rem;
}

.final-cta p {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Footer */
footer {
  background-color: #020842;
  color: white;
  padding: clamp(2rem, 5vw, 4rem) 5% 2rem;
}

/* Logo Section - Separate row */
.footer-logo-section {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 1rem;
  align-items: start;
}

.footer-logo {
  margin-top: 1px;
  margin-bottom: 0.5rem;
  max-width: 200px;
}

.responsive-logo {
  width: 100%;
  height: auto;
  display: block;
}

.company-info {
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.company-info p {
  margin-bottom: 0.5rem;
}

.info-label {
  color: var(--electric-blue);
  font-weight: 600;
  margin-right: 0.5rem;
}

.footer-col h4 {
  margin-bottom: 1.5rem;
  margin-top: 0;
  color: var(--electric-blue);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.75rem;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}


.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
}

/* Mobile Navigation Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--deep-navy);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-visual {
    height: auto;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .floating-card {
    position: relative;
    top: 0 !important;
    right: 0 !important;
    width: 220px;
    height: 160px;
  }

  .timeline::before {
    display: none;
  }


}

@media (max-width: 768px) {
  nav ul {
    display: none;
  }

  nav ul.active {
    display: flex;
  }

  .nav-menu {
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero {
    padding: 6rem 5% 3rem;
    min-height: auto;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .hero-actions .trust-stats {
    justify-content: flex-start;
    margin-bottom: 0.75rem;
  }

  .cta-buttons1 {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.75rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .floating-card {
    width: 100%;
    max-width: 280px;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .marquee-content {
    gap: 40px;

  }

  .partner-1 img,
  .partner-2 img,
  .partner-3 img,
  .partner-4 img,
  .partner-5 img,
  .partner-6 img,
  .partner-7 img,
  .issuer-1 img,
  .issuer-2 img,
  .issuer-3 img,
  .issuer-4 img,
  .issuer-5 img,
  .issuer-6 img {
    width: 150px;
    max-height: 45px;
  }

  .trust-stats {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  nav {
    padding: 1rem 5%;
  }

  .logo-img {
    height: 50px;
  }



  .hero {
    padding: 5rem 5% 2rem;
  }

  .trust-stats {
    gap: 1rem;
  }

  .stat {
    min-width: 100px;
  }

  .cta-buttons1 {
    gap: 1rem;
  }

  .floating-card {
    width: 100%;
    height: auto;
    min-height: 140px;
    padding: 1rem;
  }

  .marquee-content {
    gap: 30px;
  }

  .partner-1 img,
  .partner-2 img,
  .partner-3 img,
  .partner-4 img,
  .partner-5 img,
  .partner-6 img,
  .partner-7 img,
  .issuer-1 img,
  .issuer-2 img,
  .issuer-3 img,
  .issuer-4 img,
  .issuer-5 img,
  .issuer-6 img,
  .issuer-7 img {
    width: 120px;
    max-height: 40px;
  }

  .product-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .audience-cards {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }



}

/* Extra small devices */
@media (max-width: 360px) {
  .hero h1 {
    font-size: 1.75rem;
  }


  .btn-primary,
  .btn-secondary {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }
}