:root {
  --bg: #0a0a0a;
  --bg-soft: #111111;
  --card: #161616;
  --text: #f5f5f5;
  --muted: #9a9a9a;
  --accent: #ffffff;
  --border: #2a2a2a;
  --highlight: #e8e8e8;
  --max: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.logo span { color: var(--muted); font-weight: 400; }

.brand-sigil {
  width: 56px;
  height: auto;
  max-height: 68px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

/* Marque inline (footers, texte) — même rendu que .logo */
.brand-mark {
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: inherit;
}
.brand-mark span { color: var(--muted); font-weight: 400; }

.site-footer .brand-mark { font-size: 14px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}

.site-nav a:hover { color: var(--text); }

.site-nav a.site-nav__console--auth {
  color: var(--text);
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
}

.btn-primary:hover {
  background: var(--highlight);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover { border-color: var(--muted); }

/* Hero */
.hero {
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--border);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 420px);
  gap: 40px 48px;
  align-items: start;
}

.hero-content { min-width: 0; }

.hero-stats--wide {
  grid-column: 1 / -1;
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero h1 { max-width: none; }
  .hero-chat { order: -1; }
}

/* Hero chat démo */
.hero-chat {
  --hero-chat-accent: #ffffff;
  min-height: 480px;
}

.hero-chat--loading .hero-chat-card {
  opacity: 0.6;
  pointer-events: none;
}

.hero-chat-card {
  display: flex;
  flex-direction: column;
  height: min(520px, calc(100vh - 140px));
  min-height: 420px;
  background: linear-gradient(165deg, rgba(22, 22, 22, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 24px 48px rgba(0, 0, 0, 0.45),
    0 0 80px color-mix(in srgb, var(--hero-chat-accent) 12%, transparent);
  overflow: hidden;
}

.hero-chat-header {
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.hero-chat-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.hero-chat-header-main {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.hero-chat-header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.hero-chat-expand,
.hero-chat-tts {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.hero-chat-expand:hover,
.hero-chat-tts:hover {
  border-color: color-mix(in srgb, var(--hero-chat-accent) 50%, var(--border));
  background: color-mix(in srgb, var(--hero-chat-accent) 10%, transparent);
}

.hero-chat-tts.active {
  color: var(--hero-chat-accent);
  border-color: color-mix(in srgb, var(--hero-chat-accent) 50%, var(--border));
}

.hero-chat-card--expanded {
  height: 100%;
  min-height: 0;
  max-height: none;
  border-radius: 20px;
}

.hero-chat-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.hero-chat-modal.hidden { display: none; }

.hero-chat-modal__backdrop {
  position: absolute;
  inset: 0;
  border: none;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.hero-chat-modal__panel {
  position: relative;
  z-index: 1;
  width: 70vw;
  height: 70vh;
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 32px);
}

body.hero-chat-modal-open { overflow: hidden; }

.hero-chat-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
  flex-shrink: 0;
  animation: hero-chat-pulse 2.4s ease-in-out infinite;
}

@keyframes hero-chat-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.65; transform: scale(0.92); }
}

.hero-chat-title {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.hero-chat-disclaimer {
  margin: 0;
  line-height: 1.45;
  padding: 0 20px 12px;
  font-size: 11.5px;
}

.hero-chat-disclaimer--top {
  padding: 0 20px 12px;
  border-bottom: 1px solid var(--border);
}

.hero-chat-disclaimer--bottom {
  font-size: 10px;
  line-height: 1.35;
  padding: 2px 20px 10px;
  border-top: none;
  opacity: 0.85;
}

.hero-chat-card:has(.hero-chat-disclaimer--bottom:not([hidden])) .hero-chat-input-zone {
  padding-bottom: 8px;
}

.hero-chat-disclaimer[hidden] { display: none !important; }

.hero-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-behavior: smooth;
}

.hero-chat-msg {
  max-width: 92%;
  padding: 11px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.55;
}

.hero-chat-msg--bot {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.hero-chat-msg--user {
  align-self: flex-end;
  background: color-mix(in srgb, var(--hero-chat-accent) 18%, var(--card));
  border: 1px solid color-mix(in srgb, var(--hero-chat-accent) 35%, var(--border));
}

.hero-chat-attach-chip {
  display: inline-block;
  margin-top: 6px;
  padding: 2px 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 11.5px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-chat-msg p { margin: 0 0 0.5em; }
.hero-chat-msg p:last-child { margin-bottom: 0; }
.hero-chat-msg ul { margin: 0.4em 0; padding-left: 1.2em; }
.hero-chat-msg a { color: var(--hero-chat-accent); text-decoration: underline; text-underline-offset: 2px; }
.hero-chat-msg--bot a {
  color: #7eb8ff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.hero-chat-msg--bot a:hover { color: #a5d4ff; }
.hero-chat-msg--user a { color: var(--hero-chat-accent); }

.hero-chat-welcome { font-size: 13.5px; }

.hero-chat-dots {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  height: 1em;
}

.hero-chat-dots i {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
  animation: hero-chat-dot 1.2s ease-in-out infinite;
}

.hero-chat-dots i:nth-child(2) { animation-delay: 0.15s; }
.hero-chat-dots i:nth-child(3) { animation-delay: 0.3s; }

@keyframes hero-chat-dot {
  0%, 80%, 100% { opacity: 0.35; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-3px); }
}

.hero-chat-stopped {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--muted);
}

.hero-chat-sources {
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
}

.hero-chat-sources summary {
  cursor: pointer;
  user-select: none;
}

.hero-chat-sources ul {
  margin: 6px 0 0;
  padding-left: 1.1em;
}

.hero-chat-sources a { color: var(--muted); }
.hero-chat-sources a:hover { color: var(--text); }

.hero-chat-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 12px;
}

.hero-chat-suggestion {
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 12px;
  line-height: 1.3;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-align: left;
}

.hero-chat-suggestion:hover {
  border-color: color-mix(in srgb, var(--hero-chat-accent) 50%, var(--border));
  background: color-mix(in srgb, var(--hero-chat-accent) 8%, transparent);
}

.hero-chat-input-zone {
  border-top: 1px solid color-mix(in srgb, var(--hero-chat-accent) 35%, var(--border));
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--hero-chat-accent) 7%, transparent),
    rgba(0, 0, 0, 0.38)
  );
  padding: 12px 16px 16px;
  box-shadow: inset 0 1px 0 color-mix(in srgb, var(--hero-chat-accent) 14%, transparent);
}

