:root {
  --text-main: #111;
  --text-muted: #666;
  --border-color: #eee;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
}

/* HEADER */
.navbar {
  border-bottom: 1px solid var(--border-color);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container {
  max-width: 1350px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
}

/* LOGO */
.logo img {
  height: 60px;
}

/* NAV */
.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  margin-left: 40px;
}

/* LINKS */
.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
}

.nav-links li {
  position: relative;
}

.nav-links a,
.nav-links span {
  text-decoration: none;
  color: var(--text-main);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* DROPDOWN ICON */
.arrow {
  font-size: 12px;
  transition: 0.3s;
}

.dropdown:hover .arrow {
  transform: rotate(180deg);
}

/* DROPDOWN */
.dropdown-menu {
  position: absolute;
  top: 110%;
  left: 0;
  width: 270px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.25s ease;
  padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  padding: 12px 18px;
  display: block;
  transition: 0.2s;
}

.dropdown-menu a:hover {
  background: #f6f6f6;
  padding-left: 22px;
}

.dropdown-menu strong {
  font-size: 14px;
}

.dropdown-menu p {
  font-size: 12px;
  color: var(--text-muted);
}

/* ACTIONS */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 25%;
}

.btn-contact {
  border: 1.5px solid #111;
  padding: 8px 18px;
  border-radius: 22px;
  background: transparent;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
  text-decoration: none;
  align-content: center;
  color: #000;
  text-align:center;
}
a {
  text-decoration: none;
}

.btn-contact:hover {
  background: #111;
  color: #fff;
}

.link-signin {
  text-decoration: none;
  font-weight: 600;
  color: #111;
  text-align: center;
  width: 100%;
  padding: 8px;
  border-radius: 10px;
  background: #f6f6f6;
}

/* MOBILE BUTTON */
.mobile-toggle {
  display: none;
  margin-left: auto;
  cursor: pointer;
  border: none;
  background: none;
  width: 30px;
  height: 24px;
  position: relative;
}

/* HAMBURGER */
.bar {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #111;
  left: 0;
  transition: 0.3s ease;
}

.bar:nth-child(1) {
  top: 0;
}
.bar:nth-child(2) {
  top: 10px;
}
.bar:nth-child(3) {
  bottom: 0;
}

/* ANIMATION */
.mobile-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}
.mobile-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 10px;
}

/* CLOSE BUTTON */
.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 22px;
  cursor: pointer;
  display: none;
}

/* OVERLAY */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 992px) {
  /* BODY LOCK WHEN MENU OPEN */
  body.menu-open {
    overflow: hidden;
  }
  .logo img {
    height: 50px;
  }

  /* MOBILE MENU PANEL */
  .nav-content {
    position: fixed;
    right: -100%;
    top: 0;
    height: 100vh;
    width: 300px;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px;
    transition: 0.35s cubic-bezier(0.77, 0, 0.18, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08);
    border-left: 1px solid #f1f1f1;
  }

  .nav-content.active {
    right: 0;
  }

  /* CLOSE BUTTON */
  .close-btn {
    display: block;
    top: 18px;
    right: 18px;
    font-size: 20px;
    background: #f5f5f5;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    transition: 0.2s;
  }

  .close-btn:hover {
    background: #111;
    color: #fff;
  }

  /* NAV LINKS */
  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  /* EACH ITEM */
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid #f1f1f1;
  }

  /* LINK STYLE */
  .nav-links a,
  .nav-links span {
    /* width: 100%; */
    padding: 14px 0;
    font-size: 16px;
    justify-content: space-between;
  }

  /* DROPDOWN */
  .dropdown-menu {
    display: none;
    position: static;
    border: none;
    box-shadow: none;
    padding: 0 0 10px 10px;
  }

  /* DROPDOWN ACTIVE */
  .dropdown.active .dropdown-menu {
    display: block;
    /* animation: fadeSlide 0.3s ease; */
  }

  @keyframes fadeSlide {
    from {
      opacity: 0;
      transform: translateY(-5px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* DROPDOWN ITEMS */
  .dropdown-menu a {
    padding: 10px 0;
    font-size: 14px;
  }

  /* ARROW ROTATE */
  .dropdown.active .arrow {
    transform: rotate(180deg);
  }

  /* ACTION AREA */
  .nav-actions {
    flex-direction: column;
    width: 100%;
    margin-top: 25px;
    gap: 12px;
  }

  /* BUTTON STYLE */
  .btn-contact {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    font-size: 15px;
    text-align:center;
  }

  /* SIGN IN */
  .link-signin {
    text-align: center;
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    background: #f6f6f6;
  }
  .mobile-toggle {
    display: block;
  }
}
:root {
  --bg-yellow: #fff9c4; /* Light yellow base */
  --gradient-inner: #fffce0;
  --text-dark: #1a2b23;
  --text-muted: #2d3e35;
  --primary-font: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: var(--primary-font);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  width: 100%;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  /* Radial gradient to mimic the "glow" in the image */
  background: radial-gradient(
    circle at center,
    #ffffff 33%,
    #fff6a1 60%,
    #fded6d 66%
  );
  overflow: hidden;
}

/* --- Badge Component --- */
.badge-container {
  display: inline-flex;
  align-items: center;
  background: white;
  padding: 6px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.badge-token {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  color: #111;
}

.badge-token img {
  width: 50px;
  height: 30px;
}

.badge-label {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  border-left: 1px solid #eee;
}

/* --- Typography --- */
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem); /* Responsive sizing */
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.1;
  max-width: 800px;
  margin-bottom: 30px;
  letter-spacing: -1px;
}

.sub-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 500;
}

