@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --white: #ffffff;
  --bg: #f5f7ff;
  --surface: #eef0fb;
  --card: #ffffff;
  --accent: #2563eb;
  --accent2: #7c3aed;
  --text: #292929;
  --black: #000000;
  --muted: #64748b;
  --border: rgb(250, 250, 250);
  --border-dark: #555;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── BACKGROUND GLOW ── */
body::before {
  content: "";
  position: fixed;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(
    ellipse at center,
    rgba(37, 99, 235, 0.07) 0%,
    rgba(124, 58, 237, 0.05) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

/* ── NAV ── */
.top-nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 60px;
  backdrop-filter: blur(20px);
  background: rgba(245, 247, 255, 0.85);
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.05);
}

.navrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--accent), #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--black);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 100px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: opacity 0.2s !important;
  text-decoration: none !important;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-cta:hover {
  opacity: 0.85;
}

.nav-cta img {
  height: 15px;
  filter: brightness(0) invert(1);
}

/* ── HERO ── */
.hero {
  width: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px 60px;
  position: relative;
  background-image:
    linear-gradient(90deg, hsla(0, 0%, 7%, 0.932), rgba(0, 0, 0, 0.616)),
    url("../images/banner.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

/* .container {
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 20px;
} */

.hero-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 36px;
  animation: fadeUp 0.6s ease both;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.5);
  }
}

/* h1 {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 820px;
  animation: fadeUp 0.6s 0.1s ease both;
}

h1 span {
  background: linear-gradient(135deg, var(--accent) 20%, #7c3aed 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
} */

.hero-cotent {
  width: 100%;
  text-align: center;
}

.hero-cotent h1 {
  font-size: 34px;
  font-weight: 800;
  color: #fff;
}

.hero-cotent p {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-align: center;
}

.hero-sub {
  margin-top: 22px;
  color: var(--white);
  font-size: 1.1rem;
  max-width: 540px;
  margin: 20px auto;
  line-height: 1.7;
  animation: fadeUp 0.6s 0.2s ease both;
}

/* ── TFN BLOCK ── */
.tfn-block {
  margin-top: 60px;
  position: relative;
  animation: fadeUp 0.7s 0.3s ease both;
}

.tfn-label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 500;
}

.tfn-number {
  font-family: "Bebas Neue", sans-serif;
  font-size: 60px;
  line-height: 0.9;
  letter-spacing: 0.03em;
  color: #fff;
  /* background: linear-gradient(
    135deg,
    #1e3a8a 0%,
    var(--accent) 50%,
    #7c3aed 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
  filter: drop-shadow(0 4px 32px rgba(37, 99, 235, 0.18));
  cursor: pointer;
  transition: filter 0.3s;
  user-select: all;
}

.tfn-number a {
  text-decoration: none;
  color: #fff;
}

.tfn-number:hover {
  filter: drop-shadow(0 8px 48px rgba(37, 99, 235, 0.32));
}

.tfn-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(
    ellipse at center,
    rgba(37, 99, 235, 0.1),
    transparent 70%
  );
  pointer-events: none;
  border-radius: 50%;
}

.tfn-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--accent);
  color: #fff;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.38);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border: 1px solid var(--border);
  color: var(--white);
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.btn-outline:hover {
  border-color: rgba(0, 0, 0, 0.18);
  background: rgba(0, 0, 0, 0.04);
}

/* ── STATS ROW ── */
.stats {
  display: flex;
  gap: 60px;
  justify-content: center;
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.7s 0.5s ease both;
}

.stat-item {
  text-align: center;
}

.stat-val {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  background: linear-gradient(135deg, var(--text), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-desc {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

/* ── FEATURES ── */
.section {
  position: relative;
  z-index: 1;
  padding: 40px 30px;
}

.section-tag {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3vw, 2.5rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 600px;
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  transition:
    border-color 0.3s,
    transform 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  border-color: rgba(37, 99, 235, 0.25);
  transform: translateY(-4px);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.feature-title {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.feature-desc {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ── CONTACT CTA ── */
.cta-section {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 40px 70px;
  overflow: hidden;
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 50px 50px;
  position: relative;
}

.cta-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(37, 99, 235, 0.06),
    transparent 60%
  );
  pointer-events: none;
}

.cta-inner h2 {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}

.cta-inner p {
  color: var(--muted);
  margin-bottom: 36px;
  font-size: 1rem;
  line-height: 1.6;
}

.cta-tfn {
  font-family: "Bebas Neue", sans-serif;
  font-size: 4rem;
  background: linear-gradient(135deg, var(--accent), #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}

.cta-tfn a {
  text-decoration: none;
  font-size: 4rem;
  background: linear-gradient(135deg, var(--accent), #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── FOOTER ── */
footer {
  width: 100%;
  position: relative;
  z-index: 1;
  border-top: 1px solid #ddd;
  padding: 40px 60px;
}

footer .logo {
  font-size: 1.2rem;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  list-style: none;
}

.footer-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text);
  text-align: center;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content-section {
  width: 100%;
  padding: 40px 0px;
}

.content-section h2,
h3 {
  font-size: 24px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

.content-section p {
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 15px;
}

.content-section ul {
  margin: 0px;
  padding: 0px;
  padding-left: 21px;
  margin-top: 16px;
  margin-bottom: 16px;
}

.content-section ul li {
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav {
    padding: 18px 24px;
  }
  .nav-links {
    display: none;
  }
  .section {
    padding: 40px 0px;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .stats {
    gap: 32px;
    flex-wrap: wrap;
  }
  footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .cta-inner {
    padding: 40px 22px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .hero {
    width: 100%;
    padding: 100px 20px 40px;
  }
  .hero-cotent h1 {
    font-size: 24px;
  }

  .hero-cotent p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .tfn-block {
    margin-top: 42px;
  }

  .tfn-number {
    font-size: 32px;
  }

  .top-nav-bar {
    padding: 12px 0px;
  }

  footer {
    padding: 20px 12px;
  }

  .cta-inner h2 {
    font-size: 1.4rem;
  }

  .cta-tfn {
    font-size: 2rem;
    font-weight: 600;
  }

  .cta-section {
    padding: 20px 20px 50px;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }

  .cta-tfn a {
    font-size: 2rem;
  }
}

@media screen and (max-width: 576px) {
  .btn-primary {
    padding: 14px 10px;
    font-size: 12px;
  }

  .btn-outline {
    font-size: 12px;
  }

  .footer-links {
    gap: 10px;
    justify-content: center;
  }

  .features-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .logo {
    font-size: 1.2rem;
  }

  .content-section h2,
  h3 {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
  }
}
