* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f3f3f5;
    color: #1d1f23;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
}

.logo-icon {
    background: #8b5cf6;
    color: white;
    padding: 6px 10px;
    border-radius: 6px;
    font-weight: 800;
}

.logo-text strong {
    color: #8b5cf6;
}

.nav-btn {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
}

.hero {
    text-align: center;
    padding: 100px 20px 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
}

.purple {
    color: #8b5cf6;
}

.subheadline {
    margin-top: 30px;
    font-size: 22px;
    font-weight: 600;
}

.cta-button {
    display: inline-block;
    margin-top: 40px;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    padding: 18px 40px;
    color: white;
    border-radius: 16px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(139,92,246,0.3);
}

.small-text {
    margin-top: 18px;
    font-size: 14px;
    color: #6b7280;
}

.trusted {
    text-align: center;
    padding: 60px 20px;
}

.divider {
    height: 1px;
    background: #d1d5db;
    max-width: 900px;
    margin: 0 auto 25px;
}

.trusted p {
    font-size: 12px;
    letter-spacing: 2px;
    color: #6b7280;
    font-weight: 600;
}

.top-bar {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb; /* subtle gray divider */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 64px;
    height: 84px; /* exact header height */
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer {
  background: #f5f5f7;
  padding-top: 70px;
  font-family: 'Inter', sans-serif;
  color: #2b2b2b;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 60px;
  padding: 0 40px 60px;
}

/* Logo */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #8e5cf7, #6f4df6);
  color: white;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 14px;
}

.logo-text span {
  display: block;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 14px;
}

/* Text */
.footer-description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 360px;
}

.footer-small {
  font-size: 14px;
  color: #6a6a6a;
  max-width: 360px;
}

/* Middle Column */
.footer-col h4 {
  font-size: 18px;
  margin-bottom: 18px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
  color: #4a4a4a;
  font-size: 15px;
}

/* CTA Column */
.footer-cta p {
  font-size: 15px;
  margin-bottom: 20px;
  color: #555;
  max-width: 280px;
}

.footer-btn {
  display: inline-block;
  background: linear-gradient(135deg, #8e5cf7, #6f4df6);
  color: white;
  padding: 12px 26px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(111, 77, 246, 0.25);
  transition: all 0.2s ease;
}

.footer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(111, 77, 246, 0.35);
}

/* Bottom Section */
.footer-bottom {
  border-top: 1px solid #ddd;
  padding: 25px 40px;
}

.footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 14px;
  color: #666;
}

.footer-links a {
  margin-left: 25px;
  text-decoration: none;
  color: #555;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #6f4df6;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom-container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-links a {
    margin-left: 0;
    margin-right: 15px;
  }
}
