/* ============================================================
   Xattic Software — single-page redesign
   ============================================================ */

:root {
  --bg:        #F8F9FC;
  --bg-soft:   #EEF0F8;
  --bg-deep:   #0F1024;
  --text:      #1F2937;
  --text-soft: #4B5563;
  --text-mute: #6B7280;
  --line:      #E5E7EB;
  --line-soft: #EEF0F6;

  --primary:   #6366F1;
  --primary-2: #4F46E5;
  --secondary: #8B5CF6;
  --accent:    #00D9FF;
  --accent-2:  #06B6D4;

  --gradient: linear-gradient(135deg, #6366F1 0%, #8B5CF6 50%, #00D9FF 100%);
  --gradient-soft: linear-gradient(135deg, rgba(99,102,241,.18) 0%, rgba(139,92,246,.18) 50%, rgba(0,217,255,.18) 100%);

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .04), 0 1px 3px rgba(15, 23, 42, .06);
  --shadow:    0 4px 12px rgba(15, 23, 42, .06), 0 12px 32px rgba(15, 23, 42, .06);
  --shadow-lg: 0 20px 40px rgba(15, 23, 42, .08), 0 40px 80px rgba(99, 102, 241, .15);

  --container: 1200px;
  --gap:       clamp(16px, 2vw, 28px);

  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Space Grotesk", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  background: var(--bg);
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-2); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0 0 .5em;
}
h1 { font-size: clamp(1.85rem, 3.6vw, 2.85rem); font-weight: 700; letter-spacing: -0.025em; line-height: 1.12; }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.75rem); letter-spacing: -0.02em; }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1em; color: var(--text-soft); }

ul, ol { list-style: none; margin: 0; padding: 0; }

/* Container */
.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--text); color: #fff; padding: .75rem 1rem;
  border-radius: 0 0 var(--radius) 0; z-index: 100;
}
.skip-link:focus { left: 0; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248, 249, 252, .72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line-soft);
  box-shadow: 0 1px 0 rgba(15,23,42,.02);
}
.header-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 72px;
}

.brand {
  display: inline-flex; align-items: center; gap: .65rem;
  color: var(--text); font-weight: 700; font-family: var(--font-display);
  letter-spacing: -0.01em;
}
.brand:hover { color: var(--text); }
.brand-mark {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 4px;
}
.brand-wordmark {
  height: 56px;
  width: auto;
  display: block;
}
@media (max-width: 540px) {
  .brand-wordmark { height: 44px; }
}
.brand-name { font-size: 1.05rem; }
.brand-name-soft { color: var(--text-mute); font-weight: 500; }

.primary-nav {
  display: flex; align-items: center; gap: 1.75rem;
}
.primary-nav .nav-cta {
  padding: 1rem 1.75rem;
  font-size: .95rem;
  font-weight: 600;
  color: #fff;
}
.primary-nav .nav-cta:hover { color: #fff; }
.primary-nav ul {
  display: flex; gap: 1.5rem;
}
.primary-nav a:not(.nav-cta) {
  color: var(--text-soft); font-weight: 500; font-size: .95rem;
  padding: .25rem 0; position: relative;
}
.primary-nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--gradient);
  transition: width .25s ease;
}
.primary-nav a:not(.nav-cta):hover { color: var(--text); }
.primary-nav a:not(.nav-cta):hover::after { width: 100%; }

.nav-toggle, .nav-toggle-button { display: none; }

