:root {
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --soft: #f8fafc;
  --white: #ffffff;
  --blue: #16a34a;
  --blue-dark: #15803d;
  --green: #059669;
  --gold: #f2ca72;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
}

.topbar {
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
}

.topbar-inner,
.nav,
.section,
.footer-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar a {
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-logo {
  flex-direction: row;
  align-items: center;
  width: min(260px, 42vw);
}

.brand-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.brand strong {
  font-size: 25px;
  letter-spacing: 0;
}

.brand span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 800;
  font-size: 14px;
}

.nav-links a {
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--blue-dark);
}

.btn-outline {
  border-color: var(--line);
  color: var(--ink);
  background: var(--white);
}

.hero {
  background:
    radial-gradient(circle at 20% 20%, rgba(22, 163, 74, 0.22), transparent 34%),
    linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.78)),
    url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=1800&q=80") center / cover;
  color: var(--white);
}

.hero-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 640px;
  padding: 82px 0 62px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 54px;
  align-items: center;
}

.hero-visual-card {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.hero-visual-card img,
.image-panel img,
.page-hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual-card img {
  aspect-ratio: 4 / 3;
}

.visual-stat {
  padding: 22px;
  background: rgba(15, 23, 42, 0.86);
}

.visual-stat span {
  display: block;
  color: #86efac;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.visual-stat strong {
  display: block;
  color: #fff;
  font-size: 22px;
  line-height: 1.18;
  margin-top: 7px;
}

.eyebrow {
  color: #f2ca72;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 0 0 14px;
}

h1,
h2,
h3 {
  line-height: 1.08;
  margin: 0;
}

h1 {
  font-size: clamp(42px, 6vw, 76px);
  max-width: 760px;
}

.hero-copy {
  max-width: 690px;
  font-size: 20px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero .btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.36);
  color: var(--white);
}

.trust-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
  max-width: 760px;
}

.trust-line div {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 15px;
}

.trust-line strong {
  display: block;
  font-size: 22px;
}

.trust-line span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.form-card {
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.form-card h2,
.form-card h3 {
  font-size: 28px;
}

.form-card > p {
  color: var(--muted);
  margin: 8px 0 20px;
}

.lead-form {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  font-size: 13px;
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent-note,
.secure-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.form-status {
  display: none;
  border-radius: 8px;
  padding: 11px 12px;
  font-weight: 800;
  font-size: 14px;
}

.form-status.show {
  display: block;
}

.form-status.success {
  background: #eaf8f1;
  color: #176443;
}

.form-status.error {
  background: #fff0f0;
  color: #9f2424;
}

.section {
  padding: 78px 0;
}

.section.alt {
  background: var(--soft);
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100vw - 1160px) / 2));
  padding-right: max(20px, calc((100vw - 1160px) / 2));
}

.section h2 {
  font-size: clamp(32px, 4vw, 50px);
  margin-bottom: 16px;
}

.section-lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  margin: 0 0 34px;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 22px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

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

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.card p,
.legal p,
.legal li {
  color: var(--muted);
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 44px;
  align-items: center;
}

.compact-grid {
  margin-top: 28px;
}

.image-panel {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  min-height: 520px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.icon-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #dcfce7;
  color: #166534;
  font-weight: 1000;
  margin-bottom: 18px;
}

.band {
  background: var(--ink);
  color: var(--white);
  padding: 60px 0;
}

.band-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.band p {
  color: rgba(255, 255, 255, 0.78);
  margin: 10px 0 0;
}

.page-hero {
  background:
    radial-gradient(circle at 14% 18%, rgba(22, 163, 74, 0.24), transparent 30%),
    linear-gradient(135deg, #0f172a, #182235 62%, #12331f);
  color: var(--white);
  padding: 78px 0;
}

.page-hero .section {
  padding: 0;
}

.page-hero-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 46px;
  align-items: center;
}

.page-hero-image {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.page-hero-legal {
  padding: 66px 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 42px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.contact-list a,
.contact-list div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  text-decoration: none;
  background: var(--white);
}

.lead-value-calculator-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 32px;
  align-items: start;
}

