/* Konverti — identidade premium: azul #0e1841, destaque verde #0ea449 */
:root {
  --primary: #0e1841;
  --primary-light: #162050;
  --accent: #0ea449;
  --accent-hover: #0ea449;
  --accent-glow: rgba(14, 164, 73, 0.15);
  --text: #1a1f36;
  --text-muted: #6b7280;
  --bg: #ffffff;
  --bg-alt: #f8f9fc;
  --card: #ffffff;
  --border: #e8ecf2;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(14, 24, 65, 0.04);
  --shadow: 0 4px 16px rgba(14, 24, 65, 0.06);
  --shadow-lg: 0 16px 48px rgba(14, 24, 65, 0.1);
  --shadow-glow: 0 0 40px rgba(14, 164, 73, 0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container { max-width: 72rem; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 768px) { .container { padding: 0 2.5rem; } }

/* ═══════════════════ HEADER ═══════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--primary);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.logo { display: inline-flex; align-items: center; text-decoration: none; color: var(--white); }
.logo img { height: 28px; width: auto; display: block; filter: brightness(0) invert(1); }
.logo:hover img { opacity: 0.9; }
@media (min-width: 768px) { .logo img { height: 32px; } }

.nav { display: none; }
@media (min-width: 1024px) {
  .nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-shrink: 0;
  }
  .nav a { color: rgba(255,255,255,0.85); text-decoration: none; font-weight: 500; font-size: 0.8125rem; white-space: nowrap; transition: color var(--transition); }
  .nav a:hover { color: var(--accent); }
  .nav .btn { padding: 0.4rem 0.9rem; font-size: 0.8125rem; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  letter-spacing: 0.01em;
}
.btn-accent {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(14, 164, 73, 0.25);
}
.btn-accent:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14, 164, 73, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.menu-toggle { background: none; border: none; color: var(--white); padding: 0.5rem; cursor: pointer; }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

.mobile-menu {
  position: fixed;
  top: 4rem;
  right: 0;
  bottom: 0;
  width: 16rem;
  background: var(--primary);
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  z-index: 40;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { display: block; color: rgba(255,255,255,0.9); padding: 0.75rem 0; text-decoration: none; font-weight: 500; }
.mobile-menu .btn { width: 100%; margin-top: 1rem; }

/* ═══════════════════ HERO ═══════════════════ */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(165deg, #0e1841 0%, #131d4a 50%, #0e1841 100%);
  color: var(--white);
  padding: 6rem 1rem 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-compact { min-height: auto; padding: 5.5rem 1rem 3.5rem; }
.hero-with-video .hero-video-bg { position: absolute; inset: 0; z-index: 0; }
.hero-with-video .hero-video-bg iframe {
  position: absolute;
  top: 50%; left: 50%;
  width: 100vw; height: 56.25vw;
  min-height: 100%; min-width: 177.78vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-with-video .hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(165deg, rgba(14, 24, 65, 0.88) 0%, rgba(19, 29, 74, 0.85) 50%, rgba(14, 24, 65, 0.88) 100%);
  pointer-events: none;
}
.hero-with-video .container { position: relative; z-index: 2; }

.hero h1 {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1.25rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.03em;
}
.hero h1 .accent { color: var(--accent); }
@media (min-width: 768px) { .hero h1 { font-size: 2.5rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 3rem; } }

.hero-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 1.25rem; }
.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.06); padding: 0.5rem 1rem;
  border-radius: 9999px; font-size: 0.8125rem;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
}
.badge svg { flex-shrink: 0; color: var(--accent); }
.hero-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; align-items: center; margin-top: 1.5rem; }
.hero-note { font-size: 0.8125rem; opacity: 0.7; margin-top: 0.75rem; }

.hero-result-visual {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem;
  margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-result-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm); padding: 0.75rem 1.5rem; text-align: center;
  backdrop-filter: blur(4px);
}
.hero-result-item strong { display: block; color: var(--accent); font-size: 0.9375rem; }
.hero-result-label { font-size: 0.75rem; opacity: 0.7; }

/* ═══════════════════ SECTIONS — GLOBAL ═══════════════════ */
.k-section { padding: 5rem 0; position: relative; }
.k-section-dark { background: var(--primary); color: var(--white); }
.k-section-alt { background: var(--bg-alt); }
@media (min-width: 992px) { .k-section { padding: 6.5rem 0; } }

