/* ==========================================================================
   JUST YOUR WEB — v2
   Inspiré par azuro-ai : design dark, gradients bleu/violet/cyan, glassmorphism
   ========================================================================== */

/* ===== Font (Google Fonts CDN) ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ===== CSS Variables ===== */
:root {
  /* Backgrounds */
  --bg-deep: #050510;
  --bg-base: #0a0a1a;
  --bg-elevated: #11112a;
  --bg-card: rgba(20, 20, 40, 0.6);
  --bg-card-solid: #161630;
  --bg-glass: rgba(255, 255, 255, 0.03);

  /* Text */
  --text-primary: #f8fafc;
  --text-secondary: #c7c9d9;
  --text-muted: #8b8fa8;
  --text-dim: #5e6175;

  /* Brand colors */
  --brand-cyan: #22d3ee;
  --brand-logo-blue: #1498d1;
  --brand-logo-blue-dark: #0b78b5;
  --brand-blue: #6366f1;
  --brand-violet: #8b5cf6;
  --brand-pink: #ec4899;

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #22d3ee 100%);
  --grad-cta: linear-gradient(135deg, #0b78b5 0%, #1498d1 58%, #20aeea 100%);
  --grad-soft: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
  --grad-glow: radial-gradient(circle at 30% 20%, rgba(99, 102, 241, 0.4) 0%, transparent 60%),
               radial-gradient(circle at 70% 80%, rgba(34, 211, 238, 0.3) 0%, transparent 50%);
  --grad-hero: radial-gradient(ellipse at top left, rgba(99, 102, 241, 0.4) 0%, transparent 50%),
               radial-gradient(ellipse at bottom right, rgba(34, 211, 238, 0.3) 0%, transparent 50%),
               radial-gradient(ellipse at center, rgba(139, 92, 246, 0.2) 0%, transparent 70%);

  /* Borders */
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.15);

  /* Effects */
  --radius-sm: 0.5rem;
  --radius: 0.875rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.75rem;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 20px 60px -20px rgba(99, 102, 241, 0.35);
  --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.25);
  --blur: blur(20px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Background ambient gradient */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(99, 102, 241, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 85% 90%, rgba(34, 211, 238, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

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

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

.lead a,
.faq-answer a {
  color: var(--brand-cyan);
  font-weight: 600;
}
.lead a:hover,
.faq-answer a:hover {
  color: #fff;
}
button { cursor: pointer; font-family: inherit; border: none; background: none; color: inherit; }

::selection { background: rgba(99, 102, 241, 0.4); color: #fff; }

/* ===== Layout ===== */
.container {
  max-width: 76rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 768px) {
  .container { padding: 0 2rem; }
}

.section {
  padding: 5rem 0;
  position: relative;
}
@media (min-width: 768px) {
  .section { padding: 7rem 0; }
}
.section-sm { padding: 3.5rem 0; }
@media (min-width: 768px) {
  .section-sm { padding: 5rem 0; }
}

/* ===== Typography ===== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brand-cyan);
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.25);
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-cyan);
  box-shadow: 0 0 12px var(--brand-cyan);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--text-primary);
}

.h-display {
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.h-section {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.h-card {
  font-size: 1.25rem;
  font-weight: 600;
}

.text-grad {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: shift 6s ease infinite;
}
@keyframes shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 42rem;
}

.muted { color: var(--text-muted); }

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-12 { margin-bottom: 3rem; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  font-family: inherit;
}

.btn-primary {
  background: var(--grad-cta);
  background-size: 200% 200%;
  color: #fff;
  box-shadow: 0 4px 24px rgba(20, 152, 209, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(20, 152, 209, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  background-position: 100% 100%;
}

.btn-ghost {
  background: var(--bg-glass);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  backdrop-filter: var(--blur);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.btn-sm { padding: 0.5rem 1rem; font-size: 0.825rem; }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 10, 26, 0.7);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s, border-color 0.3s;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
  padding: 0 1.25rem;
  max-width: 76rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .header-inner { height: 5rem; padding: 0 2rem; }
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.site-logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}
.site-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.site-logo-text span { color: var(--brand-cyan); }

.site-logo-img {
  display: block;
  height: 36px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  transition: opacity 0.2s;
}
.site-logo:hover .site-logo-img { opacity: 0.85; }
@media (min-width: 768px) {
  .site-logo-img { height: 42px; max-width: 260px; }
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  padding: 0.4rem;
  border-radius: 100px;
  backdrop-filter: var(--blur);
}
@media (min-width: 900px) { .desktop-nav { display: flex; } }

.desktop-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  transition: all 0.2s;
}
.desktop-nav a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}
.desktop-nav a.active {
  background: rgba(20, 152, 209, 0.18);
  color: #fff;
}

.header-cta {
  display: none;
}
@media (min-width: 900px) { .header-cta { display: flex; gap: 0.75rem; align-items: center; } }

.mobile-toggle {
  display: flex;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  backdrop-filter: var(--blur);
}
@media (min-width: 900px) { .mobile-toggle { display: none; } }

.mobile-menu {
  display: none;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-subtle);
  padding: 1rem 1.25rem 1.25rem;
}
.mobile-menu.open { display: block; animation: slideDown 0.25s ease-out; }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-menu nav a {
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: background 0.15s, color 0.15s;
}
.mobile-menu nav a:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
}
.mobile-menu .btn {
  width: 100%;
  justify-content: center;
  margin-top: 0.75rem;
}

.page-content { padding-top: 4.5rem; }
@media (min-width: 768px) { .page-content { padding-top: 5rem; } }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 5rem 0 4rem;
  overflow: hidden;
  isolation: isolate;
}
@media (max-width: 768px) {
  .hero { min-height: auto; padding: 3.5rem 0 3rem; }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
  z-index: -1;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  z-index: -1;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  z-index: -1;
  animation: orbit 18s ease-in-out infinite;
}
.hero-orb-1 {
  width: 480px; height: 480px;
  top: -200px; right: -100px;
  background: radial-gradient(circle, #6366f1, transparent 70%);
}
.hero-orb-2 {
  width: 380px; height: 380px;
  bottom: -120px; left: -120px;
  background: radial-gradient(circle, #22d3ee, transparent 70%);
  animation-delay: -9s;
}
.hero-orb-3 {
  width: 320px; height: 320px;
  top: 30%; left: 40%;
  background: radial-gradient(circle, #ec4899, transparent 70%);
  opacity: 0.3;
  animation-delay: -4s;
}
@keyframes orbit {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.08); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 1.1fr 0.9fr; gap: 4rem; }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title { margin-bottom: 1.25rem; }
.hero-title .text-grad { display: inline-block; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* Hero visual: animated web cockpit */
.hero-visual {
  position: relative;
  aspect-ratio: 1.08/1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.hero-cockpit {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

.cockpit-glow {
  position: absolute;
  inset: 8%;
  background:
    radial-gradient(circle at 30% 26%, rgba(99, 102, 241, 0.36), transparent 44%),
    radial-gradient(circle at 74% 70%, rgba(34, 211, 238, 0.26), transparent 48%);
  filter: blur(28px);
  opacity: 0.9;
}

.cockpit-window {
  position: relative;
  width: min(100%, 560px);
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(20, 20, 44, 0.94), rgba(10, 12, 30, 0.92)),
    radial-gradient(circle at 76% 22%, rgba(34, 211, 238, 0.18), transparent 40%);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  box-shadow: 0 32px 90px -34px rgba(34, 211, 238, 0.65), 0 18px 70px -28px rgba(0, 0, 0, 0.85);
  overflow: hidden;
  transform: rotateX(5deg) rotateY(-8deg) rotateZ(1deg);
  transform-style: preserve-3d;
  animation: cockpit-drift 9s ease-in-out infinite;
}

.cockpit-window::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 88%);
  pointer-events: none;
}

.cockpit-window::after {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(115deg, transparent 0 32%, rgba(255,255,255,0.08) 44%, transparent 58% 100%);
  transform: translateX(-70%);
  animation: cockpit-sheen 7s ease-in-out infinite;
  pointer-events: none;
}

.cockpit-topbar {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 46px;
  padding: 0 1rem;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(0, 0, 0, 0.22);
  z-index: 2;
}

.cockpit-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.cockpit-topbar span:nth-child(1) { background: rgba(236, 72, 153, 0.75); }
.cockpit-topbar span:nth-child(2) { background: rgba(139, 92, 246, 0.75); }
.cockpit-topbar span:nth-child(3) { background: rgba(34, 211, 238, 0.75); }

.cockpit-url {
  margin-left: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text-muted);
  font-family: 'Space Grotesk', monospace;
  font-size: 0.72rem;
}

.cockpit-content {
  position: relative;
  z-index: 1;
  min-height: 374px;
  padding: 1rem;
}

.cockpit-panel {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(12, 14, 34, 0.78);
  box-shadow: 0 20px 60px -28px rgba(0, 0, 0, 0.9);
  overflow: hidden;
}

.panel-kicker {
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.seo-panel {
  top: 1rem;
  left: 1rem;
  width: 68%;
  height: 54%;
  padding: 1rem;
}

.seo-score {
  margin-top: 0.25rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.seo-chart {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.55rem;
  width: calc(100% - 1.5rem);
  height: 58%;
}

.seo-chart::selection { background: transparent; }
.seo-area { fill: url(#seoChartFill); opacity: 0.95; }
.seo-line {
  fill: none;
  stroke: url(#seoChartLine);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 440;
  stroke-dashoffset: 440;
  animation: draw-chart 4.8s ease-in-out infinite;
}

.chart-bars rect {
  fill: rgba(99, 102, 241, 0.38);
  transform-box: fill-box;
  transform-origin: bottom;
  animation: bar-rise 4.8s ease-in-out infinite;
}

.server-panel {
  top: 1.7rem;
  right: 1rem;
  width: 30%;
  height: 44%;
  padding: 0.85rem;
}

.server-racks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
  height: 70%;
  margin-top: 0.8rem;
}

.rack {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  padding: 0.32rem;
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.045);
}

.rack span {
  position: relative;
  flex: 1;
  min-height: 10px;
  border-radius: 0.25rem;
  background: rgba(255, 255, 255, 0.07);
}

.rack span::after {
  content: '';
  position: absolute;
  right: 0.22rem;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brand-cyan);
  box-shadow: 0 0 12px var(--brand-cyan);
  transform: translateY(-50%);
  animation: led-pulse 1.8s ease-in-out infinite;
}

.rack:nth-child(2) span::after { animation-delay: -0.6s; }
.rack:nth-child(3) span::after { background: #8b5cf6; box-shadow: 0 0 12px #8b5cf6; animation-delay: -1.1s; }

.status-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.55rem;
  color: var(--text-muted);
  font-size: 0.68rem;
  line-height: 1.25;
}

.status-dot {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22d3ee;
  box-shadow: 0 0 16px #22d3ee;
  animation: status-pulse 1.8s ease-in-out infinite;
}

.automation-panel {
  left: 7%;
  bottom: 1rem;
  width: 78%;
  height: 36%;
  padding: 0.9rem;
}

.automation-map {
  position: absolute;
  inset: 2.45rem 0.7rem 0.45rem;
}

.automation-map svg {
  width: 100%;
  height: 100%;
}

.flow-path {
  fill: none;
  stroke: rgba(139, 92, 246, 0.42);
  stroke-width: 2;
  stroke-linecap: round;
}

.flow-b { stroke: rgba(34, 211, 238, 0.35); }

.flow-node {
  fill: rgba(12, 14, 34, 0.95);
  stroke: #22d3ee;
  stroke-width: 2;
  filter: drop-shadow(0 0 8px rgba(34, 211, 238, 0.5));
  animation: node-breathe 2.8s ease-in-out infinite;
}

.node-b,
.node-e { stroke: #8b5cf6; animation-delay: -0.7s; }
.node-c,
.node-f { animation-delay: -1.4s; }

.flow-pulse {
  fill: #fff;
  filter: drop-shadow(0 0 8px rgba(34, 211, 238, 0.9));
}

.pulse-a { animation: pulse-path-a 3.8s linear infinite; }
.pulse-b { animation: pulse-path-b 4.4s linear infinite -1.2s; }

.code-stream {
  position: absolute;
  right: 1.4rem;
  bottom: 42%;
  width: 34%;
  display: grid;
  gap: 0.45rem;
  opacity: 0.45;
}

.code-stream span {
  height: 5px;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(34,211,238,0.16), rgba(139,92,246,0.5), transparent);
  transform-origin: left;
  animation: code-scan 3.6s ease-in-out infinite;
}

.code-stream span:nth-child(2) { width: 82%; animation-delay: -0.4s; }
.code-stream span:nth-child(3) { width: 66%; animation-delay: -0.8s; }
.code-stream span:nth-child(4) { width: 90%; animation-delay: -1.2s; }
.code-stream span:nth-child(5) { width: 58%; animation-delay: -1.6s; }

@keyframes cockpit-drift {
  0%, 100% { transform: rotateX(5deg) rotateY(-8deg) rotateZ(1deg) translateY(0); }
  50% { transform: rotateX(4deg) rotateY(-5deg) rotateZ(0deg) translateY(-10px); }
}

@keyframes cockpit-sheen {
  0%, 52%, 100% { transform: translateX(-76%); opacity: 0; }
  65% { opacity: 1; }
  82% { transform: translateX(76%); opacity: 0; }
}

@keyframes draw-chart {
  0% { stroke-dashoffset: 440; opacity: 0.55; }
  28%, 74% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 0.68; }
}

@keyframes bar-rise {
  0%, 12% { transform: scaleY(0.18); opacity: 0.35; }
  36%, 78% { transform: scaleY(1); opacity: 0.85; }
  100% { transform: scaleY(0.72); opacity: 0.55; }
}

@keyframes status-pulse {
  0%, 100% { opacity: 0.45; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.18); }
}

@keyframes led-pulse {
  0%, 100% { opacity: 0.45; transform: translateY(-50%) scale(0.85); }
  50% { opacity: 1; transform: translateY(-50%) scale(1.18); }
}

@keyframes node-breathe {
  0%, 100% { transform: scale(0.92); opacity: 0.72; }
  50% { transform: scale(1.12); opacity: 1; }
}

@keyframes pulse-path-a {
  0% { offset-distance: 0%; opacity: 0; }
  12%, 88% { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}

@keyframes pulse-path-b {
  0% { offset-distance: 0%; opacity: 0; }
  14%, 86% { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}

.pulse-a { offset-path: path("M32 38 C90 16 114 68 168 50 C205 38 218 64 236 82"); }
.pulse-b { offset-path: path("M42 112 C86 96 114 112 142 92 C174 70 199 102 226 116"); }

@keyframes code-scan {
  0%, 100% { transform: scaleX(0.35); opacity: 0.2; }
  45%, 70% { transform: scaleX(1); opacity: 0.75; }
}

@media (max-width: 1023px) {
  .hero-visual {
    min-height: 360px;
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
  }
  .cockpit-window {
    min-height: 360px;
    transform: none;
  }
  @keyframes cockpit-drift {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
}

@media (max-width: 560px) {
  .hero-visual {
    min-height: 430px;
    aspect-ratio: auto;
  }
  .cockpit-window {
    min-height: 410px;
    border-radius: 18px;
  }
  .cockpit-content {
    min-height: 364px;
    padding: 0.8rem;
  }
  .cockpit-url { font-size: 0.62rem; }
  .seo-panel {
    width: calc(100% - 1.6rem);
    height: 43%;
    left: 0.8rem;
    top: 0.8rem;
  }
  .server-panel {
    top: auto;
    right: auto;
    left: 0.8rem;
    bottom: 0.8rem;
    width: calc(42% - 0.8rem);
    height: 38%;
  }
  .automation-panel {
    left: auto;
    right: 0.8rem;
    bottom: 0.8rem;
    width: calc(58% - 1.1rem);
    height: 38%;
  }
  .status-row { display: none; }
  .code-stream {
    right: 1rem;
    bottom: 46%;
    width: 42%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cockpit-window,
  .cockpit-window::after,
  .seo-line,
  .chart-bars rect,
  .rack span::after,
  .status-dot,
  .flow-node,
  .pulse-a,
  .pulse-b,
  .code-stream span {
    animation: none;
  }
  .seo-line { stroke-dashoffset: 0; }
}

.hero-code-card {
  position: relative;
  background: var(--bg-card-solid);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  height: 100%;
  font-family: 'Space Grotesk', monospace;
}
.hcc-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--border-subtle);
}
.hcc-bar .dot-r { width: 11px; height: 11px; border-radius: 50%; background: #ff5f57; }
.hcc-bar .dot-y { width: 11px; height: 11px; border-radius: 50%; background: #febc2e; }
.hcc-bar .dot-g { width: 11px; height: 11px; border-radius: 50%; background: #28c840; }
.hcc-bar .url {
  margin-left: 0.5rem;
  font-size: 0.7rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}

/* ===== Logos marquee ===== */
.logos-section {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}
.logos-label {
  text-align: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.1rem 3rem;
  opacity: 0.65;
}
.logos-row > span {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  transition: opacity 0.2s, color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.logos-row > span:hover { color: #fff; }

/* Wordmark per-brand fine-tuning — typography only, white treatment */
.logos-row .logo-wordmark {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.02em;
  text-transform: none;
  transition: color 0.2s, transform 0.2s;
}
.logos-row .logo-wordmark:hover { color: #fff; transform: translateY(-1px); }

.logos-row .logo-auchan       { font-family: 'Inter', sans-serif; font-style: italic; font-weight: 900; letter-spacing: -0.02em; }
.logos-row .logo-decathlon    { letter-spacing: 0.18em; font-weight: 800; }
.logos-row .logo-leroy        { letter-spacing: 0.06em; font-weight: 700; }
.logos-row .logo-damart       { letter-spacing: 0.22em; font-weight: 900; }
.logos-row .logo-laredoute    { font-family: 'Space Grotesk', sans-serif; font-style: italic; font-weight: 700; letter-spacing: -0.01em; }
.logos-row .logo-pimkie       { letter-spacing: 0.12em; font-weight: 700; }
.logos-row .logo-kiloutou     { letter-spacing: 0.18em; font-weight: 800; }
.logos-row .logo-matmut       { letter-spacing: 0.22em; font-weight: 900; }

/* Image-based wordmarks */
.logos-row .logo-img-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 34px;
}
.logos-row .logo-img-wrap img {
  display: block;
  max-height: 32px;
  max-width: 150px;
  width: auto;
  opacity: 0.78;
  transition: opacity 0.2s, transform 0.2s;
}
.logos-row .logo-img-wrap:hover img { opacity: 1; transform: translateY(-1px); }
.logos-row .logo-auchan img { max-height: 34px; max-width: 138px; }
.logos-row .logo-decathlon img { max-height: 24px; max-width: 152px; }
.logos-row .logo-leroy img { max-height: 44px; max-width: 120px; }
.logos-row .logo-damart img { max-height: 28px; max-width: 158px; }
.logos-row .logo-camif img { max-height: 36px; max-width: 112px; }
.logos-row .logo-laredoute img { max-height: 24px; max-width: 145px; }
.logos-row .logo-pimkie img { max-height: 26px; max-width: 132px; }
.logos-row .logo-kiloutou img { max-height: 28px; max-width: 150px; }
.logos-row .logo-matmut img { max-height: 28px; max-width: 142px; }
.logos-row .logo-urbans img { max-height: 28px; max-width: 150px; }

/* ===== SECTION HEAD ===== */
.section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-head .eyebrow { margin-bottom: 1rem; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 700px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  backdrop-filter: var(--blur);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-soft);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover .service-img img { transform: scale(1.06); }

.service-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.service-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 26, 0.85) 0%, rgba(10, 10, 26, 0.2) 50%, transparent 100%);
}
.service-img .service-icon {
  position: absolute;
  bottom: 1rem; left: 1rem;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--grad-primary);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.45);
}

.service-body {
  padding: 1.5rem;
  position: relative;
  z-index: 1;
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
  color: var(--text-primary);
}
.service-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}
.service-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.25rem 0.7rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
}
.service-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.25rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--brand-cyan);
  transition: gap 0.2s;
}
.service-card:hover .service-more { gap: 0.6rem; color: #fff; }

/* ===== Why ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 700px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

.why-card {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  backdrop-filter: var(--blur);
  transition: border-color 0.3s, transform 0.3s;
}
.why-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
}
.why-card .icon-box {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--grad-soft);
  border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-cyan);
  margin-bottom: 1.25rem;
}
.why-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.why-card p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.65; }

/* ===== About / Olivier ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1.2fr; } }

.about-portrait {
  position: relative;
  max-width: 380px;
  margin: 0 auto;
}
.about-portrait-sm {
  max-width: 240px;
}
.about-portrait-sm img {
  filter: grayscale(1) contrast(1.05);
  transition: filter 0.4s;
}
.about-portrait-sm:hover img {
  filter: grayscale(0.4) contrast(1.05);
}
@media (min-width: 1024px) {
  .about-portrait-sm { max-width: 260px; margin: 0 auto 0 0; }
}
.about-portrait::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--grad-primary);
  border-radius: var(--radius-xl);
  filter: blur(30px);
  opacity: 0.4;
  z-index: 0;
}
.about-portrait img {
  position: relative;
  width: 100%;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
}
.about-features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.55;
}
.about-feature svg {
  flex-shrink: 0;
  color: var(--brand-cyan);
  margin-top: 0.2rem;
}

/* ===== References preview ===== */
.refs-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .refs-preview-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .refs-preview-grid { grid-template-columns: repeat(3, 1fr); } }