/* Mobile nav */
@media (max-width: 860px) {
  .nav-toggle-button {
    display: flex; flex-direction: column; gap: 5px;
    width: 40px; height: 40px; align-items: center; justify-content: center;
    border-radius: 10px; cursor: pointer;
    background: #fff; border: 1px solid var(--line-soft);
    transition: background .15s ease;
  }
  .nav-toggle-button:hover { background: var(--bg-soft); }
  .nav-toggle-button span {
    display: block; width: 18px; height: 2px;
    background: var(--text); border-radius: 2px;
    transition: transform .25s ease, opacity .15s ease;
  }
  .primary-nav {
    position: fixed; inset: 72px 0 auto 0;
    flex-direction: column; gap: 0;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
    padding: 1rem 1.25rem 1.5rem;
    transform: translateY(-150%);
    transition: transform .3s ease;
    box-shadow: var(--shadow);
  }
  .primary-nav ul {
    flex-direction: column; gap: 0; width: 100%;
  }
  .primary-nav ul li { width: 100%; }
  .primary-nav a:not(.nav-cta) {
    display: block; padding: .85rem 0;
    border-bottom: 1px solid var(--line-soft);
    color: var(--text); font-weight: 500;
  }
  .primary-nav a:not(.nav-cta)::after { display: none; }
  .nav-cta { width: 100%; justify-content: center; margin-top: 1rem; }

  .nav-toggle:checked ~ .primary-nav { transform: translateY(0); }
  .nav-toggle:checked ~ .nav-toggle-button span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle:checked ~ .nav-toggle-button span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-toggle-button span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.25rem; border-radius: 999px;
  font-weight: 600; font-size: .95rem;
  border: 1px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  text-decoration: none; line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  /* indigo → purple — keeps brand feel without the low-contrast cyan tail */
  background: linear-gradient(135deg, #4F46E5 0%, #6366F1 50%, #8B5CF6 100%);
  color: #fff;
  font-weight: 600;
  letter-spacing: .01em;
  box-shadow: 0 8px 24px rgba(99,102,241,.32);
}
.btn-primary:hover {
  color: #fff;
  background: linear-gradient(135deg, #4338CA 0%, #4F46E5 50%, #7C3AED 100%);
  box-shadow: 0 12px 28px rgba(99,102,241,.4);
}

.btn-ghost {
  background: rgba(255,255,255,.7);
  color: var(--text);
  border-color: var(--line);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { color: var(--text); border-color: #d6d8e2; background: #fff; }

.btn-on-dark { color: #fff; }

.btn-large { padding: 1rem 1.75rem; font-size: 1rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(80px, 8vw, 144px) 0 clamp(64px, 7vw, 112px);
  overflow: hidden;
  isolation: isolate;
}

.hero-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px);
  will-change: transform;
}
.blob-1 {
  top: -10%; left: -10%; width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(99,102,241,.55), transparent 70%);
}
.blob-2 {
  top: 30%; right: -12%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(139,92,246,.45), transparent 70%);
}
.blob-3 {
  bottom: -20%; left: 25%; width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(0,217,255,.4), transparent 70%);
}

.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(99,102,241,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 80%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
}

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--primary);
  margin: 0 0 1rem;
}
.eyebrow-light { color: var(--secondary); }
.eyebrow .dot,
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 0 0 4px rgba(99,102,241,.15);
}
.dot-purple { background: var(--secondary); box-shadow: 0 0 0 4px rgba(139,92,246,.15); }

h1 .text-gradient,
h2 .text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--text-soft);
  max-width: 560px;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex; flex-wrap: wrap; gap: .75rem;
  margin-bottom: 2.5rem;
}

.hero-meta {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem;
  border-top: 1px solid var(--line-soft);
  padding-top: 1.5rem;
  max-width: 560px;
}
.hero-meta li { display: flex; flex-direction: column; }
.hero-meta strong { color: var(--text); font-weight: 600; font-size: .98rem; }
.hero-meta span { color: var(--text-mute); font-size: .85rem; }
@media (max-width: 540px) {
  .hero-meta { grid-template-columns: 1fr; }
}