.k-eyebrow {
  display: block; text-align: center;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--accent); margin-bottom: 0.75rem;
}
.k-heading {
  font-size: 1.75rem; font-weight: 700; line-height: 1.2;
  letter-spacing: -0.03em; text-align: center;
  margin: 0 auto 1rem; max-width: 44rem;
}
.k-heading span { color: var(--accent); }
.k-section-dark .k-heading { color: var(--white); }
@media (min-width: 768px) { .k-heading { font-size: 2.25rem; } }
@media (min-width: 1024px) { .k-heading { font-size: 2.625rem; } }

.k-subheading {
  text-align: center; color: var(--text-muted);
  max-width: 36rem; margin: 0 auto 3rem;
  font-size: 1.0625rem; line-height: 1.65;
}
.k-section-dark .k-subheading { color: rgba(255,255,255,0.7); }

/* ═══════════════════ SEÇÃO 2 — PROBLEMA (dark) ═══════════════════ */
.funil-figure { text-align: center; margin: 0 0 2rem; }
.funil-figure img {
  width: 100%; height: auto; display: inline-block;
  border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow-lg);
}
.glass-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  max-width: 36rem; margin: 0 auto;
}
.glass-card .lead-text { font-size: 1.0625rem; font-weight: 600; color: var(--white); margin: 0 0 0.5rem; line-height: 1.55; }
.glass-card .sub-text { font-size: 0.9375rem; color: rgba(255,255,255,0.65); margin: 0; line-height: 1.6; }

/* ═══════════════════ SEÇÃO 3 — DIFERENCIAL ═══════════════════ */
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(14, 164, 73, 0.3));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 3.5rem; height: 3.5rem;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 12px rgba(14, 24, 65, 0.15);
}
.feature-icon svg { color: var(--accent); }
.feature-title { font-size: 1.125rem; font-weight: 700; color: var(--primary); margin: 0 0 0.75rem; letter-spacing: -0.02em; }
.feature-list { margin: 0; padding: 0; list-style: none; }
.feature-list li {
  display: flex; align-items: baseline; gap: 0.625rem;
  font-size: 0.9375rem; color: var(--text-muted); line-height: 1.6;
  margin-bottom: 0.5rem;
}
.feature-list li::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
  margin-top: 0.5rem;
}

.highlight-card {
  background: linear-gradient(135deg, rgba(14, 164, 73, 0.08) 0%, rgba(14, 164, 73, 0.02) 100%);
  border: 1px solid rgba(14, 164, 73, 0.2);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
}
.highlight-card h4 { font-size: 1rem; font-weight: 700; color: var(--primary); margin: 0 0 0.5rem; }
.highlight-card p { font-size: 0.9375rem; color: var(--text-muted); margin: 0; line-height: 1.65; }

.section-quote {
  text-align: center; font-weight: 600; color: var(--primary);
  font-size: 1.0625rem; margin: 2rem 0 0; line-height: 1.55;
  padding: 0; border: 0;
}

/* ═══════════════════ SEÇÃO 4 — PROCESSO (3 pilares) ═══════════════════ */
.pillar-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.pillar-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pillar-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem;
  background: var(--primary);
  color: var(--accent);
  font-size: 0.875rem; font-weight: 700;
  border-radius: 50%;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 12px rgba(14, 24, 65, 0.15);
}
.pillar-title { font-size: 1.0625rem; font-weight: 700; color: var(--primary); margin: 0 0 0.75rem; letter-spacing: -0.02em; }
.pillar-text { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.65; margin: 0 0 1.25rem; }
.pillar-gain {
  background: linear-gradient(90deg, rgba(14, 164, 73, 0.1), rgba(14, 164, 73, 0.03));
  border-left: 3px solid var(--accent);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.875rem; font-weight: 600;
  color: var(--primary); line-height: 1.55;
}

/* ═══════════════════ SEÇÃO 5 — IMPLEMENTAÇÃO (timeline) ═══════════════════ */
.timeline-step {
  text-align: center;
  position: relative;
  height: 100%;
}
.timeline-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 3.5rem; height: 3.5rem;
  background: var(--primary);
  color: var(--accent);
  font-size: 1.25rem; font-weight: 700;
  border-radius: 50%;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 24px rgba(14, 24, 65, 0.15);
  position: relative; z-index: 2;
}
.timeline-step h3 { font-size: 1.0625rem; font-weight: 700; color: var(--primary); margin: 0 0 0.35rem; }
.timeline-step p { font-size: 0.9375rem; color: var(--text-muted); margin: 0; }
@media (min-width: 992px) {
  .timeline-connector { position: relative; }
  .timeline-connector::after {
    content: '';
    position: absolute; top: 1.75rem;
    left: calc(50% + 2rem); right: calc(-50% + 2rem);
    height: 2px;
    background: linear-gradient(90deg, var(--accent), rgba(14, 164, 73, 0.2));
    z-index: 1;
  }
}
.k-microcopy {
  text-align: center; font-size: 0.9375rem; color: var(--text-muted);
  margin: 2.5rem auto 0; max-width: 30rem; line-height: 1.6;
}