.ref-mini {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/10;
  border: 1px solid var(--border-subtle);
  transition: transform 0.3s, border-color 0.3s;
}
.ref-mini:hover { transform: translateY(-4px); border-color: var(--border-light); }
.ref-mini img { width: 100%; height: 100%; object-fit: cover; }
.ref-mini::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent 60%);
}
.ref-mini-label {
  position: absolute;
  bottom: 0.85rem;
  left: 1rem;
  right: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  z-index: 2;
}

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }

.testimonial-card {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  backdrop-filter: var(--blur);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 0.5rem; right: 1.25rem;
  font-size: 5rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: rgba(99, 102, 241, 0.18);
}
.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: block;
  object-fit: cover;
  border: 1px solid var(--border-light);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.25);
  flex: 0 0 auto;
}
.testimonial-avatar-initials {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}
.testimonial-name { font-size: 0.92rem; font-weight: 600; }
.testimonial-role { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.1rem; }

.testimonials-page-grid .testimonial-card {
  min-height: 100%;
}

.testimonials-page-grid .testimonial-quote {
  min-height: 0;
}

.testimonials-google-head {
  margin-top: 4.5rem;
}

.google-review-card {
  display: flex;
  flex-direction: column;
}

.google-review-card .testimonial-quote {
  flex: 1;
}

