/* ===== Variables ===== */
:root {
  --bg-deep: #0a0a2a;
  --bg-mid: #0d0930;
  --bg-card: rgba(18, 14, 45, 0.6);
  --border: rgba(139, 92, 246, 0.2);
  --border-hover: rgba(184, 150, 255, 0.4);
  --text: #f5f3ff;
  --text-muted: rgba(203, 195, 227, 0.85);
  --text-soft: rgba(203, 195, 227, 0.65);
  --accent: #8b5cf6;
  --accent-light: #a78bfa;
  --highlight: #b896ff;
  --glow: rgba(139, 92, 246, 0.35);
  --radius: 12px;
  --radius-sm: 8px;
  --space: 1.5rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.25s ease;
}

/* ===== Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-deep);
  background-image:
    radial-gradient(ellipse 70% 60% at 20% 30%, rgba(45, 30, 80, 0.5), transparent 55%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(40, 25, 75, 0.45), transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(55, 35, 90, 0.25), transparent 60%),
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(88, 28, 135, 0.2), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(67, 56, 202, 0.08), transparent),
    radial-gradient(ellipse 60% 40% at 0% 80%, rgba(88, 28, 135, 0.08), transparent);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero {
  position: relative;
}

.particles-canvas {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* Bem maior que o texto: estende para os lados como no desenho em vermelho */
  width: 320%;
  height: 320%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: screen;
}

.hero__content > *:not(.particles-canvas) {
  position: relative;
  z-index: 1;
}

.hero__visual {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  body * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== Navigation ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space);
  padding: var(--space) var(--space-lg);
  background: rgba(10, 10, 42, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav__logo-img {
  display: block;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.nav__logo-accent {
  color: var(--highlight);
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}

.nav__links {
  display: flex;
  gap: 2rem;
}

.nav__links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color var(--transition);
}

.nav__links a:hover {
  color: var(--highlight);
}

.nav__cta {
  flex-shrink: 0;
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  cursor: pointer;
  position: relative;
}

.nav__toggle::before,
.nav__toggle::after {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform var(--transition);
}

.nav__toggle::before {
  top: 14px;
}

.nav__toggle::after {
  bottom: 14px;
}

.nav--open .nav__toggle::before {
  transform: translateY(6px) rotate(45deg);
}

.nav--open .nav__toggle::after {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav {
    padding: var(--space);
    flex-wrap: wrap;
  }

  .nav__right {
    margin-left: 0;
    width: 100%;
    order: 1;
  }

  .nav__links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: var(--space);
  }

  .nav--open .nav__links {
    display: flex;
  }

  .nav__cta {
    order: -1;
  }

  .nav__toggle {
    display: block;
    order: 2;
  }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.btn--primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 0 20px var(--glow);
}

.btn--primary:hover {
  background: var(--accent-light);
  box-shadow: 0 0 28px var(--glow);
}

.btn--secondary {
  background: transparent;
  color: var(--accent-light);
  border: 1px solid var(--border-hover);
}

.btn--secondary:hover {
  background: rgba(139, 92, 246, 0.12);
  border-color: var(--accent);
}

.btn--ghost {
  background: transparent;
  color: var(--accent-light);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: var(--border-hover);
}

.btn__icon {
  flex-shrink: 0;
  margin-left: 0.4em;
}

.btn--secondary .btn__icon {
  margin-left: 0;
  margin-right: 0.4em;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-lg);
  min-height: 85vh;
  overflow: visible;
}

.hero__content {
  position: relative;
  max-width: 50ch;
  overflow: visible;
}

.hero__preheadline {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
  white-space: nowrap;
}

.hero__headline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

.hero__headline-line1 {
  display: block;
  white-space: nowrap;
}

.hero__headline-line2 {
  display: block;
}

.hero__headline--accent {
  color: var(--highlight);
}

.hero__subheadline {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin: 0 0 2rem;
  max-width: 50ch;
  line-height: 1.5;
}

.hero__ctas {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1rem;
  align-items: center;
}

.hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 520px;
  gap: 1rem;
  width: 100%;
}

.hero__sample-wrap {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  width: 100%;
  max-width: 640px;
}

.hero__report-card {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 420px;
  padding: 0;
  background: rgba(18, 14, 45, 0.75);
  border: 1px solid var(--border-hover);
  border-radius: 14px;
  box-shadow: 0 0 50px var(--glow), 0 24px 48px rgba(0, 0, 0, 0.4);
  transition: box-shadow var(--transition), border-color var(--transition);
  backdrop-filter: blur(8px);
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero__report-card:hover {
  box-shadow: 0 0 60px var(--glow), 0 28px 56px rgba(0, 0, 0, 0.45);
  border-color: rgba(184, 150, 255, 0.35);
}

.hero__report-dots {
  display: flex;
  gap: 6px;
  margin-bottom: 0.5rem;
  padding: 0.75rem 0.75rem 0 0.75rem;
  flex-shrink: 0;
}

.hero__report-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.5);
}

.hero__report-dots span:nth-child(2) {
  background: rgba(167, 139, 250, 0.45);
}

.hero__report-dots span:nth-child(3) {
  background: rgba(184, 150, 255, 0.4);
}

/* Hero preview = same structure as report modal (box + iframe + bar), fixed on page; no inner frame */
.hero-preview-box {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 420px;
  background: var(--bg-card);
  border: none;
  border-radius: 0 0 14px 14px;
  overflow: hidden;
}

.hero-preview-iframe {
  display: block;
  width: 100%;
  flex: 1;
  min-height: 0;
  border: none;
  background: #fff;
}

.hero-preview-bar {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0.5rem 0.75rem;
  border-top: 1px solid var(--border);
  background: rgba(10, 10, 42, 0.6);
}

.hero-preview-bar .hero__report-full-btn {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}

.hero__report-line {
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  width: 100%;
}

.hero__report-line--short {
  width: 72%;
}

.hero__report-line--medium {
  width: 88%;
}

.hero__report-charts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 0.25rem 0;
}

.hero__report-chart {
  height: 64px;
  background: rgba(139, 92, 246, 0.15);
  border-radius: 8px;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.hero__report-charts--triple {
  grid-template-columns: repeat(3, 1fr);
  margin: 0.5rem 0;
}

.hero__report-chart--tall {
  height: 80px;
}

.hero__sample-label {
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
  width: 100%;
}

.hero__deck {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  width: 100%;
  margin: 0;
  justify-items: stretch;
  align-self: stretch;
}

.hero__deck-row2 {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  justify-items: stretch;
}

.hero__deck-btn {
  padding: 0.75rem 1rem;
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}

.hero__deck-btn:hover {
  border-color: var(--border-hover);
  color: var(--text);
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.2);
}

.hero__deck-btn.is-active {
  border-color: var(--accent);
  background: rgba(139, 92, 246, 0.15);
  color: var(--highlight);
  box-shadow: 0 0 16px var(--glow);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: var(--space-lg) var(--space);
  }

  .hero__content {
    max-width: none;
  }

  .hero__subheadline {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__ctas {
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero__visual {
    min-height: 320px;
  }

  .hero__report-card {
    min-width: 280px;
    min-height: 320px;
    max-width: 100%;
  }

  .hero__deck {
    max-width: 100%;
  }
}

/* ===== Section title ===== */
.section-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0 0 var(--space-xl);
  color: var(--text);
  max-width: 28ch;
  margin-left: auto;
  margin-right: auto;
}

/* ===== What You Get ===== */
.what-you-get {
  max-width: 1000px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-lg);
}

.what-you-get__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.what-you-get__block {
  text-align: center;
  padding: var(--space-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.what-you-get__block:hover {
  border-color: var(--border-hover);
  box-shadow: 0 0 24px rgba(139, 92, 246, 0.15);
}

.what-you-get__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  color: var(--accent-light);
}

.what-you-get__block p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
}

