:root {
  --ink: #0c2344;
  --ink-2: #123861;
  --muted: #5d6b7c;
  --line: #dfe6ee;
  --soft: #f6f9fc;
  --white: #ffffff;
  --red: #cf202b;
  --teal: #078f9b;
  --green: #1f8d67;
  --shadow: 0 22px 70px rgba(12, 35, 68, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

p {
  margin: 0;
  color: var(--muted);
}

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

h1 {
  max-width: 760px;
  font-size: clamp(2.45rem, 7vw, 5.8rem);
}

h2 {
  max-width: 780px;
  font-size: clamp(2rem, 4.8vw, 3.75rem);
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(223, 230, 238, 0.82);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 164px;
}

.brand img {
  width: 188px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: #234160;
  font-size: 0.94rem;
  font-weight: 700;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--red);
  background: #fff4f5;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 15px 30px rgba(207, 32, 43, 0.2);
}

.btn-primary:hover {
  background: #b81922;
}

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

.btn-secondary:hover {
  border-color: #b9c7d6;
  box-shadow: 0 12px 28px rgba(12, 35, 68, 0.08);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - 54px));
  overflow: hidden;
  display: grid;
  align-items: center;
  background: var(--white);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero .container {
  position: relative;
  z-index: 1;
  padding: 68px 0 78px;
}

.hero-copy {
  max-width: 760px;
}

.hero p {
  max-width: 640px;
  margin-top: 24px;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  color: #304a65;
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 12px;
  margin-top: 44px;
  max-width: 820px;
}

.proof-item {
  padding: 15px 14px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(223, 230, 238, 0.8);
  border-radius: var(--radius);
  box-shadow: 0 14px 45px rgba(12, 35, 68, 0.06);
}

.proof-item strong {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
}

.proof-item span {
  display: block;
  color: var(--muted);
  font-size: 0.83rem;
}

.section {
  padding: 96px 0;
}

.section-soft {
  background: var(--soft);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}

.section-head p {
  max-width: 490px;
  font-size: 1.06rem;
}

.lead {
  max-width: 770px;
  margin-top: 18px;
  font-size: 1.12rem;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card {
  min-height: 100%;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.card:hover {
  border-color: #bfd0df;
  box-shadow: 0 18px 48px rgba(12, 35, 68, 0.08);
}

.card h3 {
  margin-bottom: 12px;
}

.card p + p {
  margin-top: 12px;
}

.icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 900;
}

.icon.red {
  background: var(--red);
}

.icon.teal {
  background: var(--teal);
}

.icon.green {
  background: var(--green);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 58px;
  align-items: center;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: #fbfdff;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #b8c6d5;
}

.dot:nth-child(1) {
  background: var(--red);
}

.dot:nth-child(2) {
  background: #f0b434;
}

.dot:nth-child(3) {
  background: var(--teal);
}

.call-flow {
  padding: 26px;
}

.flow-row {
  display: grid;
  grid-template-columns: 98px 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid #edf2f7;
}

.flow-row:last-child {
  border-bottom: 0;
}

.flow-label {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.flow-value strong {
  display: block;
  color: var(--ink);
  margin-bottom: 4px;
}

.flow-value span {
  color: var(--muted);
  font-size: 0.95rem;
}

.page-hero {
  padding: 92px 0 72px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero p {
  max-width: 820px;
  margin-top: 22px;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

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

.band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.band p,
.band h2 {
  color: var(--white);
}

.band p {
  max-width: 620px;
  opacity: 0.86;
}

.list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 28px;
  color: #3d5168;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
}

.pricing {
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
}

.price {
  margin: 18px 0;
  color: var(--ink);
  font-size: 1.9rem;
  font-weight: 900;
}

.price span {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.price-card .btn {
  margin-top: auto;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.product-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.sale-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 94px;
  padding: 9px 12px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--red);
  font-size: 1rem;
  font-weight: 900;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
  background: #fbfdff;
  font-size: 0.82rem;
  font-weight: 800;
}

.source-note {
  margin-top: 18px;
  font-size: 0.9rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
}

.contact-direct {
  margin-top: 28px;
}

.contact-direct p {
  margin-top: 10px;
}

.contact-direct a {
  color: var(--ink-2);
  font-weight: 800;
}

.form {
  display: grid;
  gap: 16px;
}

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

label {
  color: #263f5a;
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #cbd7e4;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  min-height: 148px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(7, 143, 155, 0.16);
  border-color: var(--teal);
}

.form-note {
  font-size: 0.9rem;
}

.site-footer {
  padding: 56px 0 30px;
  background: #07192f;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 34px;
}

.footer-logo {
  width: 190px;
  padding: 10px;
  background: var(--white);
  border-radius: var(--radius);
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 1rem;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.mini-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .nav-wrap {
    min-height: 72px;
    position: relative;
    padding-right: 66px;
  }

  .main-nav {
    position: fixed;
    inset: 72px 16px auto 16px;
    display: none;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav.is-open {
    display: flex;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    position: absolute;
    top: 14px;
    right: 0;
    width: 58px;
    font-size: 0.76rem;
  }

  .header-actions .btn {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-image {
    opacity: 0.2;
  }

  .hero .container {
    padding: 64px 0 58px;
  }

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

  .grid-3,
  .grid-2,
  .split,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-head,
  .band .container,
  .footer-bottom {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .brand img {
    width: 144px;
  }

  .hero-copy,
  .hero p {
    max-width: 100%;
  }

  .hero-proof,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }

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

  .card {
    padding: 22px;
  }

  .btn {
    width: 100%;
  }

  .product-head {
    flex-direction: column;
  }
}