.google-review-rating {
  position: relative;
  z-index: 1;
  margin-bottom: 0.8rem;
  color: #22d3ee;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
}

/* ===== CONTACT ===== */
.contact-section {
  position: relative;
  isolation: isolate;
}
.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
  z-index: -1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 0.85fr 1.15fr; gap: 4rem; align-items: start; } }

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s, transform 0.25s;
  backdrop-filter: var(--blur);
}
.contact-info-item:hover {
  border-color: rgba(99, 102, 241, 0.4);
  transform: translateY(-2px);
}
.ci-icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: var(--grad-soft);
  border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-cyan);
  flex-shrink: 0;
}
.ci-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}
.ci-value { font-size: 0.95rem; font-weight: 600; color: var(--text-primary); margin-top: 0.2rem; }

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: var(--blur);
  box-shadow: var(--shadow-md);
}
@media (min-width: 768px) { .contact-card { padding: 2.5rem; } }

.contact-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}
.contact-card .lead { font-size: 0.9rem; margin-bottom: 1.75rem; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 600px) { .form-grid { grid-template-columns: 1fr 1fr; } }

.form-group { display: flex; flex-direction: column; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus {
  outline: none;
  border-color: rgba(99, 102, 241, 0.6);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.18);
  background: rgba(0, 0, 0, 0.3);
}
.form-control::placeholder { color: var(--text-dim); }
textarea.form-control { resize: vertical; min-height: 120px; }

