/* ─────────────────────────────────────────────
   COLOR UTILITIES — icônes & barres catégories
   ───────────────────────────────────────────── */
.ico--red    { background: rgba(244, 67, 54, 0.12); color: #F44336; }
.ico--green  { background: rgba( 76,175, 80, 0.12); color: #4CAF50; }
.ico--blue   { background: rgba( 33,150,243, 0.12); color: #2196F3; }
.ico--purple { background: rgba(186,104,200, 0.12); color: #BA68C8; }
.ico--orange { background: rgba(255,167, 38, 0.12); color: #FFA726; }

.fill--red    { background: #F44336; }
.fill--green  { background: #4CAF50; }
.fill--blue   { background: #2196F3; }
.fill--purple { background: #BA68C8; }

/* Variants de taille / espacement */
.section-title--sm  { font-size: clamp(28px, 3.5vw, 40px); }
.section-lead--tight { margin-bottom: 32px; }
.btn-secondary--subtle { background: rgba(255,255,255,0.04); }

/* Séparateur hero-trust */
.hero-trust .divider { color: rgba(255,255,255,0.1); }

/* Taille des icônes dans status-bar et hero-top */
.status-bar .material-icons-round  { font-size: 13px; }
.phone-hero-top .material-icons-round { font-size: 20px; }
.btn-secondary .material-icons-round  { font-size: 18px; }

/* ─────────────────────────────────────────────
   RESET + LAYOUT
   ───────────────────────────────────────────── */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--c-bg-main);
  color: var(--c-text-main);
  font-family: var(--font-sans), sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img, svg { display: block; max-width: 100%; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ─────────────────────────────────────────────
   AURORA
   ───────────────────────────────────────────── */
.aurora {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.aurora::before,
.aurora::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
}
.aurora::before {
  width: 720px; height: 720px;
  top: -200px; left: -180px;
  background: radial-gradient(circle, rgba(244,67,54,0.35) 0%, transparent 70%);
}
.aurora::after {
  width: 600px; height: 600px;
  top: 30vh; right: -200px;
  background: radial-gradient(circle, rgba(229,57,53,0.22) 0%, transparent 70%);
}

main, header, footer { position: relative; z-index: 1; }

/* ─────────────────────────────────────────────
   NAV
   ───────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  background: rgba(18,18,18,0.55);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.3px;
}
.brand-logo { width: 50px; height: 50px; }
.cta-logo   { width: 36px; height: 36px; }
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  color: var(--c-text-secondary);
  font-weight: 500;
}
.nav-links a:hover { color: var(--c-text-main); }
.nav-cta {
  background: var(--c-primary);
  color: #fff;
  border: none;
  height: 40px;
  padding: 0 18px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  transition: background 0.15s, transform 0.15s;
}
.nav-cta:hover { background: var(--c-primary-dark); transform: translateY(-1px); }

.nav-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.nav-status[data-status="online"] {
  background: rgba(76, 175, 80, 0.08);
  border-color: rgba(76, 175, 80, 0.2);
  color: #4CAF50;
  --status-rgb: 76, 175, 80;
}
.nav-status[data-status="online"]:hover {
  background: rgba(76, 175, 80, 0.15);
  border-color: rgba(76, 175, 80, 0.4);
}

.nav-status[data-status="degraded"] {
  background: rgba(255, 167, 38, 0.08);
  border-color: rgba(255, 167, 38, 0.2);
  color: #FFA726;
  --status-rgb: 255, 167, 38;
}
.nav-status[data-status="degraded"]:hover {
  background: rgba(255, 167, 38, 0.15);
  border-color: rgba(255, 167, 38, 0.4);
}

.nav-status[data-status="offline"],
.nav-status[data-status="loading"] {
  background: rgba(244, 67, 54, 0.08);
  border-color: rgba(244, 67, 54, 0.2);
  color: #F44336;
  --status-rgb: 244, 67, 54;
}
.nav-status[data-status="offline"]:hover,
.nav-status[data-status="loading"]:hover {
  background: rgba(244, 67, 54, 0.15);
  border-color: rgba(244, 67, 54, 0.4);
}

.nav-status__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgb(var(--status-rgb));
  flex-shrink: 0;
  animation: pulse-status 2s infinite;
}

@keyframes pulse-status {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--status-rgb), 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(var(--status-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--status-rgb), 0);
  }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-status { display: none; }
}

/* ─────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────── */
.hero {
  padding: 88px 0 80px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 999px;
  font-size: 12px;
  color: var(--c-text-secondary);
  font-weight: 500;
  margin-bottom: 24px;
}
.hero-eyebrow .dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(76,175,80,0.15);
  color: var(--c-success);
  display: grid; place-items: center;
  font-size: 14px;
  font-weight: 900;
}
.hero h1 {
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -1.5px;
  margin: 0 0 20px;
}
.hero h1 .accent {
  background: linear-gradient(180deg, #FFB4AC 0%, #F44336 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--c-text-secondary);
  max-width: 520px;
  margin: 0 0 36px;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-trust {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--c-grey-1);
  font-size: 13px;
}
.hero-trust .stars {
  display: inline-flex; gap: 1px;
  color: #FFC107;
  font-size: 14px;
}
.hero-trust strong { color: var(--c-text-main); font-weight: 700; }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .phone-stage { order: -1; aspect-ratio: auto; }
  .phone { transform: rotate(0deg); }
}

/* ─────────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────────── */
.btn-play-store {
  display: inline-block;
  transition: transform 0.15s, filter 0.15s;
  filter: drop-shadow(0 8px 20px rgba(244,67,54,0.3));
}
.btn-play-store:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 14px 28px rgba(244,67,54,0.45));
}
.play-badge {
  height: 56px;
  width: auto;
  display: block;
}

.btn-secondary {
  background: transparent;
  color: var(--c-text-main);
  border: 1px solid rgba(255,255,255,0.1);
  height: 56px;
  padding: 0 22px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.15s, border-color 0.15s;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.18);
}

/* ─────────────────────────────────────────────
   PHONE MOCKUP
   ───────────────────────────────────────────── */
.phone-stage {
  position: relative;
  aspect-ratio: 1 / 1.05;
  display: grid;
  place-items: center;
}
.phone-stage::before {
  content: "";
  position: absolute;
  inset: 8% -10% 8% -10%;
  background: radial-gradient(ellipse at center, rgba(244,67,54,0.28) 0%, transparent 65%);
  filter: blur(40px);
  z-index: 0;
}
.phone {
  position: relative;
  z-index: 1;
  width: 300px;
  height: 620px;
  background: #0a0a0a;
  border-radius: 48px;
  padding: 12px;
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.06),
    0 30px 80px -20px rgba(0,0,0,0.8),
    0 0 60px -10px rgba(244,67,54,0.25);
  transform: rotate(-3deg);
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
}
.phone:hover { transform: rotate(0deg) translateY(-6px); }
.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--c-bg-main);
  border-radius: 36px;
  overflow: hidden;
  position: relative;
}

.status-bar {
  height: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 28px;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-text-main);
  position: relative;
}
.status-bar .notch {
  position: absolute;
  left: 50%; top: 6px;
  transform: translateX(-50%);
  width: 92px; height: 24px;
  background: #000;
  border-radius: 999px;
}
.status-bar .icons {
  display: inline-flex; gap: 6px; align-items: center;
}

.phone-hero {
  background: var(--c-bg-secondary);
  border-radius: 0 0 32px 32px;
  padding: 12px 12px 22px;
  margin: 0 -1px;
}
.phone-hero-top {
  display: flex; justify-content: flex-end; gap: 4px;
  padding: 4px;
}
.phone-hero-top .ico-btn {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  color: var(--c-text-main);
}
.phone-hero-balance { text-align: center; padding: 6px 0; }
.phone-hero-balance .label {
  color: var(--c-text-secondary);
  font-size: 11px;
  font-weight: 500;
}
.phone-hero-balance .amount {
  font-size: 32px;
  font-weight: 900;
  color: var(--c-text-main);
  letter-spacing: -0.5px;
  margin-top: 4px;
}

.phone-accounts {
  display: flex; gap: 8px;
  padding: 12px 14px;
  overflow: hidden;
}
.phone-acc {
  min-width: 130px;
  height: 64px;
  border-radius: 18px;
  background: var(--c-bg-secondary);
  padding: 12px 14px;
  display: flex; flex-direction: column; justify-content: center;
}
.phone-acc.active { background: var(--c-primary); }
.phone-acc .name {
  font-size: 9px; font-weight: 700;
  color: var(--c-text-secondary);
  text-transform: uppercase; letter-spacing: 0.5px;
}
.phone-acc.active .name { color: rgba(255,255,255,0.85); }
.phone-acc .bal { font-size: 15px; font-weight: 900; color: #fff; margin-top: 2px; }

.phone-tx-list {
  padding: 0 12px;
  display: flex; flex-direction: column; gap: 6px;
  margin-top: 4px;
}
.phone-tx {
  display: flex; align-items: center; gap: 10px;
  background: var(--c-bg-secondary);
  border-radius: 16px;
  padding: 10px 12px;
}
.phone-tx .ico {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.phone-tx .ico .material-icons-round { font-size: 18px; }
.phone-tx .body { flex: 1; min-width: 0; }
.phone-tx .ttl {
  font-size: 12px; font-weight: 700;
  color: var(--c-text-main);
  display: flex; align-items: center; gap: 4px;
}
.phone-tx .sub { font-size: 9px; color: var(--c-text-secondary); margin-top: 1px; }
.phone-tx .amt { font-size: 13px; font-weight: 900; }
.phone-tx .amt.neg { color: var(--c-primary); }
.phone-tx .amt.pos { color: var(--c-success); }
.phone-tx .badge {
  background: rgba(244,67,54,0.12);
  color: var(--c-primary);
  font-size: 7px; font-weight: 700;
  padding: 1px 4px;
  border-radius: 4px;
  letter-spacing: 0.4px;
}

.phone-fab {
  position: absolute;
  bottom: 16px; right: 16px;
  background: var(--c-primary);
  color: #fff;
  height: 40px;
  padding: 0 16px;
  border-radius: 12px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700;
  box-shadow: 0 8px 20px rgba(244,67,54,0.4);
}
.phone-fab .material-icons-round { font-size: 18px; }

/* ─────────────────────────────────────────────
   STATS BAR
   ───────────────────────────────────────────── */
.stats { margin: 24px 0 80px; }
.stats-row {
  background: var(--c-bg-secondary);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 24px;
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.stat { display: flex; align-items: center; gap: 16px; }
.stat + .stat {
  border-left: 1px solid rgba(255,255,255,0.06);
  padding-left: 24px;
}
.stat .ico {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(244,67,54,0.12);
  color: var(--c-primary);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.stat .ico .material-icons-round { font-size: 24px; }
.stat .num {
  font-size: 26px; font-weight: 900;
  line-height: 1; letter-spacing: -0.5px;
}
.stat .lbl { font-size: 13px; color: var(--c-text-secondary); margin-top: 4px; }

@media (max-width: 720px) {
  .stats-row { grid-template-columns: 1fr; }
  .stat + .stat {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 16px 0 0;
  }
}

/* ─────────────────────────────────────────────
   SECTION CHROME
   ───────────────────────────────────────────── */
.section { padding: 96px 0; position: relative; }
.section-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.4px;
  color: var(--c-primary);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.05; letter-spacing: -1px;
  max-width: 720px;
  margin: 0 0 16px;
}
.section-lead {
  font-size: 18px; line-height: 1.5;
  color: var(--c-text-secondary);
  max-width: 600px;
  margin: 0 0 56px;
}

/* ─────────────────────────────────────────────
   BENTO GRID
   ───────────────────────────────────────────── */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 280px;
  gap: 20px;
}
.bento-card {
  background: var(--c-bg-secondary);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 28px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s, border-color 0.3s;
}
.bento-card:hover {
  border-color: rgba(244,67,54,0.3);
  transform: translateY(-3px);
}
.bento-card .head .badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(244,67,54,0.1);
  color: var(--c-primary);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.bento-card .head .badge .material-icons-round { font-size: 14px; }
.bento-card h3 {
  font-size: 22px; font-weight: 800;
  margin: 14px 0 8px; letter-spacing: -0.3px;
}
.bento-card p {
  color: var(--c-text-secondary);
  font-size: 14px; line-height: 1.55;
  max-width: 360px;
}
.bento-card > * { position: relative; z-index: 1; }

.b-multi   { grid-column: span 4; }
.b-sync    { grid-column: span 2; }
.b-monthly { grid-column: span 2; }
.b-cats    { grid-column: span 4; }

@media (max-width: 880px) {
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
  .b-multi, .b-cats, .b-sync, .b-monthly { grid-column: span 2; }
  .bento-card { min-height: 280px; }
}

/* ── Multi-account: stacked cards */
.viz-cards {
  position: absolute;
  right: -20px; bottom: -10px;
  display: grid; gap: 10px;
}
.viz-cards .acc {
  width: 200px; height: 78px;
  border-radius: 18px;
  padding: 14px 18px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--c-bg-third);
  transform-origin: right center;
}
.viz-cards .acc:nth-child(1) { transform: rotate(-2deg) translateX(-30px); }
.viz-cards .acc:nth-child(2) { background: var(--c-primary); transform: rotate(1deg); }
.viz-cards .acc:nth-child(3) { transform: rotate(4deg) translateX(20px); opacity: 0.7; }
.viz-cards .acc .lab {
  font-size: 9px; font-weight: 700;
  color: var(--c-text-secondary);
  letter-spacing: 0.5px; text-transform: uppercase;
}
.viz-cards .acc:nth-child(2) .lab { color: rgba(255,255,255,0.85); }
.viz-cards .acc .val { font-size: 18px; font-weight: 900; color: #fff; margin-top: 2px; }

/* ── Sync: pulse rings */
.viz-sync {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  pointer-events: none;
}
.viz-sync .ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(244,67,54,0.4);
  opacity: 0;
  animation: ring 3s infinite ease-out;
}
.viz-sync .ring:nth-child(1) { width: 80px; height: 80px; animation-delay: 0s; }
.viz-sync .ring:nth-child(2) { width: 80px; height: 80px; animation-delay: 1s; }
.viz-sync .ring:nth-child(3) { width: 80px; height: 80px; animation-delay: 2s; }
@keyframes ring {
  0%   { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(2.4); opacity: 0; }
}
.viz-sync .center {
  position: relative;
  width: 64px; height: 64px;
  border-radius: 20px;
  background: var(--c-primary);
  display: grid; place-items: center;
  box-shadow: 0 8px 30px rgba(244,67,54,0.5);
  z-index: 2;
}
.viz-sync .center .material-icons-round { color: #fff; font-size: 32px; }
.b-sync .head,
.b-sync h3,
.b-sync p { position: relative; z-index: 3; }
.b-sync { padding-bottom: 100px; }

/* ── Monthly: mini calendar */
.viz-cal {
  position: absolute;
  right: 24px; bottom: 24px;
  width: 130px;
  background: var(--c-bg-third);
  border-radius: 16px;
  padding: 12px;
  transform: rotate(4deg);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}
.viz-cal .head-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
}
.viz-cal .month { font-size: 10px; font-weight: 700; color: var(--c-text-main); }
.viz-cal .nav   { font-size: 10px; color: var(--c-text-secondary); }
.viz-cal .grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  font-size: 9px; text-align: center;
}
.viz-cal .grid div {
  aspect-ratio: 1;
  display: grid; place-items: center;
  color: var(--c-text-secondary); font-weight: 600;
}
.viz-cal .grid div.dot {
  color: #fff;
  background: var(--c-primary);
  border-radius: 50%; font-weight: 800;
}

/* ── Categories: bars */
.viz-cats { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.viz-cats .row { display: flex; align-items: center; gap: 12px; }
.viz-cats .ico {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.viz-cats .ico .material-icons-round { font-size: 18px; }
.viz-cats .name { font-size: 13px; font-weight: 600; color: var(--c-text-main); width: 100px; }
.viz-cats .bar {
  flex: 1; height: 8px;
  background: var(--c-bg-third);
  border-radius: 999px; overflow: hidden;
}
.viz-cats .bar .fill { height: 100%; border-radius: 999px; }
.viz-cats .pct { font-size: 12px; font-weight: 800; color: var(--c-text-main); width: 48px; text-align: right; }

/* ─────────────────────────────────────────────
   SECURITY
   ───────────────────────────────────────────── */
.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 880px) { .security-grid { grid-template-columns: 1fr; } }

.lock-stage {
  position: relative;
  aspect-ratio: 1;
  background: var(--c-bg-secondary);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 32px;
  overflow: hidden;
  display: grid; place-items: center;
}
.lock-stage::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(244,67,54,0.18) 0%, transparent 55%),
    radial-gradient(circle at 70% 80%, rgba(76,175,80,0.10) 0%, transparent 55%);
}
.lock-shield {
  position: relative;
  width: 180px; height: 180px;
  background: linear-gradient(180deg, #2A2A2A 0%, #1A1A1A 100%);
  border-radius: 36px;
  display: grid; place-items: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  z-index: 1;
}
.lock-shield .material-icons-round { font-size: 90px; color: var(--c-primary); }

.orbit {
  position: absolute; inset: 8%;
  border: 1px dashed rgba(255,255,255,0.08);
  border-radius: 50%;
  animation: spin 30s linear infinite;
}
.orbit.inner { inset: 22%; animation-duration: 20s; animation-direction: reverse; }
@keyframes spin { to { transform: rotate(360deg); } }

.orbit-token {
  position: absolute;
  background: var(--c-bg-third);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--c-text-main);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.4px;
  transform: translate(-50%, -50%);
  animation: counter-spin 30s linear infinite;
}
.orbit-token.t1 { top: 8%;  left: 50%; }
.orbit-token.t2 { top: 50%; left: 96%; }
.orbit-token.t3 { top: 92%; left: 50%; }
.orbit-token.t4 { top: 50%; left: 4%;  }
@keyframes counter-spin { to { transform: translate(-50%,-50%) rotate(-360deg); } }

