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

html,
body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #f3f6ff;
  color: #0f172a;
  line-height: 1.5;
}

.top-banner {
  position: sticky;
  top: 0;
  z-index: 40;
  background: radial-gradient(circle at top left, rgba(96, 165, 250, 0.4), transparent 55%), radial-gradient(circle at top right, rgba(244, 114, 182, 0.5), transparent 60%), #020617;
  border-bottom: 1px solid rgba(15, 23, 42, 0.9);
}

.top-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.55rem 1.5rem;
  font-size: 0.82rem;
  color: #e5e7eb;
}

.top-banner-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.18rem 0.6rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(129, 140, 248, 0.7);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #bfdbfe;
}

.top-banner-message {
  min-height: 1.2em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.top-banner-message.banner-message-visible {
  opacity: 1;
  transform: translateY(0);
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero {
  background: radial-gradient(circle at top left, #eef2ff, #e0ebff), radial-gradient(circle at bottom right, #fee2f2, #f9fafb);
  background-size: 180% 180%;
  animation: hero-gradient-move 18s ease infinite;
  padding: 4rem 0 3.5rem;
}

@keyframes hero-gradient-move {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 60%;
  }
  100% {
    background-position: 0% 0%;
  }
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3.2fr) minmax(0, 3fr);
  gap: 2.5rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.08);
  color: #1d4ed8;
  font-size: 0.75rem;
  border: 1px solid rgba(129, 140, 248, 0.5);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1rem;
  color: #4b5563;
  max-width: 38rem;
  margin-bottom: 1.5rem;
}

.hero-benefits {
  list-style: none;
  margin-top: 1.2rem;
  margin-bottom: 1.5rem;
  color: #4b5563;
  font-size: 0.95rem;
}

.hero-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
}

.hero-benefits li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
  margin-top: 0.45rem;
}

.hero-note {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: #6b7280;
}

.hero-card {
  background: #ffffff;
  border-radius: 1.25rem;
  border: 1px solid rgba(129, 140, 248, 0.35);
  box-shadow: 0 22px 55px rgba(148, 163, 184, 0.45);
  overflow: hidden;
}

.hero-card-header {
  padding: 0.9rem 1.15rem;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.1), rgba(129, 140, 248, 0.16));
  border-bottom: 1px solid rgba(191, 219, 254, 0.9);
  font-size: 0.8rem;
  color: #1f2937;
}

.hero-card-body {
  padding: 1.1rem 1.15rem 1.25rem;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.kpi {
  padding: 0.75rem 0.7rem;
  border-radius: 0.9rem;
  background: radial-gradient(circle at top, rgba(129, 140, 248, 0.18), #ffffff);
  border: 1px solid rgba(191, 219, 254, 0.9);
}

.kpi-label {
  font-size: 0.7rem;
  color: #6b7280;
}

.kpi-value {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 0.15rem;
}

.kpi-tag {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.7rem;
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  background: rgba(239, 246, 255, 0.95);
  border: 1px solid rgba(191, 219, 254, 0.9);
}

.hero-card-text {
  font-size: 0.85rem;
  color: #4b5563;
}

.hero-left {
  max-width: 32rem;
}

.hero-right {
  display: grid;
  gap: 1rem;
}

.hero-mockup picture,
.hero-mockup img {
  width: 100%;
  border-radius: 1.25rem;
  box-shadow: 0 24px 60px rgba(148, 163, 184, 0.6);
}

.hero-logos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  align-items: center;
  margin: 0.85rem 0 1rem;
}

.hero-logos-grid img {
  height: 42px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(148, 163, 184, 0.45));
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.hero-logos-grid img:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 8px 18px rgba(148, 163, 184, 0.65);
  opacity: 1;
}

.hero-icons-label {
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 0.75rem;
}

.hero-logos-grid {
  opacity: 0;
  transform: translateY(6px);
  animation: hero-logos-entrance 0.9s ease-out forwards;
}

@keyframes hero-logos-entrance {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, color 0.12s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, #4f46e5, #6366f1, #ec4899);
  color: #f9fafb;
  box-shadow: 0 14px 30px rgba(79, 70, 229, 0.45);
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 18px 40px rgba(79, 70, 229, 0.7);
}

.btn-outline {
  border-color: rgba(129, 140, 248, 0.6);
  color: #4f46e5;
  background: #ffffff;
}

.btn-outline:hover {
  background: rgba(239, 246, 255, 1);
  transform: translateY(-1px);
}

.btn-block {
  width: 100%;
}

.section {
  padding: 3.5rem 0;
  background: #f3f6ff;
}

