* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: #ffffff;
  color: #0f172a;
}

a{ 
  text-decoration: none;
  color: black;
}
/* NAVBAR */
.navbar {
  width: 100%;
  padding: 20px 40px;
  position: sticky;
  top: 0;
  background: #ffffff;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: #335cff;
  color: white;
  font-weight: bold;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo span {
  display: block;
  font-size: 12px;
  color: #64748b;
}

.nav-links a {
  margin: 0 15px;
  text-decoration: none;
  color: #334155;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a.active {
  color: #22c55e;
}

.nav-links a:hover {
  color: #22c55e;
}

.nav-links .sandbox {
  color: #334155;
  text-decoration: none;
}

.nav-links .sandbox.active {
  color: #22c55e;
  text-decoration: underline;
}

.btn-demo {
  background: #335cff;
  color: white;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #0f172a;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background: white;
  border-top: 1px solid #e2e8f0;
}

.mobile-menu a {
  text-decoration: none;
  color: #334155;
  font-weight: 500;
  padding: 10px 0;
  transition: color 0.3s ease;
}

.mobile-menu a.active {
  color: #22c55e;
}

.mobile-menu .sandbox {
  color: #334155;
  text-decoration: none;
}

.mobile-menu .sandbox.active {
  color: #22c55e;
  text-decoration: underline;
}

.mobile-menu .btn-demo {
  display: inline-block;
  background: #335cff;
  color: white;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 10px;
}

/* HERO */
.hero {
  max-width: 1200px;
  margin: 20px auto;
  text-align: center;
  padding: 0 20px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #eef2ff;
  color: #335cff;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 30px;
}

.badge .dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
}

.hero h1 {
  font-size: 72px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 25px;
}

.hero h1 span {
  color: #335cff;
}

.hero .subtitle {
  font-size: 20px;
  color: #475569;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
  font-weight: 400;
}

.hero-btn {
  padding: 16px 36px;
  border-radius: 8px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 40px;
  margin-right: 15px;
}

.hero-btn:first-of-type {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  color: white;
}

.hero-btn:last-of-type {
  background: white;
  color: black;
  border: 2px solid black;
}

/* FEATURES ROW */
.features-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  font-size: 14px;
  color: #475569;
}