.security-list { display: flex; flex-direction: column; gap: 24px; }
.sec-item { display: flex; gap: 16px; padding: 4px 0; }
.sec-item .ico {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(244,67,54,0.1);
  color: var(--c-primary);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.sec-item h4 { font-size: 17px; font-weight: 800; margin: 4px 0 6px; }
.sec-item p  { color: var(--c-text-secondary); font-size: 14px; line-height: 1.55; margin: 0; }

/* ─────────────────────────────────────────────
   FINAL CTA
   ───────────────────────────────────────────── */
.final-cta { margin: 48px 0 96px; }
.cta-card {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(244,67,54,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 100% 100%, rgba(244,67,54,0.18) 0%, transparent 50%),
    #0a0a0a;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 40px;
  padding: 80px 64px;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-card::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.cta-card > * { position: relative; }
.cta-card .logo-mark {
  width: 64px; height: 64px;
  margin: 0 auto 24px;
  background: rgba(244,67,54,0.12);
  border-radius: 20px;
  display: grid; place-items: center;
  border: 1px solid rgba(244,67,54,0.2);
}
.cta-card .logo-mark svg { width: 36px; height: 36px; }
.cta-card h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 900; line-height: 1.05; letter-spacing: -1.2px;
  max-width: 720px; margin: 0 auto 20px;
}
.cta-card p.lead {
  font-size: 18px;
  color: var(--c-text-secondary);
  max-width: 560px; margin: 0 auto 36px; line-height: 1.5;
}
.cta-buttons {
  display: inline-flex; gap: 16px;
  flex-wrap: wrap; justify-content: center;
}

@media (max-width: 720px) {
  .cta-card { padding: 56px 24px; }
}

/* ─────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────── */
.footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 56px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

.footer-grid .brand-col p {
  color: var(--c-text-secondary);
  font-size: 14px; line-height: 1.6;
  margin: 16px 0 20px; max-width: 320px;
}
.footer h5 {
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--c-primary); margin: 0 0 18px;
}
.footer ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.footer ul a { color: var(--c-text-secondary); font-size: 14px; transition: color 0.15s; }
.footer ul a:hover { color: var(--c-text-main); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
  color: var(--c-grey-1); font-size: 13px;
  flex-wrap: wrap; gap: 16px;
}
.social-row { display: inline-flex; gap: 10px; }
.social-row a {
  width: 38px; height: 38px;
  border-radius: 12px;
  background: var(--c-bg-secondary);
  border: 1px solid rgba(255,255,255,0.05);
  display: grid; place-items: center;
  color: var(--c-text-secondary);
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.social-row a:hover {
  color: var(--c-primary);
  border-color: rgba(244,67,54,0.3);
  background: rgba(244,67,54,0.08);
}
.footer-tag { display: inline-flex; align-items: center; gap: 6px; }
.footer-tag .heart { color: var(--c-primary); }
