/* ═══════════════════════════════════════════════════
   PRAEVENTO MC — Site de présentation v2
   Design System CSS — Shared across all pages
   ═══════════════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --ink:      #080c1a;
  --ink2:     #111827;
  --ink3:     #1a2236;
  --slate:    #334155;
  --muted:    #64748b;
  --light:    #f1f5f9;
  --white:    #ffffff;
  --accent:   #e63946;
  --accent-d: #c1121f;
  --orange:   #f4a261;
  --green:    #78BE20;
  --green-d:  #5a9216;
  --blue:     #2563eb;
  --blue-l:   #60a5fa;
  --border:   rgba(255,255,255,.07);
  --border2:  rgba(255,255,255,.12);
  --glass:    rgba(8,12,26,.88);
  --r:        10px;
  --r-lg:     16px;
  --r-xl:     20px;
  --shadow:   0 8px 32px rgba(0,0,0,.35);
  --max-w:    1120px;
  --font:     'Outfit', system-ui, -apple-system, sans-serif;
  --font-h:   'Fraunces', 'Georgia', serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font);
  background: var(--ink);
  color: var(--white);
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: var(--font-h); letter-spacing: -.5px; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); font-weight: 800; line-height: 1.15; }
h3 { font-size: 1.15rem; font-weight: 700; line-height: 1.3; }

.text-accent { color: var(--accent); }
.text-green  { color: var(--green); }
.text-blue   { color: var(--blue-l); }
.text-muted  { color: rgba(255,255,255,.45); }
.text-sm     { font-size: .88rem; }
.text-xs     { font-size: .78rem; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 2rem;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -.3px;
}
.nav-logo .logo-mc {
  font-size: .7rem;
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
  text-transform: uppercase;
}
.nav-links {
  display: flex; gap: 1.75rem; align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,.5);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .2px;
  transition: color .2s;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}
.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: .42rem 1.15rem !important;
  border-radius: 7px;
  font-weight: 600 !important;
  font-size: .8rem !important;
  transition: background .2s, transform .15s !important;
}
.nav-cta:hover { background: var(--accent-d) !important; transform: translateY(-1px); }

/* Hamburger mobile */
.nav-hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 32px; height: 32px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: rgba(255,255,255,.7);
  border-radius: 2px;
  transition: all .25s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

.nav-mobile {
  display: none;
  position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--ink);
  padding: 2rem;
  z-index: 99;
  flex-direction: column;
  gap: 1rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  padding: .75rem 0;
  border-bottom: 1px solid var(--border);
}
.nav-mobile a:hover { color: #fff; }
.nav-mobile .nav-cta-mobile {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: .75rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  text-align: center;
  margin-top: 1rem;
}

@media(max-width:900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: .8rem 2rem;
  border-radius: 8px;
  font-family: var(--font);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .2px;
  transition: all .2s;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-d); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(230,57,70,.3); }
