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

:root {
  --bg:        #0f0f1a;
  --bg2:       #13131f;
  --surface:   rgba(255,255,255,0.04);
  --border:    rgba(255,255,255,0.08);
  --violet:    #7c3aed;
  --violet2:   #6d28d9;
  --blue:      #3b82f6;
  --grad:      linear-gradient(135deg, #7c3aed, #3b82f6);
  --text:      #f1f5f9;
  --muted:     #94a3b8;
  --radius:    16px;
  font-family: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }

a { color: inherit; text-decoration: none; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ── Buttons ── */
.btn-primary {
  background: var(--grad);
  color: #fff; border: none; border-radius: 12px;
  padding: 14px 28px; font-weight: 600; font-size: 15px;
  cursor: pointer; display: inline-block; transition: opacity .2s, transform .15s;
}
.btn-primary:hover { opacity: .9; transform: translateY(-1px); }
.btn-ghost {
  background: var(--surface); color: var(--text);
  border: 1px solid var(--border); border-radius: 12px;
  padding: 14px 28px; font-weight: 500; font-size: 15px;
  cursor: pointer; display: inline-block; transition: background .2s;
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); }
.btn-sm  { padding: 10px 20px; font-size: 14px; }
.btn-lg  { padding: 16px 36px; font-size: 16px; border-radius: 14px; }
.btn-full { width: 100%; text-align: center; }

/* ── Badge ── */
.badge {
  display: inline-block; padding: 6px 16px;
  background: rgba(124,58,237,0.15); border: 1px solid rgba(124,58,237,0.3);
  border-radius: 100px; font-size: 13px; font-weight: 500;
  color: #a78bfa; margin-bottom: 20px;
}

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  background: rgba(15,15,26,0.8); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 32px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 18px;
}
.logo-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--grad); display: inline-block;
}
.nav-links {
  display: flex; align-items: center; gap: 28px;
  margin-left: auto; font-size: 14px; color: var(--muted);
}
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; gap: 10px; align-items: center; }

/* Lang switcher */
.lang-switcher { position: relative; }
.lang-btn {
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text); padding: 7px 14px; border-radius: 8px;
  font-size: 13px; cursor: pointer; font-family: inherit;
}
.lang-dropdown {
  display: none; position: absolute; top: calc(100% + 8px); right: 0;
  background: #1a1a2e; border: 1px solid var(--border);
  border-radius: 12px; padding: 8px; min-width: 160px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4); z-index: 200;
  max-height: 320px; overflow-y: auto;
}
.lang-dropdown.open { display: block; }
.lang-dropdown a {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px; border-radius: 8px; font-size: 14px;
  color: var(--muted); transition: background .15s;
}
.lang-dropdown a:hover { background: var(--surface); color: var(--text); }
.lang-dropdown a.active { color: var(--text); background: rgba(124,58,237,0.15); }

