/* Global styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  color: #0f172a;
  background-color: #0b1120;
}

body {
  min-height: 100vh;
}

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

img {
  max-width: 100%;
  height: auto;
}

/* Layout */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

header {
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 10;
  background: radial-gradient(circle at top left, #020617 0, #020617 40%, #020617dd 100%);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #e5e7eb;
}

.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #38bdf8, #6366f1 40%, #a855f7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #0b1120;
  font-weight: 700;
}

.logo-sub {
  font-size: 0.75rem;
  color: #9ca3af;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
}

.nav-link {
  color: #9ca3af;
  padding: 0.2rem 0.4rem;
  border-radius: 999px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  font-size: 0.9rem;
  border-radius: 999px;
  transition: background-color 0.2s;
  user-select: none;
}

.lang-toggle:hover {
  background-color: rgba(148, 163, 184, 0.15);
}

.lang-option {
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  user-select: none;
}

.lang-option:hover {
  color: #e5e7eb;
  background-color: rgba(148, 163, 184, 0.1);
}

.lang-option.active {
  color: #ff9f43;
  font-weight: 600;
  background-color: rgba(255, 159, 67, 0.1);
}

.lang-divider {
  color: #4b5563;
}

.nav-link.active {
  color: #e5e7eb;
  background-color: rgba(148, 163, 184, 0.16);
}

.nav-cta {
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(129, 140, 248, 0.6);
  background: radial-gradient(circle at top left, #4f46e5, #0ea5e9);
  color: #e5e7eb;
  font-weight: 500;
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.35);
  font-size: 0.85rem;
}

main {
  flex: 1;
}