.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 0.25rem;
}
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 0.85rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.83rem;
  cursor: pointer;
  transition: all 0.2s;
}
.checkbox-item:hover { border-color: var(--border-strong); }
.checkbox-item input { accent-color: var(--brand-blue); width: 14px; height: 14px; }
.checkbox-item input:checked + span { color: var(--brand-cyan); }

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.consent-row input { accent-color: var(--brand-blue); margin-top: 0.2rem; flex-shrink: 0; }

.form-message {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  display: none;
  margin-bottom: 1rem;
}
.form-message.success {
  display: block;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #86efac;
}
.form-message.error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

/* ===== References full page ===== */
.refs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .refs-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }

.ref-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  backdrop-filter: var(--blur);
}
.ref-card:hover {
  transform: translateY(-6px);
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: var(--shadow-lg);
}
.ref-card-img {
  position: relative;
  aspect-ratio: 16/9.5;
  overflow: hidden;
  background: var(--bg-deep);
}
.ref-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.ref-card:hover .ref-card-img img { transform: scale(1.04); }
.ref-card-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: var(--blur);
  border: 1px solid var(--border-light);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 2;
}

/* Featured case study cards */
.ref-card-featured {
  border-color: rgba(99, 102, 241, 0.45);
  box-shadow: 0 20px 60px -20px rgba(99, 102, 241, 0.35);
}
.ref-card-featured .ref-card-badge {
  background: var(--grad-primary);
  background-size: 200% 200%;
  border-color: transparent;
  color: #fff;
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4);
}
.ref-card-featured:hover {
  border-color: rgba(99, 102, 241, 0.7);
  box-shadow: 0 24px 70px -20px rgba(99, 102, 241, 0.55);
}
.ref-card-featured .ref-card-title .badge-mini {
  display: inline-block;
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.3);
  color: var(--brand-cyan);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
  margin-left: 0.5rem;
  vertical-align: middle;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ref-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ref-card-title {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
.ref-card-subtitle {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}
.ref-card-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
}
.ref-card-link {
  margin-top: 1.15rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-cyan);
  word-break: break-all;
}
.ref-card-link:hover { color: #fff; }

.refs-divider {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 4rem 0 2.5rem;
}
.refs-divider .line {
  flex: 1;
  height: 1px;
  background: var(--border-subtle);
}
.refs-divider .label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

/* ===== Service page detail ===== */
.service-hero {
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.service-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(99, 102, 241, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(34, 211, 238, 0.18) 0%, transparent 50%);
  z-index: -1;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .service-detail { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.service-detail-content h2 {
  font-size: 1.75rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.service-detail-content h2:first-child { margin-top: 0; }
.service-detail-content p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.75;
}
.service-detail-content ul {
  margin: 1rem 0 1.5rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.service-detail-content ul li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--text-secondary);
  line-height: 1.65;
}
.service-detail-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--grad-primary);
}

