/* ─── Tokens ─────────────────────────────────────────── */
:root {
  --purple: #6e18b2;
  --purple-dark: #520d87;
  --purple-light: #f3e8ff;
  --purple-glow: #6e18b218;
  --text: #0a0a0a;
  --text-muted: #64748b;
  --text-xmuted: #94a3b8;
  --border: #e2e8f0;
  --surface: #ffffff;
  --bg: #fafafa;
  --radius: 12px;
  --radius-lg: 20px;
}

/* ─── Reset ──────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

/* ─── Typography ─────────────────────────────────────── */
h1,
h2,
h3 {
  /* font-family: "Syne", sans-serif; */
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
}
h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
}
h3 {
  font-size: 1.15rem;
  font-weight: 600;
}

/* ─── Layout ─────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Buttons ────────────────────────────────────────── */
.primary-button {
  background: var(--purple);
  color: #fff;
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  transition:
    background 0.2s,
    transform 0.15s;
}
.primary-button:hover {
  background: var(--purple-dark);
  transform: translateY(-1px);
}
.primary-button.large {
  padding: 14px 32px;
  font-size: 1rem;
}

.white-button {
  background: #fff;
  color: var(--purple);
}
.white-button:hover {
  background: #f3e8ff;
  transform: translateY(-1px);
}

.ghost-button {
  background: transparent;
  color: var(--text-muted);
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  transition: color 0.2s;
}
.ghost-button:hover {
  color: var(--purple);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition:
    color 0.2s,
    gap 0.2s;
}
.text-link:hover {
  color: var(--purple);
  gap: 10px;
}

/* ─── Section labels ─────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  background: var(--purple-light);
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 1.25rem;
}

/* ─── HEADER ─────────────────────────────────────────── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 250, 250, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 2rem;
}
.logo img {
  height: 50px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--purple);
}

.header-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Hamburger */
.hamburger {
  display: none;
  background: transparent;
  border: none;
  font-size: 20px;
  color: var(--text-muted);
  padding: 8px;
  cursor: pointer;
  transition: color 0.2s;
}
.hamburger:hover {
  color: var(--purple);
}

/* Mobile drawer */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
}
.mobile-menu.open {
  max-height: 420px;
  padding: 20px 24px 28px;
}
.mobile-menu ul {
  display: flex;
  flex-direction: column;
}
.mobile-menu ul li {
  border-bottom: 1px solid var(--border);
}
.mobile-menu ul li:last-child {
  border-bottom: none;
}
.mobile-menu ul a {
  display: block;
  padding: 13px 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
}
.mobile-menu ul a:hover {
  color: var(--purple);
}
.mobile-buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.mobile-buttons a {
  flex: 1;
}
.mobile-buttons button {
  width: 100%;
}

@media (max-width: 768px) {
  .nav-links,
  .desktop-buttons {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-menu {
    display: flex;
  }
}

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero-bg-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, #6e18b222 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--purple);
  background: var(--purple-light);
  padding: 6px 16px;
  border-radius: 99px;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}
.hero h1 {
  max-width: 760px;
}
.hero h1 em {
  font-style: normal;
  color: var(--purple);
  position: relative;
}
.hero > .container > .hero-inner > p {
  max-width: 560px;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 2.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 36px;
  box-shadow: 0 4px 24px #0000000a;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}
.hero-stat strong {
  /* font-family: "Syne", sans-serif; */
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--purple);
  line-height: 1;
}
.hero-stat span {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-xmuted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .hero {
    padding: 110px 0 60px;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 20px 20px;
    justify-content: center;
  }
  .hero-stat {
    padding: 0 16px;
  }
  .hero-stat-divider {
    display: none;
  }
  .hero h1 {
    font-size: 2rem;
  }
}

/* ─── SERVICES ───────────────────────────────────────── */
.services {
  padding: 96px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}
.section-heading-row h2 {
  max-width: 520px;
}
.section-heading-row p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 260px;
  text-align: right;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: var(--surface);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: background 0.2s;
}
.service-card:hover {
  background: #fdfdfd;
}

