@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

:root {
  --brand-purple: #4B47C0;
  --brand-purple-dark: #3B38A0;
  --brand-cyan: #4DD9C0;
  --bg-white: #fff;
  --bg-light: #F7F8FC;
  --text-dark: #1A1A2E;
  --text-mid: #4A4A6A;
  --text-light: #8888AA;
  --border: #E4E4F0;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(75,71,192,0.10);
  --shadow-card: 0 2px 12px rgba(75,71,192,0.08);
  --transition: 0.22s cubic-bezier(.4,0,.2,1);
  --max-width: 1100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.6;
  font-size: 16px;
}
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p { color: var(--text-mid); }
a { color: inherit; text-decoration: none; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.btn-primary,
.btn-outline,
.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary { background: var(--brand-purple); color: #fff; }
.btn-primary:hover { background: var(--brand-purple-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(75,71,192,0.28); }
.btn-outline { background: transparent; color: var(--text-dark); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--brand-purple); color: var(--brand-purple); }
.btn-white { background: #fff; color: var(--brand-purple); }
.btn-white:hover { box-shadow: 0 4px 16px rgba(255,255,255,0.3); }

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 76px;
  padding: 0 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}
.navbar-inner {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo { display: flex; align-items: center; }
.navbar-logo img { height: 56px; width: auto; display: block; }
.navbar-links { display: flex; align-items: center; gap: 32px; }
.navbar-links a { font-size: 0.9rem; font-weight: 500; color: var(--text-mid); transition: color var(--transition); }
.navbar-links a:hover, .navbar-links a.active { color: var(--text-dark); }
.navbar-links a.nav-cta { color: var(--brand-purple); text-decoration: underline; }
.navbar-cta { margin-left: 8px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: var(--text-dark); border-radius: 2px; }

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.badge {
  display: inline-block;
  background: rgba(75,71,192,0.1);
  color: var(--brand-purple);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.stat-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 20px;
}
.stat-number { font-size: 1.6rem; font-weight: 700; color: var(--text-dark); line-height: 1; }
.stat-label { font-size: 0.8rem; color: var(--text-light); }
.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(75,71,192,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-purple);
  flex-shrink: 0;
}

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { max-width: 560px; margin: 0 auto; color: var(--text-mid); }
.section-purple { background: var(--brand-purple); color: #fff; }
.section-purple h2, .section-purple h3 { color: #fff; }
.section-purple p { color: rgba(255,255,255,0.82); }
.cta-section { text-align: center; padding: 80px 0; }
.cta-section h2 { margin-bottom: 12px; }
.cta-section p { margin-bottom: 32px; }
.divider { height: 1px; background: var(--border); border: none; }
.checklist { list-style: none; }
.checklist li { display: flex; gap: 10px; margin-bottom: 10px; font-size: 0.92rem; color: var(--text-mid); }
.check-icon { color: var(--brand-cyan); flex-shrink: 0; margin-top: 2px; }

.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-purple);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.step-content h4 { font-size: 1rem; margin-bottom: 4px; }
.step-content p { font-size: 0.88rem; }

footer {
  background: var(--brand-purple);
  color: rgba(255,255,255,0.85);
  padding: 60px 24px 30px;
}
.footer-inner { max-width: var(--max-width); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { display: block; width: 190px; max-width: 100%; height: auto; margin-bottom: 12px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.65; color: rgba(255,255,255,0.7); }
.footer-col h4 { color: #fff; font-size: 0.95rem; font-weight: 600; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.7); font-size: 0.88rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: #fff; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: rgba(255,255,255,0.6); }
.footer-contact-item span { font-size: 0.88rem; color: rgba(255,255,255,0.75); }
.footer-divider { border-color: rgba(255,255,255,0.15); margin-bottom: 24px; }
.footer-bottom { text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  margin-top: 16px;
  transition: background var(--transition);
}
.social-link:hover { background: rgba(255,255,255,0.22); }

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  section { padding: 56px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .navbar-links, .navbar-cta { display: none; }
  .hamburger { display: flex; }
  .navbar-links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    gap: 18px;
  }
  .navbar-cta.open { display: block; padding: 0 24px 20px; }
}
