/* ============================================
   AJS ADVOCACIA - ESTILOS GLOBAIS
   Site de Dominância Orgânica
   ============================================ */

/* --- VARIAVEIS --- */
:root {
  --ink: #0a0a0f;
  --paper: #f5f0e8;
  --gold: #c9a84c;
  --gold-light: #e8c96e;
  --crimson: #8b1a1a;
  --slate: #2a2d3e;
  --blue: #1a3a5c;
}

/* --- RESET --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--paper);
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* --- TOPBAR --- */
.topbar {
  background: var(--gold);
  color: var(--ink);
  text-align: center;
  padding: 10px 24px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* --- NAV --- */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  position: sticky;
  top: 0;
  background: rgba(10,10,15,0.97);
  backdrop-filter: blur(12px);
  z-index: 100;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--gold);
  font-style: italic;
  text-decoration: none;
}

.nav-logo span {
  color: var(--paper);
  font-style: normal;
  font-size: 13px;
  display: block;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: 'DM Mono', monospace;
  margin-top: 2px;
}

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 10px 28px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}

.nav-cta:hover { background: var(--gold); color: var(--ink); }

/* --- HERO --- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 70% at 70% 50%, rgba(139,26,26,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,168,76,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
  position: relative;
  z-index: 2;
}

.hero-tag {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-tag::before { content: ''; width: 32px; height: 1px; background: var(--gold); }

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 4.5vw, 64px);
  line-height: 1.1;
  font-weight: 900;
  margin-bottom: 32px;
}

.hero-headline em { font-style: italic; color: var(--gold); }
.hero-headline .line-red { color: var(--crimson); }

.hero-sub {
  font-size: 20px;
  color: rgba(245,240,232,0.7);
  max-width: 480px;
  margin-bottom: 48px;
  line-height: 1.65;
  font-weight: 300;
}

.hero-cta-group { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  position: relative;
  z-index: 2;
}

/* --- BOTOES --- */
.btn-primary {
  background: var(--gold);
  color: var(--ink);
  padding: 16px 40px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-primary:hover { 
  background: var(--gold-light); 
  transform: translateY(-2px); 
  box-shadow: 0 12px 40px rgba(201,168,76,0.3); 
}

.btn-ghost {
  background: transparent;
  color: var(--paper);
  padding: 16px 32px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(245,240,232,0.25);
  transition: all 0.3s;
}

.btn-ghost:hover { border-color: var(--paper); background: rgba(245,240,232,0.05); }

/* --- VERDICT CARD --- */
.verdict-card {
  background: rgba(245,240,232,0.04);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 48px 40px;
  max-width: 400px;
  width: 100%;
  position: relative;
}

.verdict-card::before {
  content: '§';
  position: absolute;
  top: -30px;
  right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 100px;
  color: rgba(201,168,76,0.08);
  line-height: 1;
}

.verdict-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.verdict-stat {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 8px;
}

.verdict-stat span { color: var(--gold); }

.verdict-desc {
  font-size: 15px;
  color: rgba(245,240,232,0.55);
  line-height: 1.5;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding-bottom: 32px;
}

.verdict-items { display: flex; flex-direction: column; gap: 14px; }

.verdict-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(245,240,232,0.65);
}

.verdict-item::before { content: '→'; color: var(--gold); font-family: 'DM Mono', monospace; }

/* --- ALERT SECTION --- */
.alert-section {
  background: var(--crimson);
  padding: 60px 80px;
  position: relative;
  overflow: hidden;
}

.alert-section::before {
  content: attr(data-bg-text);
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 160px;
  font-weight: 900;
  color: rgba(255,255,255,0.05);
  white-space: nowrap;
}

.alert-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
}

.alert-icon { font-family: 'Playfair Display', serif; font-size: 80px; color: rgba(255,255,255,0.9); }

.alert-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.alert-text p { font-size: 18px; color: rgba(255,255,255,0.85); max-width: 700px; line-height: 1.6; }

/* --- SECTIONS --- */
.section { padding: 120px 80px; max-width: 1300px; margin: 0 auto; }

.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-label::after { content: ''; flex: 1; max-width: 60px; height: 1px; background: var(--gold); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
}

.section-title em { font-style: italic; color: var(--gold); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

.body-text { font-size: 18px; color: rgba(245,240,232,0.72); line-height: 1.75; }
.body-text + .body-text { margin-top: 20px; }
.body-text strong { color: var(--paper); font-weight: 600; }

.divider { width: 100%; height: 1px; background: linear-gradient(to right, transparent, rgba(201,168,76,0.3), transparent); }

/* --- FRAUD GRID --- */
.fraud-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 80px;
  background: rgba(201,168,76,0.15);
}

.fraud-item {
  background: var(--ink);
  padding: 48px 36px;
  position: relative;
}

.fraud-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--crimson), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.fraud-item:hover::before { opacity: 1; }

.fraud-number {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 20px;
}

.fraud-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.25;
}

.fraud-text { font-size: 15px; color: rgba(245,240,232,0.55); line-height: 1.6; }