.arrow-icon {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #d4af37; /* Gold arrow */
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
  }
  .hero h1 {
    max-width: 100%;
  }
}
:root {
  --bg: #fafafa;
  --card-bg: rgba(255, 255, 255, 0.8);
  --text-main: #111827;
  --text-muted: #6b7280;
  --accent: #ffd700;
}

/* --- Bento Grid --- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.bento-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-card:hover {
  transform: translateY(-10px);
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border-color: var(--accent);
}

/* Decorative Gradient Glow on Hover */
.bento-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.1) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s;
}

.bento-card:hover::before {
  opacity: 1;
}

/* --- Card Content --- */
.card-top {
  position: relative;
  z-index: 2;
}

.asset-symbol {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: block;
}

.asset-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 16px;
}

.asset-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}

.card-footer {
  margin-top: 40px;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-main);
  gap: 8px;
  transition: gap 0.3s;
}

.bento-card:hover .card-footer {
  gap: 15px;
  color: #b8860b;
}

/* --- Verification Banner (Modern Bar) --- */
.trust-bar {
  background: var(--text-main);
  color: white;
  border-radius: 100px;
  padding: 12px 12px 12px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.trust-bar p {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

.btn-reports-alt {
  background: var(--accent);
  color: #000;
  border: none;
  padding: 12px 30px;
  border-radius: 100px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s;
}

.btn-reports-alt:hover {
  transform: scale(1.05);
  background: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .trust-bar {
    border-radius: 20px;
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 20px;
  }
}
:root {
  --gold: #ffd700;
  --dark: #0a0a0a;
  --slate: #64748b;
}

.feature-container {
  max-width: 1350px;
  margin: 100px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

/* --- Content Side --- */
.content-side {
  max-width: 500px;
}

.feature-pill {
  display: inline-block;
  padding: 6px 16px;
  background: #fff9c4;
  color: #856404;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

h2 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -0.04em;
}

p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--slate);
  /* margin-bottom: 40px; */
}

/* --- Visual Stack Side --- */
.visual-stack {
  position: relative;
  height: 450px;
}

/* Main Glass Card */
.glass-card {
  position: absolute;
  width: 80%;
  height: 300px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 24px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
  z-index: 2;
  padding: 30px;
  transition: transform 0.4s ease;
}

/* Representing "Regulated Financial Solutions" */
.card-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #f5f5f5;
}

.item-icon {
  width: 40px;
  height: 40px;
  background: #f8f9fa;
  border-radius: 10px;
}
.item-text h4 {
  font-size: 14px;
  margin-bottom: 2px;
}
.item-text p {
  font-size: 12px;
  margin: 0;
  color: #999;
}

/* Floating Accent Card */
.accent-card {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 220px;
  background: var(--dark);
  color: white;
  padding: 24px;
  border-radius: 20px;
  z-index: 3;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  animation: float 5s ease-in-out infinite;
}

/* Floating Token Badge representing PAXG/USDG */
.token-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--gold);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  z-index: 4;
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-10px, -20px);
  }
}

@media (max-width: 992px) {
  .feature-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }
  .content-side {
    max-width: 100%;
    margin: 0 auto;
  }
  .visual-stack {
    height: 400px;
    display: flex;
    justify-content: center;
  }
  .glass-card {
    width: 100%;
    position: relative;
  }
  .accent-card {
    right: 10%;
  }
}
:root {
  --dark: #0a0a0a;
  --green-glow: rgba(16, 185, 129, 0.15);
  --blue-glow: rgba(59, 130, 246, 0.15);
  --text-gray: #64748b;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: #fff;
  overflow-x: hidden;
}

.section-container {
  max-width: 1400px;
  margin: 100px auto;
  padding: 0 20px;
}

.section-intro {
  margin-bottom: 80px;
}
.section-intro p {
  color: var(--text-gray);
  font-weight: 600;
  margin-bottom: 10px;
}
.section-intro h2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

/* --- Grid Layout --- */
.product-stack {
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.product-row {
  display: flex;
  align-items: center;
  gap: 80px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.product-row.visible {
  opacity: 1;
  transform: translateY(0);
}
.product-row.reverse {
  flex-direction: row-reverse;
}

/* --- Visual Side --- */
.visual-side {
  flex: 1.2;
  position: relative;
  height: 400px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-green {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}
.bg-blue {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

/* Floating UI Elements */
.ui-mockup {
  width: 320px;
  height: 200px;
  background: white;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  padding: 24px;
  position: relative;
  z-index: 2;
}

.ui-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
}

/* --- Text Side --- */
.text-side {
  flex: 0.8;
}
.category {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-gray);
  margin-bottom: 20px;
  display: block;
}
.text-side h3 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 800;
}
.text-side p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-gray);
  margin-bottom: 40px;
}

.btn-action {
  padding: 16px 40px;
  background: var(--dark);
  color: white;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition: transform 0.3s;
}

.btn-action:hover {
  transform: scale(1.05);
}