.features-row span {
  margin-left: 6px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .btn-demo {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .mobile-menu.active {
    display: flex;
  }

  .hero h1 {
    font-size: 44px;
  }

  .features-row {
    flex-direction: column;
    gap: 15px;
  }
}



.container{
    max-width: 72rem;
    margin: auto;
    padding: 60px 20px;
}


/* 2nd section */
.sandbox {
    background: #f9fafb;
  width: 100%;
  margin: auto;
  text-align: center;
}

.sandbox-badge {
  display: inline-block;
  padding: 8px 14px;
  background: #eef2ff;
  color: #4f46e5;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}

h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 0px;
}

.subtitle {
  color: #767F8B;
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 36px;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 30px;
}

.tab {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: white;
    font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.tab.active {
  background: #335cff;
  color: white;
  border: none;
}

.card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: left;
}

.card h3 {
  text-align: center;
}

.hint {
  text-align: center;
  color: #64748b;
  margin-bottom: 20px;
}

.questions {
  display: grid;
  gap: 12px;
}

.question {
  border: 1px solid #e2e8f0;
  padding: 14px 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.2s;
}

.question:hover {
  background: #f1f5f9;
}

/* Chat */
.chat {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.msg.user {
  align-self: flex-end;
  background: #335cff;
  color: white;
  padding: 12px 16px;
  border-radius: 14px 14px 0 14px;
  max-width: 75%;
}

.msg.ai {
  align-self: flex-start;
  background: #f1f5f9;
  padding: 12px 16px;
  border-radius: 14px 14px 14px 0;
  max-width: 75%;
}

/* Input */
.input-box {
  display: flex;
  gap: 10px;
  margin-top: 25px;
}

.input-box input {
  flex: 1;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}

.input-box button {
  background: #335cff;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 0 18px;
}

.note {
  text-align: center;
  color: #94a3b8;
  font-size: 12px;
  margin-top: 20px;
}

/* section 3 */
.monitoring {
  width: 100%;
  padding: 80px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.monitoring-text {
  max-width: 760px;
  text-align: center;
  font-size: 18px;
  color: #64748b;
  font-weight: 500;
  margin-bottom: 32px;
}

.platforms {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.platform {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #94a3b8;
  font-size: 15px;
  font-weight: 500;
  cursor: default;
  transition: color 0.25s ease;
}

.platform:hover {
  color: #0f172a;
}

.icon {
  font-size: 18px;
  font-weight: 700;
  opacity: 0.8;
}

@media (max-width: 640px) {
  .monitoring {
    padding: 60px 16px;
  }

  .monitoring-text {
    font-size: 16px;
  }

  .platforms {
    gap: 24px;
  }

  .platform {
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
  }

  .platform span:first-child {
    font-size: 24px;
  }
}



/* section 4 */
.data-enrichment-section {
  padding: 20px 20px;
  background: #ffffff;
}

.data-enrichment-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Badge */
.data-enrichment-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #eef2ff;
  color: #3b5bfd;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 30px;
}

/* Title */
.data-enrichment-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 24px;
}

.data-enrichment-title span {
  color: #3b5bfd;
}

/* Description */
.data-enrichment-description {
  max-width: 750px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.7;
  color: #475569;
}

/* Divider */
.data-enrichment-divider {
  margin-top: 100px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}

/* Circle */
.data-enrichment-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(180deg, #6d5dfc, #8b46f6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.circle-top,
.circle-bottom {
  font-size: 16px;
  font-weight: 600;
}

.circle-plus {
  font-size: 36px;
  font-weight: 700;
  margin: 8px 0;
}

    .blindspot-section {
      max-width: 1200px;
      margin: auto;
      padding: 80px 24px;
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    /* LEFT */
    .alert-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #fff1f2;
      color: #dc2626;
      padding: 6px 14px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 20px;
    }

    .blindspot-title {
      font-size: 46px;
      font-weight: 800;
      line-height: 1.15;
      margin-bottom: 20px;
    }

    .blindspot-title span {
      display: block;
      color: #94a3b8;
      font-weight: 700;
    }

    .blindspot-text {
      font-size: 18px;
      line-height: 1.7;
      color: #475569;
      max-width: 520px;
      margin-bottom: 32px;
    }

    .blindspot-text strong {
      color: #0f172a;
    }

    .info-box {
      display: flex;
      gap: 16px;
      align-items: center;
      background: #f8fafc;
      border-radius: 14px;
      padding: 18px 22px;
      max-width: 520px;
    }

    .info-icon {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: #e2e8f0;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #64748b;
    }

    .info-title {
      font-weight: 700;
      margin-bottom: 4px;
    }

    .info-sub {
      font-size: 14px;
      color: #64748b;
    }

    /* RIGHT CARD */
    .insight-card {
      background: linear-gradient(180deg, #f8fafc, #ffffff);
      border-radius: 26px;
      padding: 40px;
      box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    }

    .question-icon {
      width: 64px;
      height: 64px;
      background: #fee2e2;
      color: #ef4444;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      margin: auto;
      margin-bottom: 16px;
    }

    .insight-title {
      text-align: center;
      font-size: 22px;
      font-weight: 800;
    }

    .insight-sub {
      text-align: center;
      font-size: 15px;
      color: #64748b;
      margin-bottom: 32px;
    }

    .icon-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin-bottom: 32px;
    }

    .icon-box {
      background: #ffffff;
      border-radius: 16px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
    }

    .icon-box i {
      font-size: 24px;
      color: #64748b;
      margin-bottom: 12px;
    }

    .icon-box span {
      display: block;
      font-size: 14px;
      font-weight: 600;
      color: #334155;
    }

    .red-alert {
      background: #fff1f2;
      color: #dc2626;
      padding: 16px;
      border-radius: 14px;
      text-align: center;
      font-weight: 600;
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .blindspot-section {
        grid-template-columns: 1fr;
      }

      .icon-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .blindspot-title {
        font-size: 36px;
      }
    }

    /* section 5 */
    .section {
  max-width: 1200px;
  margin: auto;
  padding: 50px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* LEFT CARD */
.profile-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 20px;
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.12);
}

.eye-icon {
  width: 70px;
  height: 70px;
  background: #4f6ef7;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: auto;
  margin-bottom: 20px;
}

.card-title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
}

.card-sub {
  text-align: center;
  color: #64748b;
  margin-bottom: 14px;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 30px;
}

.profile-box {
  background: #f8fafc;
  border-radius: 16px;
  padding: 18px;
  text-align: center;
}

.profile-box i {
  font-size: 26px;
  margin-bottom: 10px;
}

.profile-label {
  font-size: 12px;
  color: #64748b;
}

.profile-value {
  font-weight: 500;
  margin-top: 2px;
}

.bar {
  height: 4px;
  border-radius: 10px;
  margin-top: 10px;
}

.blue { background: #4f6ef7; }
.purple { background: #7c5cff; }
.green { background: #10b981; }
.orange { background: #f59e0b; }
.pink { background: #ec4899; }
.teal { background: #14b8a6; }

.success {
  background: #ecfdf5;
  color: #047857;
  border-radius: 16px;
  padding: 18px;
  font-weight: 700;
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

/* RIGHT CONTENT */
.solution-badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: #ecfdf5;
  color: #10b981;
  font-weight: 600;
  margin-bottom: 18px;
}

.solution-title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
}

.solution-title span {
  color: #4f6ef7;
}

.solution-text {
  font-size: 18px;
  line-height: 1.7;
  color: #475569;
  max-width: 520px;
  margin-bottom: 30px;
}

.solution-text strong {
  color: #0f172a;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
}

.feature i {
  width: 26px;
  height: 26px;
  background: #4f6ef7;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .section {
    grid-template-columns: 1fr;
  }

  .profile-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .solution-title {
    font-size: 36px;
  }
}



    /* footer */
    .footer-page-body {
      background: #0b1220;
    }

    /* ===== FOOTER ===== */
    .site-footer {
      padding: 80px 60px 40px;
      background: radial-gradient(circle at top, #0f1a2e, #0b1220);
      color: #cbd5e1;
    }

    .footer-container {
      max-width: 1300px;
      margin: auto;
    }

    /* ===== TOP GRID ===== */
    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 60px;
      margin-bottom: 60px;
    }

    /* ===== BRAND ===== */
    .footer-brand {
      max-width: 340px;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 14px;
    }

    .footer-logo-icon {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      background: linear-gradient(135deg, #3b5bfd, #6d5dfc);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      font-weight: 700;
      font-size: 18px;
    }

    .footer-logo-text {
      font-size: 22px;
      font-weight: 700;
      color: #ffffff;
    }

    .footer-powered {
      font-size: 13px;
      color: #94a3b8;
      margin-top: 2px;
    }

    .footer-description {
      margin-top: 16px;
      font-size: 15px;
      line-height: 1.7;
      color: #94a3b8;
    }

    /* ===== LINKS ===== */
    .footer-column {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .footer-column-title {
      font-size: 16px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 6px;
    }

    .footer-link {
      font-size: 15px;
      color: #94a3b8;
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .footer-link:hover {
      color: #ffffff;
    }

    /* ===== DIVIDER ===== */
    .footer-divider {
      height: 1px;
      background: rgba(255,255,255,0.08);
      margin-bottom: 26px;
    }

    /* ===== BOTTOM ===== */
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    .footer-copyright {
      font-size: 14px;
      color: #94a3b8;
    }

    /* ===== SOCIAL ===== */
    .footer-social {
      display: flex;
      gap: 16px;
    }

    .social-icon {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: rgba(255,255,255,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #cbd5e1;
      font-size: 16px;
      text-decoration: none;
      transition: all 0.2s ease;
    }

    .social-icon:hover {
      background: #3b5bfd;
      color: #ffffff;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 900px) {
      .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .site-footer {
        padding: 60px 24px 30px;
      }
    }


    /* section 6 */
    .signals-section {
  text-align: center;
  padding: 60px 8%;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f3f4ff;
  color: #4a4aff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.main-title {
  font-size: 52px;
  font-weight: 800;
  margin: 20px 0;
}

.main-title span {
  color: #5b4bff;
}

.subtitle {
  max-width: 650px;
  margin: auto;
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}

.signals-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.signal-card {
  text-align: left;
  padding: 35px;
  border-radius: 18px;
  background: #f9f9ff;
}

.signal-card h2 {
  margin-top: 20px;
  font-size: 22px;
  font-weight: 700;
}

.signal-card ul {
  padding-left: 20px;
  margin-top: 15px;
}

.signal-card ul li {
  margin-bottom: 10px;
  color: #444;
  font-size: 15px;
}

/* Icon Box */
.signal-card .icon-box {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white !important;
}

.signal-card .icon-box i {
  margin-bottom: 5px;
  color: white !important;
}

/* Section Colors */
.career-movements {
  background: #f0f7ff;
}
.career-movements .icon-box {
  background: #1e90ff;
}

.milestones {
  background: #fff1f6;
}
.milestones .icon-box {
  background: #ff3d7f;
}

.financial-signals {
  background: #edfff6;
}
.financial-signals .icon-box {
  background: #00c37a;
}

.company-intel {
  background: #f4f2ff;
}
.company-intel .icon-box {
  background: #7a4cff;
}

.life-events {
  background: #fff9eb;
}
.life-events .icon-box {
  background: #ff9900;
}

.recognition {
  background: #eef2ff;
}
.recognition .icon-box {
  background: #4a6cff;
}

/* Responsive */
@media (max-width: 900px) {
  .signals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .signals-grid {
    grid-template-columns: 1fr;
  }
}


/* section 7 */

/* Section */
.integration-section {
  text-align: center;
  padding: 70px 8%;
}

/* Badge */
.integration-badge {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid #ddd;
  border-radius: 25px;
  font-size: 14px;
  color: #444;
  margin-bottom: 20px;
}

/* Title */
.integration-title {
  font-size: 55px;
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
}

.integration-title span {
  background: linear-gradient(to right, #1a73ff, #6a3dff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtitle */
.integration-subtitle {
  max-width: 700px;
  margin: 20px auto 60px;
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}

/* Grid */
.integration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.integration-card {
  background: #fff;
  padding: 35px;
  border-radius: 18px;
  border: 1px solid #eef2ff;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.integration-card h2 {
  font-size: 22px;
  margin-top: 20px;
  font-weight: 700;
}

.integration-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.5;
  margin: 15px 0;
}

/* Icon */
.integration-icon {
  width: 55px;
  height: 55px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
}

/* Platform Colors */
.linkedin .integration-icon {
  background: #0077b5;
}

.facebook .integration-icon {
  background: #1877f2;
}

.twitter .integration-icon {
  background: #111827;
}

/* List */
.integration-card ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.integration-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #333;
}

.integration-card ul li i {
  color: #00c47a;
  font-size: 18px;
}

/* Footer */
.integration-footer-text {
  margin-top: 70px;
  color: #666;
  font-size: 15px;
}

/* Button */
.integration-btn {
  margin-top: 25px;
  padding: 14px 35px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(to right, #1a73ff, #5c2dff);
  color: white;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.integration-btn i {
  margin-left: 8px;
}

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

/* Responsive */
@media (max-width: 950px) {
  .integration-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .integration-grid {
    grid-template-columns: 1fr;
  }

  .integration-title {
    font-size: 40px;
  }
}

/* section 8 */

/* Section Background */
.pricing-section {
  background: radial-gradient(circle at top, #1b2b4a, #050b16);
  padding: 90px 8%;
  text-align: center;
  color: white;
}

/* Badge */
.pricing-badge {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 25px;
}

/* Title */
.pricing-title {
  font-size: 60px;
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
}

.pricing-title span {
  background: linear-gradient(to right, #1a73ff, #8b5bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtitle */
.pricing-subtitle {
  max-width: 700px;
  margin: 25px auto 70px;
  font-size: 18px;
  color: #cbd5e1;
  line-height: 1.6;
}

/* Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  justify-content: center;
}

/* Cards */
.pricing-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 22px;
  padding: 45px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
}

/* Annual Highlight */
.annual {
  border: 1px solid #2f6cff;
}

/* Popular Tag */
.popular-tag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #3b5bff;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

/* Header Row */
.annual-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.savings-pill {
  background: rgba(0, 255, 170, 0.15);
  color: #2dffb5;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

/* Price */
.price {
  margin: 25px 0 10px;
}

.amount {
  font-size: 55px;
  font-weight: 800;
}

.duration {
  font-size: 16px;
  color: #cbd5e1;
  margin-left: 8px;
}

/* Profiles */
.profiles {
  font-size: 16px;
  color: #93c5fd;
  font-weight: 600;
  margin-bottom: 30px;
}

/* Features */
.features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features li {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #e2e8f0;
  font-size: 15px;
}

.features li i {
  color: #00ffae;
  font-size: 16px;
}

/* Buttons */
.btn {
  width: 100%;
  margin-top: 35px;
  padding: 15px;
  border: none;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

/* Monthly Button */
.light-btn {
  background: #f8fafc;
  color: #111;
}

/* Annual Button */
.gradient-btn {
  background: linear-gradient(to right, #1a73ff, #6d3bff);
  color: white;
}

/* Responsive */
@media (max-width: 950px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-title {
    font-size: 45px;
  }
}

.network-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0f1f, #1b2a4a);
  padding: 40px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.network-section__container {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.network-section__badge {
  display: inline-block;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  color: #dbeafe;
  font-size: 14px;
  margin-bottom: 24px;
}

.network-section__title {
  font-size: 48px;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 24px;
}

.network-section__description {
  color: #cbd5e1;
  font-size: 18px;
  max-width: 480px;
  margin-bottom: 24px;
}

.network-section__features {
  list-style: none;
  display: flex;
  gap: 18px;
  padding: 0;
  margin: 0;
  color: #9ef3c5;
  font-size: 14px;
}

.network-section__card {
  background: #ffffff;
  border-radius: 18px;
  padding: 36px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.network-section__card-title {
  font-size: 24px;
  margin-bottom: 24px;
  color: #0f172a;
}

.network-section__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.network-section__label {
  font-size: 14px;
  color: #475569;
}

.network-section__input,
.network-section__select {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  font-size: 15px;
  outline: none;
}

.network-section__input:focus,
.network-section__select:focus {
  border-color: #6366f1;
}

.network-section__button {
  margin-top: 12px;
  padding: 16px;
  border-radius: 12px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  background: linear-gradient(90deg, #2563eb, #4f46e5);
}

.network-section__button:hover {
  opacity: 0.95;
}

.network-section__terms {
  margin-top: 12px;
  font-size: 12px;
  color: #64748b;
  text-align: center;
}

.network-section__terms a {
  color: #4f46e5;
  text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .network-section {
    min-height: auto;
    padding: 40px 20px;
  }

  .network-section__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .network-section__title {
    font-size: 32px;
  }

  .network-section__description {
    font-size: 16px;
    max-width: 100%;
  }

  .network-section__features {
    flex-direction: column;
    gap: 12px;
  }

  .network-section__card {
    padding: 24px;
  }

  .network-section__card-title {
    font-size: 20px;
  }

  .network-section__button {
    padding: 14px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .network-section {
    padding: 24px 16px;
  }

  .network-section__container {
    gap: 30px;
  }

  .network-section__title {
    font-size: 24px;
    line-height: 1.2;
  }

  .network-section__badge {
    padding: 6px 12px;
    font-size: 12px;
    margin-bottom: 16px;
  }

  .network-section__description {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .network-section__features {
    font-size: 12px;
  }

  .network-section__card {
    padding: 20px;
  }

  .network-section__card-title {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .network-section__label {
    font-size: 13px;
  }

  .network-section__input,
  .network-section__select {
    padding: 12px 14px;
    font-size: 14px;
  }

  .network-section__button {
    padding: 12px;
    font-size: 14px;
    margin-top: 8px;
  }

  .network-section__terms {
    font-size: 11px;
    margin-top: 10px;
  }
}


.footer-section {
  background: linear-gradient(135deg, #0a0f1f, #0e1830);
  padding: 80px 40px 30px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #cbd5e1;
}

.footer-section__container {
  max-width: 1200px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
}

.footer-section__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.footer-section__logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #ffffff;
}

.footer-section__logo-text {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
}

.footer-section__description {
  max-width: 420px;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #94a3b8;
}

.footer-section__powered {
  font-size: 13px;
  color: #64748b;
}

.footer-section__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.footer-section__heading {
  font-size: 15px;
  margin-bottom: 14px;
  color: #ffffff;
}

.footer-section__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
  color: #94a3b8;
}

.footer-section__list li {
  cursor: pointer;
}

.footer-section__list li:hover {
  color: #e5e7eb;
}

.footer-section__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(148, 163, 184, 0.15);
  text-align: center;
  font-size: 13px;
  color: #64748b;
}