.service-detail-aside {
  position: sticky;
  top: 6rem;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  backdrop-filter: var(--blur);
}
.service-detail-aside h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.service-detail-aside p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: var(--blur);
  transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(99, 102, 241, 0.4); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-primary);
  gap: 1rem;
}
.faq-icon {
  flex-shrink: 0;
  transition: transform 0.25s;
  color: var(--brand-cyan);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ===== Footer ===== */
.site-footer {
  position: relative;
  background: var(--bg-deep);
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 22rem;
}
.footer-col h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.footer-col nav { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--brand-cyan); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  transition: all 0.2s;
}
.footer-social a:hover {
  color: #fff;
  border-color: var(--brand-cyan);
  background: rgba(34, 211, 238, 0.08);
}

/* ===== Page header (sub-pages) ===== */
.page-hero {
  position: relative;
  padding: 7rem 0 4rem;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(99, 102, 241, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse at bottom, rgba(34, 211, 238, 0.1) 0%, transparent 60%);
  z-index: -1;
}
.page-hero .breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-family: 'Space Grotesk', sans-serif;
}
.page-hero .breadcrumb a { color: var(--text-secondary); }
.page-hero .breadcrumb a:hover { color: var(--brand-cyan); }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero .lead { margin: 0 auto; }

/* Hidden */
.hidden { display: none !important; }

