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

:root {
  --bg-dark: #0e0b14;
  --bg-dark-2: #151020;
  --bg-mid: #1a1525;
  --bg-card: rgba(255,255,255,0.04);
  --bg-glass: rgba(255,255,255,0.06);
  --bg-glass-border: rgba(255,255,255,0.08);
  --bg-light: #f8f7fa;
  --bg-light-card: #ffffff;

  --text-white: #f0edf5;
  --text-muted: #9990ad;
  --text-dim: #6b6280;
  --text-dark: #2a2435;
  --text-dark-muted: #6b6280;

  --purple: #8b6cc7;
  --purple-bright: #a78bfa;
  --purple-deep: #5b3e9e;
  --purple-glow: rgba(139,108,199,0.3);
  --purple-subtle: rgba(139,108,199,0.08);

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --max-w: 1120px;
  --nav-h: 72px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-muted);
  background: var(--bg-dark);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* ─── AURORA / ATMOSPHERIC BACKGROUNDS ─── */
.aurora-bg {
  position: relative;
  overflow: hidden;
}
.aurora-bg::before {
  content: '';
  position: absolute;
  top: -40%; left: -20%;
  width: 80%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(139,108,199,0.07) 0%, transparent 70%);
  pointer-events: none;
  animation: aurora-drift 20s ease-in-out infinite alternate;
}
.aurora-bg::after {
  content: '';
  position: absolute;
  bottom: -30%; right: -15%;
  width: 70%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(91,62,158,0.05) 0%, transparent 65%);
  pointer-events: none;
  animation: aurora-drift 25s ease-in-out infinite alternate-reverse;
}

@keyframes aurora-drift {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.05); }
  100% { transform: translate(-20px, 15px) scale(0.98); }
}

/* Light streak effect */
.light-streak {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  overflow: hidden;
}
.light-streak::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -10%;
  width: 120%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,108,199,0.15), rgba(167,139,250,0.08), transparent);
  transform: rotate(-3deg);
}
.light-streak::after {
  content: '';
  position: absolute;
  top: 35%;
  left: -5%;
  width: 110%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,108,199,0.1), transparent);
  transform: rotate(-2deg);
}

/* ─── NAVIGATION ─── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(14,11,20,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bg-glass-border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.nav-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--text-white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo .logo-globe {
  height: 32px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.25s;
}
.nav-logo:hover .logo-globe { opacity: 1; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-sub {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--purple-bright);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.3px;
  transition: color 0.25s;
  position: relative;
}
.nav-links a:hover { color: var(--text-white); }
.nav-links a.active {
  color: var(--text-white);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--purple);
  border-radius: 1px;
}

.nav-cta {
  background: var(--purple);
  color: var(--text-white) !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.25s;
  box-shadow: 0 0 20px rgba(139,108,199,0.2);
}
.nav-cta:hover {
  background: var(--purple-bright);
  box-shadow: 0 0 30px rgba(139,108,199,0.35);
}
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-white);
  transition: 0.3s;
  border-radius: 1px;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--purple);
  color: var(--text-white);
  padding: 14px 32px;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 0 24px rgba(139,108,199,0.2);
}
.btn-primary:hover {
  background: var(--purple-bright);
  box-shadow: 0 4px 32px rgba(139,108,199,0.4);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-white);
  padding: 14px 32px;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: all 0.3s;
}
.btn-secondary:hover {
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.04);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-dark);
  padding: 14px 32px;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  border: 1px solid rgba(0,0,0,0.12);
  cursor: pointer;
  transition: all 0.3s;
}
.btn-outline-light:hover {
  border-color: var(--purple);
  color: var(--purple);
}

/* ─── GLASS CARDS ─── */
.glass-card {
  background: var(--bg-glass);
  border: 1px solid var(--bg-glass-border);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.35s;
}
.glass-card:hover {
  border-color: rgba(139,108,199,0.2);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 8px 40px rgba(139,108,199,0.08);
}

/* ─── SECTION UTILITIES ─── */
.section-dark {
  background: var(--bg-dark);
  color: var(--text-muted);
}
.section-dark-2 {
  background: var(--bg-dark-2);
  color: var(--text-muted);
}
.section-light {
  background: var(--bg-light);
  color: var(--text-dark-muted);
}

section {
  padding: 100px 0;
  position: relative;
}

.section-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--purple-bright);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-size: 40px;
  color: var(--text-white);
  margin-bottom: 16px;
}
.section-light .section-title {
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 18px;
  line-height: 1.7;
  max-width: 560px;
  color: var(--text-muted);
}
.section-light .section-subtitle {
  color: var(--text-dark-muted);
}

