/* =========================================================
   Palmarès — Site vitrine
   Palette : bleu #1759D6 · or #F4B640 · surface #F1F3F6
   ========================================================= */

:root {
  --blue: #1759D6;
  --blue-light: #2b6aff;
  --blue-dark: #0f3690;
  --gold: #F4B640;
  --gold-dark: #e09a20;

  --surface: #ffffff;
  --bg: #F1F3F6;
  --bg-alt: #f8f9ff;
  --text: #202124;
  --text-muted: #5f6368;
  --border: rgba(0, 0, 0, 0.08);

  --radius: 1.5rem;
  --radius-sm: 0.875rem;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.06);
  --shadow: 0 10px 35px rgba(0, 0, 0, 0.09);
  --shadow-lg: 0 24px 60px rgba(23, 89, 214, 0.18);

  --maxw: 1140px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

[data-theme="dark"] {
  --surface: #1e2128;
  --bg: #14161b;
  --bg-alt: #1a1d24;
  --text: #e7e9ec;
  --text-muted: #9aa0a6;
  --border: rgba(255, 255, 255, 0.10);
  --blue: #5b8dee;
  --blue-light: #7aa5f5;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.4);
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.55);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}

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

.container {
  width: min(var(--maxw), 90%);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--blue);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 1000;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.95rem 1.8rem;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.btn-sm { padding: 0.65rem 1.25rem; font-size: 0.92rem; }

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 22px rgba(23, 89, 214, 0.28);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(23, 89, 214, 0.38);
}

.btn-ghost {
  background: transparent;
  color: var(--blue);
  border-color: transparent;
}
.btn-ghost:hover { transform: translateX(3px); color: var(--blue-light); }

.btn-light {
  background: #fff;
  color: var(--blue);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2); }

/* ---------- Header ---------- */
#top {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--surface) 85%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--blue);
  letter-spacing: -0.02em;
  transition: transform 0.25s var(--ease);
}
.logo:hover { transform: translateY(-1px); }
.logo-img { width: 38px; height: 38px; object-fit: contain; }

.nav-desktop ul {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}
.nav-desktop a {
  position: relative;
  font-weight: 500;
  color: var(--text);
  opacity: 0.82;
  padding: 0.4rem 0;
  transition: opacity 0.25s, color 0.25s;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: width 0.3s var(--ease);
}
.nav-desktop a:hover { opacity: 1; color: var(--blue); }
.nav-desktop a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 0.75rem; }

.theme-toggle {
  display: inline-grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  transition: transform 0.25s var(--ease), border-color 0.25s;
}
.theme-toggle:hover { transform: rotate(20deg) scale(1.06); border-color: var(--blue); }
.theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 0.7rem;
  background: var(--surface);
  cursor: pointer;
  padding: 0 9px;
}
.burger span {
  display: block; height: 2px; width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1rem min(5%, 2rem) 1.4rem;
}
.mobile-menu a {
  padding: 0.85rem 0.6rem;
  border-radius: 0.6rem;
  font-weight: 600;
  color: var(--text);
}
.mobile-menu a:hover { background: var(--bg-alt); color: var(--blue); }
.mobile-menu .btn { margin-top: 0.5rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(3.5rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5.5rem);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 80% 0%, rgba(23, 89, 214, 0.10), transparent 70%),
    radial-gradient(50% 50% at 0% 100%, rgba(244, 182, 64, 0.12), transparent 70%);
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue);
  background: color-mix(in srgb, var(--blue) 10%, transparent);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 5.2vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
  font-weight: 800;
}
.lead {
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  color: var(--text-muted);
  max-width: 36ch;
  margin-bottom: 2rem;
}

.text-highlight {
  position: relative;
  color: var(--blue);
  white-space: nowrap;
}
.text-highlight::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0.08em;
  width: 100%; height: 0.32em;
  background: var(--gold);
  opacity: 0.4;
  border-radius: 3px;
  z-index: -1;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.8rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.3rem;
  list-style: none;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
}

