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

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

/* 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: 999px;
  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: 900px;
  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 {
  background: black;
  color: white;
  padding: 16px 36px;
  border-radius: 999px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 40px;
}

/* 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;
  }
}



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

.data-enrichment-container {
  max-width: 900px;
  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;
}

/* section 5 */
.enrichment-features-section {
  padding: 20px 20px;
}

.enrichment-features-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Cards Grid */
.enrichment-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}

.enrichment-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease;
}

.enrichment-card:hover {
  transform: translateY(-6px);
}

.enrichment-icon {
  width: 48px;
  height: 48px;
  background: #eef2ff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4f46e5;
  margin-bottom: 20px;
  font-size: 24px;
}

.enrichment-icon svg {
  width: 24px;
  height: 24px;
}

.enrichment-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 12px;
}

.enrichment-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #475569;
}

/* CTA */
.enrichment-cta-box {
  background: #f3f5ff;
  border-radius: 28px;
  padding: 80px 40px;
  text-align: center;
}

.enrichment-cta-box h2 {
  font-size: 30px !important;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 20px;
}

.enrichment-cta-box p {
  max-width: 720px;
  margin: 0 auto 36px;
  font-size: 18px;
  line-height: 1.7;
  color: #475569;
}

.enrichment-cta-button {
  background: #3b5bfd;
  color: #ffffff;
  border: none;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.enrichment-cta-button:hover {
  background: #2f4be0;
}

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

@media (max-width: 640px) {
  .enrichment-cards-grid {
    grid-template-columns: 1fr;
  }

  .enrichment-cta-box h2 {
    font-size: 28px;
  }
}


/* section 6 */
.powerful-features-section {
  padding: 120px 20px;
  background: #fafbfc;
}

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

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

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

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

.powerful-features-title span {
  color: #3b5bfd;
}

/* Description */
.powerful-features-description {
  max-width: 780px;
  margin: 0 auto 80px;
  font-size: 18px;
  line-height: 1.7;
  color: #475569;
}

/* Grid */
.powerful-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Card */
.feature-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 20px;
  text-align: left;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  box-shadow: 5 30px 40px rgba(15, 23, 42, 0.08);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: #3b5bfd;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 24px;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #475569;
}

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

@media (max-width: 640px) {
  .powerful-features-grid {
    grid-template-columns: 1fr;
  }

  .powerful-features-title {
    font-size: 34px;
  }
}