/* Hero visual */
.hero-visual {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-orb {
  position: relative;
  z-index: 1;
  width: clamp(280px, 40vw, 440px);
  filter: drop-shadow(0 30px 60px rgba(99,102,241,.25));
}
.hero-orb img {
  width: 100%; height: auto;
  animation: float 8s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-orb img { animation: none; }
}

.hero-card {
  position: absolute;
  z-index: 2;
  /* sits at the top-right of the visual, overlapping the orb's top corner */
  top: -100px;
  right: -25px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(99,102,241,.18);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-size: .82rem;
  max-width: 280px;
}
.hero-card-row {
  display: flex; align-items: center; gap: .5rem;
  padding-bottom: .6rem; margin-bottom: .6rem;
  border-bottom: 1px solid var(--line-soft);
}
.hero-card-label { color: var(--text-mute); font-size: .78rem; }
.hero-card-line { color: var(--text); padding: .1rem 0; }
.hero-card-line.indent { padding-left: 1rem; }
.hero-card-line.muted { color: var(--text-mute); margin-top: .35rem; }
.hero-card .kw { color: var(--secondary); }
.hero-card .fn { color: var(--primary-2); }

@media (max-width: 960px) {
  .hero-visual { min-height: 360px; margin-top: 1rem; }
  .hero-orb { width: 240px; }
  .hero-card {
    max-width: 220px;
    top: -16px;
    right: -16px;
    font-size: .78rem;
  }
}
@media (max-width: 1200px) {
  .hero-card { display: none; }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust {
  background: linear-gradient(180deg, transparent, var(--bg-soft));
  padding: 2rem 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.trust-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 1.5rem;
}
.trust-cell { text-align: center; }
.trust-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1;
}
.trust-label { color: var(--text-soft); font-size: .9rem; margin-top: .35rem; }
@media (max-width: 720px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  position: relative;
  padding: clamp(72px, 9vw, 140px) 0;
}
.section-head {
  max-width: 720px;
  margin: 0 auto clamp(2.5rem, 4vw, 4rem);
  text-align: center;
}
.section-head h2 { margin-bottom: .75rem; }
.section-lede {
  font-size: 1.1rem;
  color: var(--text-soft);
  margin: 0;
}

/* ============================================================
   SERVICES CARDS
   ============================================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 980px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cards { grid-template-columns: 1fr; } }

.card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: var(--gradient);
  opacity: 0; transition: opacity .3s ease;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.06), transparent 60%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.06), transparent 60%);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(99,102,241,.35);
}
.card:hover::before { opacity: 1; }
.card h3 { margin-top: 1rem; }
.card p  { margin-bottom: 0; }

.card-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-soft);
  border-radius: 14px;
  color: var(--primary);
}
.card-icon svg { width: 24px; height: 24px; }
.card-icon-gradient {
  background: var(--gradient);
  color: #fff;
}

.card-feature {
  background: linear-gradient(180deg, #fff 0%, #fafbff 100%);
  border-color: rgba(99,102,241,.18);
}

/* ============================================================
   AI SECTION
   ============================================================ */
.section-ai {
  background: linear-gradient(180deg, var(--bg) 0%, #F1F2FA 100%);
  overflow: hidden;
  isolation: isolate;
}
.ai-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.blob-soft { filter: blur(100px); opacity: .55; }
.blob-a {
  top: 10%; left: -10%;
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(139,92,246,.5), transparent 70%);
}
.blob-b {
  bottom: -10%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,217,255,.4), transparent 70%);
}

.cards-ai {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1100px) { .cards-ai { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .cards-ai { grid-template-columns: 1fr; } }

.ai-card {
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(99,102,241,.14);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background .3s ease;
}
.ai-card:hover {
  transform: translateY(-4px);
  background: #fff;
  border-color: rgba(99,102,241,.35);
  box-shadow: var(--shadow-lg);
}
.ai-card-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--gradient-soft);
  color: var(--primary-2);
  padding: .3rem .6rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.ai-bullets {
  margin-top: 1rem;
  display: grid; gap: .4rem;
}
.ai-bullets li {
  position: relative; padding-left: 1.2rem;
  font-size: .9rem; color: var(--text-soft);
}
.ai-bullets li::before {
  content: ""; position: absolute; left: 0; top: .55rem;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gradient);
}