/* Hero visual */
.hero-visual { position: relative; }
.hero-logo {
  width: 110px;
  margin: 0 auto 1.2rem;
  filter: drop-shadow(0 12px 22px rgba(23, 89, 214, 0.25));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.mock-window {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.mock-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.mock-bar .dot { width: 11px; height: 11px; border-radius: 50%; background: var(--border); }
.mock-bar .dot:nth-child(1) { background: #ff5f57; }
.mock-bar .dot:nth-child(2) { background: #febc2e; }
.mock-bar .dot:nth-child(3) { background: #28c840; }
.mock-url {
  margin-left: auto;
  font-size: 0.74rem;
  color: var(--text-muted);
  font-weight: 500;
}
.mock-body { padding: 1.1rem; display: grid; gap: 1rem; }

.mock-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7rem; }
.kpi {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.8rem;
  display: grid;
  gap: 0.15rem;
}
.kpi-label { font-size: 0.68rem; color: var(--text-muted); }
.kpi-value { font-size: 1.4rem; font-weight: 800; letter-spacing: -0.02em; color: var(--blue); }
.kpi-trend { font-size: 0.68rem; color: var(--text-muted); font-weight: 600; }
.kpi-trend.up { color: #2e9e57; }

.mock-chart {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  height: 110px;
  padding: 0.4rem 0.2rem 0;
  border-bottom: 1px solid var(--border);
}
.mock-chart span {
  flex: 1;
  height: var(--h);
  background: linear-gradient(to top, var(--blue), var(--blue-light));
  border-radius: 6px 6px 0 0;
  opacity: 0.9;
  animation: grow 1s var(--ease) both;
}
@keyframes grow { from { height: 0; } to { height: var(--h); } }

.mock-rows { display: grid; gap: 0.55rem; }
.mock-rows .row { display: flex; align-items: center; gap: 0.6rem; }
.avatar { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); flex: none; }
.line { height: 9px; border-radius: 5px; background: var(--border); }
.line.w40 { width: 40%; } .line.w60 { width: 60%; } .line.w70 { width: 70%; }
.pill {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
}
.pill.ok { background: rgba(46, 158, 87, 0.15); color: #2e9e57; }
.pill.warn { background: rgba(244, 182, 64, 0.2); color: var(--gold-dark); }

/* ---------- Stats band ---------- */
.stats-band {
  background: linear-gradient(120deg, var(--blue), var(--blue-light));
  color: #fff;
  padding: clamp(2.2rem, 4vw, 3rem) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat-number {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-number .suffix { color: var(--gold); }
.stat-label { font-size: 0.9rem; opacity: 0.9; margin-top: 0.4rem; }

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section-alt { background: var(--surface); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.8rem;
}
.section-head h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 0.9rem;
}
.section-head p { color: var(--text-muted); font-size: 1.05rem; }

/* ---------- Roles ---------- */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.role-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.role-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.role-card[data-role="prof"]::before { background: var(--gold); }
.role-card[data-role="eleve"]::before { background: #2e9e57; }
.role-card[data-role="parent"]::before { background: #8b5cf6; }
.role-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.role-card:hover::before { transform: scaleX(1); }

.role-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--blue) 10%, transparent);
  margin-bottom: 1.1rem;
}
.role-icon svg { width: 28px; height: 28px; fill: none; stroke: var(--blue); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.role-card[data-role="prof"] .role-icon { background: color-mix(in srgb, var(--gold) 18%, transparent); }
.role-card[data-role="prof"] .role-icon svg { stroke: var(--gold-dark); }
.role-card[data-role="eleve"] .role-icon { background: rgba(46, 158, 87, 0.14); }
.role-card[data-role="eleve"] .role-icon svg { stroke: #2e9e57; }
.role-card[data-role="parent"] .role-icon { background: rgba(139, 92, 246, 0.14); }
.role-card[data-role="parent"] .role-icon svg { stroke: #8b5cf6; }

.role-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.role-card > p { color: var(--text-muted); font-size: 0.94rem; margin-bottom: 1rem; }
.role-list { list-style: none; display: grid; gap: 0.45rem; }
.role-list li {
  position: relative;
  padding-left: 1.3rem;
  font-size: 0.88rem;
  color: var(--text);
}
.role-list li::before {
  content: "✓";
  position: absolute; left: 0;
  color: var(--blue);
  font-weight: 700;
}

/* ---------- Features ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.section-alt .feature-card { background: var(--bg-alt); }
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.feature-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: var(--radius-sm);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.3rem;
  transition: transform 0.3s var(--ease);
}
.section-alt .feature-icon { background: var(--surface); }
.feature-card:hover .feature-icon { transform: scale(1.08) rotate(-4deg); }
.feature-icon svg { width: 28px; height: 28px; fill: none; stroke: var(--blue); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.feature-card h3 { font-size: 1.18rem; margin-bottom: 0.55rem; }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; }

/* ---------- Split (atouts) ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split-lead { color: var(--text-muted); font-size: 1.08rem; margin: 0.8rem 0 1.6rem; }
.check-list { list-style: none; display: grid; gap: 1rem; margin-bottom: 2rem; }
.check-list li {
  position: relative;
  padding-left: 2rem;
  color: var(--text-muted);
}
.check-list li strong { color: var(--text); }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.15em;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--blue) 14%, transparent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231759D6' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px;
}

.split-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.atout-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  display: grid;
  gap: 0.3rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease);
}
.atout-card:hover { transform: translateY(-4px); }
.atout-card.a2 { transform: translateY(1.4rem); }
.atout-card.a2:hover { transform: translateY(calc(1.4rem - 4px)); }
.atout-card.a4 { transform: translateY(1.4rem); }
.atout-card.a4:hover { transform: translateY(calc(1.4rem - 4px)); }
.atout-emoji { font-size: 1.8rem; }
.atout-card strong { font-size: 1.05rem; }
.atout-card .muted { color: var(--text-muted); font-size: 0.85rem; }

/* ---------- Quote ---------- */
.quote-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--bg-alt);
}
.quote {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.quote p {
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.01em;
}
.quote footer { margin-top: 1.4rem; color: var(--text-muted); font-size: 0.95rem; }
.quote-name { color: var(--blue); font-weight: 700; }

/* ---------- Tech ---------- */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.tech-pill {
  display: grid;
  gap: 0.2rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.4rem;
  transition: transform 0.25s var(--ease), border-color 0.25s;
}
.tech-pill:hover { transform: translateY(-3px); border-color: var(--blue); }
.tech-pill strong { font-size: 1.05rem; color: var(--blue); }
.tech-pill span { color: var(--text-muted); font-size: 0.85rem; }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
  max-width: 920px;
  margin: 0 auto;
  align-items: stretch;
}
.pricing-card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.7rem, 4vw, 2.4rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: color-mix(in srgb, var(--blue) 35%, var(--border));
}
.pricing-card-featured {
  border: 2px solid var(--blue);
  box-shadow: var(--shadow);
  position: relative;
}
.pricing-badge, .pricing-ribbon {
  align-self: flex-start;
  display: inline-flex;
  padding: 0.38rem 0.72rem;
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.03em;
}
.pricing-badge {
  color: var(--blue);
  background: color-mix(in srgb, var(--blue) 10%, transparent);
}
.pricing-ribbon {
  color: #5b3a00;
  background: var(--gold);
}
.pricing-card h3 {
  margin-top: 1.1rem;
  font-size: clamp(1.45rem, 3vw, 1.8rem);
  letter-spacing: -0.02em;
}
.pricing-audience {
  min-height: 3.4em;
  margin: 0.6rem 0 1.35rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.pricing-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45rem;
  color: var(--blue);
  line-height: 1;
}
.pricing-price span { font-size: clamp(2rem, 4vw, 2.6rem); font-weight: 800; letter-spacing: -0.04em; }
.pricing-price small { color: var(--text-muted); font-size: 0.95rem; }
.pricing-annual {
  display: grid;
  gap: 0.25rem;
  margin: 1.25rem 0 1.5rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
  border: 1px solid var(--border);
}
.pricing-annual strong { color: var(--text); font-size: 0.96rem; }
.pricing-annual span { color: var(--text-muted); font-size: 0.82rem; }
.pricing-list { list-style: none; display: grid; gap: 0.8rem; margin-bottom: 2rem; }
.pricing-list li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}
.pricing-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05em;
  display: grid;
  place-items: center;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  color: var(--blue);
  background: color-mix(in srgb, var(--blue) 12%, transparent);
  font-size: 0.75rem;
  font-weight: 800;
}
.pricing-cta { width: 100%; margin-top: auto; }
.pricing-extras {
  max-width: 920px;
  margin: 1.6rem auto 0;
  padding: 1.25rem 1.4rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
}
.pricing-extras h3 { font-size: 1rem; margin-bottom: 0.3rem; }
.pricing-extras p { color: var(--text-muted); font-size: 0.92rem; }
.pricing-reassurance {
  max-width: 860px;
  margin: 1.15rem auto 0;
  color: var(--text-muted);
  text-align: center;
  font-size: 0.93rem;
}

/* ---------- CTA ---------- */
.cta {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: linear-gradient(120deg, var(--blue), var(--blue-light));
  color: #fff;
  text-align: center;
}
.cta-inner { max-width: 680px; margin: 0 auto; }
.cta h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); margin-bottom: 1rem; letter-spacing: -0.02em; }
.cta p { opacity: 0.92; font-size: 1.05rem; margin-bottom: 2rem; }
.cta-form {
  display: flex;
  gap: 0.8rem;
  max-width: 520px;
  margin: 0 auto;
}
.cta-input {
  flex: 1;
  padding: 1rem 1.4rem;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  color: var(--text);
}
.cta-input:focus { outline: none; box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.35); }
.cta-note { margin-top: 1rem; font-size: 0.92rem; min-height: 1.2em; font-weight: 600; }