.purple-line {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--purple-bright));
  border-radius: 2px;
  margin-bottom: 24px;
}

/* ─── HERO ─── */
.hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 100px;
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 680px; }
.hero h1 {
  font-size: 52px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.hero h1 em {
  font-style: italic;
  color: var(--purple-bright);
  font-weight: 600;
}
.hero .subtitle {
  font-size: 19px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 540px;
  line-height: 1.8;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── TRUST BAR ─── */
.trust-bar {
  border-top: 1px solid var(--bg-glass-border);
  border-bottom: 1px solid var(--bg-glass-border);
  padding: 32px 0;
  background: rgba(255,255,255,0.015);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-dim);
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.trust-item svg { flex-shrink: 0; opacity: 0.7; }

/* ─── SERVICE CARDS ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.service-card {
  padding: 36px 32px;
  border-radius: 16px;
}
.service-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(139,108,199,0.15), rgba(139,108,199,0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg {
  width: 24px;
  height: 24px;
  color: var(--purple-bright);
}
.service-card h3 {
  font-size: 18px;
  color: var(--text-white);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ─── PAGE HERO (for subpages) ─── */
.page-hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
}
.page-hero h1 {
  font-size: 46px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 16px;
}
.page-hero .subtitle {
  font-size: 19px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
}

/* ─── BASELINE PAGE ─── */
.baseline-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.baseline-hero-visual {
  position: relative;
}
.compliance-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}
.compliance-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(139,108,199,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.compliance-status {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(139,108,199,0.12);
  border-radius: 12px;
  margin-bottom: 24px;
  position: relative;
}
.compliance-status .dot {
  width: 10px;
  height: 10px;
  background: #6ee7a0;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(110,231,160,0.4);
}
.compliance-status span {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--text-white);
  font-size: 15px;
}
.shield-visual {
  text-align: center;
  padding: 32px 0;
  position: relative;
}
.shield-visual svg {
  filter: drop-shadow(0 0 30px rgba(139,108,199,0.25));
}

/* Steps */
.steps-section { padding: 80px 0; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.step-card {
  text-align: center;
  padding: 32px 20px;
}
.step-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: rgba(139,108,199,0.2);
  line-height: 1;
  margin-bottom: 12px;
}
.step-card h4 {
  font-size: 15px;
  color: var(--text-white);
  margin-bottom: 8px;
}
.step-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Tiers */
.tiers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.tier-card {
  padding: 36px 32px;
  border-radius: 16px;
}
.tier-card.featured {
  background: linear-gradient(135deg, rgba(139,108,199,0.15), rgba(91,62,158,0.1));
  border-color: rgba(139,108,199,0.25);
}
.tier-card h3 {
  font-size: 22px;
  color: var(--text-white);
  margin-bottom: 20px;
}
.tier-card h3 em {
  font-style: normal;
  color: var(--purple-bright);
}
.tier-features {
  list-style: none;
}
.tier-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 15px;
  color: var(--text-muted);
}
.tier-features li svg {
  flex-shrink: 0;
  color: var(--purple-bright);
}

/* ─── ABOUT PAGE ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-content p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.8;
}
.values-list {
  list-style: none;
  margin-top: 24px;
}
.values-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--bg-glass-border);
  font-size: 15px;
  line-height: 1.6;
}
.values-list li:last-child { border-bottom: none; }
.values-list li strong { color: var(--text-white); }
.values-list li svg { flex-shrink: 0; margin-top: 3px; }

.stat-row {
  display: flex;
  gap: 48px;
  margin-top: 40px;
}
.stat { text-align: center; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--purple-bright), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 6px;
  letter-spacing: 0.3px;
}

.ce-banner {
  margin-top: 40px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 16px;
}
.ce-badge-img {
  flex-shrink: 0;
}
.ce-badge-img img {
  height: 64px;
  width: auto;
}
.ce-text h4 { font-size: 15px; color: var(--text-white); margin-bottom: 4px; }
.ce-text p { font-size: 14px; color: var(--text-muted); }

/* ─── CONTACT PAGE ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 48px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(139,108,199,0.15), rgba(139,108,199,0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { color: var(--purple-bright); }
.contact-detail h4 {
  font-size: 15px;
  color: var(--text-white);
  margin-bottom: 4px;
}
.contact-detail p { font-size: 15px; }
.contact-detail a { color: var(--purple-bright); transition: color 0.2s; }
.contact-detail a:hover { color: var(--purple); text-decoration: underline; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-white);
  letter-spacing: 0.3px;
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 18px;
  background: var(--bg-glass);
  border: 1px solid var(--bg-glass-border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-white);
  outline: none;
  transition: border-color 0.25s;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(139,108,199,0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 140px;
}
.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%239990ad' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.form-group select option {
  background: var(--bg-dark);
  color: var(--text-white);
}

/* Light form variant */
.section-light .form-group input,
.section-light .form-group textarea,
.section-light .form-group select {
  background: white;
  border-color: rgba(0,0,0,0.08);
  color: var(--text-dark);
}
.section-light .form-group input:focus,
.section-light .form-group textarea:focus,
.section-light .form-group select:focus {
  border-color: var(--purple);
}
.section-light .form-group label { color: var(--text-dark); }