/* ═══════════════════ SEÇÃO 6 — WHATSAPP (dark) ═══════════════════ */
.whatsapp-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(14, 164, 73, 0.15);
  border-radius: var(--radius);
  padding: 2.5rem;
  max-width: 38rem; margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow-glow);
}
.whatsapp-card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 4rem; height: 4rem;
  background: rgba(14, 164, 73, 0.12);
  border-radius: 50%;
  margin-bottom: 1.25rem;
}
.whatsapp-card-icon svg { width: 1.75rem; height: 1.75rem; color: var(--accent); }
.whatsapp-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--white); margin: 0 0 0.75rem; }
.whatsapp-card p { font-size: 0.9375rem; color: rgba(255,255,255,0.75); margin: 0; line-height: 1.65; }
.k-section-dark .k-microcopy { color: rgba(255,255,255,0.6); }

/* ═══════════════════ SEÇÃO 7 — FOUNDERS ═══════════════════ */
.founder-card-v2 {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.founder-card-v2:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.founder-img {
  width: 100%; aspect-ratio: 4/3;
  overflow: hidden; background: var(--bg-alt);
}
.founder-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; transition: transform var(--transition); }
.founder-card-v2:hover .founder-img img { transform: scale(1.04); }
.founder-body { padding: 1.5rem 1.75rem; }
.founder-body h3 { font-size: 1.125rem; font-weight: 700; color: var(--primary); margin: 0 0 0.5rem; letter-spacing: -0.01em; }
.founder-body p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; margin: 0 0 1rem; }
.founder-tags-v2 { display: flex; flex-wrap: wrap; gap: 0.375rem; }
.founder-tags-v2 span {
  background: var(--bg-alt);
  color: var(--primary);
  font-size: 0.6875rem; font-weight: 600;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  border: 1px solid var(--border);
}