/* --- KEYPOINT SECTION --- */
.keypoint-section {
  background: rgba(245,240,232,0.03);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 120px 80px;
}

.keypoint-inner { max-width: 1200px; margin: 0 auto; }
.keypoint-header { margin-bottom: 80px; max-width: 700px; }

.keypoint-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}

.keypoint-title em { font-style: italic; color: var(--gold); }
.keypoint-sub { font-size: 18px; color: rgba(245,240,232,0.6); line-height: 1.6; }

/* --- PILLARS --- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(201,168,76,0.15);
}

.pillar {
  background: var(--ink);
  padding: 48px 36px;
  position: relative;
}

.pillar-num {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 900;
  color: rgba(201,168,76,0.08);
  line-height: 1;
}

.pillar-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 28px;
}

.pillar-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.pillar-text { font-size: 15px; color: rgba(245,240,232,0.55); line-height: 1.65; }
.pillar-text strong { color: var(--paper); }

/* --- THE KEY BOX --- */
.the-key {
  margin-top: 80px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 48px 56px;
  align-items: start;
}

.the-key-icon {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  color: var(--gold);
  line-height: 1;
}

.the-key-content { max-width: 700px; }

.the-key-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.the-key-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.the-key-text { font-size: 16px; color: rgba(245,240,232,0.7); line-height: 1.7; }
.the-key-text strong { color: var(--paper); }

/* --- STEPS --- */
.steps-section { padding: 100px 80px; max-width: 1300px; margin: 0 auto; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
}

.step {
  padding: 40px 32px;
  border-right: 1px solid rgba(201,168,76,0.2);
}

.step:last-child { border-right: none; }

.step-num {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}

.step-text { font-size: 14px; color: rgba(245,240,232,0.5); line-height: 1.6; }

/* --- WHO SECTION --- */
.who-section {
  background: rgba(245,240,232,0.03);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 100px 80px;
}

.who-inner { max-width: 1200px; margin: 0 auto; }
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 60px; }

.check-list { display: flex; flex-direction: column; gap: 16px; }

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  border: 1px solid rgba(201,168,76,0.15);
  transition: border-color 0.3s;
}

.check-item:hover { border-color: rgba(201,168,76,0.4); }

.check-mark {
  width: 28px;
  height: 28px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--gold);
}

.check-text { font-size: 16px; color: rgba(245,240,232,0.75); line-height: 1.55; }
.check-text strong { display: block; color: var(--paper); font-size: 15px; margin-bottom: 4px; }

/* --- TESTIMONIALS --- */
.testimonials { padding: 100px 80px; max-width: 1300px; margin: 0 auto; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.testi-card { border: 1px solid rgba(201,168,76,0.15); padding: 36px 28px; position: relative; }

.testi-quote {
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  line-height: 0.5;
  color: rgba(201,168,76,0.2);
  margin-bottom: 20px;
}

.testi-text { font-size: 16px; color: rgba(245,240,232,0.7); line-height: 1.65; font-style: italic; margin-bottom: 28px; }
.testi-author { display: flex; align-items: center; gap: 12px; }

.testi-avatar {
  width: 40px;
  height: 40px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--gold);
}

.testi-name { font-size: 14px; color: var(--paper); font-weight: 600; }
.testi-role { font-family: 'DM Mono', monospace; font-size: 10px; color: rgba(245,240,232,0.4); letter-spacing: 0.1em; }

.result-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--blue);
  color: #fff;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  text-transform: uppercase;
}

/* --- CTA SECTION --- */
.cta-section {
  background: linear-gradient(135deg, var(--slate) 0%, #1a1208 100%);
  border-top: 1px solid rgba(201,168,76,0.3);
  padding: 120px 80px;
  text-align: center;
}

.cta-inner { max-width: 800px; margin: 0 auto; }

.cta-pretitle {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}

.cta-title em { color: var(--gold); font-style: italic; }
.cta-text { font-size: 19px; color: rgba(245,240,232,0.65); margin-bottom: 48px; line-height: 1.65; font-weight: 300; }

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #25D366;
  color: #fff;
  padding: 20px 48px;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}

.whatsapp-btn:hover { background: #1fb358; transform: translateY(-3px); box-shadow: 0 16px 48px rgba(37,211,102,0.3); }
.whatsapp-icon { width: 22px; height: 22px; fill: white; }

.cta-note {
  margin-top: 24px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(245,240,232,0.3);
  text-transform: uppercase;
}

/* --- FOOTER --- */
footer {
  background: #050508;
  padding: 48px 80px;
  border-top: 1px solid rgba(201,168,76,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--gold); font-style: italic; text-decoration: none; }
.footer-text { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.1em; color: rgba(245,240,232,0.25); text-transform: uppercase; }
.footer-disclaimer { font-size: 12px; color: rgba(245,240,232,0.2); max-width: 600px; line-height: 1.5; }

/* --- INFO BOX (usado em algumas paginas) --- */
.info-section {
  background: var(--blue);
  padding: 80px;
  margin-top: 80px;
}

.info-inner { max-width: 1000px; margin: 0 auto; }

.info-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 24px;
}