.lead-value-calculator-card,
.lead-value-calculator-metric,
.lead-value-calculator-roi,
.lead-value-calculator-summary {
  background: var(--white);
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.lead-value-calculator-card {
  padding: 32px;
}

.lead-value-calculator-title {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 24px;
  color: #0f172a;
}

.lead-value-calculator-group {
  margin-bottom: 24px;
}

.lead-value-calculator-label {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #1e293b;
}

.lead-value-calculator-tooltip {
  display: block;
  font-size: 13px;
  color: #64748b;
  margin-bottom: 8px;
}

.lead-value-calculator-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  background: #f8fafc;
  color: #0f172a;
}

.lead-value-calculator-input:focus {
  outline: none;
  border-color: #3b82f6;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.lead-value-calculator-range-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lead-value-calculator-range {
  flex: 1;
  cursor: pointer;
}

.lead-value-calculator-range-val {
  width: 90px;
  text-align: center;
}

.lead-value-calculator-results {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lead-value-calculator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.lead-value-calculator-metric {
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.lead-value-calculator-metric-label {
  font-size: 13px;
  color: #64748b;
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lead-value-calculator-metric-val {
  font-size: 32px;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.1;
}

.lead-value-calculator-metric-sub {
  font-size: 13px;
  color: #94a3b8;
  margin-top: 8px;
}

.lead-value-calculator-roi {
  grid-column: 1 / -1;
  padding: 32px;
  text-align: center;
}

.lead-value-calculator-roi-val {
  font-size: 48px;
  font-weight: 900;
  margin-top: 8px;
}

.lead-value-calculator-roi-multiple {
  font-size: 24px;
  font-weight: 700;
  opacity: 0.7;
}

#lvc-res-roi-sub {
  display: none;
  color: #dc2626;
  margin-top: 12px;
  font-weight: 600;
}

.lvc-positive {
  color: #059669 !important;
}

.lvc-negative {
  color: #dc2626 !important;
}

.lvc-neutral {
  color: #0f172a !important;
}

.lead-value-calculator-summary {
  padding: 32px;
  border-color: #e2e8f0;
}

.lead-value-calculator-summary p {
  color: #475569;
  margin: 0 0 28px;
}

.lead-value-calculator-summary strong {
  color: #0f172a;
}

.lead-value-calculator-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 8px;
  background: #0f172a;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.legal {
  max-width: 860px;
}

.legal-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
  padding: 46px;
  margin-top: 60px;
  margin-bottom: 60px;
}

.legal-logo-wrap {
  display: flex;
  justify-content: center;
  margin: 0 auto 34px;
}

.legal-logo-wrap img {
  width: min(620px, 100%);
  height: auto;
}

.legal-document {
  display: block;
  width: 100%;
  min-height: 860px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.legal h2 {
  font-size: 28px;
  margin-top: 34px;
}

.footer {
  background: #101722;
  color: rgba(255, 255, 255, 0.76);
  padding: 44px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
}

.footer a {
  color: rgba(255, 255, 255, 0.86);
}

.footer h3,
.footer h4 {
  color: var(--white);
}

@media (max-width: 900px) {
  .topbar-inner,
  .nav,
  .band-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
  }

  .hero-inner,
  .contact-layout,
  .split-feature,
  .page-hero-inner,
  .lead-value-calculator-wrapper,
  .grid-2,
  .grid-3,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
  }

  .trust-line {
    grid-template-columns: 1fr;
  }

  .lead-value-calculator-grid {
    grid-template-columns: 1fr;
  }

  .lead-value-calculator-card,
  .lead-value-calculator-roi,
  .lead-value-calculator-summary {
    padding: 24px;
  }
}

@media (max-width: 560px) {
  .topbar-inner,
  .nav,
  .section,
  .footer-inner,
  .hero-inner,
  .band-inner {
    width: min(100% - 28px, 1160px);
  }

  .nav {
    min-height: auto;
    padding: 18px 0;
  }

  .nav-links {
    gap: 12px;
  }

  .brand-logo {
    width: min(230px, 70vw);
  }

  .hero-inner {
    padding: 58px 0 42px;
  }

  .form-card {
    padding: 20px;
  }

  .page-hero-inner {
    width: min(100% - 28px, 1160px);
  }

  .page-hero-image,
  .image-panel {
    min-height: auto;
    height: 220px;
  }

  .legal-card {
    padding: 28px 20px;
    margin-top: 34px;
    margin-bottom: 34px;
  }

  .legal-document {
    min-height: 720px;
  }
}