/* ---------- Footer ---------- */
.footer {
  background: #15171c;
  color: #c8ccd2;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding: clamp(2.8rem, 5vw, 4rem) 0 2.5rem;
}
.logo-light { color: #fff; }
.footer-tagline { color: var(--gold); font-weight: 600; margin: 0.9rem 0 0.5rem; font-size: 0.9rem; letter-spacing: 0.04em; }
.footer-desc { color: #9aa0a6; font-size: 0.92rem; max-width: 30ch; }
.footer-col h4 { color: #fff; font-size: 0.95rem; margin-bottom: 1rem; }
.footer-col a {
  display: block;
  color: #9aa0a6;
  font-size: 0.9rem;
  padding: 0.32rem 0;
  transition: color 0.2s, transform 0.2s;
}
.footer-col a:hover { color: #fff; transform: translateX(3px); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.3rem 0;
  font-size: 0.85rem;
}
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }
.footer-made { color: var(--gold); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-desktop { display: none; }
  .header-cta { display: none; }
  .burger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-text .lead { max-width: 52ch; margin-inline: auto; }
  .hero-cta, .hero-badges { justify-content: center; }
  .hero-visual { max-width: 460px; margin: 0 auto; }
  .roles-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .split { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { gap: 1.25rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .roles-grid, .features-grid, .tech-grid, .pricing-grid { grid-template-columns: 1fr; }
  .pricing-audience { min-height: auto; }
  .cta-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .atout-card.a2, .atout-card.a4 { transform: none; }
  .atout-card.a2:hover, .atout-card.a4:hover { transform: translateY(-4px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