.info-text { font-size: 18px; color: rgba(255,255,255,0.8); line-height: 1.7; }
.info-text strong { color: #fff; }

/* --- ANIMACOES --- */
@keyframes fadeUp { 
  from { opacity: 0; transform: translateY(30px); } 
  to { opacity: 1; transform: translateY(0); } 
}

.hero-left > * { animation: fadeUp 0.8s ease forwards; opacity: 0; }
.hero-left > *:nth-child(1) { animation-delay: 0.1s; }
.hero-left > *:nth-child(2) { animation-delay: 0.25s; }
.hero-left > *:nth-child(3) { animation-delay: 0.4s; }
.hero-left > *:nth-child(4) { animation-delay: 0.55s; }
.hero-right { animation: fadeUp 1s ease 0.5s forwards; opacity: 0; }

/* ============================================
   RESPONSIVO
   ============================================ */

@media (max-width: 1024px) {
  nav { padding: 20px 32px; }
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 80px 40px; }
  .section, .steps-section, .testimonials { padding: 80px 40px; }
  .two-col, .who-grid { grid-template-columns: 1fr; gap: 40px; }
  .fraud-grid, .pillars { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid .step:nth-child(2) { border-right: none; }
  .testi-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .keypoint-section, .who-section, .alert-section, .cta-section { padding: 80px 40px; }
  .info-section { padding: 60px 40px; }
  footer { padding: 40px; flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  nav { padding: 16px 20px; }
  .hero-left, .section, .steps-section, .testimonials { padding: 60px 24px; }
  .fraud-grid, .pillars, .steps-grid { grid-template-columns: 1fr; }
  .steps-grid .step { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.2); }
  .the-key { grid-template-columns: 1fr; padding: 40px 32px; }
  .the-key-icon { display: none; }
  .alert-inner { grid-template-columns: 1fr; gap: 20px; }
  .alert-icon { font-size: 48px; }
  .keypoint-section, .who-section, .alert-section, .cta-section { padding: 60px 24px; }
  .info-section { padding: 48px 24px; }
  footer { padding: 32px 24px; }
}

/* ============================================
   INTERLINKING SEO
   ============================================ */

.related-section {
  background: rgba(245,240,232,0.03);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 80px;
}

.related-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.related-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--paper);
}

.related-title em {
  color: var(--gold);
  font-style: italic;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.related-card {
  background: var(--ink);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 28px 24px;
  transition: all 0.3s;
}

.related-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.related-tag {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.related-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.related-card h4 a {
  color: var(--paper);
  text-decoration: none;
  transition: color 0.3s;
}

.related-card h4 a:hover {
  color: var(--gold);
}

.related-card p {
  font-size: 14px;
  color: rgba(245,240,232,0.55);
  line-height: 1.55;
  margin-bottom: 16px;
}

.related-link {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 0.3s;
}

.related-link:hover {
  opacity: 0.7;
}

@media (max-width: 1024px) {
  .related-section { padding: 60px 40px; }
  .related-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .related-section { padding: 48px 24px; }
  .related-grid { grid-template-columns: 1fr; }
}

/* ============================================
   ASSISTENTE VIRTUAL — CTA
   ============================================ */

.ai-cta-section {
  background: linear-gradient(160deg, #0f1420 0%, #1a1208 60%, #0a0a0f 100%);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  padding: 100px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ai-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.ai-cta-inner { max-width: 720px; margin: 0 auto; position: relative; }

.ai-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 9px 22px;
  border-radius: 100px;
  margin-bottom: 36px;
}

.ai-cta-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: ai-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

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

.ai-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 900;
  color: var(--paper);
  line-height: 1.12;
  margin-bottom: 20px;
}

.ai-cta-title em { color: var(--gold); font-style: italic; }

.ai-cta-sub {
  font-size: 19px;
  color: rgba(245,240,232,0.58);
  line-height: 1.68;
  font-weight: 300;
  margin: 0 auto 36px;
  max-width: 580px;
}

.ai-cta-features {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.ai-cta-feat {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(245,240,232,0.5);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ai-cta-feat-check { color: var(--gold); font-size: 15px; font-weight: 700; }

.ai-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: var(--gold);
  color: var(--ink);
  padding: 19px 52px;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s;
}

.ai-cta-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; flex-shrink: 0; }

.ai-cta-btn:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(201,168,76,0.22);
}

.ai-cta-nudge {
  margin-top: 24px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: rgba(245,240,232,0.38);
  letter-spacing: 0.04em;
}

.ai-cta-nudge a {
  color: rgba(201,168,76,0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.ai-cta-nudge a:hover { color: var(--gold); }

@media (max-width: 1024px) { .ai-cta-section { padding: 80px 40px; } }
@media (max-width: 640px) {
  .ai-cta-section { padding: 64px 24px; }
  .ai-cta-features { gap: 14px; flex-direction: column; align-items: center; }
  .ai-cta-btn { width: 100%; justify-content: center; }
}