/* Small utilities */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 1024px) { .grid-2 { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; } }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* ===== HEADER DROPDOWN ===== */
.nav-dropdown {
  position: relative;
  display: inline-block;
}
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  transition: all 0.2s;
  cursor: pointer;
  background: transparent;
  border: none;
}
.nav-dropdown-trigger:hover,
.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown-trigger.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}
.nav-dropdown-trigger svg {
  transition: transform 0.2s;
}
.nav-dropdown:hover .nav-dropdown-trigger svg,
.nav-dropdown-trigger.active svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 280px;
  background: rgba(15, 15, 32, 0.95);
  backdrop-filter: var(--blur);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 0.5rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown-menu:hover {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-head,
.nav-dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}
.nav-dropdown-head:hover,
.nav-dropdown-item:hover {
  background: rgba(99, 102, 241, 0.12);
}
.nav-dropdown-head {
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 0.25rem;
  padding-bottom: 0.85rem;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.nav-dropdown-head .ndi-title {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
.ndi-emoji {
  font-size: 1.35rem;
  line-height: 1.2;
  flex-shrink: 0;
}
.ndi-title {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}
.ndi-desc {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
  line-height: 1.4;
}

/* ===== FEATURED PROJECTS — HOMEPAGE ===== */
.projects-featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .projects-featured { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (min-width: 1100px) { .projects-featured { grid-template-columns: repeat(3, 1fr); } }

.project-feat-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  backdrop-filter: var(--blur);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  isolation: isolate;
}
.project-feat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.06), rgba(34, 211, 238, 0.04));
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
  pointer-events: none;
}
.project-feat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: var(--shadow-lg);
}
.project-feat-card:hover::before { opacity: 1; }

