/* ============================================================
   EOD Soluções Inteligentes — DESIGN SYSTEM
   Dark + azul moderno, simples, chamativo
   ============================================================ */

:root {
  /* Backgrounds */
  --bg:         #0a0f1c;
  --bg-card:    #0f1626;
  --bg-elev:    #131c30;
  --bg-hover:   #1a2540;

  /* Texto */
  --fg:         #f1f5f9;
  --fg-muted:   #94a3b8;
  --fg-subtle:  #64748b;
  --fg-dim:     #475569;

  /* Brand (azul personalizado — mais saturado, menos "Tailwind default") */
  --brand:      #4f7df0;
  --brand-hi:   #6b95f5;
  --brand-dim:  #3257c4;
  --brand-glow: rgba(79, 125, 240, 0.20);
  --brand-deep: #2a3f7a;

  /* Bordas */
  --border:     rgba(148, 163, 184, 0.12);
  --border-hi:  rgba(148, 163, 184, 0.22);

  /* Tipografia */
  --font:       'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:  'JetBrains Mono', monospace;

  /* Spacing */
  --max:        1200px;
  --gutter:     1.5rem;
  --section:    6rem;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-muted);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 200ms; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; appearance: none; -webkit-appearance: none; }
input, textarea { font: inherit; color: inherit; }
::selection { background: var(--brand); color: var(--fg); }

/* Container */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

/* Eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-hi);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.eyebrow::before {
  content: '';
  width: 1.5rem;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
}

/* Sections */
.section { padding: var(--section) 0; }
.section--border { border-top: 1px solid var(--border); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 15, 28, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 4rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  color: var(--fg);
}
.brand img { height: 32px; width: auto; }
.brand-name {
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

.nav { display: flex; align-items: center; gap: 2rem; }
.nav a {
  font-size: 0.88rem;
  color: var(--fg-muted);
  font-weight: 500;
}
.nav a:hover { color: var(--fg); }

/* Mobile menu button */
.menu-btn {
  display: none;
  width: 2.5rem; height: 2.5rem;
  align-items: center; justify-content: center;
  color: var(--fg);
  border-radius: 8px;
}
.menu-btn:hover { background: var(--bg-elev); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 4rem 0 0 0;
  z-index: 49;
  background: var(--bg);
  padding: 2rem var(--gutter);
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid var(--border);
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  font-size: 1.1rem;
  color: var(--fg);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

@media (max-width: 768px) {
  .nav { display: none; }
  .menu-btn { display: flex; }
  main { padding-bottom: 80px; }
  .float-wa { bottom: 1rem; right: 1rem; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75rem 1.4rem;
  border-radius: 8px;
  transition: all 200ms ease;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn svg { width: 1rem; height: 1rem; }

.btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 8px 24px -8px var(--brand-glow);
}
.btn--primary:hover {
  background: var(--brand-hi);
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset, 0 12px 28px -8px var(--brand-glow);
}

.btn--ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--border-hi);
}
.btn--ghost:hover {
  border-color: var(--brand);
  background: var(--bg-elev);
}

.btn--lg { padding: 0.9rem 1.8rem; font-size: 0.95rem; }
.btn--xl { padding: 1.05rem 2rem; font-size: 1rem; }

.btn--whatsapp {
  background: #25d366;
  color: #fff;
}
.btn--whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-1px);
}

/* Float WhatsApp */
.float-wa {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px -4px rgba(37, 211, 102, 0.4);
  transition: transform 200ms;
}
.float-wa:hover { transform: scale(1.08); }
.float-wa svg { width: 28px; height: 28px; fill: #fff; }

/* ============================================================
   HERO (assimétrico no desktop pra fugir do "center stack" AI-slop)
   ============================================================ */
.hero {
  padding: 7rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(circle, var(--brand-glow) 0%, transparent 70%);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}
.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 4rem;
  }
}

.hero__copy {
  display: grid;
  gap: 1.5rem;
  text-align: center;
}
@media (min-width: 900px) {
  .hero__copy { text-align: left; }
}

.hero__title {
  font-size: clamp(2.2rem, 5vw + 0.5rem, 4rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--fg);
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-hi) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__lead {
  font-size: clamp(1rem, 1.2vw + 0.3rem, 1.2rem);
  line-height: 1.55;
  color: var(--fg-muted);
  max-width: 38rem;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .hero__lead { margin: 0; }
}

.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
@media (min-width: 900px) {
  .hero__ctas { justify-content: flex-start; }
}