.ai-card-cta {
  background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 50%, #06B6D4 100%);
  color: #fff;
  border-color: transparent;
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 1rem;
}
.ai-card-cta:hover { background: linear-gradient(135deg, #4338CA 0%, #6D28D9 50%, #0891B2 100%); }
.ai-card-cta h3 { color: #fff; }
.ai-card-cta p  { color: rgba(255,255,255,.85); }

/* ============================================================
   PROCESS
   ============================================================ */
.section-process { background: #fff; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  counter-reset: step;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute; left: 4%; right: 4%; top: 32px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,.25), rgba(0,217,255,.25), transparent);
}
.process-steps li {
  background: #fff;
  padding: 0 1rem;
  position: relative;
  text-align: left;
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px;
  border-radius: 18px;
  background: var(--bg);
  border: 1px solid var(--line-soft);
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.1rem;
  color: var(--primary-2);
  margin-bottom: 1rem;
  position: relative; z-index: 1;
}
.process-steps li:nth-child(1) .step-num { background: linear-gradient(135deg, #EEF0FF, #fff); }
.process-steps li:nth-child(3) .step-num { background: linear-gradient(135deg, #F3EBFF, #fff); }
.process-steps li:nth-child(5) .step-num { background: linear-gradient(135deg, #E0F7FF, #fff); }
.process-steps p { font-size: .92rem; }

@media (max-width: 980px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .process-steps::before { display: none; }
}
@media (max-width: 540px) { .process-steps { grid-template-columns: 1fr; } }

/* ============================================================
   APPROACH
   ============================================================ */
.section-approach {
  background: linear-gradient(180deg, #F8F9FC 0%, #fff 100%);
}
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
@media (max-width: 900px) { .approach-grid { grid-template-columns: 1fr; } }

.pillars {
  display: grid; gap: 1rem;
}
.pillars li {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line-soft);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.pillars li:hover {
  transform: translateX(4px);
  border-color: rgba(99,102,241,.25);
  box-shadow: var(--shadow);
}
.pillar-icon {
  flex: 0 0 56px;
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.pillar-icon svg { width: 26px; height: 26px; }
.pillar-body { flex: 1 1 auto; min-width: 0; }
.pillars h3 { margin: 0 0 .35em; }
.pillars p  { margin: 0; }

/* ============================================================
   INSIGHTS / FAQ
   ============================================================ */
.section-insights {
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}
.insights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}
.insights-grid .section-head { margin-bottom: 0; }

.faq { display: grid; gap: .5rem; }
.faq details {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq details[open] {
  border-color: rgba(99,102,241,.3);
  box-shadow: var(--shadow);
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  list-style: none;
  position: relative;
  padding-right: 2rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--primary);
  transition: transform .25s ease;
  line-height: 1;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-body {
  padding-top: .75rem;
  color: var(--text-soft);
}
.faq-body p { margin: 0; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.section-cta {
  background: linear-gradient(135deg, #1E1B4B 0%, #312E81 50%, #4338CA 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.cta-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.blob-cta-1 {
  top: -30%; left: -10%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(139,92,246,.6), transparent 70%);
  filter: blur(100px);
}
.blob-cta-2 {
  bottom: -40%; right: -10%; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,217,255,.45), transparent 70%);
  filter: blur(120px);
}
.cta-inner {
  max-width: 720px; margin: 0 auto;
  position: relative;
}
.cta-inner h2 { color: #fff; margin-bottom: 1rem; }
.cta-inner p {
  color: rgba(255,255,255,.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-deep);
  color: rgba(255,255,255,.78);
  padding: 4rem 0 1.5rem;
}
.site-footer .brand { color: #fff; }
.site-footer .brand-name-soft { color: rgba(255,255,255,.5); }
.site-footer .brand-mark { background: rgba(255,255,255,.95); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

.footer-blurb {
  margin-top: 1rem;
  color: rgba(255,255,255,.6);
  max-width: 320px;
}
.footer-h {
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.55);
  margin: 0 0 1rem;
}
.footer-list { display: grid; gap: .55rem; }
.footer-list a {
  color: rgba(255,255,255,.78);
  font-size: .95rem;
  display: inline-flex; align-items: center; gap: .5rem;
  transition: color .15s ease;
}
.footer-list a:hover { color: #fff; }

.footer-address {
  font-style: normal;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  margin: 0 0 1rem;
  line-height: 1.6;
}
.footer-contact a {
  color: #fff;
}

.footer-base {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .75rem;
  padding-top: 1.5rem;
  color: rgba(255,255,255,.45);
  font-size: .85rem;
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .blob, .hero-orb img, .scroll-cue span { animation: none !important; }
  [data-parallax] { transform: none !important; }
}

/* ============================================================
   FOCUS-VISIBLE
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Selection */
::selection {
  background: rgba(99,102,241,.25);
  color: var(--text);
}