.btn-outline { background: transparent; border: 1px solid var(--border2); color: rgba(255,255,255,.7); }
.btn-outline:hover { border-color: rgba(255,255,255,.4); color: #fff; transform: translateY(-1px); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-d); transform: translateY(-2px); }
.btn-sm { padding: .55rem 1.25rem; font-size: .82rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* ── SECTIONS ── */
section { padding: 5rem 2rem; }
.container { max-width: var(--max-w); margin: 0 auto; }
.section-label {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(230,57,70,.08);
  border: 1px solid rgba(230,57,70,.18);
  border-radius: 100px;
  padding: .3rem 1rem;
  margin-bottom: 1rem;
}
.section-label--green {
  color: var(--green);
  background: rgba(120,190,32,.08);
  border-color: rgba(120,190,32,.18);
}
.section-label--blue {
  color: var(--blue-l);
  background: rgba(37,99,235,.08);
  border-color: rgba(37,99,235,.18);
}
.section-sub {
  font-size: .95rem;
  color: rgba(255,255,255,.42);
  max-width: 600px;
  line-height: 1.8;
  margin-top: .75rem;
}
.section-sub.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 7rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(230,57,70,.1) 0%, transparent 70%),
    radial-gradient(ellipse 50% 35% at 80% 80%, rgba(37,99,235,.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-noise {
  position: absolute; inset: 0; opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}
.hero h1 { margin-bottom: 1.25rem; position: relative; z-index: 1; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.55);
  max-width: 620px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  position: relative; z-index: 1;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3.5rem;
  position: relative; z-index: 1;
}
.hero-metrics {
  display: flex; gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.025);
  overflow: hidden;
  position: relative; z-index: 1;
}
.hero-metric {
  padding: 1rem 1.75rem;
  text-align: center;
}
.hero-metric + .hero-metric { border-left: 1px solid var(--border); }
.hero-metric .val {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}
.hero-metric .lbl {
  font-size: .68rem;
  color: rgba(255,255,255,.3);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-top: .1rem;
}
@media(max-width:600px) {
  .hero-metrics { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-metric + .hero-metric { border-left: none; border-top: 1px solid var(--border); }
  .hero-metric:nth-child(2) { border-left: 1px solid var(--border); border-top: none; }
  .hero-metric:nth-child(4) { border-left: 1px solid var(--border); }
}

/* ── CARDS ── */
.card {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  transition: all .25s;
}
.card:hover {
  background: rgba(255,255,255,.05);
  border-color: var(--border2);
  transform: translateY(-3px);
}
.card-highlight {
  border-color: rgba(230,57,70,.25);
  background: rgba(230,57,70,.04);
}
.card-highlight:hover { border-color: rgba(230,57,70,.4); }
.card-ico { font-size: 1.6rem; margin-bottom: .875rem; }
.card h3 { margin-bottom: .5rem; }
.card p {
  font-size: .84rem;
  color: rgba(255,255,255,.4);
  line-height: 1.65;
}

/* ── GRIDS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
@media(max-width:900px) { .grid-3 { grid-template-columns: 1fr 1fr; } .grid-4 { grid-template-columns: 1fr 1fr; } }
@media(max-width:600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ── SPECIAL BLOCKS ── */
.block-accent {
  background: linear-gradient(135deg, rgba(230,57,70,.07) 0%, rgba(10,15,30,0) 60%);
  border: 1px solid rgba(230,57,70,.18);
  border-radius: var(--r-xl);
  padding: 3rem;
}
.block-green {
  background: rgba(120,190,32,.04);
  border: 1px solid rgba(120,190,32,.12);
  border-radius: var(--r-xl);
  padding: 3rem;
}
.block-blue {
  background: linear-gradient(135deg, rgba(37,99,235,.07) 0%, transparent 60%);
  border: 1px solid rgba(37,99,235,.18);
  border-radius: var(--r-xl);
  padding: 3rem;
}
.block-dark {
  background: rgba(0,0,0,.25);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
}

/* ── AUDIT VISUAL ── */
.audit-visual {
  background: rgba(0,0,0,.35);
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,.05);
  overflow: hidden;
  font-size: .72rem;
}
.audit-bar {
  background: rgba(230,57,70,.12);
  border-bottom: 1px solid rgba(230,57,70,.18);
  padding: .5rem 1rem;
  font-size: .68rem;
  color: var(--accent);
  letter-spacing: .5px;
  text-transform: uppercase;
  font-weight: 600;
}
.audit-row {
  padding: .5rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,.03);
  display: grid;
  grid-template-columns: 110px 80px 1fr;
  gap: .5rem;
  font-size: .72rem;
  color: rgba(255,255,255,.45);
}
.audit-row.hl { background: rgba(120,190,32,.05); color: rgba(255,255,255,.75); }
.audit-tag {
  display: inline-block;
  padding: .1rem .4rem;
  border-radius: 4px;
  font-size: .64rem;
  font-weight: 600;
}
.audit-tag--create { background: rgba(120,190,32,.12); color: var(--green); }
.audit-tag--close  { background: rgba(37,99,235,.12); color: var(--blue-l); }
.audit-tag--delete  { background: rgba(230,57,70,.12); color: var(--accent); }