@media (max-width: 768px) {
  .what-you-get__grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Modules (What's Inside) ===== */
.modules {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-lg);
}

.modules .section-title {
  max-width: 28ch;
}

.section-title__highlight {
  color: var(--highlight);
}

.section-title--accent .section-title__highlight {
  color: var(--highlight);
}

.modules__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space);
  margin-bottom: var(--space-lg);
}

.modules__grid--3x2 {
  grid-template-columns: repeat(3, 1fr);
}

.module-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  will-change: transform;
}

.module-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 0 28px var(--glow);
  transform: translateY(4px);
}

.module-card__title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--text);
  transition: color var(--transition);
}

.module-card__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: var(--accent-light);
}

.module-card:hover .module-card__title {
  color: var(--highlight);
}

.module-card__promise {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
  line-height: 1.5;
}

.module-card__bullets {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  font-size: 0.8125rem;
  color: var(--text-soft);
  line-height: 1.6;
}

.module-card__bullets li {
  margin-bottom: 0.25rem;
}

.module-card__insights {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0;
}

.module-card__insight {
  font-size: 0.75rem;
  color: var(--text-soft);
  font-style: italic;
}

.module-card__actions {
  margin-top: auto;
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.module-card__btn {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
}

.module-card__btn-secondary {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  background: var(--bg-card);
  color: #fff;
  border: 1px solid rgba(184, 150, 255, 0.5);
  box-shadow: 0 0 16px rgba(139, 92, 246, 0.35);
  transition: box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.module-card__btn-secondary:hover {
  background: rgba(139, 92, 246, 0.15);
  color: #fff;
  border-color: var(--highlight);
  box-shadow: 0 0 24px var(--glow);
}

.module-card--more {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  border-style: dashed;
  border-color: var(--border);
  background: rgba(18, 14, 45, 0.35);
}

.module-card--more:hover {
  border-color: var(--border-hover);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
  transform: none;
}

.module-card__more-content {
  text-align: center;
  padding: 1rem;
}

.module-card__more-icon {
  display: block;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.module-card__more-text {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .modules__grid:not(.modules__grid--3x2) {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .modules__grid {
    grid-template-columns: 1fr;
  }

  .modules__grid.modules__grid--3x2 {
    grid-template-columns: 1fr;
  }
}

/* ===== How we deliver value ===== */
.value-delivery {
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
}

.value-delivery__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.value-delivery__subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin: 0 0 var(--space-xl);
}

.value-delivery__steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  position: relative;
  margin-bottom: var(--space-lg);
}

.value-delivery__steps::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 12%;
  right: 12%;
  height: 0;
  border-top: 1px dashed var(--border-hover);
  z-index: 0;
}

.value-delivery__step {
  flex: 1;
  max-width: 200px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.value-delivery__icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--accent-light);
  flex-shrink: 0;
}

.value-delivery__step:hover .value-delivery__icon-wrap {
  border-color: var(--border-hover);
  color: var(--highlight);
  box-shadow: 0 0 16px rgba(139, 92, 246, 0.2);
}

.value-delivery__icon {
  flex-shrink: 0;
}

.value-delivery__step-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.value-delivery__step-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
  text-align: center;
}

.value-delivery__footer {
  font-size: 0.9375rem;
  color: var(--text-soft);
  margin: 0;
}

@media (max-width: 900px) {
  .value-delivery__steps {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-lg);
  }

  .value-delivery__steps::before {
    display: none;
  }

  .value-delivery__step {
    flex: 0 0 45%;
    max-width: 200px;
  }
}

@media (max-width: 500px) {
  .value-delivery__step {
    flex: 0 0 100%;
    max-width: none;
  }
}

/* ===== Value strip ===== */
.value-strip {
  max-width: 640px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.value-strip__lead {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--highlight);
  margin: 0 0 0.5rem;
}

.value-strip__sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

.value-strip__disclaimer {
  font-size: 0.8125rem;
  color: var(--text-soft);
  margin: 0;
}

/* ===== Contact ===== */
.contact {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-lg);
}

