@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

:root {
  --primary: #8a2be2; /* blue */
  --accent: #00d4ff; /* turquoise */
  --soft-pink: #ffdede;
  --muted: #6b7280;
  --bg: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  text-decoration: none;
  list-style: none;
}
header {
  position: sticky;
  padding: 8px;
  background: var(--bg);
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
}
.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav {
  max-width: 1080px;
  width: 100%;
  margin: auto;
}
.gau {
  display: flex;
  align-items: start;
  gap: 0.3rem;
}
.gau span {
  display: none;
}
.bx-menu {
  display: none;
}
.bx-x {
  display: none;
}
.logo {
  width: 200px;
}
.logo img {
  width: 100%;
}
.lesmenu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.rub ul {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rub ul li a {
  font-size: 1.1rem;
  color: #000000;
}
.rub ul li a:hover {
  color: var(--primary);
}
.ico {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.ico a {
  padding: 4px 20px;
  border-radius: 6px;
}
.signup-btn {
  background: var(--primary);
  color: white;
}
.signup-btn:hover {
  border: 1px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.login-btn {
  border: 1px solid var(--primary);
  color: var(--primary);
}
.login-btn:hover {
  background: var(--primary);
  color: white;
}
body {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  color: #0f172a;
  margin: 0;
}

main {
  width: 100%;
}

/* HERO */
.parent-hero {
  width: 100%;
  height: auto;
  background: radial-gradient(
      circle at 35% 50%,
      rgba(0, 210, 255, 0.22) 0%,
      rgba(0, 210, 255, 0.14) 25%,
      transparent 60%
    ),
    linear-gradient(90deg, #ffffff 60%, #c8f6f9 80%, #ffdede 100%);
  padding-top: 1rem;
  padding-bottom: 3rem;
}
.hero {
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding-top: 48px;
  background: transparent;
  margin: auto;
}

.ptext {
  padding: 12px 24px;
}
.ptext .child {
  max-width: 620px;
}
.ptext h1 {
  font-size: 34px;
  line-height: 1.05;
  margin: 0 0 12px 0;
  color: #071033;
  font-weight: 700;
}
.ptext h4 {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 18px 0;
  font-weight: 600;
}
.ptext p {
  color: var(--muted);
  margin-bottom: 20px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}
.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(11, 99, 214, 0.18);
}
.btn-primary:hover {
  border: 1px solid var(--primary);
  background: transparent;
  color: var(--primary);
  transform: translateY(-2px);
  transition: all 0.18s ease;
}
.btn-primary.large {
  padding: 18px 36px;
  font-size: 18px;
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--primary);
  padding: 12px 22px;
  border-radius: 22px;
  text-decoration: none;
  border: 1px solid grey;
}
.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.hero-badges {
  list-style: none;
  display: flex;
  gap: 12px;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.hero-badges li {
  background: rgba(11, 99, 214, 0.04);
  padding: 8px 12px;
  border-radius: 999px;
}

.pimg {
  display: flex;
  justify-content: center;
}
.limg {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
}
.limg img {
  width: 100%;
  display: block;
}
/* No hidden fees section */
.no-fees {
  background: transparent;
  width: 100%;
  padding: 56px 12px;
}
.no-fees-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.no-fees h2 {
  font-size: 48px;
  color: var(--primary);
  margin: 0 0 14px 0;
  font-weight: 900;
  text-transform: uppercase;
}
.no-fees p {
  max-width: 920px;
  margin: 0 auto 22px auto;
  color: #08361a;
  font-size: 18px;
}
.no-fees-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.btn-dark {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
}
.btn-dark:hover {
  background: transparent;
  border: solid 1px var(--primary);
  color: black;
}
.link-underline {
  color: #072b09;
  text-decoration: underline;
  font-weight: 600;
}

/* FEATURES */
.features {
  padding: 48px 18px;
  background: radial-gradient(
      circle at 35% 50%,
      rgba(0, 210, 255, 0.22) 0%,
      rgba(0, 210, 255, 0.14) 25%,
      transparent 60%
    ),
    linear-gradient(90deg, #ffffff 60%, #c8f6f9 80%, #ffdede 100%);
}
.container-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: #fff;
  padding: 22px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 0 0.1px rgba(2, 6, 23, 0.06), 0 2px 3px rgba(2, 6, 23, 0.18),
    2px 0 3px rgba(2, 6, 23, 0.14), -2px 0 6px rgba(2, 6, 23, 0.14),
    0 -2px 3px rgba(2, 6, 23, 0.14);
}
.feature-card i {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 10px;
}
.feature-card h3 {
  margin: 6px 0 8px 0;
}
.feature-card p {
  color: var(--muted);
  font-size: 14px;
}

/* animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes floatY {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}

.btn-primary {
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 6px 18px rgba(11, 99, 214, 0.18);
  }
  50% {
    box-shadow: 0 14px 40px rgba(11, 99, 214, 0.12);
    transform: scale(1.01);
  }
  100% {
    box-shadow: 0 6px 18px rgba(11, 99, 214, 0.18);
    transform: scale(1);
  }
}

.pres {
  width: 80%;
  display: grid;
  grid-template-columns: 50% 1fr;
  height: auto;
  margin: 1.4rem auto;
}
.pres-child {
  background: var(--primary);
  color: white;
  padding: 25px;
}
.pres-child h3 {
  font-size: 2rem;
  margin-bottom: 25px;
}
.pres-child p {
  font-size: 0.9rem;
  margin-bottom: 25px;
}
.bu {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.pre {
  padding: 20px 25px;
  background: black;
  color: white;
  text-align: center;
}
.pre:hover {
  border: 1px white solid;
  background: var(--primary);
}
.pree {
  padding: 20px 25px;
  background: white;
  color: black;
  text-align: center;
}
.pree:hover {
  border: 1px white solid;
  background: transparent;
}
.presen-child {
  width: 100%;
}
.presen-child img {
  width: 100%;
}
.eco {
  width: 80%;
  display: grid;
  grid-template-columns: 50% 1fr;
  height: auto;
  margin: 1.4rem auto;
}
.eco-childd h1 {
  font-size: 2rem;
  margin-bottom: 5px;
}
.eco-child {
  width: 100%;
}
.eco-child img {
  width: 100%;
}
/* ==========assis======== */
.assist {
  width: 85%;
  margin: auto;
  display: grid;
  grid-template-columns: 50% 1fr;
  padding: 30px;
}
.ass-chil {
  width: 100%;
}
.ass-chil img {
  width: 100%;
  border-radius: 20px;
}
.ass-child {
  padding-left: 30px;
}
.ass-child h1 {
  padding-bottom: 10px;
}
.ass-child P {
  padding-bottom: 20px;
}
.ass-child a {
  padding: 8px 35px;
  border: #333 solid 1px;
  border-radius: 12px;
  margin-top: 10px;
}
.ass-child a:hover {
  background-color: var(--primary);
  color: white;
  border: none;
}
/* ++++FOOTER++++++ */
.finbridge-footer {
  background: var(--primary);
  color: #ffffff;
  padding: 70px 8% 30px;
  font-family: "Inter", sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: 50% 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h2 {
  font-size: 26px;
  font-weight: 700;
}

.footer-brand span {
  color: var(--soft-pink);
}

.footer-brand p {
  margin-top: 15px;
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.9;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #ffffff;
  opacity: 0.85;
  transition: 0.3s;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--soft-pink);
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 8px;
  opacity: 0.9;
}

.footer-socials {
  margin-top: 15px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  margin-right: 10px;
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
}

.footer-socials a:hover {
  background: #ffffff;
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 13px;
  opacity: 0.9;
}

/* =============================================== */

/* responsive */
@media (max-width: 900px) {
  .testimonial-card {
    padding: 20px;
  }
  .carousel-dots {
    margin-top: 12px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 32px;
    gap: 18px;
  }
  .container-grid {
    grid-template-columns: 1fr;
  }
  .ptext h1 {
    font-size: 28px;
  }
  .no-fees h2 {
    font-size: 28px;
  }
  .no-fees-actions {
    flex-direction: column;
    gap: 12px;
  }

  @media (max-width: 768px) {
    header {
      padding: 10px;
    }
    .gau {
      align-items: center;
    }
    .gau img {
      display: none;
    }
    .gau span {
      display: block;
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--primary);
    }
    .container {
      align-items: center;
    }
    .rub {
      position: fixed;
      top: -100%;
      left: 0;
      width: 100%;
      background: white;
      padding: 25px;
      border-radius: 0 0 15px 15px;
      transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.5s all;
      box-shadow: 0 0 0 0.1px rgba(2, 6, 23, 0.06),
        0 2px 3px rgba(2, 6, 23, 0.18), 2px 0 3px rgba(2, 6, 23, 0.14),
        -2px 0 6px rgba(2, 6, 23, 0.14), 0 -2px 3px rgba(2, 6, 23, 0.14);
      z-index: 10002;
    }
    .rub.acti {
      top: 0;
    }
    .rub ul {
      flex-direction: column;
    }
    .logo {
      width: 150px;
    }
    .login-btn,
    .signup-btn {
      font-size: 0.8rem;
    }
    .ico {
      gap: 0.4rem;
    }
    .parent-hero {
      padding: 0;
    }
    .bx-menu {
      display: block;
      font-size: 1.3rem;
    }
    .bx-x {
      display: block;
      position: absolute;
      top: 15px;
      right: 15px;
      font-size: 1.3rem;
    }
    .hero {
      padding: 2rem 0 0 0;
    }

    .pres {
      grid-template-columns: 1fr;
      width: 95%;
    }
    .eco {
      grid-template-columns: 1fr;
      width: 95%;
      gap: 0;
    }
    .eco-childd h1 {
      font-size: 1.8rem;
      padding-bottom: 0;
    }
    .eco-childd {
      width: 100%;
    }
    .mli {
      width: 100%;
    }
    .mli img {
      width: 100%;
    }
    .dec {
      width: 100%;
    }
    .dec img {
      width: 100%;
    }
    .assist {
      width: 95%;
      grid-template-columns: 1fr;
      padding: 5px;
    }
    .ass-child {
      padding: 0;
    }
    .ass-child h1 {
      font-size: 1.3rem;
    }
    .btn-primary {
      font-size: 0.8rem;
    }
    .btn-outline {
      font-size: 0.8rem;
    }
    footer {
      margin-top: 1rem;
    }
    .footer-container {
      grid-template-columns: 1fr;
    }
  }
  @media (max-width: 420px) {
    .ptext h1 {
      font-size: 22px;
    }
    .btn-primary {
      padding: 12px 20px;
    }
  }
}