/* Mobile */
@media (max-width: 992px) {
  .product-row,
  .product-row.reverse {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .visual-side {
    width: 100%;
    height: 300px;
  }
  .section-intro h2 {
    font-size: 2.5rem;
  }
}

:root {
  --text-dark: #111827;
  --text-muted: #6b7280;
  --primary-font: "Inter", sans-serif;
  --btn-bg: #111827;
}

/* --- Section --- */
.landing-section {
  width: 90%;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background-image: url(../img/bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: solid 1px #000;
  border-radius: 28px;
  margin: 0 auto;
}

/* --- Layout --- */
.landing-wrapper {
  max-width: 1350px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* --- Text --- */
.landing-text {
  max-width: 580px;
}

.main-heading {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.sub-text {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 40px;
}

/* --- Button --- */
.primary-btn {
  display: inline-block;
  padding: 14px 32px;
  background-color: var(--btn-bg);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 14px;
  transition: 0.2s;
}

.primary-btn:hover {
  background-color: #333;
  transform: translateY(-2px);
}

/* --- Right Area --- */
.visual-box {
  width: 100%;
  height: 300px;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .landing-section {
    min-height: 80vh;
  }

  .landing-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .landing-text {
    margin: 0 auto;
  }
}
:root {
  --dark: #0f172a;
  --primary: #111827;
  --glass: rgba(255, 255, 255, 0.03);
}

.cta-wrapper {
  position: relative;
  width: 100%;
  height: 50vh;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #ffffff;
}

/* --- Animated Mesh Background --- */
.aura-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  filter: blur(100px);
  opacity: 0.6;
}

.blob {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  animation: move 20s infinite alternate;
}

.blob-1 {
  background: #dcfce7;
  top: -10%;
  left: -10%;
  animation-delay: 0s;
}
.blob-2 {
  background: #eff6ff;
  bottom: -10%;
  right: -10%;
  animation-delay: -5s;
}
.blob-3 {
  background: #fef9c3;
  top: 20%;
  right: 20%;
  animation-delay: -10s;
}

@keyframes move {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(100px, 100px) scale(1.2);
  }
}

/* --- Content Container --- */
.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 0 40px;
}

.cta-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 48px;
}

/* --- Button Aesthetics --- */
.button-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.btn-elite {
  position: relative;
  padding: 18px 44px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 100px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}

/* Dark Magnetic Button */
.btn-dark {
  background: var(--primary);
  color: white;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.15);
}

.btn-dark:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(17, 24, 39, 0.3);
  background: #000;
}

/* Glass Outline Button */
.btn-glass {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--primary);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-glass:hover {
  background: #ffffff;
  border-color: var(--primary);
  transform: translateY(-5px);
}

/* Decorative "Shine" Effect on Hover */
.btn-elite::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: rotate(45deg);
  transition: 0.8s;
  pointer-events: none;
}

.btn-elite:hover::after {
  left: 120%;
}

/* Mobile */
@media (max-width: 768px) {
  .button-row {
    flex-direction: column;
  }
  .btn-elite {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}
:root {
  --footer-bg: #ffffff;
  --text-main: #111827;
  --text-muted: #6b7280;
  --border-color: #f3f4f6;
  --accent: #ffd700;
}

.site-footer {
  background-color: var(--footer-bg);
  padding: 80px 0 40px;
  border-top: 1px solid var(--border-color);
  color: var(--text-main);
}

.container1 {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: block;
}

/* --- Top Section: Logo & Columns --- */
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

/* Logo Area */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  height: 43%;
  width: 35%;
  display: block;
}

.brand-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 240px;
}

/* Link Columns */
.footer-column h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  color: var(--text-main);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  text-decoration: none;
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text-main);
}

/* --- Bottom Section: Copyright & Legal --- */
.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  font-size: 13px;
  color: var(--text-muted);
}

.legal-links {
  display: flex;
  gap: 24px;
}

.legal-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
}

.legal-links a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: span 2;
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: span 1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
:root {
  --primary: #0f172a;
  --accent: #6366f1;
  --bg-muted: #f8fafc;
  --glass: rgba(255, 255, 255, 0.7);
  --border-glass: rgba(255, 255, 255, 0.4);
}

.feature-hero {
  position: relative;
  min-height: 70vh;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 80px 4%;
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 60%);
}

.container2 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 80px;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  z-index: 10;
}

/* --- Left Content --- */
.hero-content2 {
  text-align: left;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: #dbeafe;
  color: var(--accent);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.badge-dot {
  height: 8px;
  width: 8px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 8px;
  animation: pulse 1.5s infinite;
}

h1 {
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--primary);
  letter-spacing: -0.01em;
}
p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #64748b;
  max-width: 480px;
  /* margin-bottom: 40px; */
}

.btn-primary {
  display: inline-block;
  padding: 16px 36px;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #1e293b;
  transform: translateY(-2px);
}

.trusted-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #94a3b8;
  margin-top: 60px;
  margin-bottom: 24px;
}
.trusted-logos {
  display: flex;
  gap: 30px;
  opacity: 0.5;
  filter: grayscale(1);
  font-weight: 800;
  font-size: 1.1rem;
}

/* --- Right Visual (The Fix) --- */
.hero-visual {
  display: flex;
  justify-content: center;
  perspective: 1000px; /* Essential for 3D effect */
}

.image-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: 32px;
  padding: 20px;
  box-shadow: 0 40px 80px rgba(15, 23, 42, 0.08);
  transition: transform 0.1s ease-out;
  transform-style: preserve-3d;
}

.image-card img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
  /* This gives the image its own depth inside the card */
  transform: translateZ(30px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(99, 102, 241, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0);
  }
}

@media (max-width: 1024px) {
  .container2 {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    order: 2;
  }
  .hero-visual {
    order: 1;
    margin-bottom: 60px;
  }
  h1 {
    font-size: 2.8rem;
  }
}

/* Container & Layout */
.solutions-section {
  padding: 80px 0;
  font-family:
    "Inter",
    -apple-system,
    sans-serif;
}

