/* Calls to Leads - Static SaaS Landing Page */

:root {
  --navy: #071b33;
  --navy-2: #0d2a4d;
  --blue: #2563eb;
  --teal: #14b8a6;
  --cyan: #e7f8f6;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #eef2f7;
  --gray-500: #64748b;
  --gray-700: #334155;
  --border: #dbe4ef;
  --shadow: 0 20px 60px rgba(7, 27, 51, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

.alt {
  background: var(--gray-50);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
}

.logo-mark {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--teal));
  font-weight: 900;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--gray-700);
  font-weight: 600;
  font-size: 0.95rem;
}

.site-nav a:hover {
  color: var(--blue);
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.hero {
  padding-top: 80px;
  background:
    radial-gradient(circle at 80% 20%, rgba(20, 184, 166, 0.18), transparent 32%),
    radial-gradient(circle at 20% 10%, rgba(37, 99, 235, 0.16), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.hero-grid,
.solution-grid,
.contact-grid,
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: 1.25rem;
}

.hero-text,
.section-heading p,
.solution p,
.problem p,
.contact-section p {
  color: var(--gray-500);
  font-size: 1.08rem;
}

.hero-text {
  margin: 24px 0 30px;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.22);
}

.btn-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--border);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--gray-700);
  font-weight: 700;
  font-size: 0.9rem;
}

.hero-art,
.image-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading.center {
  text-align: center;
  margin-inline: auto;
}

.problem {
  background: var(--navy);
  color: var(--white);
}

.problem p {
  color: #cbd5e1;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--gray-700);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
  font-size: 0.8rem;
  font-weight: 900;
}

.card-grid {
  display: grid;
  gap: 20px;
}

.features-grid {
  grid-template-columns: repeat(4, 1fr);
}

.card,
.mini-card,
.step,
.pricing-card,
.faq-item,
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(7, 27, 51, 0.06);
}

.card {
  padding: 24px;
}

.card p {
  color: var(--gray-500);
  margin-bottom: 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step {
  padding: 26px;
}

.step span {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  margin-bottom: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--teal));
  font-weight: 900;
}

.step p {
  color: var(--gray-500);
}

.industry-grid {
  grid-template-columns: repeat(3, 1fr);
}

.mini-card {
  padding: 24px;
  font-weight: 800;
  color: var(--navy);
}

.benefits {
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(20, 184, 166, 0.08)),
    var(--white);
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.benefit-list div {
  padding: 22px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  font-weight: 800;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pricing-card {
  position: relative;
  padding: 32px;
}

.pricing-card.featured {
  border-color: rgba(37, 99, 235, 0.35);
  transform: translateY(-10px);
}

.badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--cyan);
  color: #0f766e;
  font-weight: 900;
  font-size: 0.78rem;
}

.price {
  font-size: 1.5rem;
  color: var(--blue);
  font-weight: 900;
  margin: 18px 0;
}

.pricing-card p:not(.price) {
  color: var(--gray-500);
}

.faq-wrap {
  max-width: 860px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-question {
  width: 100%;
  padding: 22px;
  border: 0;
  background: transparent;
  color: var(--navy);
  text-align: left;
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 22px 22px;
  color: var(--gray-500);
}

.faq-item.active .faq-answer {
  display: block;
}

.contact-section {
  background: var(--navy);
  color: var(--white);
}

.contact-section p {
  color: #cbd5e1;
}

.contact-details {
  margin-top: 28px;
}

.contact-details a {
  color: var(--white);
  text-decoration: underline;
}

.contact-form {
  padding: 28px;
  color: var(--navy);
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 15px;
  font: inherit;
  color: var(--navy);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-note {
  color: var(--gray-500) !important;
  font-size: 0.9rem !important;
  margin-bottom: 0;
}

.site-footer {
  padding: 60px 0 24px;
  background: #061426;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 36px;
}

.footer-grid p,
.footer-grid a {
  color: #cbd5e1;
}

.footer-grid a {
  display: block;
  margin-bottom: 8px;
}

.footer-logo {
  margin-bottom: 14px;
}

.copyright {
  padding-top: 28px;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #94a3b8;
}

@media (max-width: 960px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.active {
    display: flex;
  }

  .hero-grid,
  .solution-grid,
  .contact-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .features-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid,
  .benefit-list,
  .industry-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .section {
    padding: 64px 0;
  }

  .features-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-art,
  .image-card {
    padding: 10px;
  }
}