/* ── EMAIL ALERT DEMO ── */
.email-demo {
  background: rgba(0,0,0,.35);
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,.05);
  overflow: hidden;
  max-width: 460px;
}
.email-header {
  background: rgba(37,99,235,.12);
  border-bottom: 1px solid rgba(37,99,235,.18);
  padding: .6rem 1rem;
  font-size: .72rem;
  color: var(--blue-l);
  display: flex; align-items: center; gap: .5rem;
}
.email-body { padding: 1rem 1.25rem; }
.email-field { margin-bottom: .5rem; font-size: .78rem; }
.email-field .lbl { color: rgba(255,255,255,.3); width: 70px; display: inline-block; }
.email-field .val { color: rgba(255,255,255,.75); }
.email-field .val.red { color: #f87171; }
.email-footer {
  padding: .5rem 1.25rem;
  border-top: 1px solid rgba(255,255,255,.04);
  font-size: .66rem;
  color: rgba(255,255,255,.18);
}

/* ── PDF MOCK ── */
.pdf-mock {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 1.25rem;
  font-size: .72rem;
  color: #0f172a;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.pdf-hdr {
  border-bottom: 2px solid var(--accent);
  padding-bottom: .75rem;
  margin-bottom: .75rem;
}
.pdf-title { font-weight: 800; font-size: .85rem; color: #0f172a; }
.pdf-sub { font-size: .65rem; color: #64748b; margin-top: .1rem; }
.pdf-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: .3rem; margin-bottom: .75rem; }
.pdf-stat { text-align: center; padding: .35rem; border-radius: 6px; background: #f8fafc; }
.pdf-stat .v { font-weight: 800; font-size: .95rem; color: #0f172a; }
.pdf-stat .v.r { color: #dc2626; }
.pdf-stat .v.o { color: #d97706; }
.pdf-stat .l { font-size: .6rem; color: #94a3b8; text-transform: uppercase; letter-spacing: .3px; }
.pdf-mock table { width: 100%; border-collapse: collapse; font-size: .68rem; }
.pdf-mock th { background: #f1f5f9; padding: .3rem .4rem; text-align: left; color: #64748b; font-weight: 600; font-size: .62rem; text-transform: uppercase; }
.pdf-mock td { padding: .3rem .4rem; border-bottom: 1px solid #f1f5f9; color: #334155; }
.pdf-mock tr.rouge td { background: #fef2f2; color: #b91c1c; }
.pdf-mock tr.orange td { background: #fffbeb; color: #92400e; }
.pdf-footer { border-top: 1px solid #e2e8f0; padding-top: .5rem; margin-top: .5rem; display: flex; justify-content: space-between; color: #94a3b8; font-size: .62rem; }

/* ── PRICING ── */
.pricing-card {
  background: rgba(255,255,255,.035);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform .25s, border-color .25s;
}
.pricing-card:hover { transform: translateY(-4px); border-color: rgba(230,57,70,.35); }
.pricing-card.popular { border-color: rgba(230,57,70,.3); background: rgba(230,57,70,.04); }
.pricing-badge {
  position: absolute; top: -12px; right: 24px;
  background: var(--accent);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  padding: .25rem .75rem;
  border-radius: 100px;
  letter-spacing: .5px;
}
.pricing-price {
  font-family: var(--font-h);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  margin: 1rem 0 .25rem;
}
.pricing-price sup { font-size: .4em; vertical-align: super; }
.pricing-price sub { font-size: .35em; font-weight: 500; color: rgba(255,255,255,.4); }
.pricing-features { margin: 1.5rem 0; }
.pricing-features li {
  padding: .4rem 0;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  display: flex; align-items: baseline; gap: .5rem;
}
.pricing-features li::before { content: '✓'; color: var(--green); font-weight: 700; font-size: .8rem; flex-shrink: 0; }

/* ── FORM ── */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  margin-bottom: .4rem;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: .7rem 1rem;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border2);
  border-radius: 8px;
  color: #fff;
  font-family: var(--font);
  font-size: .88rem;
  transition: border-color .2s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(230,57,70,.12);
}
.form-select { cursor: pointer; }
.form-select option { background: var(--ink2); color: #fff; }
.form-textarea { min-height: 120px; resize: vertical; }

/* ── PILLS / TAGS ── */
.pill {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .35rem .8rem;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 500;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.6);
}
.tag-kpi {
  display: inline-block;
  padding: .15rem .55rem;
  border-radius: 100px;
  font-size: .68rem;
  font-weight: 600;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.45);
}

/* ── CTA SECTION ── */
.cta-section {
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 45% at 50% 50%, rgba(230,57,70,.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { position: relative; z-index: 1; margin-bottom: 1rem; }
.cta-section p {
  position: relative; z-index: 1;
  color: rgba(255,255,255,.42);
  margin-bottom: 2rem;
  font-size: .95rem;
  max-width: 480px;
  margin-left: auto; margin-right: auto;
}
.cta-section .btn { position: relative; z-index: 1; }

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 2rem 2rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
}
.footer-brand .logo-text {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: .5rem;
}
.footer-brand p {
  font-size: .8rem;
  color: rgba(255,255,255,.3);
  line-height: 1.6;
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--font);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: .75rem;
}
.footer-col a {
  display: block;
  font-size: .84rem;
  color: rgba(255,255,255,.45);
  padding: .25rem 0;
  transition: color .2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: var(--max-w);
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: .75rem;
  color: rgba(255,255,255,.2);
}
@media(max-width:768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: .5rem; }
}
@media(max-width:480px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 8rem 2rem 3rem;
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}
.page-hero h1 { margin-bottom: .75rem; }
.page-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,.45);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── SPLIT LAYOUT ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media(max-width:768px) { .split { grid-template-columns: 1fr; } }

/* ── LIST STYLED ── */
.check-list li {
  padding: .5rem 0;
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  display: flex; align-items: baseline; gap: .6rem;
  line-height: 1.6;
}
.check-list li::before {
  content: '→';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}
.check-list.green li::before { color: var(--green); }
.check-list.blue li::before { color: var(--blue-l); }

/* ── ROLES ── */
.role-card {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.25rem;
}
.role-name {
  font-family: var(--font-h);
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: .35rem;
}
.role-card p { font-size: .8rem; color: rgba(255,255,255,.38); line-height: 1.6; }

/* ── SEC CARDS ── */
.sec-card {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  text-align: center;
}
.sec-card .ico { font-size: 1.5rem; margin-bottom: .6rem; }
.sec-card h4 { font-family: var(--font-h); font-size: .88rem; font-weight: 700; margin-bottom: .3rem; }
.sec-card p { font-size: .78rem; color: rgba(255,255,255,.35); line-height: 1.6; }

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.faq-q {
  font-weight: 700;
  font-size: .95rem;
  color: rgba(255,255,255,.85);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-q::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--accent);
  transition: transform .2s;
}
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s;
  font-size: .88rem;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-top: .75rem;
}

/* ── ABOUT PROFILE ── */
.profile-card {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 3rem;
  display: flex;
  gap: 3rem;
  align-items: center;
}
.profile-avatar {
  width: 160px; height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ink3), rgba(230,57,70,.15));
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  flex-shrink: 0;
  border: 3px solid rgba(230,57,70,.2);
}
@media(max-width:768px) { .profile-card { flex-direction: column; text-align: center; } }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.anim { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.anim.visible { opacity: 1; transform: none; }

.anim-delay-1 { transition-delay: .1s; }
.anim-delay-2 { transition-delay: .2s; }
.anim-delay-3 { transition-delay: .3s; }
.anim-delay-4 { transition-delay: .4s; }
.anim-delay-5 { transition-delay: .5s; }

/* Hero specific staggered */
.hero h1 { animation: fadeUp .6s .15s ease both; }
.hero-sub { animation: fadeUp .6s .25s ease both; }
.hero-actions { animation: fadeUp .6s .35s ease both; }
.hero-metrics { animation: fadeUp .6s .45s ease both; }

/* ── STICKY MOBILE CTA ── */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  padding: .75rem 1rem;
  background: var(--glass);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  z-index: 98;
  text-align: center;
}
.mobile-cta .btn { width: 100%; justify-content: center; }
@media(max-width:768px) { .mobile-cta { display: block; } body { padding-bottom: 70px; } }

/* ── MISC ── */
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
