:root {
  --bg-deep: #05070a;
  --bg-navy: #0a0e1a;
  --bg-card-dark: rgba(255, 255, 255, 0.06);
  --text: #f4f6fa;
  --text-muted: #9aa3b5;
  --text-dark: #0f1218;
  --white: #ffffff;
  --grad-hero: linear-gradient(120deg, #2b59ff 0%, #7b2cbf 55%, #c471ed 100%);
  --grad-cta: linear-gradient(115deg, #1e69ff 0%, #8e2de2 100%);
  --grad-text: linear-gradient(90deg, #4facfe 0%, #c471ed 100%);
  --accent-blue: #2563eb;
  --accent-green: #22c55e;
  --violet: #7c3aed;
  --magenta: #db2777;
  --green-kpi: #10b981;
  --border-light: rgba(255, 255, 255, 0.12);
  --shadow-card: 0 18px 50px rgba(0, 0, 0, 0.35);
  --radius: 14px;
  --radius-sm: 10px;
  --maxw: 72rem;
  --narrow: 40rem;
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

:focus-visible {
  outline: 2px solid #fbbf24;
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 0.75rem 1.25rem;
  background: var(--accent-blue);
  color: var(--white);
  z-index: 100;
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

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

.container--narrow {
  width: min(100% - 2rem, var(--narrow));
}

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

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  padding: 0.85rem 0;
}

.header-inner--slim .header-lang {
  margin-left: auto;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-lockup:hover {
  opacity: 0.88;
}

.brand-lockup__wordmark {
  height: 80px;
  width: auto;
  display: block;
}

.brand-lockup--footer {
  margin-bottom: 0.25rem;
}

.brand-lockup--footer .brand-lockup__wordmark {
  height: 82px;
}

.header-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-left: auto;
}

.header-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

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

.header-lang {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.header-lang__globe {
  opacity: 0.6;
  font-size: 0.95rem;
}

.lang-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.35rem 0.55rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-muted);
  border: 1px solid transparent;
}

.lang-pill:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.lang-pill.is-active {
  background: rgba(37, 99, 235, 0.35);
  border-color: rgba(96, 165, 250, 0.5);
  color: var(--white);
}

.lang-pill__flag {
  font-size: 0.85rem;
  line-height: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

button.btn {
  margin: 0;
  line-height: inherit;
}

.btn:active {
  transform: translateY(1px);
}

.btn--header {
  background: var(--accent-blue);
  color: var(--white);
  border-color: transparent;
  white-space: nowrap;
}

.btn--header:hover {
  background: #1d4ed8;
  color: var(--white);
}

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

.btn--primary:hover {
  background: #1d4ed8;
  color: var(--white);
}

.btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--text);
}

.btn--outline:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

.btn--white {
  background: var(--white);
  color: #1e40af;
  border-color: var(--white);
}

.btn--white:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  color: #1d4ed8;
}

.btn--lg {
  padding: 0.85rem 1.35rem;
  font-size: 1rem;
}

/* ——— Hero ——— */
.hero-block {
  padding: 3rem 0 4rem;
  background: radial-gradient(ellipse 80% 60% at 70% 20%, rgba(124, 58, 237, 0.15), transparent),
    var(--bg-deep);
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.pill--dark {
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid rgba(96, 165, 250, 0.35);
  color: #bfdbfe;
}

.hero-title {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.hero-title__plain {
  display: block;
  color: var(--text);
}

.hero-title__grad {
  display: block;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-desc {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 34rem;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 26rem;
}

.hero-stat {
  text-align: left;
}

.hero-stat__value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.hero-stat__label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-visual__frame {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  background: url("/img/hero-visual.png") center/cover no-repeat;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

/* ——— Sections ——— */
.section {
  padding: 4rem 0;
}

.section--light {
  background: var(--white);
  color: var(--text-dark);
}

.section--dark {
  background: var(--bg-navy);
  color: var(--text);
}

.section--gradient {
  background: var(--grad-cta);
  color: var(--white);
}

.section-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
}

.section-title--dark {
  color: var(--text-dark);
}

.section-lead {
  margin: 0 auto 2.5rem;
  max-width: 36rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section-lead--dark {
  color: #5c6578;
}

/* ——— Intro quote ——— */
.intro-section .section-title {
  margin-bottom: 2rem;
}

.quote-card {
  position: relative;
  max-width: 44rem;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  background: #f4f0ff;
  border-radius: var(--radius);
  border: 1px solid #e9e3f5;
}

.quote-card__q {
  position: absolute;
  font-size: 4rem;
  line-height: 1;
  color: rgba(37, 99, 235, 0.12);
  font-family: Georgia, serif;
}

.quote-card__q:first-of-type {
  top: 0.5rem;
  left: 1rem;
}

.quote-card__q--br {
  bottom: 0.25rem;
  right: 1rem;
}

.quote-card__lead {
  margin: 0 0 1rem;
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-weight: 700;
  color: var(--text-dark);
  position: relative;
  z-index: 1;
}

.text-blue {
  color: var(--accent-blue);
  font-weight: 700;
}

.quote-card__body {
  margin: 0;
  color: #4b5563;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

/* ——— KPI cards ——— */
.kpi-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .kpi-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.kpi-card {
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  background: var(--bg-card-dark);
  border: 1px solid var(--border-light);
  text-align: center;
}

.kpi-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  position: relative;
}

.kpi-card--violet .kpi-card__icon {
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.35);
}

.kpi-card--violet .kpi-card__icon::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  border-right-color: transparent;
}

.kpi-card--magenta .kpi-card__icon {
  background: linear-gradient(135deg, #db2777, #be185d);
  box-shadow: 0 8px 20px rgba(219, 39, 119, 0.35);
}

.kpi-card--magenta .kpi-card__icon::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 700;
}

.kpi-card--green .kpi-card__icon {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35);
}

.kpi-card--green .kpi-card__icon::after {
  content: "$";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 700;
}

.kpi-card__value {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.kpi-card__label {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ——— Value band ——— */
.value-band {
  padding: 3.5rem 0;
  text-align: center;
}

.value-band__inner {
  max-width: 40rem;
  margin: 0 auto;
}

.pill--glass {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #e0e7ff;
}

.value-band__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
}

.value-band__accent {
  display: block;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.value-band__sub {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ——— SMB ——— */
.smb-section .section-title,
.smb-section .section-lead {
  text-align: center;
}

.smb-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
  margin-top: 1rem;
}

@media (min-width: 880px) {
  .smb-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.smb-list {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.smb-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.smb-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--grad-hero);
  flex-shrink: 0;
  position: relative;
  opacity: 0.95;
}

.smb-item__icon--1::after {
  content: "📉";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.smb-item__icon--2::after {
  content: "📞";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.smb-item__icon--3::after {
  content: "📈";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.smb-item__icon--4::after {
  content: "🏢";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.smb-item__icon--5::after {
  content: "📱";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.smb-item__title {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
}

.smb-item__text {
  margin: 0;
  color: #5c6578;
  font-size: 0.95rem;
}

.smb-visual {
  position: relative;
}

.smb-photo {
  aspect-ratio: 5/4;
  border-radius: var(--radius);
  background: url("/img/smb-photo.png") center/cover no-repeat;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.smb-float {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: var(--white);
  padding: 1rem 1.25rem;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.smb-float__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  margin-bottom: 0.25rem;
}

.smb-float__value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.smb-float__label {
  font-size: 0.8rem;
  color: #6b7280;
  font-weight: 600;
}

/* ——— Three cards ——— */
.cards3-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .cards3-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card-lite {
  padding: 1.75rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.06);
}

.card-lite h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.card-lite p {
  margin: 0;
  color: #5c6578;
  font-size: 0.95rem;
}

.card-lite__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #7c3aed, #6366f1);
  margin-bottom: 1rem;
  position: relative;
}

.card-lite__icon--1::after {
  content: "💡";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.card-lite__icon--2::after {
  content: "✈";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
}

.card-lite__icon--3::after {
  content: "⏱";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* ——— Demo / chat ——— */
.demo-inner {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
}

.demo-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

.demo-sub {
  margin: 0 0 2rem;
  opacity: 0.92;
  font-size: 1.05rem;
}

.chat-mock {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  text-align: left;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.chat-mock__head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  background: linear-gradient(90deg, #3b82f6, #7c3aed);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}

.chat-mock__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.chat-mock__title {
  flex: 1;
}

.chat-mock__online {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.95;
}

.live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.35);
}

.chat-mock__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: #f8fafc;
}

.bubble {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  max-width: 95%;
}

.bubble--ai {
  align-self: flex-start;
}

.bubble--user {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.bubble p {
  margin: 0;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  font-size: 0.9rem;
  line-height: 1.45;
}

.bubble--ai p {
  background: var(--white);
  border: 1px solid #e5e7eb;
  color: #1f2937;
}

.bubble--user p {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: var(--white);
}

.bubble__av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, #a78bfa, #6366f1);
}

.bubble__av--user {
  background: #e5e7eb;
}

.demo-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ——— Final CTA ——— */
.cta-final__inner {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}

.pill--light {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.cta-final__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
}

.cta-final__title em {
  font-style: normal;
  color: #fde047;
  text-shadow: 0 0 24px rgba(253, 224, 71, 0.35);
}

.cta-final__sub {
  margin: 0 0 1.5rem;
  opacity: 0.95;
}

.cta-checklist {
  list-style: none;
  margin: 0 auto 2rem;
  padding: 0;
  max-width: 28rem;
  text-align: left;
  display: grid;
  gap: 0.65rem;
}

.cta-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
}

.check-ic {
  color: #93c5fd;
  font-weight: 700;
  flex-shrink: 0;
}

.cta-bigstats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.big-stat {
  text-align: center;
}

.big-stat__value {
  display: block;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
}

.big-stat__label {
  font-size: 0.75rem;
  opacity: 0.85;
  line-height: 1.3;
}

/* ——— Form ——— */
.form-status {
  min-height: 1.5rem;
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
}

.form-status[data-variant="ok"] {
  color: #bbf7d0;
}

.form-status[data-variant="err"] {
  color: #fecaca;
}

.lead-form--inline .lead-form__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.input-glass {
  flex: 1 1 12rem;
  min-width: 0;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
}

.input-glass::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.field--light label {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
}

.field--light a {
  color: #bfdbfe;
}

.field--checkbox {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  justify-content: center;
  max-width: 28rem;
  margin: 0 auto 1rem;
  text-align: left;
}

.field--checkbox input {
  margin-top: 0.3rem;
  flex-shrink: 0;
}

.field--checkbox label {
  margin: 0;
}

.lead-form__extra {
  max-width: 28rem;
  margin: 0 auto 1rem;
  text-align: left;
  display: grid;
  gap: 0.5rem;
}

.lead-form__extra label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

.lead-form__extra input,
.lead-form__extra textarea {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.2);
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
}

.lead-form__extra textarea {
  resize: vertical;
  min-height: 4.5rem;
}

.form__turnstile {
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
}

/* ——— Footer ——— */
.site-footer--big {
  background: #030508;
  color: var(--text-muted);
  padding: 3rem 0 0;
  margin-top: 0;
  border-top: 1px solid var(--border-light);
}

.footer-top {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  padding-bottom: 2.5rem;
}

@media (min-width: 900px) {
  .footer-top {
    grid-template-columns: 1.4fr repeat(4, 1fr);
  }
}

.footer-brand p {
  margin: 0.75rem 0 1rem;
  font-size: 0.9rem;
  line-height: 1.55;
  max-width: 22rem;
}

.footer-bottom--privacy {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-privacy-logo {
  display: inline-block;
  line-height: 0;
}

.footer-privacy-logo img {
  height: 28px;
  width: auto;
  display: block;
}

.footer-privacy-logo:hover {
  opacity: 0.88;
}

.social-row {
  display: flex;
  gap: 0.75rem;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  text-decoration: none;
  font-size: 0.85rem;
}

.social-row a:hover {
  background: rgba(255, 255, 255, 0.14);
}

.foot-col h3 {
  margin: 0 0 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
}

.foot-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.foot-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.foot-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border-light);
  font-size: 0.85rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-bottom__links a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-bottom__links a:hover {
  color: var(--white);
}

/* ——— Voice Agent Modal ——— */
.voice-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.voice-modal[hidden] { display: none; }

.voice-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
}

.voice-modal__panel {
  position: relative;
  width: min(480px, 94vw);
  background: #050508;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.8), 0 0 80px rgba(124, 58, 237, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.voice-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.voice-modal__brand {
  font-weight: 700;
  font-size: 1rem;
  background: linear-gradient(90deg, #c4b5fd, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.voice-modal__close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
}

.voice-modal__close:hover { color: #fff; }

.voice-modal__body {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: #050508;
}

.voice-modal__canvas {
  display: block;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
}

.voice-modal__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.voice-modal__mic {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(74, 222, 128, 0.4);
  background: rgba(74, 222, 128, 0.1);
  color: #4ade80;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  font-family: inherit;
}

.voice-modal__mic:hover {
  background: rgba(74, 222, 128, 0.2);
  border-color: rgba(74, 222, 128, 0.6);
}

.voice-modal__mic--muted {
  border-color: rgba(239, 68, 68, 0.4);
  background: rgba(239, 68, 68, 0.1);
  color: #f87171;
}

.voice-modal__mic-icon::before {
  content: "\1F399";
  font-size: 1.25rem;
}

.voice-modal__mic--muted .voice-modal__mic-icon::before {
  content: "\1F507";
}

.voice-modal__end {
  padding: 0.65rem 1.5rem;
  border-radius: 10px;
  border: 1px solid rgba(239, 68, 68, 0.3);
  background: rgba(239, 68, 68, 0.1);
  color: #f87171;
  font-weight: 600;
  font-family: inherit;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}

.voice-modal__end:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.5);
}

.help-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: #111827;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  z-index: 55;
  border: 1px solid #374151;
}

.help-fab:hover {
  background: #1f2937;
  color: var(--white);
}

/* ——— Legal ——— */
.legal-wrap {
  padding-top: 2rem;
  min-height: 50vh;
}

.legal {
  padding-bottom: 3rem;
}

.legal-block h2 {
  font-size: 1.15rem;
  margin: 2rem 0 0.5rem;
  color: var(--text-dark);
}

.legal-block p {
  margin: 0;
  color: #4b5563;
}

.legal h1 {
  color: var(--text-dark);
  margin-top: 0.5rem;
}

.legal a {
  color: var(--accent-blue);
}

@media (max-width: 720px) {
  .header-nav {
    width: 100%;
    order: 3;
    margin-left: 0;
    justify-content: flex-start;
  }

  .btn--header {
    width: 100%;
    order: 4;
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .cta-bigstats {
    grid-template-columns: 1fr;
  }
}