.pfc-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-deep);
}
.pfc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.project-feat-card:hover .pfc-img img { transform: scale(1.04); }
.pfc-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(10, 10, 26, 0.7) 100%);
}
.pfc-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--grad-primary);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.32rem 0.85rem;
  border-radius: 100px;
  letter-spacing: 0.02em;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4);
}

.pfc-body { padding: 1.6rem 1.5rem 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; }
.pfc-meta {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-cyan);
}
.pfc-body h3 { font-size: 1.4rem; font-weight: 700; letter-spacing: -0.02em; }
.pfc-body p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.65; }
.pfc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.4rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-cyan);
  transition: gap 0.2s, color 0.2s;
}
.project-feat-card:hover .pfc-link { gap: 0.65rem; color: #fff; }

/* ===== PROJECTS STACK — projets.php ===== */
.projects-stack {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 768px) {
  .projects-stack { gap: 4rem; }
}

.project-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  backdrop-filter: var(--blur);
}
@media (min-width: 900px) {
  .project-row {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 2rem;
    align-items: center;
  }
  .project-row-reverse .project-row-img { order: 2; }
}

.project-row-img {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  border: 1px solid var(--border-light);
  background: var(--bg-deep);
}
.project-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.project-row-img:hover img { transform: scale(1.03); }
.project-row-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--grad-primary);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.32rem 0.85rem;
  border-radius: 100px;
  letter-spacing: 0.02em;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4);
}