.section-animated {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-animated.section-visible {
  opacity: 1;
  transform: translateY(0);
}

.section:nth-of-type(even) {
  background: #ffffff;
}

.section-dark {
  background: #020617;
}

.section-highlight {
  background: linear-gradient(180deg, #edf2ff 0%, #ffffff 60%);
}

.section h2 {
  font-size: 1.7rem;
  margin-bottom: 0.75rem;
}

.section-lead {
  color: #4b5563;
  max-width: 40rem;
  margin-bottom: 1.5rem;
}

.section p {
  color: #4b5563;
  margin-bottom: 0.75rem;
  font-size: 0.96rem;
}

.section-note {
  margin-top: 1.25rem;
  color: #6b7280;
  font-size: 0.9rem;
}

.section-dark h2 {
  color: #e5e7eb;
}

.list {
  list-style: none;
  margin: 1rem 0 1.5rem;
  color: #4b5563;
  font-size: 0.95rem;
}

.list li {
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: 0.45rem;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #6366f1;
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.channel-card {
  padding: 0.8rem 0.9rem;
  border-radius: 0.8rem;
  background: #ffffff;
  border: 1px solid rgba(191, 219, 254, 0.9);
  font-size: 0.9rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.stat-card {
  padding: 1.1rem 1rem;
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.stat-label {
  font-size: 0.8rem;
  color: #cbd5f5;
}

.stat-value {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0.2rem 0 0.5rem;
}

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

.step-card {
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  background: #6366f1;
  color: #f9fafb;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.step-card h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.feature-card {
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.45);
}

.feature-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.segments-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.segment-card {
  padding: 0.9rem 1rem;
  border-radius: 0.9rem;
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 0.98rem;
  color: #e5e7eb;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.35);
  letter-spacing: 0.01em;
  font-weight: 500;
  transition: transform 0.14s ease, box-shadow 0.14s ease, background 0.14s ease;
}

.segment-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.45);
  background: rgba(15, 23, 42, 1);
}

.section-search {
  background: #ffffff;
}

.search-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 2.25rem;
  align-items: center;
}

.search-text h2 {
  font-size: 1.8rem;
  margin-bottom: 0.85rem;
}

.search-image img {
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.25);
  object-fit: cover;
}

.appear-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: center;
}

.appear-mockup picture,
.appear-mockup img {
  width: 100%;
  border-radius: 1.25rem;
  box-shadow: 0 24px 60px rgba(148, 163, 184, 0.6);
}

.appear-logos {
  margin-top: 2.25rem;
}

.appear-logos-title {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
}

.appear-logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.appear-logos-row img {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(148, 163, 184, 0.45));
}

.faq-list details {
  border-radius: 0.9rem;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.45);
  padding: 0.8rem 0.9rem;
  margin-bottom: 0.6rem;
  color: #e5e7eb;
}

.faq-list summary {
  cursor: pointer;
  font-size: 0.95rem;
  list-style: none;
  font-weight: 500;
  color: #e5e7eb;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin-top: 0.45rem;
  color: #cbd5f5;
  font-size: 0.92rem;
}

.lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.lead-form {
  padding: 1.25rem 1.25rem 1.35rem;
  border-radius: 1.1rem;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.5);
  display: grid;
  gap: 0.85rem;
}

.lead-form label {
  display: grid;
  gap: 0.25rem;
  font-size: 0.85rem;
  color: #e5e7eb;
}

.lead-form input,
.lead-form select {
  padding: 0.55rem 0.7rem;
  border-radius: 0.55rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: #020617;
  color: #f9fafb;
  font-size: 0.9rem;
}

.lead-form input::placeholder {
  color: #6b7280;
}

.lead-form select {
  appearance: none;
}

.lead-form input:focus-visible,
.lead-form select:focus-visible {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.8);
}

.form-note {
  margin-top: 0.25rem;
  font-size: 0.8rem;
  color: #9ca3af;
}

.footer {
  border-top: 1px solid rgba(15, 23, 42, 1);
  background: #020617;
  padding: 1.5rem 0 2rem;
}

.footer-content {
  text-align: center;
  font-size: 0.85rem;
  color: #9ca3af;
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    max-width: 380px;
    margin: 0 auto;
  }

  .hero-left {
    max-width: 100%;
    margin-bottom: 1.75rem;
  }

  .stats-grid,
  .steps-grid,
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lead-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .appear-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .search-grid {
    grid-template-columns: minmax(0, 1fr);
  }


  .hero-logos-grid img {
    height: 34px;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 3.25rem;
  }

  .hero h1 {
    font-size: 1.85rem;
  }

  .channels-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .stats-grid,
  .steps-grid,
  .features-grid,
  .segments-grid {
    grid-template-columns: minmax(0, 1fr);
  }

   .kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .container {
    padding: 0 1.1rem;
  }

  .top-banner-inner {
    padding-inline: 1.1rem;
    font-size: 0.78rem;
  }

  .top-banner-message {
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-benefits {
    font-size: 0.9rem;
  }

  .kpi-grid {
    gap: 0.6rem;
  }

  .hero-card {
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.4);
  }

  .lead-form {
    padding: 1.1rem 1.05rem 1.2rem;
  }
}