.hero-chat-try-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: color-mix(in srgb, var(--hero-chat-accent) 80%, var(--text));
}

.hero-chat-try-hint__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--hero-chat-accent);
  box-shadow: 0 0 10px color-mix(in srgb, var(--hero-chat-accent) 65%, transparent);
  animation: hero-chat-pulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}

.hero-chat-attach-preview {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 8px;
  font-size: 12.5px;
  color: var(--muted);
}

.hero-chat-attach-chip--preview {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 14px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--text);
  margin-top: 0;
}

.hero-chat-attach-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 16px;
  line-height: 1;
  padding: 0 2px;
}

.hero-chat-attach-remove:hover { color: var(--text); }

.hero-chat-form {
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 0;
  border-top: none;
  background: transparent;
}

.hero-chat-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--hero-chat-accent) 32%, var(--border));
  background: rgba(255, 255, 255, 0.04);
  color: color-mix(in srgb, var(--hero-chat-accent) 65%, var(--muted));
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.hero-chat-icon:hover:not(:disabled) {
  border-color: color-mix(in srgb, var(--hero-chat-accent) 50%, var(--border));
  color: var(--text);
}

.hero-chat-icon:disabled { opacity: 0.45; cursor: not-allowed; }

.hero-chat-mic.listening {
  color: #ef4444;
  border-color: color-mix(in srgb, #ef4444 45%, var(--border));
  animation: hero-chat-mic-pulse 1.2s ease-in-out infinite;
}

@keyframes hero-chat-mic-pulse {
  50% { opacity: 0.45; }
}

.hero-chat-input {
  flex: 1;
  min-width: 0;
  padding: 13px 15px;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--hero-chat-accent) 42%, var(--border));
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font: inherit;
  font-size: 15px;
}

.hero-chat-input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.hero-chat-input:focus {
  outline: none;
  border-color: var(--hero-chat-accent);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--hero-chat-accent) 20%, transparent);
}

.hero-chat-send,
.hero-chat-stop {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: none;
  background: var(--hero-chat-accent);
  color: var(--bg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.hero-chat-send:disabled { opacity: 0.45; cursor: not-allowed; }
.hero-chat-send:hover:not(:disabled) { opacity: 0.9; }

.hero-chat-stop {
  background: #ef4444;
  color: #fff;
  font-size: 14px;
}

.hero-chat-error {
  padding: 24px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

.muted { color: var(--muted); }
.small { font-size: 13px; }
.hidden { display: none !important; }

.hero-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 14ch;
  margin: 0 0 28px;
}

.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--muted);
  max-width: 52ch;
  margin: 0 0 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.stat-value {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}

/* Sections */
section { padding: 88px 0; }

.section-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 20px;
  max-width: 20ch;
}

.section-intro {
  color: var(--muted);
  max-width: 58ch;
  margin: 0 0 48px;
  font-size: 1.05rem;
}

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.2s;
}

.feature-card:hover { border-color: #444; }

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 18px;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 500;
}

.feature-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* Compare */
.compare {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 768px) {
  .compare-grid { grid-template-columns: 1fr; }
  .site-nav { display: none; }
}