/* ═══════════════════ SEÇÃO 8 — CTA FINAL ═══════════════════ */
.cta-section {
  background: var(--primary);
  color: var(--white);
  padding: 5rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(14, 164, 73, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 { font-size: 1.75rem; margin: 0 0 0.75rem; font-weight: 700; letter-spacing: -0.03em; }
.cta-section h2 .primary { color: var(--accent); }
@media (min-width: 768px) { .cta-section h2 { font-size: 2.5rem; } }
.cta-section p { opacity: 0.85; margin: 0 0 1.5rem; font-size: 1.0625rem; }
.cta-section .btn { padding: 1rem 2.5rem; font-size: 1rem; }

/* ═══════════════════ FOOTER ═══════════════════ */
.footer {
  background: var(--primary);
  color: var(--white);
  padding: 2.5rem 1rem;
  text-align: center;
}
.footer-with-video { position: relative; overflow: hidden; background: transparent; }
.footer-with-video .footer-video-bg { position: absolute; inset: 0; z-index: 0; }
.footer-with-video .footer-video-bg iframe {
  position: absolute; top: 50%; left: 50%;
  width: 100vw; height: 56.25vw;
  min-height: 100%; min-width: 177.78vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.footer-with-video .footer-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(165deg, rgba(14, 24, 65, 0.9) 0%, rgba(19, 29, 74, 0.88) 50%, rgba(14, 24, 65, 0.9) 100%);
  pointer-events: none;
}
.footer-with-video .container { position: relative; z-index: 2; }
.footer .logo img { filter: brightness(0) invert(1); }
.footer p { margin: 0.4rem 0 0; opacity: 0.85; font-size: 0.9375rem; }
.footer-legal-links {
  display: flex; justify-content: center; gap: 1.5rem; margin-top: 1rem;
}
.footer-legal-links a {
  color: rgba(255,255,255,0.65); font-size: 0.8125rem; text-decoration: none;
  transition: color 0.2s;
}
.footer-legal-links a:hover { color: #fff; text-decoration: underline; }
.footer small {
  display: block; margin-top: 1rem; padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.75rem; opacity: 0.5;
}

/* Modal antigo removido — substituído pelo modal Amanda */

/* ═══════════════════ FOUNDERS HORIZONTAL ═══════════════════ */
.founder-row { margin-bottom: 2rem; }
.founder-row:last-child { margin-bottom: 0; }
.founder-card-h {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.founder-card-h:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.founder-img-h {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-alt);
  flex-shrink: 0;
}
.founder-img-h img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform var(--transition);
}
.founder-card-h:hover .founder-img-h img { transform: scale(1.03); }
@media (min-width: 768px) {
  .founder-card-h {
    flex-direction: row;
    align-items: stretch;
  }
  .founder-img-h {
    width: 40%;
    min-width: 280px;
    aspect-ratio: auto;
  }
  .founder-card-h .founder-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.5rem;
    flex: 1;
  }
  .founder-card-h-reverse {
    flex-direction: row-reverse;
  }
}
@media (min-width: 1024px) {
  .founder-img-h { width: 38%; min-width: 320px; }
}

/* WhatsApp float removido — substituído pela Amanda */

/* ═══════════════════ STICKY CTA MOBILE ═══════════════════ */
.sticky-cta-mobile {
  position: fixed; bottom: 0; left: 0; right: 0;
  padding: 0.875rem 1rem;
  background: var(--primary);
  border-top: 1px solid rgba(255,255,255,0.08);
  z-index: 45;
  display: flex; justify-content: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
}
.sticky-cta-mobile.visible { transform: translateY(0); }
.sticky-cta-mobile .btn { width: 100%; max-width: 22rem; padding: 0.875rem; }
@media (min-width: 768px) { .sticky-cta-mobile { display: none; } }
@media (max-width: 767px) { .amanda-float.above-sticky { bottom: 5.5rem; } }

/* ═══════════════════ AMANDA FLOAT ═══════════════════ */
.amanda-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  transition: bottom 0.3s ease;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.amanda-avatar-btn {
  position: relative;
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 50%;
  border: 3.5px solid #fff;
  padding: 0;
  cursor: pointer;
  background: none;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(14, 24, 65, 0.25);
  transition: all var(--transition);
  margin-top: -12px;
  z-index: 2;
}
.amanda-avatar-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 40px rgba(14, 24, 65, 0.3);
}
.amanda-avatar-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.amanda-bubble {
  background: #ffffff;
  color: var(--text);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.875rem 1.25rem;
  border-radius: 18px 18px 4px 18px;
  max-width: 240px;
  line-height: 1.5;
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
  position: relative;
  opacity: 0;
  transform: translateY(10px) scale(0.9);
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.amanda-bubble::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 18px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 4px solid transparent;
  border-top: 10px solid #ffffff;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,0.06));
}
.amanda-bubble.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* ═══════════════════ AMANDA MODAL ═══════════════════ */
.amanda-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(14, 24, 65, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 110;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.amanda-modal-backdrop.open {
  display: flex;
  animation: amanda-fade-in 0.25s ease;
}
@keyframes amanda-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.amanda-modal {
  background: var(--bg);
  border-radius: 20px;
  max-width: 32rem;
  width: calc(100% - 2rem);
  box-shadow: 0 32px 80px rgba(14, 24, 65, 0.25);
  border: 1px solid var(--border);
  overflow: hidden;
  animation: amanda-slide-up 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media (min-width: 768px) {
  .amanda-modal { max-width: 36rem; }
}
@keyframes amanda-slide-up {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.amanda-modal-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1.25rem 1.5rem;
  background: var(--primary);
  color: var(--white);
}
.amanda-modal-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
}
.amanda-modal-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.amanda-modal-header h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}
.amanda-modal-header p {
  margin: 0.15rem 0 0;
  font-size: 0.75rem;
  opacity: 0.7;
}
.amanda-modal-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.75rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  margin-left: auto;
  transition: color var(--transition);
}
.amanda-modal-close:hover { color: #fff; }

.amanda-modal-body {
  padding: 1.5rem;
}
.amanda-field {
  margin-bottom: 1.125rem;
}
.amanda-field label {
  display: block;
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--text);
  margin-bottom: 0.375rem;
}
.amanda-field input,
.amanda-field select {
  width: 100%;
  padding: 0.7rem 0.875rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  background: var(--bg);
  color: var(--text);
  transition: all var(--transition);
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
}
.amanda-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%236b7280'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
}
.amanda-field input:focus,
.amanda-field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.amanda-modal-body .btn {
  width: 100%;
  padding: 0.875rem;
  margin-top: 0.5rem;
  font-size: 0.9375rem;
}

/* ═══════════════════ BOOTSTRAP OVERRIDES ═══════════════════ */
.bg-light { background-color: var(--bg-alt) !important; }
.text-accent { color: var(--accent) !important; }
.border-accent { border-color: var(--accent) !important; }
.text-primary { color: var(--primary) !important; }