/* Hero visual lateral (mockup chat) */
.hero__visual {
  position: relative;
  display: none;
}
@media (min-width: 900px) {
  .hero__visual { display: block; }
}
.hero__visual-card {
  background: var(--bg-card);
  border: 1px solid var(--border-hi);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 24px 60px -20px var(--brand-glow), 0 1px 0 var(--border) inset;
  transform: rotate(-1.5deg);
  transition: transform 300ms ease;
}
.hero__visual-card:hover { transform: rotate(0deg) translateY(-4px); }
.hero__visual-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand) 0%, transparent 50%);
  z-index: -1;
  opacity: 0.3;
}

.hero__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.82rem;
  color: var(--fg-subtle);
  margin-top: 1rem;
  flex-wrap: wrap;
}
.hero__meta-item { display: inline-flex; align-items: center; gap: 0.4rem; }
.hero__meta-item svg { width: 0.9rem; height: 0.9rem; color: var(--brand-hi); }

/* ============================================================
   LOGOS / SOCIAL PROOF
   ============================================================ */
.logos {
  padding: 2rem 0 4rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.logos__label {
  font-size: 0.75rem;
  color: var(--fg-subtle);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.logos__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  opacity: 0.5;
}
.logos__row span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio {
  /* container */
}
.portfolio__header {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 4rem;
  display: grid;
  gap: 0.75rem;
}
.portfolio {
  /* container for portfolio section */
}
.portfolio__title {
  font-size: clamp(1.6rem, 3vw + 0.3rem, 2.4rem);
  line-height: 1.15;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.portfolio__sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

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

.proj {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 250ms, transform 250ms ease;
}
.proj:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
}

.proj__thumb {
  background: var(--bg-elev);
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
}

.proj__body {
  padding: 1.4rem 1.5rem 1.6rem;
  display: grid;
  gap: 0.4rem;
}
.proj__tag {
  font-size: 0.7rem;
  color: var(--brand-hi);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.proj__name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.3;
}
.proj__desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ============================================================
   MOCKUPS (HTML/CSS nativos que parecem produtos reais)
   ============================================================ */

/* --- Site institucional mockup --- */
.mock-site {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  color: #0a0f1c;
}
.mock-site__bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.9rem;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}
.mock-site__dot {
  width: 8px; height: 8px; border-radius: 50%;
}
.mock-site__dot--r { background: #ff5f57; }
.mock-site__dot--y { background: #febc2e; }
.mock-site__dot--g { background: #28c840; }
.mock-site__url {
  margin-left: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: #64748b;
  background: #fff;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  border: 1px solid #e2e8f0;
  flex: 1;
  text-align: center;
}
.mock-site__body { padding: 1.2rem 1.4rem; flex: 1; display: flex; flex-direction: column; gap: 0.6rem; }
.mock-site__brand {
  display: flex; align-items: center; gap: 0.3rem;
  font-weight: 700; font-size: 0.7rem; color: #0f172a;
}
.mock-site__brand-mark {
  width: 14px; height: 14px; border-radius: 4px;
  background: linear-gradient(135deg, #3b82f6, #1e40af);
}
.mock-site__h1 {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.15;
  color: #0a0f1c;
  margin-top: 0.3rem;
}
.mock-site__sub {
  font-size: 0.6rem; color: #64748b; line-height: 1.4;
}
.mock-site__cta {
  align-self: flex-start;
  font-size: 0.6rem;
  font-weight: 600;
  color: #fff;
  background: #3b82f6;
  padding: 0.3rem 0.7rem;
  border-radius: 5px;
  margin-top: 0.3rem;
}
.mock-site__cards {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 0.4rem;
  margin-top: 0.6rem;
}
.mock-site__card {
  height: 2rem;
  background: #f1f5f9;
  border-radius: 4px;
  border: 1px solid #e2e8f0;
}

/* --- Dashboard mockup --- */
.mock-dash {
  height: 100%;
  display: flex;
  background: #0a0f1c;
  color: #f1f5f9;
  font-size: 0.6rem;
}
.mock-dash__side {
  width: 30%;
  background: #0f1626;
  border-right: 1px solid #1a2540;
  padding: 0.7rem 0.5rem;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.mock-dash__logo {
  display: flex; align-items: center; gap: 0.3rem;
  font-weight: 600;
  color: #f1f5f9;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #1a2540;
}
.mock-dash__logo-mark {
  width: 12px; height: 12px; border-radius: 3px;
  background: #3b82f6;
}
.mock-dash__nav-item {
  display: flex; align-items: center; gap: 0.3rem;
  padding: 0.25rem 0.4rem;
  border-radius: 4px;
  color: #94a3b8;
}
.mock-dash__nav-item--active {
  background: #1a2540;
  color: #f1f5f9;
}
.mock-dash__nav-dot {
  width: 6px; height: 6px; border-radius: 2px;
  background: #3b82f6;
}
.mock-dash__main {
  flex: 1;
  padding: 0.7rem;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.mock-dash__top {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.6rem;
}
.mock-dash__title { font-weight: 600; color: #f1f5f9; font-size: 0.7rem; }
.mock-dash__crumb { font-size: 0.55rem; color: #64748b; }
.mock-dash__kpis {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0.3rem;
}
.mock-dash__kpi {
  background: #0f1626;
  border: 1px solid #1a2540;
  border-radius: 5px;
  padding: 0.4rem;
  display: flex; flex-direction: column; gap: 0.1rem;
}
.mock-dash__kpi-label { font-size: 0.5rem; color: #94a3b8; }
.mock-dash__kpi-value { font-size: 0.85rem; font-weight: 700; color: #f1f5f9; }
.mock-dash__kpi-delta { font-size: 0.5rem; color: #22c55e; }
.mock-dash__chart {
  flex: 1;
  background: #0f1626;
  border: 1px solid #1a2540;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}
.mock-dash__chart svg { width: 100%; height: 100%; }
.mock-dash__chart-overlay {
  position: absolute; bottom: 0.4rem; right: 0.4rem;
  font-size: 0.5rem; color: #64748b;
  background: rgba(10,15,28,0.6);
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
}

/* --- Chat / Atendimento mockup --- */
.mock-chat {
  height: 100%;
  display: flex;
  background: #efeae2;
  color: #111;
  font-size: 0.6rem;
}
.mock-chat__side {
  width: 35%;
  background: #fff;
  border-right: 1px solid #e5e7eb;
  padding: 0.5rem 0.3rem;
  display: flex; flex-direction: column; gap: 0.3rem;
}
.mock-chat__side-header {
  font-size: 0.65rem; font-weight: 600;
  color: #111; padding: 0.3rem 0.4rem;
}
.mock-chat__conv {
  display: flex; gap: 0.3rem; align-items: center;
  padding: 0.3rem 0.4rem;
  border-radius: 6px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}
.mock-chat__conv-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #22c55e;
}
.mock-chat__conv-name { font-weight: 500; color: #111; flex: 1; }
.mock-chat__conv-time { color: #6b7280; font-size: 0.5rem; }
.mock-chat__conv-msg {
  font-size: 0.5rem; color: #6b7280;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.mock-chat__main {
  flex: 1;
  background: #efeae2;
  background-image: radial-gradient(circle at 1px 1px, rgba(0,0,0,0.04) 1px, transparent 0);
  background-size: 6px 6px;
  padding: 0.6rem;
  display: flex; flex-direction: column; gap: 0.3rem;
}
.mock-chat__header {
  display: flex; align-items: center; gap: 0.4rem;
  padding-bottom: 0.3rem;
  background: #efeae2;
}
.mock-chat__avatar {
  width: 18px; height: 18px; border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  display: grid; place-items: center;
  color: #fff; font-weight: 600; font-size: 0.5rem;
}
.mock-chat__name { font-weight: 600; color: #111; font-size: 0.65rem; }
.mock-chat__status { font-size: 0.5rem; color: #22c55e; }
.mock-chat__bubble {
  max-width: 75%;
  padding: 0.3rem 0.5rem;
  border-radius: 8px;
  font-size: 0.6rem;
  line-height: 1.35;
}
.mock-chat__bubble--in {
  background: #fff;
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}
.mock-chat__bubble--out {
  background: #d9fdd3;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

/* --- E-commerce / LP mockup --- */
.mock-ecom {
  height: 100%;
  display: flex;
  background: #fff;
  color: #0a0f1c;
}
.mock-ecom__side {
  width: 32%;
  background: #fafafa;
  border-right: 1px solid #e5e7eb;
  padding: 0.7rem 0.5rem;
  display: flex; flex-direction: column; gap: 0.4rem;
}
.mock-ecom__logo {
  font-weight: 700;
  font-size: 0.7rem;
  color: #0a0f1c;
  margin-bottom: 0.4rem;
}
.mock-ecom__cat {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.55rem;
  color: #374151;
  padding: 0.2rem 0.3rem;
  border-radius: 4px;
}
.mock-ecom__cat--active { background: #eff6ff; color: #1e40af; font-weight: 600; }
.mock-ecom__cat-dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.mock-ecom__main { flex: 1; padding: 0.7rem; display: flex; flex-direction: column; gap: 0.4rem; }
.mock-ecom__search {
  height: 1.2rem;
  background: #f3f4f6;
  border-radius: 5px;
  border: 1px solid #e5e7eb;
  display: flex; align-items: center; padding: 0 0.4rem;
  font-size: 0.5rem;
  color: #9ca3af;
}
.mock-ecom__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem; flex: 1; }
.mock-ecom__item {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 5px;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.mock-ecom__item-img {
  height: 1.5rem;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}
.mock-ecom__item-info { padding: 0.2rem 0.3rem; display: flex; flex-direction: column; gap: 0.1rem; }
.mock-ecom__item-name { font-size: 0.5rem; font-weight: 500; color: #111; }
.mock-ecom__item-price { font-size: 0.55rem; font-weight: 700; color: #0a0f1c; }

/* ============================================================
   SERVIÇOS (complemento)
   ============================================================ */
.services__header {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 3rem;
  display: grid;
  gap: 0.75rem;
}
.services__title {
  font-size: clamp(1.5rem, 2.5vw + 0.3rem, 2rem);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.services__sub {
  font-size: 1rem;
  color: var(--fg-muted);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.services__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  transition: border-color 200ms;
  align-items: start;
}
.services__item:hover { border-color: var(--border-hi); }
.services__item-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-hi);
  letter-spacing: 0.05em;
  padding-top: 0.1rem;
}
.services__item-content { display: grid; gap: 0.4rem; }
.services__item-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--fg);
}
.services__item-desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ============================================================
   COMO FUNCIONA
   ============================================================ */
.how {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.how__step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  display: grid;
  gap: 0.5rem;
  position: relative;
}
.how__num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-hi);
  letter-spacing: 0.05em;
}
.how__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.3;
}
.how__text {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  max-width: 44rem;
  margin: 0 auto;
}
.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.1rem 1.3rem;
  text-align: left;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--fg);
  gap: 1rem;
  transition: color 200ms;
}
.faq__btn:hover { color: var(--brand-hi); }
.faq__btn:focus-visible {
  outline: 2px solid var(--brand-hi);
  outline-offset: 4px;
  border-radius: 6px;
}
.faq__icon {
  width: 22px; height: 22px;
  flex-shrink: 0;
  color: var(--fg-muted);
  transition: transform 250ms;
}
.faq__btn[aria-expanded="true"] .faq__icon { transform: rotate(45deg); color: var(--brand-hi); }
.faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 300ms ease;
}
.faq__panel.is-open { grid-template-rows: 1fr; }
.faq__panel-inner { overflow: hidden; }
.faq__panel-content {
  padding: 0 1.3rem 1.2rem;
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta {
  text-align: center;
}
.cta__inner {
  max-width: 36rem;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elev) 100%);
  border: 1px solid var(--border-hi);
  border-radius: 20px;
  padding: 3.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.cta__inner::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 200px;
  background: radial-gradient(ellipse at center, var(--brand-glow) 0%, transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}
.cta__title {
  position: relative;
  font-size: clamp(1.5rem, 2.5vw + 0.3rem, 2.2rem);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.cta__lead {
  position: relative;
  font-size: 1rem;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.cta__ctas {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.cta__footnote {
  position: relative;
  font-size: 0.8rem;
  color: var(--fg-subtle);
  margin-top: 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}
.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.site-footer__contact {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--fg-muted);
  font-style: normal;
}
.site-footer__contact a {
  color: var(--fg-muted);
  transition: color 200ms;
}
.site-footer__contact a:hover { color: var(--brand-hi); }
.site-footer__copy {
  font-size: 0.82rem;
  color: var(--fg-subtle);
}
.site-footer__socials {
  display: flex;
  gap: 0.5rem;
}
.site-footer__socials a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fg-muted);
  transition: all 200ms;
}
.site-footer__socials a:hover {
  background: var(--bg-elev);
  border-color: var(--brand);
  color: var(--brand-hi);
}
.site-footer__socials svg { width: 16px; height: 16px; }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}