:root {
  --bg: #f4f6f8;
  --surface: #ffffff;
  --ink: #0d1724;
  --muted: #5b6676;
  --line: #dce3eb;
  --dark: #07111f;
  --dark-2: #0b2038;
  --blue: #0757d6;
  --blue-2: #00a0ff;
  --yellow: #ffe45c;
  --green: #18a46f;
  --shadow: 0 24px 60px rgba(13, 23, 36, 0.12);
  --radius: 8px;
  --max: 1180px;
  --font-body: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Sora, Manrope, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  margin: 0;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.65rem, 4.7vw, 4.9rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.85rem, 3.2vw, 3.25rem);
  font-weight: 800;
}

h3 {
  font-size: 1.08rem;
  font-weight: 700;
}

p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px max(18px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(13, 23, 36, 0.08);
  background: rgba(244, 246, 248, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-size: 1rem;
  font-weight: 800;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand strong {
  color: var(--blue);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 9px 11px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: rgba(7, 87, 214, 0.08);
  outline: none;
}

.site-nav .nav-cta {
  color: #fff;
  background: var(--blue);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: #fff;
  background: #0347b7;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
  cursor: pointer;
}

.menu-toggle svg,
.btn svg,
.solution-grid svg,
.text-link svg,
.footer-links svg {
  width: 20px;
  height: 20px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 48px;
  align-items: start;
  min-height: calc(100svh - 63px);
  padding: 34px max(18px, calc((100vw - var(--max)) / 2)) 48px;
  background:
    linear-gradient(135deg, rgba(244, 246, 248, 0.94), rgba(232, 238, 246, 0.94)),
    repeating-linear-gradient(90deg, transparent 0, transparent 76px, rgba(13, 23, 36, 0.04) 77px);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-label::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: currentColor;
}

.hero-lead {
  max-width: 680px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.35vw, 1.16rem);
  line-height: 1.65;
}

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

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

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

.btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.btn-primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 16px 34px rgba(7, 87, 214, 0.22);
}

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

.hero-board {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow);
  align-self: start;
  padding: 26px;
}

.hero-form-title {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.16;
}

.hero-form-copy {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.board-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.board-top img {
  width: 142px;
  border-radius: 6px;
}

.board-top span {
  border-radius: 999px;
  color: var(--blue);
  background: rgba(7, 87, 214, 0.08);
  padding: 6px 10px;
  font-size: 0.75rem;
  font-weight: 800;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  transform: translateY(-24px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(13, 23, 36, 0.08);
}

.trust-strip div {
  min-height: 126px;
  padding: 22px;
  background: #fff;
}

.trust-strip strong {
  display: block;
  font-size: 0.96rem;
}

.trust-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 84px 0;
}

.about-grid,
.results,
.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: 54px;
  align-items: start;
}

.rich-text {
  display: grid;
  gap: 20px;
  color: var(--muted);
  font-size: 1.04rem;
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-head p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.02rem;
}

.section-head-row {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.solutions,
.method,
.faq {
  scroll-margin-top: 90px;
}

.solution-grid,
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.solution-grid article,
.post-grid article,
.article-card,
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.solution-grid article {
  min-height: 252px;
  padding: 24px;
}

.solution-grid svg {
  color: var(--blue);
  margin-bottom: 22px;
}

.solution-grid p,
.method-list p,
.post-grid p,
.article-card p {
  margin-top: 12px;
  color: var(--muted);
}

.method {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
  color: #fff;
  background: var(--dark);
}

.method .section-label,
.final-cta .section-label {
  color: var(--yellow);
}

.method-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.method-list article {
  min-height: 270px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
}

.method-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: #06111f;
  background: var(--yellow);
  font-weight: 800;
}

.method-list p {
  color: rgba(255, 255, 255, 0.66);
}

.results {
  align-items: center;
}

.results-copy p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.08rem;
}

.case-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 22px;
}

.case-label {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.case-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  border-top: 1px solid var(--line);
}

.case-row span {
  color: var(--muted);
  font-weight: 700;
}

.case-row b {
  border-radius: 999px;
  color: #07351f;
  background: rgba(24, 164, 111, 0.14);
  padding: 6px 9px;
  font-size: 0.76rem;
  text-transform: uppercase;
}

.blog-preview {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 800;
}

.post-grid article {
  padding: 22px;
}