.compare-col {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}

.compare-col h3 {
  margin: 0 0 20px;
  font-size: 1.1rem;
  font-weight: 500;
}

.compare-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.compare-col li {
  position: relative;
  padding: 10px 0 10px 24px;
  font-size: 14px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.compare-col li:last-child { border-bottom: none; }

.compare-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
}

.compare-col.highlight li::before { background: var(--accent); }

.compare-col.highlight li { color: var(--text); }

/* Use cases */
.use-cases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.use-case {
  padding: 24px;
  border-left: 2px solid var(--border);
}

.use-case h4 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 500;
}

.use-case p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

/* Pricing */
.pricing {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  align-items: stretch;
}

@media (min-width: 1280px) {
  .pricing-grid { grid-template-columns: repeat(5, 1fr); }
}

@media (min-width: 960px) and (max-width: 1279px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: border-color 0.2s;
}

.pricing-card:hover { border-color: #444; }

.pricing-card.popular {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.pricing-card--contact {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--border));
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 4%, var(--card)), var(--card));
}

.pricing-card--contact:hover {
  border-color: color-mix(in srgb, var(--accent) 65%, var(--border));
}

.pricing-amount--contact {
  margin-bottom: 6px;
}

.pricing-contact-label {
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-header h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 500;
}

.pricing-desc {
  margin: 0 0 24px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.pricing-value {
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing-currency {
  font-size: 1.4rem;
  font-weight: 500;
}

.pricing-currency span {
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
}

.pricing-note {
  margin: 0 0 24px;
  font-size: 13px;
  color: var(--muted);
}

.pricing-features {
  flex: 1;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.pricing-features li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 14px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  font-size: 12px;
  color: var(--accent);
}

.pricing-card.popular .pricing-features li { color: var(--text); }

.pricing-cta {
  width: 100%;
  margin-top: auto;
}

.pricing-billing-toggle-wrap {
  text-align: center;
  margin-bottom: 16px;
}

.pricing-promo-wrap {
  text-align: center;
  margin-bottom: 28px;
}

.pricing-billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--card);
}

.pricing-billing-toggle__btn {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.pricing-billing-toggle__btn.is-active {
  background: var(--accent);
  color: var(--bg);
}

.pricing-billing-toggle__badge {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.1);
  color: inherit;
  font-size: 12px;
  font-weight: 600;
}

.pricing-billing-toggle__btn:not(.is-active) .pricing-billing-toggle__badge {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

.pricing-promo {
  max-width: 280px;
  margin: -8px auto 28px;
  padding: 0;
  border: none;
  background: transparent;
}

.pricing-promo__summary {
  list-style: none;
  cursor: pointer;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  user-select: none;
}

.pricing-promo__summary::-webkit-details-marker {
  display: none;
}

.pricing-promo__summary::after {
  content: " ▸";
  font-size: 11px;
  opacity: 0.7;
}

.pricing-promo[open] .pricing-promo__summary::after {
  content: " ▾";
}

.pricing-promo__summary:hover {
  color: var(--text);
}

.pricing-promo__body {
  margin-top: 10px;
  display: grid;
  gap: 6px;
}

.pricing-promo__label {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 4px;
}

.pricing-promo__row {
  display: grid;
  gap: 6px;
}

.pricing-promo__input {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 13px;
  background: var(--card);
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pricing-promo__input::placeholder {
  color: var(--muted);
  opacity: 0.65;
  text-transform: none;
  letter-spacing: normal;
}

.pricing-promo__hint {
  margin: 0;
  line-height: 1.4;
  font-size: 12px;
}

.pricing-promo__error {
  margin: 10px 0 0;
  color: #991b1b;
  font-size: 14px;
}

.pricing-promo__error.hidden {
  display: none;
}

.pricing-options {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.pricing-options-title {
  margin: 0 0 8px;
  font-size: 1.2rem;
  font-weight: 500;
}

.pricing-options-intro {
  margin: 0 0 28px;
  font-size: 14px;
  color: var(--muted);
  max-width: 58ch;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
}

.option-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding: 16px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 14px;
}

.option-name {
  color: var(--text);
  flex: 1 1 180px;
  min-width: 0;
}

.option-price {
  color: var(--muted);
  font-weight: 500;
  white-space: normal;
  text-align: right;
  flex: 1 1 160px;
  min-width: 0;
  line-height: 1.45;
}

/* CTA */
.cta {
  text-align: center;
  padding: 100px 0;
}

.cta h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.cta p {
  color: var(--muted);
  max-width: 46ch;
  margin: 0 auto 32px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0 48px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a:hover { color: var(--text); }

.footer-link-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: inherit;
  color: inherit;
  cursor: pointer;
}

.footer-link-btn:hover { color: var(--text); }