.service-card--cta {
  background: var(--purple-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.25rem;
}
.service-card--cta p {
  /* font-family: "Syne", sans-serif; */
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--purple);
  line-height: 1.3;
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--purple-light);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.service-card h3 {
  color: var(--text);
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  flex: 1;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--purple);
  transition: gap 0.2s;
  margin-top: auto;
}
.card-link:hover {
  gap: 10px;
}

.service-card--accent {
  background: var(--purple);
  color: #fff;
}
.service-card--accent:hover {
  background: var(--purple-dark);
}
.service-card--accent .service-icon {
  background: #ffffff22;
  color: #fff;
}
.service-card--accent h3 {
  color: #ffffff;
}
.service-card--accent p {
  color: #ffffffbb;
}
.service-card--accent .card-link {
  color: #fff;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-heading-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .section-heading-row p {
    text-align: left;
    max-width: 100%;
  }
}
@media (max-width: 560px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .services {
    padding: 60px 0;
  }
}

/* ─── WHY ────────────────────────────────────────────── */
.why {
  padding: 96px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.why-heading {
  margin-bottom: 3.5rem;
  max-width: 480px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.why-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.why-num {
  /* font-family: "Syne", sans-serif; */
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--purple);
  background: var(--purple-light);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-item h3 {
  font-size: 1rem;
  margin-top: 0.25rem;
}
.why-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .why {
    padding: 60px 0;
  }
}

/* ─── CTA BAND ───────────────────────────────────────── */
.cta-band {
  background: var(--purple);
  padding: 72px 0;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.cta-band-text h2 {
  color: #fff;
}
.cta-band-text p {
  color: #ffffffbb;
  margin-top: 0.5rem;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-band {
    padding: 56px 0;
  }
}

/* ─── FAQ ────────────────────────────────────────────── */
.faq {
  padding: 96px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.faq-heading {
  margin-bottom: 2.5rem;
}
.faq-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child {
  border-bottom: none;
}

.faq-item .question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.75rem;
  cursor: pointer;
  transition: background 0.15s;
}
.faq-item .question:hover {
  background: var(--bg);
}
.faq-item.active .question {
  background: var(--purple-light);
}
.faq-item .question h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  font-family: "Inter", sans-serif;
  letter-spacing: 0;
}
.faq-item .question i {
  color: var(--purple);
  font-size: 14px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.active .question i {
  transform: rotate(45deg);
}

.faq-item .answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.active .answer {
  max-height: 200px;
}
.faq-item .answer p {
  padding: 0 1.75rem 1.35rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
}

@media (max-width: 560px) {
  .faq {
    padding: 60px 0;
  }
  .faq-item .question {
    padding: 1.1rem 1.25rem;
  }
  .faq-item .answer p {
    padding: 0 1.25rem 1.1rem;
  }
}

/* ─── FOOTER ─────────────────────────────────────────── */
footer {
  background: #0d0d0d;
  padding: 64px 0 28px;
}
.footer-top {
  display: flex;
  /* grid-template-columns: 1.8fr 1fr 1fr 1fr; */
  align-items: center;
  justify-content: center;
  gap: 3rem;
  text-align: center;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.footer-brand img {
  height: 50px;
  width: auto;
  object-fit: contain;
  object-position: left;
}
.footer-brand p {
  font-size: 0.875rem;
  color: #ffffff55;
  line-height: 1.65;
  max-width: 260px;
}

.social-links {
  display: flex;
  gap: 0.6rem;
}
.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #ffffff10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff80;
  font-size: 14px;
  transition:
    background 0.2s,
    color 0.2s;
}
.social-links a:hover {
  background: var(--purple);
  color: #fff;
}

.footer-col h3 {
  font-size: 0.7rem;
  font-weight: 600;
  color: #ffffff40;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.1rem;
  font-family: "Inter", sans-serif;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-col ul a {
  font-size: 0.875rem;
  color: #ffffff60;
  transition: color 0.2s;
}
.footer-col ul a:hover {
  color: #fff;
}

.footer-divider {
  border: none;
  border-top: 1px solid #ffffff10;
  margin: 2.5rem 0 1.25rem;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: #ffffff30;
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.8rem;
  color: #ffffff30;
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .footer-top {
    /* grid-template-columns: 1fr 1fr; */
    gap: 2rem;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }
  footer {
    padding: 48px 0 24px;
  }
}
@media (max-width: 480px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}
