:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --ink: #0f172a;
  --muted: #475569;
  --line: #e2e8f0;
  --brand: #3b82f6;
  --brand-soft: #dbeafe;
  --radius-xl: 1rem;
  --radius-2xl: 1.25rem;
  --radius-3xl: 1.5rem;
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.05);
  --shadow-hover: 0 18px 38px rgba(15, 23, 42, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 5% 0%, rgba(59, 130, 246, 0.12), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-mini {
  padding: 48px 0;
}

.section-soft {
  background: rgba(241, 245, 249, 0.7);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand-logo {
  width: auto;
  height: 34px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 30px;
  color: #334155;
  font-weight: 600;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--brand);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  border: 1px solid transparent;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease,
    color 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 12px 28px rgba(59, 130, 246, 0.28);
}

.btn-primary:hover {
  background: #2563eb;
}

.btn-outline {
  background: #fff;
  border-color: #cbd5e1;
  color: #334155;
}

.btn-outline:hover {
  border-color: #94a3b8;
  color: #0f172a;
}

.btn-light {
  background: #fff;
  color: var(--brand);
}

.btn-full {
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: 1.07fr 0.93fr;
  gap: 32px;
  align-items: start;
}

.hero-left h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 1.08;
  margin: 18px 0 16px;
  letter-spacing: -0.03em;
}

.hero-left h1 span {
  color: var(--brand);
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--brand-soft);
  color: #1d4ed8;
  padding: 9px 14px;
  font-weight: 700;
  font-size: 0.88rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 62ch;
}

.hero-checks {
  margin: 20px 0 28px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.hero-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #334155;
  font-weight: 600;
}

.hero-checks i {
  color: var(--brand);
  width: 18px;
  height: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lead-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-3xl);
  padding: 28px;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.09);
}

.lead-card h2 {
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.7rem;
  letter-spacing: -0.02em;
}

.lead-card > p {
  margin: 8px 0 22px;
  color: var(--muted);
}

.lead-card form {
  display: grid;
  gap: 13px;
}

.lead-card label {
  display: grid;
  gap: 6px;
  color: #334155;
  font-weight: 600;
  font-size: 0.9rem;
}

.lead-card input {
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 12px 13px;
  font: inherit;
  color: #0f172a;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-card input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.lead-card small {
  display: block;
  margin-top: 12px;
  color: #64748b;
  line-height: 1.4;
}

.form-feedback {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #64748b;
}

.form-feedback.is-error {
  color: #b91c1c;
}

.form-feedback.is-success {
  color: #047857;
}

.logos {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.logos p {
  text-align: center;
  color: #64748b;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  font-weight: 800;
}

.logo-row {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 44px;
  color: #94a3b8;
  font-weight: 700;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  font-weight: 800;
  color: #1d4ed8;
  background: var(--brand-soft);
}

.section-head h2 {
  margin: 14px 0 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-2xl);
  padding: 22px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  color: var(--brand);
  margin-bottom: 12px;
}

.card h3 {
  margin: 0 0 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.16rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.step {
  display: inline-flex;
  border-radius: 999px;
  background: var(--brand-soft);
  color: #1d4ed8;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  padding: 6px 10px;
  margin-bottom: 10px;
}

.person {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 16px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  color: #1d4ed8;
  font-size: 0.78rem;
  font-weight: 800;
}

.person strong {
  display: block;
  font-size: 0.95rem;
}

.person small {
  color: #64748b;
}

.faq-wrap {
  max-width: 860px;
}

.faq-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-3xl);
  padding: 8px 20px;
  box-shadow: var(--shadow-soft);
}

.faq-box details {
  border-bottom: 1px solid var(--line);
}

.faq-box details:last-child {
  border-bottom: none;
}

.faq-box summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 0;
  font-weight: 700;
  color: #0f172a;
}

.faq-box summary::-webkit-details-marker {
  display: none;
}

.faq-box p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.6;
}

.cta-final {
  padding-top: 70px;
  padding-bottom: 26px;
}

.cta-card {
  background: var(--brand);
  border-radius: 32px;
  text-align: center;
  color: #fff;
  padding: 48px 24px;
  box-shadow: 0 28px 60px rgba(59, 130, 246, 0.32);
}

.cta-card h2 {
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.55rem, 3.2vw, 2.5rem);
}

.cta-card p {
  margin: 10px auto 0;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
}

.cta-card .btn {
  margin-top: 24px;
}

.thank-you-page {
  min-height: 100vh;
  padding: 32px 0;
}

.thank-you-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  min-height: calc(100vh - 64px);
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: center;
}

.thank-you-hero h1 {
  margin: 18px 0 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.thank-you-hero h1 span {
  display: block;
  color: var(--brand);
}

.thank-you-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius-3xl);
  padding: 28px;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.09);
}

.thank-you-card h2 {
  margin: 0 0 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.02em;
}

.thank-you-card .hero-checks {
  margin-bottom: 0;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  background: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  color: #475569;
  font-weight: 600;
}

.footer p {
  text-align: right;
  margin: 0;
  color: #64748b;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .thank-you-shell {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 24px 0 40px;
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-links {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer p,
  .footer-links {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1120px, calc(100% - 26px));
  }

  .section {
    padding: 70px 0;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero-left h1 {
    margin-top: 14px;
  }

  .lead-card {
    padding: 20px;
  }
}