.solutions-container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 24px;
}

.solutions-grid {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}

/* Header Styles */
.solutions-header {
  flex: 1;
}

.solutions-title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.3;
  color: #111;
  margin: 0;
}

/* Content & Card Styles */
.solutions-content {
  flex: 1.2;
}

.solution-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.solution-card-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: #111;
  margin: 0;
}

.solution-description {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin: 0;
}

.solution-divider {
  border: 0;
  border-top: 1px solid #eaeaea;
  margin: 32px 0;
}

/* Responsive Logic */
@media (max-width: 900px) {
  .solutions-grid {
    flex-direction: column;
    gap: 48px;
  }

  .solutions-title {
    font-size: 1.75rem;
  }
}

:root {
  --primary: #000000;
  --secondary: #666666;
  --accent: #e6bb0e; /* Crypto-blue accent */
  --bg: #ffffff;
  --border: #eeeeee;
}

.floating-services {
  padding: 40px 0;
  background-color: var(--bg);
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.wrapper {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header Logic */
.row-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 100px;
}

.main-heading {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -1.5px;
  margin: 0;
  line-height: 1;
}

.main-heading span {
  color: var(--secondary);
  font-weight: 400;
}

.header-side {
  max-width: 320px;
}

.header-side p {
  color: var(--secondary);
  font-size: 16px;
  margin-bottom: 20px;
}

.text-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}

.text-link span {
  transition: transform 0.2s;
  display: inline-block;
}

.text-link:hover span {
  transform: translateX(5px);
}

/* Grid Logic */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}

.service-item {
  position: relative;
  transition: transform 0.3s ease;
}

.icon-box {
  color: var(--accent);
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.service-item:hover .icon-box {
  transform: translateY(-5px);
}

.service-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 20px 0;
}

.summary {
  font-weight: 600;
  font-size: 15px;
  color: var(--primary);
  margin-bottom: 15px;
  line-height: 1.4;
}

.description {
  font-size: 14px;
  color: var(--secondary);
  line-height: 1.6;
}

/* The Animated Underline */
.hover-line {
  position: absolute;
  top: -20px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--border);
  transition:
    width 0.4s ease,
    background 0.4s ease;
}

.service-item:hover .hover-line {
  width: 100%;
  background: var(--accent);
}

/* Responsive */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .row-header {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .main-heading {
    font-size: 40px;
  }
}
:root {
  --primary-blue: #e2bd05;
  --dark-text: #1e293b;
  --light-text: #64748b;
  --bg-soft: #ffffff;
  --accent-tint: #f0f7ff;
}

.split-showcase {
  padding: 100px 0;
  background-color: var(--bg-soft);
  font-family: "Inter", system-ui, sans-serif;
  overflow: hidden;
}

.split-container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 24px;
}

.split-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* Content Styling */
.split-column {
  flex: 1;
}

.split-label {
  display: inline-block;
  color: var(--primary-blue);
  background: var(--accent-tint);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.split-title {
  font-size: 42px;
  line-height: 1.1;
  color: var(--dark-text);
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -1px;
}

.split-text {
  font-size: 18px;
  line-height: 1.6;
  color: var(--light-text);
  margin-bottom: 30px;
}

/* List Styling */
.split-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.split-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 500;
  color: var(--dark-text);
}

.split-list span {
  color: var(--primary-blue);
  font-weight: 900;
}

.split-cta {
  display: inline-block;
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.split-cta:hover {
  border-bottom-color: var(--primary-blue);
  padding-left: 5px;
}

/* Image Styling with "Stack" Effect */
.image-stack {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-backdrop {
  position: absolute;
  width: 110%;
  height: 80%;
  background: var(--accent-tint);
  border-radius: 40px;
  transform: rotate(-3deg);
  z-index: 1;
}

.main-image {
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: 24px;
  /* box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15); */
  transition: transform 0.5s ease;
}

.image-stack:hover .main-image {
  transform: scale(1.02) translateY(-10px);
}

/* Mobile Responsiveness */
@media (max-width: 968px) {
  .split-row {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }

  .split-list li {
    justify-content: center;
  }

  .image-backdrop {
    width: 100%;
    transform: rotate(0deg);
  }
}
:root {
  --brand-green: #2ecc71;
  --brand-dark: #121212;
  --text-gray: #666;
}

.feature-block {
  padding: 60px 5%;
  display: flex;
  justify-content: center;
}

.feature-layout {
  max-width: 1350px;
  display: flex;
  gap: 80px;
  align-items: center;
  width: 100%;
}

/* Info Column */
.feature-info {
  flex: 1.2;
}

.feature-title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.feature-description {
  font-size: 1.1rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 35px;
}

/* Buttons */
.action-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--brand-dark);
  color: #fff;
}

.btn-secondary {
  border: 1px solid #e0e0e0;
  color: #333;
}