/* Section 7 */

  .process-section {
      padding: 20px 20px;
      max-width: 1200px;
      margin: auto;
    }

    /* ===== HEADER ===== */
    .process-header {
      text-align: center;
      margin-bottom: 70px;
    }

    .process-badge {
      display: inline-block;
      background: #eef2ff;
      color: #4f46e5;
      padding: 6px 14px;
      border-radius: 999px;
      font-size: 13px;
      margin-bottom: 14px;
    }

    .process-title {
      font-size: 42px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .process-subtitle {
      font-size: 18px;
      color: #6b7280;
    }

    /* ===== TIMELINE ===== */
    .timeline-container {
      position: relative;
      display: grid;
      grid-template-columns: 1fr 60px 1fr;
      row-gap: 60px;
    }

    .timeline-line {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 2px;
      background: linear-gradient(to bottom, #6366f1, #ec4899);
      transform: translateX(-50%);
    }

    /* ===== STEP NUMBER ===== */
    .timeline-step {
      grid-column: 2 / 3;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
    }

    .step-circle {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: #ffffff;
      border: 2px solid #6366f1;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 600;
      color: #6366f1;
    }

    /* ===== CARD ===== */
    .timeline-card {
      background: #ffffff;
      border-radius: 16px;
      padding: 24px;
      max-width: 420px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    }

    .card-left {
      grid-column: 1 / 2;
      justify-self: end;
    }

    .card-right {
      grid-column: 3 / 4;
      justify-self: start;
    }

    .card-icon {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      background: #eef2ff;
      color: #4f46e5;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      margin-bottom: 14px;
    }

    .card-title {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .card-text {
      font-size: 14px;
      color: #6b7280;
      line-height: 1.6;
    }

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

      .timeline-line {
        left: 20px;
      }

      .timeline-step {
        grid-column: 1;
        justify-content: flex-start;
        padding-left: 6px;
      }

      .timeline-card {
        grid-column: 1;
        justify-self: start;
        margin-left: 50px;
      }
      .navbar {
    width: 100%;
    padding: 20px 20px;
}
    }


    /* section 8 */

    .pricing-page-body {
      background-color: #fefefe;
      color: #0f172a;
    }

    /* ===== PRICING SECTION ===== */
    .pricing-section {
      padding: 50px 20px;
      max-width: 1200px;
      margin: auto;
    }

    /* ===== HEADER ===== */
    .pricing-header {
      text-align: center;
      margin-bottom: 70px;
    }

    .pricing-title {
      font-size: 48px;
      font-weight: 700;
      line-height: 1.2;
    }

    .pricing-title-highlight {
      color: #3b5bfd;
    }

    .pricing-subtitle {
      margin-top: 14px;
      font-size: 18px;
      color: #64748b;
    }

    /* ===== CARDS GRID ===== */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      align-items: stretch;
    }

    /* ===== CARD BASE ===== */
    .pricing-card {
      background: #ffffff;
      border-radius: 28px;
      padding: 36px 32px 40px;
      box-shadow: 0 20px 50px rgba(0,0,0,0.08);
      position: relative;
      display: flex;
      flex-direction: column;
    }

    .pricing-card-highlight {
      background: linear-gradient(180deg, #5b4bff, #8a3cf6);
      color: #ffffff;
      transform: translateY(-20px);
    }

    /* ===== BADGE ===== */
    .pricing-badge {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: #fbbf24;
      color: #000000;
      padding: 6px 14px;
      font-size: 12px;
      font-weight: 700;
      border-radius: 999px;
    }

    /* ===== PLAN LABEL ===== */
    .plan-label {
      display: inline-block;
      background: #eef2ff;
      color: #4f46e5;
      padding: 6px 12px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 600;
      margin-bottom: 18px;
      width: fit-content;
    }

    .pricing-card-highlight .plan-label {
      background: rgba(255,255,255,0.2);
      color: #ffffff;
    }

    /* ===== PLAN TITLE ===== */
    .plan-title {
      font-size: 26px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    /* ===== PRICE ===== */
    .plan-price {
      font-size: 40px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .plan-price span {
      font-size: 16px;
      font-weight: 500;
      opacity: 0.8;
    }

    /* ===== DESCRIPTION ===== */
    .plan-description {
      font-size: 15px;
      color: #64748b;
      margin-bottom: 26px;
      line-height: 1.6;
    }

    .pricing-card-highlight .plan-description {
      color: rgba(255,255,255,0.9);
    }

    /* ===== FEATURES ===== */
    .plan-features {
      list-style: none;
      margin-bottom: 32px;
    }

    .plan-feature-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 14px;
      font-size: 15px;
    }

    .feature-check {
      color: #22c55e;
      font-weight: 700;
      margin-top: 2px;
    }

    .pricing-card-highlight .feature-check {
      color: #d9f99d;
    }

    /* ===== BUTTON ===== */
    .plan-button {
      margin-top: auto;
      padding: 14px;
      border-radius: 999px;
      font-size: 16px;
      font-weight: 600;
      border: none;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .button-primary {
      background: #3b5bfd;
      color: #ffffff;
    }

    .button-outline {
      background: #ffffff;
      color: #3b5bfd;
    }

    .pricing-card-highlight .plan-button {
      background: #ffffff;
      color: #5b4bff;
    }

    .plan-button:hover {
      transform: translateY(-2px);
      opacity: 0.95;
    }

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

      .pricing-card-highlight {
        transform: none;
      }
    }


    /* section 9 */
    .testimonial-page-body {
      background: #fefefe;
      color: #0f172a;
    }

    /* ===== SECTION ===== */
    .testimonial-section {
      padding: 50px 20px;
      max-width: 1200px;
      margin: auto;
    }

    /* ===== HEADER ===== */
    .testimonial-header {
      text-align: center;
      margin-bottom: 70px;
    }

    .testimonial-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #eef2ff;
      color: #4f46e5;
      padding: 10px 18px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 18px;
    }

    .testimonial-title {
      font-size: 44px;
      font-weight: 700;
      line-height: 1.2;
    }

    .testimonial-title-highlight {
      color: #3b5bfd;
    }

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

    /* ===== CARD ===== */
    .testimonial-card {
      background: #ffffff;
      border-radius: 24px;
      padding: 36px 34px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.08);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    /* ===== STARS ===== */
    .testimonial-stars {
      color: #facc15;
      font-size: 16px;
      margin-bottom: 18px;
      letter-spacing: 4px;
      display: flex;
      gap: 4px;
    }

    /* ===== TEXT ===== */
    .testimonial-text {
      font-size: 16px;
      line-height: 1.7;
      color: #1e293b;
      margin-bottom: 28px;
      font-style: italic;
    }

    /* ===== AUTHOR ===== */
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-top: auto;
    }

    .author-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      object-fit: cover;
    }

    .author-info {
      display: flex;
      flex-direction: column;
    }

    .author-name {
      font-size: 16px;
      font-weight: 700;
    }

    .author-role {
      font-size: 14px;
      color: #64748b;
      margin-top: 2px;
      line-height: 1.4;
    }

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


    /* section 10 */

    .cta-page-body {
      background: #fefefe;
    }

    /* ===== CTA SECTION ===== */
    .cta-section {
      padding: 50px 20px;
      background: linear-gradient(135deg, #6d5dfc, #8b3df6);
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
    }

    .cta-container {
      max-width: 900px;
      width: 100%;
    }

    /* ===== TITLE ===== */
    .cta-title {
      font-size: 48px;
      font-weight: 700;
      color: #ffffff;
      line-height: 1.2;
      margin-bottom: 22px;
    }

    /* ===== DESCRIPTION ===== */
    .cta-description {
      font-size: 20px;
      color: rgba(255,255,255,0.9);
      line-height: 1.6;
      margin-bottom: 40px;
    }

    /* ===== BUTTON ===== */
    .cta-button {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #ffffff;
      color: #4f46e5;
      padding: 16px 34px;
      border-radius: 999px;
      font-size: 18px;
      font-weight: 700;
      border: none;
      cursor: pointer;
      transition: all 0.25s ease;
      margin-bottom: 34px;
    }

    .cta-button-arrow {
      font-size: 20px;
      transition: transform 0.25s ease;
    }

    .cta-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    }

    .cta-button:hover .cta-button-arrow {
      transform: translateX(6px);
    }

    /* ===== FOOTER INFO ===== */
    .cta-info {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
      margin-top: 10px;
    }

    .cta-info-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 16px;
      color: rgba(255,255,255,0.9);
    }

    .cta-check {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      border: 2px solid #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 700;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      .cta-title {
        font-size: 36px;
      }

      .cta-description {
        font-size: 18px;
      }
    }

    /* 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;
      }
    }