@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --purple: #6f2db1;
  --blue: #5b8ac2;
  --teal: #5bc1b3;
  --lavender: #9B7FD9;
  --lavender-light: #D4C5F0;
  --bg: #F7F5FB;
  --card: #ffffff;
  --text: #2D1B3D;
  --text-secondary: #6B5B7D;
  --border: #E6DDF5;
  --gradient: linear-gradient(90deg, #6f2db1 0%, #5b8ac2 50%, #5bc1b3 100%);
  --shadow: 0 2px 12px rgba(111, 45, 177, 0.1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Nav ── */
nav {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  background: rgba(247, 245, 251, 0.9);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 10;
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-weight: 700;
  font-size: 1rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-links a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--purple);
}

/* ── Hero ── */
.hero {
  padding: 4rem 0 2.5rem;
}

.gradient-rule {
  height: 3px;
  background: var(--gradient);
  border-radius: 2px;
  margin-bottom: 2.5rem;
  width: 48px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.hero .subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
}

.hero .intro {
  font-size: 1.05rem;
  color: var(--text);
  max-width: 580px;
  line-height: 1.75;
}

/* ── Services ── */
.services {
  padding: 2.5rem 0;
}

.services h2 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.service-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  border-left-width: 4px;
  box-shadow: var(--shadow);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(111, 45, 177, 0.15);
}

.service-card.purple { border-left-color: var(--purple); }
.service-card.blue   { border-left-color: var(--blue); }
.service-card.teal   { border-left-color: var(--teal); }

.service-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.service-card.purple h3 { color: var(--purple); }
.service-card.blue   h3 { color: var(--blue); }
.service-card.teal   h3 { color: #37948a; }

.service-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── Contact ── */
.contact {
  padding: 2.5rem 0 4rem;
  border-top: 1px solid var(--border);
  margin-top: 1rem;
}

.contact h2 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.contact a {
  color: var(--purple);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  border-bottom: 2px solid var(--lavender-light);
  transition: border-color 180ms ease;
}

.contact a:hover {
  border-color: var(--purple);
}

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  background: var(--card);
}

footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

footer p {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

footer a {
  font-size: 0.8rem;
  color: var(--purple);
  text-decoration: none;
  font-weight: 500;
}

footer a:hover {
  text-decoration: underline;
}

/* ── Privacy Policy specific ── */
.policy-content {
  padding: 3rem 0 4rem;
}

.policy-content h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.policy-content .effective-date {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.policy-content h2 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--purple);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.policy-content p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.policy-content ul {
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-content li {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 0.25rem;
}

.highlight-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--teal);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
}

.highlight-box p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

.highlight-box strong {
  color: #37948a;
}

/* ── Responsive ── */
@media (max-width: 480px) {
  .hero { padding: 2.5rem 0 2rem; }
  .hero h1 { font-size: 2.25rem; }
}