/* Partners */
.partner-section {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.partner-label {
  font-size: 0.85rem;
  color: #999;
}

.partner-icons {
  display: flex;
  gap: 20px;
  opacity: 0.7;
  flex-wrap: wrap;
}

/* Graphic Column */
.feature-graphic {
  flex: 1;
  background: radial-gradient(circle at top left, #93fb93, #ffffff, #c7ffce);
  border-radius: 30px;
  height: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* UI Card */
.ui-modal {
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  width: 340px;
  max-width: 100%;
}

.ui-label {
  font-size: 0.75rem;
  color: #aaa;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ui-selector {
  display: flex;
  gap: 8px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.option {
  flex: 1;
  padding: 12px;
  border: 1px solid #f0f0f0;
  border-radius: 10px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  min-width: 90px;
}

.option.selected {
  border-color: var(--brand-green);
  background: #fafffb;
}

.ui-submit-btn {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 40px;
  background: linear-gradient(135deg, #66cc66, #009966);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
}

/* =========================
   TABLET (992px)
========================= */
@media (max-width: 992px) {
  .feature-layout {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .feature-title {
    font-size: 2.6rem;
  }

  .action-buttons,
  .partner-section {
    justify-content: center;
  }

  .feature-graphic {
    height: 420px;
  }
}

/* =========================
   MOBILE (768px)
========================= */
@media (max-width: 768px) {
  .feature-block {
    padding: 50px 20px;
  }

  .feature-title {
    font-size: 2.2rem;
  }

  .feature-description {
    font-size: 1rem;
  }

  .ui-modal {
    padding: 24px;
  }

  .feature-graphic {
    height: auto;
    padding: 30px 15px;
  }
}

/* =========================
   SMALL MOBILE (480px)
========================= */
@media (max-width: 480px) {
  .feature-title {
    font-size: 1.8rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .action-buttons {
    flex-direction: column;
  }

  .partner-section {
    flex-direction: column;
    gap: 10px;
  }

  .ui-modal {
    width: 100%;
    padding: 20px;
  }

  .ui-submit-btn {
    font-size: 1rem;
    padding: 14px;
  }
}

:root {
  --color-primary: #1a1a1a;
  --color-secondary: #6b7280;
  --bg-gradient: radial-gradient(circle at top left, #f1fcf1, #ffffff, #e6f7e9);
}

.payout-module {
  padding: 40px 5%;
  font-family: "Inter", system-ui, sans-serif;
  max-width: 1350px;
  margin: 0 auto;
}

/* Header Styles */
.payout-header {
  /* text-align: center; */
  margin-bottom: 80px;
}

.payout-upper-tag {
  font-size: 0.85rem;
  color: var(--color-secondary);
  text-transform: capitalize;
  margin-bottom: 8px;
}

.payout-main-heading {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--color-primary);
  font-weight: 600;
}

/* Row & Layout */
.payout-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 50px;
}

/* Flex-direction magic for alternating rows */
.payout-row--flipped {
  flex-direction: row-reverse;
}

.payout-content {
  flex: 1;
}

.payout-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* Visual Frame (The green gradient box) */
.payout-frame {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1;
  background: var(--bg-gradient);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payout-img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Typography elements */
.payout-category {
  display: block;
  font-size: 0.8rem;
  color: var(--color-secondary);
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 8px;
  margin-bottom: 24px;
  width: 100%;
}

.payout-sub-heading {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 16px;
  color: var(--color-primary);
}

.payout-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-secondary);
  margin-bottom: 16px;
}

/* FULL RESPONSIVENESS */

@media (max-width: 992px) {
  .payout-row,
  .payout-row--flipped {
    flex-direction: column; /* Stacks vertically on tablet/mobile */
    text-align: left;
    gap: 30px;
  }

  .payout-visual {
    width: 100%;
    order: -1; /* Graphic always moves to top of text on mobile */
  }

  .payout-frame {
    max-width: 100%;
    height: 320px; /* Shorter height for mobile screens */
  }
}

@media (max-width: 480px) {
  .payout-module {
    padding: 40px 20px;
  }

  .payout-main-heading {
    font-size: 1.8rem;
  }
}
:root {
  --text-main: #111827;
  --text-muted: #4b5563;
  --border-light: #e5e7eb;
}

.benefits-module {
  max-width: 1350px;
  margin: 80px auto;
  padding: 0 24px;
  font-family: "Inter", system-ui, sans-serif;
}

.benefits-title {
  text-align: center;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--text-main);
  margin-bottom: 80px;
  font-weight: 500;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.benefits-card {
  border-top: 1px solid var(--border-light);
  padding-top: 32px;
}

.benefits-icon-box {
  width: 32px;
  height: 32px;
  margin-bottom: 24px;
}

.benefits-icon {
  width: 100%;
  height: auto;
  /* Optional: filter to make icons look green if using black SVGs */
  /* filter: invert(48%) sepia(79%) saturate(2476%) hue-rotate(114deg) brightness(118%) contrast(119%); */
}

.benefits-subtitle {
  font-size: 1.25rem;
  color: var(--text-main);
  margin-bottom: 16px;
  font-weight: 600;
}

.benefits-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* RESPONSIVENESS */

/* Tablet: 2 columns */
@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: 1 column */
@media (max-width: 640px) {
  .benefits-module {
    margin: 60px auto;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 60px; /* More space between stacked items */
  }

  .benefits-title {
    margin-bottom: 60px;
  }
}
:root {
  --split-text-dark: #111827;
  --split-text-muted: #374151;
  --split-border: #d1d5db;
}

.split-module {
  padding: 100px 5%;
  background-color: #ffffff;
  font-family: "Inter", system-ui, sans-serif;
}

.split-container1 {
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  gap: 80px; /* Large gap for a clean, airy feel */
  align-items: flex-start;
}

/* Left Column */
.split-heading-area {
  flex: 1;
}

.split-main-title {
  font-size: clamp(1.2rem, 4vw, 2.8rem);
  color: var(--split-text-dark);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.02em;
}

/* Right Column */
.split-content-area {
  flex: 1;
  padding-top: 10px; /* Aligns visually with the top of the large text */
}

.split-sub-title {
  font-size: 1.8rem;
  color: var(--split-text-dark);
  margin-bottom: 20px;
  font-weight: 500;
}

.split-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--split-text-muted);
  margin-bottom: 32px;
}

/* Button Styling */
.split-cta-btn {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid var(--split-text-dark);
  border-radius: 50px;
  text-decoration: none;
  color: var(--split-text-dark);
  font-weight: 500;
  transition: all 0.3s ease;
}

.split-cta-btn:hover {
  background-color: var(--split-text-dark);
  color: #ffffff;
}

/* RESPONSIVENESS */

@media (max-width: 1024px) {
  .split-container {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .split-module {
    padding: 60px 24px;
  }

  .split-container {
    flex-direction: column; /* Stack vertically on small screens */
    gap: 40px;
  }

  .split-main-title {
    font-size: 2.5rem;
  }

  .split-sub-title {
    font-size: 1.5rem;
  }
}
:root {
  --cta-dark: #111827;
  --cta-green-light: #e6f9ed;
}

.cta-banner {
  padding: 100px 20px;
  margin: 60px 5%;
  border-radius: 24px;
  /* This creates a soft green radial background. 
       For the exact speed-line effect, you would use a background-image. */
  background: radial-gradient(
    circle at center,
    #ffffff 0%,
    var(--cta-green-light) 100%
  );
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Optional: Adding a subtle "speed line" effect using CSS pseudo-elements */
.cta-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-radial-gradient(
    circle at center,
    transparent 0,
    transparent 100px,
    rgb(52 210 119 / 10%) 101px,
    transparent 105px
  );
  opacity: 0.5;
  pointer-events: none;
}

.cta-banner__container {
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.cta-banner__tagline {
  font-size: 1rem;
  color: #4b5563;
  margin-bottom: 16px;
  font-family: "Inter", sans-serif;
}

.cta-banner__title {
  /* Scales from 2rem on mobile to 3.5rem on desktop */
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--cta-dark);
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 32px;
}

.cta-banner__button {
  display: inline-block;
  padding: 14px 32px;
  background-color: var(--cta-dark);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.cta-banner__button:hover {
  background-color: #000000;
  transform: translateY(-2px);
}

/* RESPONSIVENESS */

@media (max-width: 768px) {
  .cta-banner {
    padding: 60px 24px;
    margin: 40px 20px;
  }

  .cta-banner__title br {
    display: none; /* Allows text to flow naturally on small screens */
  }
}
:root {
  --text-dark: #111827;
  --text-muted: #4b5563;
  --border-color: #e5e7eb;
}

.trust-module {
  max-width: 1350px;
  margin: 50px auto;
  /* padding: 0 5%; */
  font-family: "Inter", system-ui, sans-serif;
}

/* Header styling */
.trust-header {
  text-align: center;
  margin-bottom: 80px;
}

.trust-main-title {
  font-size: clamp(2rem, 5vw, 3rem); /* Fluid size for mobile/desktop */
  color: var(--text-dark);
  line-height: 1.1;
  font-weight: 500;
}

/* Grid layout */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.trust-item {
  border-top: 1px solid var(--border-color);
  padding-top: 32px;
}

.trust-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 24px;
}

.trust-icon img {
  width: 100%;
  height: auto;
}

.trust-sub-heading {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-weight: 500;
}

.trust-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* RESPONSIVENESS */

/* Tablet View */
@media (max-width: 992px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

/* Mobile View */
@media (max-width: 640px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-main-title {
    font-size: 2.2rem;
  }

  .trust-main-title br {
    display: none; /* Allows text to flow on small screens */
  }
  .trust-module {
    padding: 0 5%;
  }
}
.faq-section {
  padding: 100px 5%;
  display: flex;
  justify-content: center;
}

.faq-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

/* Left */
.faq-left {
  flex: 1;
}

.faq-title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.faq-desc {
  color: var(--text-gray);
  line-height: 1.7;
  max-width: 420px;
}

/* Right */
.faq-right {
  flex: 1;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

/* FAQ Item */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

/* Question */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
}

/* Icon */
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  color: var(--text-gray);
  opacity: 0;
}

/* Active */
.faq-item.active .faq-answer {
  opacity: 1;
  margin-top: 12px;
}

.faq-item.active .faq-icon {
  background: var(--accent);
  color: #fff;
  transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 900px) {
  .faq-container {
    flex-direction: column;
  }

  .faq-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 500px) {
  .faq-section {
    padding: 60px 20px;
  }

  .faq-title {
    font-size: 1.8rem;
  }
}
:root {
  --brand-blue: #0070ba;
  --brand-light-blue: #c0d9ff;
}

.banner-promo {
  position: relative;
  padding: 120px 20px;
  margin: 40px 5%;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "Inter", sans-serif;

  /* The Background: Deep blue base with a bright "focal orb" in the center */
  background-color: var(--brand-light-blue);
  background:
    radial-gradient(circle at center, #ffffff 0%, transparent 60%),
    linear-gradient(180deg, #f0f7ff 0%, #2563eb 100%);
}

.banner-promo__container {
  max-width: 800px;
  position: relative;
  z-index: 2;
}

/* Badges */
.banner-promo__badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.badge {
  background: rgba(255, 255, 255, 0.8);
  padding: 6px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.badge--dark {
  background: #000;
  color: #fff;
}

/* Typography */
.banner-promo__title {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  line-height: 1.1;
  color: #1a1a1a;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: -1px;
}

.banner-promo__info {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.info-icon {
  color: var(--brand-blue);
  font-size: 0.8rem;
}

/* Actions */
.banner-promo__actions {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn {
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: 0.3s;
}

.btn--filled {
  background: #1a1a1a;
  color: white;
}

.btn--white {
  background: white;
  color: #1a1a1a;
  border: 1px solid #ddd;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* RESPONSIVENESS */
@media (max-width: 768px) {
  .banner-promo {
    padding: 80px 20px;
  }

  .banner-promo__actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 250px;
  }
}
/* SECTION */
.money-section {
  padding: 80px 5%;
  text-align: center;
}

/* HEADING */
.money-title {
  font-size: 40px;
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 60px;
}

/* GRID */
.money-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1350px;
  margin: auto;
}

/* CARD */
.money-card {
  text-align: left;
  position: relative;
  padding-top: 30px;
}

/* TOP LINE */
.money-card::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #e5e7eb;
  position: absolute;
  top: 0;
  left: 0;
}

/* ICON */
.money-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
}

/* TITLE */
.money-card h3 {
  font-size: 20px;
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 10px;
}

/* TEXT */
.money-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .money-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .money-title {
    font-size: 28px;
  }
}
/* SECTION */
.pro-section {
  padding: 25px 5%;
}

/* ROW */
.pro-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  max-width: 1350px;
  margin: auto;
  margin-bottom: 100px;
}

/* REVERSE */
.pro-row.reverse {
  flex-direction: row-reverse;
}

/* TEXT */
.pro-content {
  flex: 1;
}

.pro-content h2 {
  font-size: 34px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 20px;
  line-height: 1.3;
}

.pro-content p {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* SUB HEAD */
.pro-sub {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  margin-top: 20px;
}

/* BUTTON */
.pro-btn {
  display: inline-block;
  padding: 12px 22px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
  transition: 0.3s ease;
}

.pro-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
}

/* IMAGE SIDE */
.pro-image-box {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}

/* GLOW BACKGROUND */
.pro-image-box::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3), transparent);
  border-radius: 50%;
  z-index: 0;
}

/* IMAGE */
.pro-image-box img {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  position: relative;
  z-index: 1;
  transition: 0.4s ease;
}

/* FLOAT EFFECT */
.pro-image-box img:hover {
  transform: translateY(-10px) scale(1.03);
}

/* SPECIAL CARD */
.pro-card {
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  padding: 50px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

/* GRID LINES EFFECT */
.pro-card::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  top: 0;
  left: 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .pro-row {
    flex-direction: column;
    text-align: center;
  }

  .pro-row.reverse {
    flex-direction: column;
  }

  .pro-content h2 {
    font-size: 26px;
  }
}
:root {
  --brand-blue: #e6b906;
  --navy: #0f172a;
  --slate: #475569;
}

.future-finance {
  position: relative;
  padding: 120px 20px;
  background: #ffffff;
  font-family: "Inter", sans-serif;
  overflow: hidden;
}

/* The Slanted Background Background */
.diagonal-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: #f8fafc;
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 1;
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  /* display: flex; */
  align-items: center;
  position: relative;
  z-index: 2;
  gap: 40px;
}
.content-wrapper1 {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  gap: 40px;
}