.project-row-body { display: flex; flex-direction: column; gap: 0.85rem; }
.project-row-body h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
}
.project-row-tagline {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.5;
}
.project-row-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.project-row .cta-row { margin-top: 0.75rem; }

.project-coming {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(34, 211, 238, 0.04));
  border: 1px dashed rgba(99, 102, 241, 0.35);
  border-radius: var(--radius-lg);
  backdrop-filter: var(--blur);
}
.project-coming-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--grad-soft);
  border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-cyan);
  flex-shrink: 0;
}
.project-coming h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.4rem; }
.project-coming p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.65; }
.project-coming .cta-row { margin-top: 1rem; }

/* Anchor offset */
[id] { scroll-margin-top: 6rem; }

/* ===== CONTACT MAP ===== */
.contact-map {
  margin-top: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
}
.contact-map iframe {
  filter: invert(0.92) hue-rotate(180deg) saturate(0.7);
  transition: filter 0.3s;
}
.contact-map:hover iframe {
  filter: invert(0.85) hue-rotate(180deg) saturate(0.85);
}

/* ===== BLOG SECTION (homepage) ===== */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  backdrop-filter: var(--blur);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.4);
  box-shadow: var(--shadow-md);
}
.blog-card .bc-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-deep);
  display: flex; align-items: center; justify-content: center;
}
.blog-card .bc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.blog-card:hover .bc-img img { transform: scale(1.04); }
.blog-card .bc-noimg {
  color: var(--text-dim);
}
.blog-card .bc-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}
.blog-card .bc-meta {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-cyan);
}
.blog-card .bc-title {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-primary);
}
.blog-card .bc-excerpt {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}
.blog-card .bc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-cyan);
  margin-top: 0.4rem;
  transition: gap 0.2s;
}
.blog-card:hover .bc-link { gap: 0.6rem; color: #fff; }

/* Skeleton */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.blog-card-skeleton {
  pointer-events: none;
  border-color: var(--border-subtle);
}
.blog-card-skeleton .bc-img,
.blog-card-skeleton .bc-line {
  background: linear-gradient(90deg,
    rgba(255,255,255,0.02) 0%,
    rgba(255,255,255,0.06) 50%,
    rgba(255,255,255,0.02) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.6s linear infinite;
}
.blog-card-skeleton .bc-img { aspect-ratio: 16/10; }
.blog-card-skeleton .bc-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.blog-card-skeleton .bc-line {
  height: 12px;
  border-radius: 4px;
}
.blog-card-skeleton .bc-line.short { width: 60%; }

.blog-error {
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  backdrop-filter: var(--blur);
}
.blog-error p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 0.92rem;
}

/* ===== BLOG ARTICLE (single) ===== */
.blog-article {
  position: relative;
}
.blog-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  filter: blur(40px) saturate(1.2);
  z-index: -2;
}
.blog-content {
  max-width: 48rem;
  margin: 0 auto;
}
.blog-cover {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  margin-bottom: 2rem;
  max-height: 480px;
  object-fit: cover;
}
.blog-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}
.blog-body p, .blog-body ul, .blog-body ol {
  margin-bottom: 1.25rem;
}
.blog-body h2, .blog-body h3, .blog-body h4 {
  color: var(--text-primary);
  margin: 2rem 0 1rem;
}
.blog-body h2 { font-size: 1.6rem; }
.blog-body h3 { font-size: 1.3rem; }
.blog-body h4 { font-size: 1.1rem; }
.blog-body a {
  color: var(--brand-cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(34, 211, 238, 0.4);
  transition: color 0.2s, text-decoration-color 0.2s;
}
.blog-body a:hover {
  color: #fff;
  text-decoration-color: var(--brand-cyan);
}
.blog-body img {
  border-radius: var(--radius);
  margin: 1.5rem auto;
  max-width: 100%;
  height: auto;
  border: 1px solid var(--border-subtle);
}
.blog-body iframe {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  margin: 1.5rem 0;
}
.blog-body blockquote {
  border-left: 3px solid var(--brand-cyan);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--text-primary);
}
.blog-body code {
  font-family: 'Space Grotesk', monospace;
  background: rgba(0,0,0,0.3);
  padding: 0.15em 0.45em;
  border-radius: 4px;
  font-size: 0.9em;
}
.blog-body pre {
  background: rgba(0,0,0,0.4);
  padding: 1rem;
  border-radius: var(--radius);
  overflow-x: auto;
  margin: 1.5rem 0;
}
.blog-body pre code {
  background: none;
  padding: 0;
}
.blog-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}