/* ─── BLOG PAGE ─── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.blog-card {
  padding: 0;
  overflow: hidden;
  border-radius: 16px;
}
.blog-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--bg-mid), var(--bg-dark-2));
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--bg-glass-border);
}
.blog-card-img svg { opacity: 0.2; }
.blog-card-body {
  padding: 28px;
}
.blog-tag {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--purple-bright);
  margin-bottom: 12px;
  display: block;
}
.blog-card h3 {
  font-size: 18px;
  color: var(--text-white);
  margin-bottom: 12px;
  line-height: 1.4;
}
.blog-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.blog-coming {
  text-align: center;
  padding: 80px 0;
}
.blog-coming h3 {
  font-size: 24px;
  color: var(--text-white);
  margin-bottom: 12px;
}
.blog-coming p {
  font-size: 16px;
  max-width: 480px;
  margin: 0 auto;
}

/* ─── CTA BANNER ─── */
.cta-banner {
  text-align: center;
  padding: 80px 0;
}
.cta-banner h2 {
  font-size: 36px;
  color: var(--text-white);
  margin-bottom: 16px;
}
.cta-banner p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.section-light .cta-banner h2 { color: var(--text-dark); }
.section-light .cta-banner p { color: var(--text-dark-muted); }

/* ─── FOOTER ─── */
footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--bg-glass-border);
  padding: 48px 0;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-globe {
  height: 28px;
  width: auto;
  opacity: 0.7;
}
.footer-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.footer-brand p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 2px;
  letter-spacing: 0;
  text-transform: none;
  text-align: center;
}
.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.footer-links a {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--text-dim);
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--text-white); }
.footer-copy {
  font-size: 13px;
  color: var(--text-dim);
}

/* ─── FORM STATUS ─── */
.form-status {
  font-family: var(--font-heading);
  font-size: 14px;
  padding: 14px 20px;
  border-radius: 10px;
  margin-top: 4px;
}
.form-success {
  background: rgba(110, 231, 160, 0.1);
  border: 1px solid rgba(110, 231, 160, 0.25);
  color: #6ee7a0;
}
.form-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #f87171;
}
button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.show {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(14,11,20,0.95);
    backdrop-filter: blur(20px);
    padding: 24px 28px;
    gap: 16px;
    border-bottom: 1px solid var(--bg-glass-border);
  }
  .hamburger { display: flex; }

  .hero h1 { font-size: 34px; }
  .page-hero h1 { font-size: 32px; }
  .section-title { font-size: 30px; }
  section { padding: 70px 0; }

  .services-grid { grid-template-columns: 1fr; }
  .baseline-hero-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .tiers-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stat-row { gap: 32px; }
  .trust-inner { gap: 20px; }
}
/* ─── PRIVACY PAGE ─── */
.privacy-content {
  max-width: 740px;
  margin: 0 auto;
}
.privacy-content h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--text-white);
  margin-top: 48px;
  margin-bottom: 12px;
}
.privacy-content h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  color: var(--text-white);
  margin-top: 24px;
  margin-bottom: 8px;
}
.privacy-content p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.privacy-content a {
  color: var(--purple-bright);
  text-decoration: underline;
  text-decoration-color: rgba(167, 139, 250, 0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}
.privacy-content a:hover {
  text-decoration-color: var(--purple-bright);
}
.privacy-updated {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--bg-glass-border);
}
.privacy-list,
.privacy-details {
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
}
.privacy-list li {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
  padding: 6px 0 6px 20px;
  position: relative;
}
.privacy-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--purple-bright);
}
.privacy-details li {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
  padding: 4px 0;
}