.contact__intro {
  text-align: center;
  color: var(--text-muted);
  margin: 0 0 2rem;
}

.contact__intro strong {
  color: var(--highlight);
}

.contact__intro-accent {
  color: var(--highlight);
  font-weight: 600;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__form--grid {
  width: 100%;
}

.contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}

.contact__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact__field--full {
  grid-column: 1 / -1;
}

.contact__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
}

.contact__optional {
  font-weight: 400;
  color: var(--text-soft);
}

.contact__input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition);
}

.contact__input::placeholder {
  color: var(--text-soft);
}

.contact__input:focus {
  outline: none;
  border-color: var(--accent);
}

/* Estilos para intl-tel-input (seletor de país) */
.iti {
  width: 100%;
}

.iti__flag-container {
  position: absolute;
  top: 0;
  bottom: 0;
  right: auto;
  left: 0;
}

.iti__selected-flag {
  padding: 0 0.75rem;
  background: var(--bg-card);
  border-right: 1px solid var(--border);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.iti__selected-flag:hover {
  background: rgba(139, 92, 246, 0.1);
}

.iti__arrow {
  border-top-color: var(--text-muted);
  margin-left: 0.5rem;
}

.iti__country-list {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  max-height: 200px;
  z-index: 1000;
}

.iti__country {
  color: var(--text);
  padding: 0.5rem 0.75rem;
}

.iti__country:hover,
.iti__country.iti__highlight {
  background: rgba(139, 92, 246, 0.15);
}

.iti__country-name,
.iti__dial-code {
  color: var(--text);
}

#phone {
  padding-left: 3.5rem;
}

.contact__select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none' stroke='%23a78bfa' stroke-width='2'%3E%3Cpath d='M2 4 L6 8 L10 4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.contact__textarea {
  min-height: unset;
  height: 2.75rem;
  resize: none;
  line-height: 1.25;
  overflow: hidden;
}

.contact__submit {
  margin-top: 0.25rem;
  margin-left: auto;
  margin-right: auto;
  width: calc((100% - 2rem) / 3);
  min-width: 0;
  padding: 1rem;
}

@media (max-width: 720px) {
  .contact__row {
    grid-template-columns: 1fr;
  }
}

.contact__secondary {
  text-align: center;
  margin-top: 1.5rem;
}

.contact__link {
  color: var(--accent-light);
  text-decoration: none;
  font-weight: 500;
}

.contact__link:hover {
  color: var(--highlight);
  text-decoration: underline;
}

.contact__separator {
  color: var(--text-soft);
  margin: 0 0.5rem;
}

.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  padding: 1rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.9375rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: transform var(--transition), opacity var(--transition);
  z-index: 200;
}

.toast[data-visible="true"] {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ===== Footer ===== */
.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: var(--space-lg) var(--space);
  border-top: 1px solid var(--border);
}

.footer__copy {
  color: var(--text-soft);
  margin: 0;
  font-size: 0.875rem;
}

.footer__link {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.875rem;
}

.footer__link:hover {
  color: var(--text-muted);
}

/* ===== Report popup modal ===== */
.report-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.report-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.report-modal.is-open .report-modal__box {
  transform: scale(1);
  opacity: 1;
}

.report-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  cursor: pointer;
}

.report-modal__box {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1400px;
  height: 95vh;
  max-height: 95vh;
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius);
  box-shadow: 0 0 60px var(--glow), 0 24px 48px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transform: scale(0.96);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.report-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: color var(--transition), background var(--transition), border-color var(--transition);
}

.report-modal__close:hover {
  color: var(--text);
  background: rgba(0, 0, 0, 0.6);
  border-color: var(--border-hover);
}

.report-modal__iframe {
  display: block;
  width: 100%;
  flex: 1;
  min-height: 0;
  height: 100%;
  border: none;
  background: #fff;
}

.report-modal__bar {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--border);
  background: rgba(10, 10, 42, 0.6);
}

.report-modal__cta {
  flex-shrink: 0;
}

/* ===== Scroll-in animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}