/* ── HERO ── */
.hero {
  padding: 160px 0 100px; text-align: center;
  position: relative; overflow: hidden;
}
.hero-glow {
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 600px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(124,58,237,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-title {
  font-size: clamp(36px, 5vw, 64px); font-weight: 800;
  line-height: 1.1; margin-bottom: 24px; letter-spacing: -1px;
  background: linear-gradient(135deg, #fff 40%, #a78bfa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  font-size: 18px; color: var(--muted); max-width: 600px;
  margin: 0 auto 40px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.hero-proof { font-size: 13px; color: var(--muted); margin-bottom: 60px; }

/* Chat preview */
.hero-preview {
  max-width: 560px; margin: 0 auto;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}
.preview-bar {
  background: rgba(255,255,255,0.04); padding: 12px 16px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--border);
}
.preview-dot { width: 10px; height: 10px; border-radius: 50%; }
.preview-dot.red    { background: #ff5f57; }
.preview-dot.yellow { background: #ffbd2e; }
.preview-dot.green  { background: #28c840; }
.preview-title { margin-left: 8px; font-size: 13px; font-weight: 500; color: var(--muted); }
.preview-chat { padding: 20px; display: flex; flex-direction: column; gap: 12px; text-align: left; }
.preview-msg {
  padding: 12px 16px; border-radius: 14px; font-size: 14px; max-width: 85%; line-height: 1.5;
}
.preview-msg.sophie {
  background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  align-self: flex-start; border-bottom-left-radius: 4px;
}
.preview-msg.user {
  background: var(--grad); color: #fff;
  align-self: flex-end; border-bottom-right-radius: 4px;
}
.preview-cursor {
  width: 8px; height: 18px; background: var(--violet);
  border-radius: 2px; align-self: flex-start;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ── FEATURES ── */
.features { padding: 100px 0; }
.section-title { font-size: clamp(28px,4vw,44px); font-weight: 700; text-align: center; margin-bottom: 16px; }
.section-sub { text-align: center; color: var(--muted); max-width: 560px; margin: 0 auto 60px; font-size: 17px; }
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px;
}
.feature-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: border-color .2s, transform .2s;
}
.feature-card:hover { border-color: rgba(124,58,237,0.4); transform: translateY(-2px); }
.feature-icon { font-size: 28px; margin-bottom: 14px; }
.feature-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.feature-card p  { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── HOW ── */
.how { padding: 100px 0; background: var(--bg2); }
.steps { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: center; margin-top: 60px; }
.step { flex: 1; min-width: 220px; max-width: 280px; text-align: center; }
.step-num {
  font-size: 48px; font-weight: 800; color: transparent;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}
.step h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.step p   { font-size: 14px; color: var(--muted); }
.step-arrow { font-size: 24px; color: var(--muted); flex-shrink: 0; }

/* ── PRICING ── */
.pricing { padding: 100px 0; }
.plans { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-top: 60px; }
.plan {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 36px; width: 300px;
  display: flex; flex-direction: column; gap: 20px; position: relative;
}
.plan-featured {
  border-color: var(--violet); background: rgba(124,58,237,0.08);
  box-shadow: 0 0 40px rgba(124,58,237,0.15);
}
.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--grad); padding: 4px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 600; white-space: nowrap;
}
.plan-name  { font-size: 18px; font-weight: 600; }
.plan-price { font-size: 42px; font-weight: 800; }
.plan-price span { font-size: 15px; font-weight: 400; color: var(--muted); margin-left: 4px; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.plan-features li { font-size: 14px; color: var(--muted); }
.plans-3 .plan { width: 280px; padding: 32px; }
.plan-premium {
  border-color: #3b82f6; background: rgba(59,130,246,0.08);
  box-shadow: 0 0 40px rgba(59,130,246,0.12);
}

/* ── FAQ ── */
.faq { padding: 100px 0; background: var(--bg2); }
.faq-list { max-width: 700px; margin: 60px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.faq-item summary {
  padding: 20px 24px; font-weight: 500; cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::after { content: "+"; font-size: 20px; color: var(--violet); }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { padding: 0 24px 20px; color: var(--muted); font-size: 14px; line-height: 1.7; }

/* ── CTA SECTION ── */
.cta-section {
  padding: 120px 0; text-align: center;
  background: radial-gradient(ellipse at center, rgba(124,58,237,0.12) 0%, transparent 70%);
}
.cta-section h2 { font-size: clamp(28px,4vw,44px); font-weight: 700; margin-bottom: 16px; }
.cta-section p  { color: var(--muted); font-size: 17px; margin-bottom: 36px; }

/* ── FOOTER ── */
.footer { padding: 60px 0 40px; border-top: 1px solid var(--border); }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 32px; margin-bottom: 40px; }
.footer-brand p { color: var(--muted); font-size: 14px; margin-top: 10px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 14px; color: var(--muted); }
.footer-links a:hover { color: var(--text); }
.footer-disclaimer { font-size: 12px; color: var(--muted); border-top: 1px solid var(--border); padding-top: 24px; }

/* ── STATS BAR ── */
.stats-bar {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}
.stats-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}
.stat-bar-val {
  font-size: 15px;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-bar-label {
  font-size: 12px;
  color: var(--muted);
}
.stat-bar-sep {
  color: rgba(255,255,255,0.15);
  font-size: 20px;
}

/* ── TOOLS SECTION ── */
.tools-section {
  padding: 100px 0;
  background: var(--bg2);
}
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.tool-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color .2s, transform .2s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tool-card:hover { border-color: rgba(124,58,237,0.35); transform: translateY(-2px); }
.tool-card--highlight {
  border-color: rgba(124,58,237,0.3);
  background: rgba(124,58,237,0.05);
}
.tool-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tool-icon { font-size: 26px; }
.tool-tag {
  font-size: 11px;
  font-weight: 600;
  color: #a78bfa;
  background: rgba(124,58,237,0.12);
  padding: 3px 10px;
  border-radius: 20px;
}
.tool-card h3 { font-size: 15px; font-weight: 600; }
.tool-card p  { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── POUR QUI ── */
.forqui-section { padding: 100px 0; }
.personas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 60px;
}
.persona-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: border-color .2s, transform .2s;
}
.persona-card:hover { border-color: rgba(124,58,237,0.35); transform: translateY(-2px); }
.persona-icon { font-size: 28px; display: block; margin-bottom: 10px; }
.persona-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.persona-card p  { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── TÉMOIGNAGES ── */
.testi-section { padding: 100px 0; background: var(--bg2); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.testi-stars { color: #f59e0b; font-size: 14px; letter-spacing: 2px; }
.testi-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.testi-author { display: flex; flex-direction: column; gap: 4px; }
.testi-name { font-size: 14px; font-weight: 600; }
.testi-tag  { font-size: 12px; color: var(--muted); }

/* ── PRICING NOTE ── */
.pricing-note {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--muted);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .footer-top { flex-direction: column; }
  .tools-grid { grid-template-columns: 1fr; }
  .personas-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .stats-bar-sep { display: none; }
}
@media (max-width: 480px) {
  .personas-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   NAV SERVICES DROPDOWN (landing.html)
═══════════════════════════════════════════════════════ */
.nav-services-dropdown { position: relative; }
.nav-services-btn {
  background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 14px; font-weight: 500;
  color: var(--text-2); padding: 0; transition: color .2s;
}
.nav-services-btn:hover { color: var(--text-1); }
.nav-services-menu {
  display: none;
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%);
  background: rgba(15,15,26,0.97); border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; padding: 20px; min-width: 360px;
  backdrop-filter: blur(20px); box-shadow: 0 20px 60px rgba(0,0,0,.5);
  flex-direction: row; gap: 24px; z-index: 200;
}
.nav-services-menu.open { display: flex; }
.nav-svc-col { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.nav-svc-heading {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .08em; color: #7c3aed; margin-bottom: 4px;
}
.nav-svc-col a {
  font-size: 13px; color: var(--text-2); text-decoration: none;
  padding: 6px 8px; border-radius: 8px; transition: all .15s;
}
.nav-svc-col a:hover {
  background: rgba(124,58,237,.15); color: var(--text-1);
}

/* ═══════════════════════════════════════════════════════
   SERVICE PAGE STYLES (service.html)
═══════════════════════════════════════════════════════ */

/* Nav */
.svc-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(15,15,26,.9); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.svc-nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px;
  padding: 14px 24px;
}
.svc-nav-logo {
  font-weight: 700; font-size: 17px; color: #e2e8f0;
  text-decoration: none; display: flex; align-items: center; gap: 8px;
  margin-right: auto;
}
.svc-nav-links { display: flex; align-items: center; gap: 8px; }
.svc-nav-link {
  font-size: 14px; color: #94a3b8; text-decoration: none;
  padding: 6px 12px; border-radius: 8px; transition: all .15s;
}
.svc-nav-link:hover { color: #e2e8f0; background: rgba(255,255,255,.06); }
.svc-nav-link--dropdown {
  background: none; border: none; cursor: pointer; font-family: inherit;
  font-size: 14px; color: #94a3b8; padding: 6px 12px; border-radius: 8px;
  transition: all .15s;
}
.svc-nav-link--dropdown:hover { color: #e2e8f0; background: rgba(255,255,255,.06); }
.svc-nav-dropdown { position: relative; }
.svc-nav-ddmenu {
  display: none; position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%); background: rgba(15,15,26,.97);
  border: 1px solid rgba(255,255,255,.1); border-radius: 16px;
  padding: 20px; min-width: 360px; backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0,0,0,.5); flex-direction: row; gap: 24px; z-index: 200;
}
.svc-nav-dropdown.open .svc-nav-ddmenu { display: flex; }
.svc-dd-col { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.svc-dd-heading {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .08em; color: #7c3aed; margin-bottom: 4px;
}
.svc-dd-col a {
  font-size: 13px; color: #94a3b8; text-decoration: none;
  padding: 6px 8px; border-radius: 8px; transition: all .15s;
}
.svc-dd-col a:hover { background: rgba(124,58,237,.15); color: #e2e8f0; }
.svc-nav-cta {
  background: linear-gradient(135deg,#7c3aed,#3b82f6);
  color: #fff; font-weight: 600; font-size: 13px; padding: 9px 18px;
  border-radius: 10px; text-decoration: none; white-space: nowrap; transition: opacity .2s;
}
.svc-nav-cta:hover { opacity: .9; }

/* Breadcrumb */
.svc-breadcrumb {
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 12px 0;
}
.svc-breadcrumb .container {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: #64748b;
}
.svc-breadcrumb a { color: #64748b; text-decoration: none; }
.svc-breadcrumb a:hover { color: #94a3b8; }
.svc-breadcrumb span { color: #475569; }

/* Hero */
.svc-hero {
  position: relative; overflow: hidden;
  padding: 80px 24px 64px; text-align: center;
}
.svc-hero-glow {
  position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(124,58,237,.25) 0%, transparent 70%);
  pointer-events: none;
}
.svc-hero-title {
  font-size: clamp(26px, 4.5vw, 48px); font-weight: 800;
  line-height: 1.15; margin: 16px 0 20px;
  background: linear-gradient(135deg, #e2e8f0 30%, #a78bfa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  max-width: 800px; margin-left: auto; margin-right: auto;
}
.svc-hero-subtitle {
  font-size: clamp(15px, 2vw, 18px); color: #94a3b8; line-height: 1.65;
  max-width: 660px; margin: 0 auto 36px;
}
.svc-hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* What section */
.svc-what { padding: 40px 24px; }
.svc-what-card {
  max-width: 800px; margin: 0 auto;
  padding: 32px 36px; border-radius: 20px;
}
.svc-what-card h2 {
  font-size: 20px; font-weight: 700; margin-bottom: 16px;
  color: #a78bfa;
}
.svc-what-card p { color: #94a3b8; line-height: 1.7; font-size: 16px; }

/* Section titles */
.svc-section-title {
  font-size: clamp(22px, 3.5vw, 32px); font-weight: 700;
  text-align: center; margin-bottom: 48px; color: #e2e8f0;
}

/* How steps */
.svc-how { padding: 60px 24px; }
.svc-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 960px; margin: 0 auto;
}
.svc-step {
  position: relative; background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08); border-radius: 20px;
  padding: 28px 24px 24px; text-align: center;
  transition: border-color .2s, transform .2s;
}
.svc-step:hover { border-color: rgba(124,58,237,.3); transform: translateY(-4px); }
.svc-step-icon { font-size: 36px; margin-bottom: 8px; }
.svc-step-num {
  position: absolute; top: 16px; right: 16px;
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(124,58,237,.2); border: 1px solid rgba(124,58,237,.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: #a78bfa;
}
.svc-step h3 { font-size: 15px; font-weight: 600; margin: 12px 0 10px; }
.svc-step p { font-size: 13px; color: #94a3b8; line-height: 1.6; }

/* Benefits */
.svc-benefits { padding: 20px 24px 60px; }
.svc-benefits-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 14px; max-width: 760px; margin: 0 auto;
}
.svc-benefit-item {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px; padding: 14px 16px;
}
.svc-check { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }
.svc-benefit-item span { font-size: 14px; color: #cbd5e1; line-height: 1.5; }

/* FAQ */
.svc-faq { padding: 20px 24px 60px; }
.svc-faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.svc-faq-item {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px; padding: 0; overflow: hidden;
  transition: border-color .2s;
}
.svc-faq-item[open] { border-color: rgba(124,58,237,.3); }
.svc-faq-item summary {
  padding: 18px 20px; font-size: 15px; font-weight: 600;
  cursor: pointer; list-style: none; display: flex;
  justify-content: space-between; align-items: center;
}
.svc-faq-item summary::after { content: '+'; color: #7c3aed; font-size: 20px; }
.svc-faq-item[open] summary::after { content: '−'; }
.svc-faq-item p { padding: 0 20px 18px; font-size: 14px; color: #94a3b8; line-height: 1.7; margin: 0; }

/* CTA */
.svc-cta { padding: 20px 24px 60px; }
.svc-cta-card {
  max-width: 680px; margin: 0 auto;
  background: linear-gradient(135deg, rgba(124,58,237,.15), rgba(59,130,246,.1));
  border: 1px solid rgba(124,58,237,.25); border-radius: 24px;
  padding: 48px 40px; text-align: center;
}
.svc-cta-card h2 { font-size: 26px; font-weight: 700; margin-bottom: 10px; }
.svc-cta-card > p { color: #94a3b8; margin-bottom: 28px; }
.svc-cta-sub { margin-top: 20px; font-size: 13px; color: #64748b; }

/* Related articles */
.svc-related { padding: 20px 24px 60px; }
.svc-related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; max-width: 960px; margin: 0 auto;
}
.svc-related-card {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px; padding: 24px; text-decoration: none; color: inherit;
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color .2s, transform .2s;
}
.svc-related-card:hover { border-color: rgba(124,58,237,.35); transform: translateY(-3px); }
.svc-related-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.svc-related-card h3 { font-size: 15px; font-weight: 600; line-height: 1.4; flex: 1; }
.svc-related-card > p { font-size: 13px; color: #94a3b8; line-height: 1.5; }
.svc-related-read { font-size: 13px; font-weight: 500; color: #7c3aed; }

/* Footer */
.svc-footer { border-top: 1px solid rgba(255,255,255,.07); padding: 40px 24px 32px; }
.svc-footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 32px; margin-bottom: 24px;
}
.svc-footer-brand { flex: 1 1 200px; }
.svc-footer-logo { font-size: 16px; font-weight: 700; color: #e2e8f0; display: block; margin-bottom: 8px; }
.svc-footer-brand p { font-size: 13px; color: #64748b; line-height: 1.6; }
.svc-footer-links, .svc-footer-legal {
  display: flex; flex-wrap: wrap; gap: 10px 16px; align-content: flex-start;
  flex: 1 1 auto;
}
.svc-footer-links a, .svc-footer-legal a {
  font-size: 13px; color: #64748b; text-decoration: none; transition: color .15s;
}
.svc-footer-links a:hover, .svc-footer-legal a:hover { color: #94a3b8; }
.svc-footer-disclaimer {
  max-width: 1100px; margin: 0 auto;
  font-size: 12px; color: #475569; line-height: 1.6; text-align: center;
}

/* ── Responsive service pages ── */
@media (max-width: 768px) {
  .svc-steps { grid-template-columns: 1fr; }
  .svc-benefits-grid { grid-template-columns: 1fr; }
  .svc-related-grid { grid-template-columns: 1fr; }
  .svc-nav-links { display: none; }
  .svc-nav-ddmenu { min-width: 280px; flex-direction: column; }
  .svc-cta-card { padding: 32px 24px; }
}
@media (max-width: 640px) {
  .svc-hero { padding: 60px 16px 48px; }
}