.post-grid article > span,
.article-card > span,
.post-card > span,
.article-meta {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.post-grid h3 {
  margin-top: 14px;
}

.post-grid a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq details {
  padding: 0;
}

.faq summary {
  cursor: pointer;
  padding: 20px 22px;
  font-size: 1.05rem;
  font-weight: 800;
}

.faq details p {
  border-top: 1px solid var(--line);
  padding: 0 22px 20px;
  color: var(--muted);
}

.final-cta {
  width: 100%;
  max-width: none;
  padding: 84px max(18px, calc((100vw - var(--max)) / 2));
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.96), rgba(11, 32, 56, 0.96)),
    var(--dark);
}

.final-cta p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.contact-form {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-board .contact-form {
  margin-top: 18px;
  gap: 10px;
  padding: 18px;
}

.contact-form--light {
  border-color: var(--line);
  background: #f8fafc;
}

.contact-form.contact-form--light label {
  color: #263548;
  font-size: 0.82rem;
}

.contact-form.contact-form--light input,
.contact-form.contact-form--light select {
  border-color: var(--line);
  color: var(--ink);
  background: #fff;
  min-height: 44px;
}

.contact-form.contact-form--light .form-status {
  color: var(--blue);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(7, 17, 31, 0.74);
  outline: none;
  padding: 0 12px;
}

.contact-form select option {
  color: var(--ink);
}

.contact-form input:focus,
.contact-form select:focus {
  border-color: var(--blue-2);
  box-shadow: 0 0 0 3px rgba(0, 160, 255, 0.18);
}

.form-status {
  min-height: 22px;
  color: var(--yellow);
  font-size: 0.92rem;
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 28px 0;
  color: var(--muted);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  color: var(--ink);
  font-size: 0.94rem;
}

.footer-brand span {
  margin-top: 2px;
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 700;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--blue);
}

.blog-hero {
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0 54px;
}

.blog-hero h1 {
  font-size: clamp(2.45rem, 4.4vw, 4.35rem);
}

.blog-hero p {
  max-width: 680px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.14rem;
}

.blog-index,
.article-list {
  display: grid;
  gap: 18px;
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  padding-bottom: 84px;
}

.blog-index {
  grid-template-columns: 1fr;
}

.post-card,
.article-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 28px;
}

.post-card h2,
.article-card h2 {
  margin-top: 12px;
  font-size: clamp(1.65rem, 2.7vw, 2.55rem);
}

.post-card p,
.article-card p {
  margin-top: 12px;
  font-size: 1.05rem;
}

.post-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 800;
}

.article-page {
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  padding: 76px 0 88px;
}

.article-header {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.article-header h1 {
  margin-top: 12px;
  font-size: clamp(2.4rem, 4.5vw, 4.4rem);
}

.article-description {
  max-width: 760px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.14rem;
}

.article-content {
  display: grid;
  gap: 24px;
  padding-top: 34px;
  color: #253247;
  font-size: 1.08rem;
  line-height: 1.75;
}

.article-content h2 {
  margin-top: 18px;
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
}

.article-content ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.article-cta {
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: #fff;
}

@media (max-width: 1040px) {
  .hero,
  .about-grid,
  .results,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-board {
    max-width: 620px;
  }

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

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

  .method-list article {
    min-height: auto;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: grid;
  }

  .site-nav:not(.site-nav-static) {
    position: fixed;
    inset: 67px 12px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 10px;
    background: #fff;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px;
  }

  .site-nav-static {
    gap: 2px;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding-inline: 16px;
  }

  .brand span {
    font-size: 0.94rem;
  }

  .site-nav-static a:not(.nav-cta) {
    display: none;
  }

  .hero {
    padding: 46px 16px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.12rem;
  }

  .method {
    padding-inline: 30px;
  }

  .method .section-head {
    margin-bottom: 30px;
  }

  .method h2 {
    max-width: 460px;
    font-size: 2rem;
    line-height: 1.12;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .trust-strip,
  .solution-grid,
  .post-grid,
  .method-list {
    grid-template-columns: 1fr;
  }

  .board-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-strip {
    transform: none;
    margin-top: 18px;
  }

  .section {
    width: calc(100% - 32px);
    padding: 68px 0;
  }

  .section-head-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .case-row {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 14px 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    width: calc(100% - 32px);
  }

  .footer-links {
    align-items: flex-start;
    flex-direction: column;
  }
}