/* Text Side */
.text-area {
  flex: 1;
}

.status-badge {
  color: var(--brand-blue);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 15px;
}

.main-title {
  font-size: 3.8rem;
  line-height: 1.1;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 25px;
}

.summary {
  font-size: 1.2rem;
  color: var(--slate);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 35px;
}

.action-btn {
  background: var(--brand-blue);
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.action-btn:hover {
  background: var(--navy);
  transform: translateX(5px);
}

/* Visual Side */
.visual-area {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.glass-element {
  position: relative;
  width: 100%;
  max-width: 500px;
  padding: 15px;
  background: white;
  border-radius: 24px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
  transform: perspective(1000px) rotateY(-5deg); /* Slight 3D tilt */
}

.glass-element img {
  width: 100%;
  border-radius: 18px;
  display: block;
}

.floating-stat {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: white;
  padding: 20px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-left: 5px solid var(--brand-blue);
}

.floating-stat span {
  font-size: 0.8rem;
  color: var(--slate);
  display: block;
}
.floating-stat strong {
  font-size: 1.5rem;
  color: var(--navy);
}

/* Responsive */
@media (max-width: 992px) {
  .content-wrapper {
    flex-direction: column;
    text-align: center;
  }
   .content-wrapper1 {
    flex-direction: column;
    text-align: center;
  }
  .diagonal-bg {
    display: none;
  }
  .text-area {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .main-title {
    font-size: 2.8rem;
  }
  .floating-stat {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 20px;
  }
}
:root {
  --text-dark: #0f172a;
  --text-muted: #475569;
  --bg-light: #ffffff;
  --card-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.benefits-section {
  padding: 100px 20px;
  background-color: var(--bg-light);
  font-family:
    "Inter",
    -apple-system,
    sans-serif;
  color: var(--text-dark);
}

.benefits-container {
  max-width: 800px;
  margin: 0 auto;
}

/* Header Text */
.benefits-header {
  text-align: center;
  margin-bottom: 60px;
}

.benefits-title {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.benefits-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
}

/* The White Card Box */
.benefits-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 60px;
  box-shadow: var(--card-shadow);
  border: 1px solid #f1f5f9;
}

/* Individual Benefit Rows */
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 48px;
}

/* Remove margin from last item */
.benefit-item:last-child {
  margin-bottom: 0;
}

.benefit-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}

.benefit-icon img {
  width: 100%;
  height: auto;
}

.benefit-text h3 {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.benefit-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .benefits-card {
    padding: 30px 20px;
  }

  .benefit-item {
    flex-direction: column;
    gap: 16px;
  }

  .benefits-title {
    font-size: 2rem;
  }
}
:root {
  --brand-blue: #ebbd25;
  --navy: #0f172a;
  --slate: #64748b;
  --line-color: #e2e8f0;
}

.about-journey {
  padding: 100px 20px;
  background-color: #ffffff;
  font-family: "Inter", sans-serif;
  display: flex;
  justify-content: center;
}

.journey-container {
  max-width: 1350px;
  width: 100%;
}

.journey-intro {
  text-align: center;
  margin-bottom: 80px;
}

.eyebrow {
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.journey-title {
  font-size: 3rem;
  color: var(--navy);
  margin: 15px 0;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.journey-lead {
  font-size: 1.2rem;
  color: var(--slate);
  line-height: 1.6;
  max-width: 100%;
}

/* Timeline Logic */
.timeline-track {
  position: relative;
  padding-left: 60px; /* Space for the line */
}

/* The vertical line */
.timeline-track::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--line-color);
}

.milestone-box {
  position: relative;
  margin-bottom: 60px;
  padding: 30px;
  background: #f8fafc;
  border-radius: 20px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

/* The circular node */
.node-icon {
  position: absolute;
  left: -65px;
  top: 30px;
  width: 50px;
  height: 50px;
  background: white;
  border: 2px solid var(--line-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--slate);
  z-index: 2;
}

/* Highlight the active stage */
.milestone-box.active {
  background: white;
  border-color: #e2e8f0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.milestone-box.active .node-icon {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
  box-shadow: 0 0 15px rgba(37, 99, 235, 0.2);
}

.milestone-content h3 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.milestone-content p {
  color: var(--slate);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 600px) {
  .timeline-track {
    padding-left: 40px;
  }
  .timeline-track::before {
    left: 10px;
  }
  .node-icon {
    left: -45px;
    width: 35px;
    height: 35px;
    font-size: 0.8rem;
  }
}
:root {
  --primary-dark: #1e293b;
  --body-text: #475569;
  --glow-cyan: #ecfeff;
  --glow-lime: #f7fee7;
}

.trust-portal {
  padding: 140px 24px;
  /* Complex mesh gradient to match the airy feel */
  background:
    radial-gradient(circle at 5% 20%, var(--glow-cyan) 0%, transparent 40%),
    radial-gradient(circle at 95% 80%, var(--glow-lime) 0%, transparent 40%),
    #ffffff;
  display: flex;
  justify-content: center;
  text-align: center;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  border-radius: 16px;
}

.portal-wrapper {
  max-width: 1350px;
  width: 100%;
}

/* Asset Pills Row */
.asset-grid {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.asset-pill {
  background: #ffffff;
  border: 1px solid #f1f5f9;
  padding: 10px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.asset-pill:hover {
  transform: translateY(-2px);
  border-color: #cbd5e1;
}

.pill-icon {
  width: 24px;
  height: 24px;
}

.pill-label {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-dark);
  letter-spacing: 0.02em;
}

/* Typography Styling */
.portal-heading {
  font-size: 4.2rem; /* Large, bold impact */
  color: var(--primary-dark);
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: -0.04em;
}

.portal-subtext {
  font-size: 1.15rem;
  color: var(--body-text);
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto 48px auto;
}

/* CTA Button Styling */
.cta-link {
  display: inline-block;
  background-color: #1a2b3c;
  color: #ffffff;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition:
    background 0.2s,
    box-shadow 0.2s;
}

.cta-link:hover {
  background-color: #0f172a;
  box-shadow: 0 10px 25px rgba(26, 43, 60, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .portal-heading {
    font-size: 2.8rem;
  }
  .trust-portal {
    padding: 80px 20px;
  }
  .asset-grid {
    gap: 10px;
  }
}
:root {
  --navy-blue: #0f172a;
  /* --electric-blue: #2563eb; */
  --success-green: #22c55e;
  --soft-border: #e2e8f0;
}

.trust-monitor {
  padding: 10px 24px;
  background-color: #ffffff;
  font-family: "Inter", sans-serif;
}

.monitor-container {
  max-width: 1350px;
  margin: 0 auto;
}

.monitor-header {
  text-align: center;
  margin-bottom: 60px;
}

/* Live Indicator Animation */
.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--success-green);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.dot {
  width: 8px;
  height: 8px;
  background: var(--success-green);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.monitor-title {
  font-size: 3.2rem;
  color: var(--navy-blue);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.monitor-desc {
  color: #64748b;
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Stats Cards */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.stat-card {
  padding: 40px;
  border: 1px solid var(--soft-border);
  border-radius: 24px;
  background: #ffffff;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.stat-card.accent {
  background: var(--navy-blue);
  color: #fff;
  border: none;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #94a3b8;
  margin-bottom: 10px;
}

.stat-card.accent .stat-label {
  color: #94a3b8;
}

.stat-value {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Decorative Mini Chart */
.stat-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 40px;
  margin-top: auto;
}

.bar1 {
  flex: 1;
  background: var(--electric-blue);
  border-radius: 2px;
  opacity: 0.3;
}

.verify-badge {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--success-green);
  font-weight: 600;
}

.archive-link {
  margin-top: auto;
  color: var(--electric-blue);
  text-decoration: none;
  font-weight: 600;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .monitor-title {
    font-size: 2.2rem;
  }
}