footer {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  padding: 1.5rem 0;
  color: #6b7280;
  font-size: 0.8rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* Hero */
.hero {
  padding: 3.5rem 0 2.5rem;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    align-items: center;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.15rem 0.6rem 0.15rem 0.2rem;
  border-radius: 999px;
  background-color: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: #e5e7eb;
  font-size: 0.7rem;
  margin-bottom: 0.9rem;
}

.eyebrow-pill {
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: radial-gradient(circle at top left, #38bdf8, #6366f1);
  color: #0b1120;
  font-weight: 600;
}

.hero-title {
  font-size: clamp(1.9rem, 3vw + 1.1rem, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #e5e7eb;
  margin-bottom: 0.75rem;
}

.hero-title span.highlight {
  background: linear-gradient(120deg, #38bdf8, #a855f7, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  color: #9ca3af;
  font-size: 0.98rem;
  max-width: 32rem;
  line-height: 1.6;
  margin-bottom: 1.4rem;
}

.btn-primary,
.btn-secondary {
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-primary {
  background: radial-gradient(circle at top left, #4f46e5, #0ea5e9);
  color: #e5e7eb;
  border: none;
  box-shadow: 0 14px 40px rgba(37, 99, 235, 0.45);
}

.btn-secondary {
  background-color: transparent;
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.7);
}

.hero-note {
  font-size: 0.78rem;
  color: #6b7280;
}

.hero-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  margin-bottom: 0.7rem;
}

.hero-input {
  flex: 1 1 220px;
  min-width: 0;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background-color: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  font-size: 0.9rem;
}

.hero-input::placeholder {
  color: #4b5563;
}

.hero-submit {
  white-space: nowrap;
}

.hero-extra {
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-extra-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
}

.hero-extra-label {
  color: #6b7280;
  min-width: 3rem;
}

.hero-extra-input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  border: 1px dashed rgba(75, 85, 99, 0.8);
  background-color: rgba(15, 23, 42, 0.7);
  color: #e5e7eb;
  font-size: 0.78rem;
}

.hero-extra-input::placeholder {
  color: #4b5563;
}

.social-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1rem;
}

.social-proof-text {
  font-size: 0.8rem;
  color: #9ca3af;
}

.hero-card {
  border-radius: 1.1rem;
  background: linear-gradient(180deg, #0e1a2b, #050816);
  border: none;
  padding: 1.3rem 1.2rem;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.55);
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.9rem;
}

.hero-chip {
  font-size: 0.72rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background-color: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.hero-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
}

.hero-platform-pill {
  font-size: 0.7rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background-color: rgba(15, 23, 42, 0.8);
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.hero-card-title {
  font-size: 0.9rem;
  color: #e5e7eb;
  margin-bottom: 0.4rem;
}

.hero-card-text {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-bottom: 0.8rem;
}

.hero-metrics {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.78rem;
  color: #6b7280;
  margin-top: 0.7rem;
}

.hero-metric strong {
  font-weight: 600;
  color: #e5e7eb;
  font-size: 0.9rem;
}

/* Sections */
.section {
  padding: 2.4rem 0;
}

.section-header {
  margin-bottom: 1.6rem;
}

.section-eyebrow {
  font-size: 0.75rem;
  color: #818cf8;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  margin-bottom: 0.3rem;
}

.section-title {
  font-size: 1.3rem;
  color: #e5e7eb;
  margin-bottom: 0.4rem;
}

.section-subtitle {
  font-size: 0.9rem;
  color: #9ca3af;
  max-width: 30rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill {
  font-size: 0.8rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: #e5e7eb;
  background-color: rgba(15, 23, 42, 0.8);
}

.cards-grid {
  display: grid;
  gap: 1.2rem;
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

.card-title {
  font-size: 0.95rem;
  color: #e5e7eb;
  margin-bottom: 0.3rem;
}

.card-text {
  font-size: 0.85rem;
  color: #9ca3af;
}

.tagline {
  font-size: 0.8rem;
  color: #6b7280;
}

/* Testimonials */
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(148, 163, 184, 0.6);
}

.testimonial-name {
  font-size: 0.9rem;
  color: #e5e7eb;
  font-weight: 500;
}

.testimonial-role {
  font-size: 0.78rem;
  color: #9ca3af;
}

/* How it works */
.how-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .how-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.how-step {
  border-radius: 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(15, 23, 42, 0.9);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.how-sample {
  margin-top: 0.3rem;
  padding: 0.7rem;
  border-radius: 0.6rem;
  background-color: rgba(15, 23, 42, 0.9);
  border: 1px dashed rgba(148, 163, 184, 0.7);
}

.how-label {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-bottom: 0.2rem;
}

.how-snippet {
  font-size: 0.8rem;
  color: #d1d5db;
  margin-bottom: 0.4rem;
}

.how-keywords {
  margin-top: 0.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.how-leads-stream {
  margin-top: 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.lead-chip {
  font-size: 0.78rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background-color: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
}

.lead-chip-positive {
  border-color: rgba(52, 211, 153, 0.75);
}

.lead-chip-neutral {
  border-style: dashed;
  color: #9ca3af;
}

/* Comparison */
.comparison-grid {
  display: grid;
  gap: 1.2rem;
}

@media (min-width: 768px) {
  .comparison-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Metrics */
.metrics-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .metrics-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.metric-card {
  padding: 1rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(15, 23, 42, 0.9);
  text-align: center;
}

.metric-value {
  font-size: 1.6rem;
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 0.2rem;
}

.metric-label {
  font-size: 0.8rem;
  color: #9ca3af;
}

/* Pricing */
.pricing-grid {
  display: grid;
  gap: 1.2rem;
}

@media (min-width: 900px) {
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.pricing-price {
  font-size: 1.4rem;
  color: #e5e7eb;
  font-weight: 600;
}

.pricing-price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: #9ca3af;
}

.pricing-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 0.3rem;
  font-size: 0.8rem;
  color: #9ca3af;
}

.pricing-list li::before {
  content: "• ";
}

.pricing-card .btn-primary,
.pricing-card .btn-secondary {
  justify-content: center;
  text-align: center;
}

/* FAQ */
.faq-grid {
  display: grid;
  gap: 1.2rem;
}

@media (min-width: 900px) {
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.98));
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 40;
}

.modal-backdrop.active {
  display: flex;
}

.modal {
  max-width: 520px;
  width: 100%;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.12), rgba(15, 23, 42, 0.98));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.8);
  padding: 1.4rem 1.4rem 1.1rem;
}

.modal-header {
  margin-bottom: 0.9rem;
}

.modal-title {
  font-size: 1.1rem;
  color: #e5e7eb;
  margin: 0 0 0.35rem;
}

.modal-subtitle {
  font-size: 0.85rem;
  color: #9ca3af;
  margin: 0;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.8rem;
}

.modal-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.modal-label {
  font-size: 0.8rem;
  color: #9ca3af;
}

.modal-input,
.modal-textarea {
  border-radius: 0.65rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background-color: rgba(15, 23, 42, 0.95);
  color: #e5e7eb;
  font-size: 0.85rem;
  padding: 0.55rem 0.75rem;
  resize: vertical;
}

.modal-input::placeholder,
.modal-textarea::placeholder {
  color: #4b5563;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.2rem;
}

.modal-submit {
  flex: 1 1 auto;
  justify-content: center;
  text-align: center;
}

.modal-skip {
  flex: 0 0 auto;
}

.modal-footnote {
  margin-top: 0.35rem;
  font-size: 0.75rem;
  color: #6b7280;
}

/* Table */
.table-wrapper {
  border-radius: 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.55);
  background: rgba(15, 23, 42, 0.98);
  overflow: hidden;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
}

thead {
  background: linear-gradient(to right, rgba(37, 99, 235, 0.25), rgba(56, 189, 248, 0.12));
  color: #e5e7eb;
}

th,
td {
  padding: 0.55rem 0.8rem;
  text-align: left;
  border-bottom: 1px solid rgba(31, 41, 55, 0.9);
  color: #e5e7eb;
}

/* Hero deal stories */
.hero-stories {
  margin-top: 0.6rem;
}

.hero-story {
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.hero-story:last-child {
  border-bottom: none;
}

.hero-story-header {
  font-size: 0.8rem;
  color: #9fb3c8;
  margin-bottom: 0.2rem;
}

.hero-story-main {
  font-size: 0.9rem;
  color: #e5e7eb;
  margin-bottom: 0.15rem;
}

.hero-story-main .highlight {
  color: #fbbf24;
  font-weight: 600;
}

.hero-story-meta {
  font-size: 0.78rem;
  color: #7d8fa6;
}

tbody tr:nth-child(even) {
  background-color: rgba(15, 23, 42, 0.9);
}

tbody tr:nth-child(odd) {
  background-color: rgba(15, 23, 42, 0.8);
}

/* Page-specific utils */
.page-kicker {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

.page-hero-tagline {
  font-size: 0.9rem;
  color: #9ca3af;
  margin-bottom: 1.5rem;
}

.page-hero {
  padding: 3rem 0 2.2rem;
}

.page-hero h1 {
  font-size: clamp(1.7rem, 2.6vw + 1rem, 2.4rem);
  color: #e5e7eb;
  margin: 0 0 0.6rem;
}

.three-cols {
  display: grid;
  gap: 1.1rem;
}

@media (min-width: 768px) {
  .three-cols {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.muted {
  color: #6b7280;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}


