@font-face {
  font-family: "Heebo";
  src: url("/assets/fonts/heebo-hebrew.woff2") format("woff2");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}

@font-face {
  font-family: "Heebo";
  src: url("/assets/fonts/heebo-latin.woff2") format("woff2");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Rubik";
  src: url("/assets/fonts/rubik-hebrew.woff2") format("woff2");
  font-weight: 500 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}

@font-face {
  font-family: "Rubik";
  src: url("/assets/fonts/rubik-latin.woff2") format("woff2");
  font-weight: 500 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #0c1728;
  --ink-2: #243348;
  --muted: #647085;
  --line: #d8dee8;
  --line-strong: #c6cfdb;
  --soft: #f4f7fa;
  --soft-2: #eef3f7;
  --surface: #fbfcfe;
  --white: #ffffff;
  --red: #c71820;
  --red-dark: #9f1219;
  --red-soft: #fff1f2;
  --steel: #53687f;
  --green: #21715a;
  --shadow: 0 16px 40px rgba(12, 23, 40, 0.11);
  --shadow-card: 0 10px 28px rgba(12, 23, 40, 0.075);
  --shadow-card-hover: 0 18px 42px rgba(12, 23, 40, 0.13);
  --radius: 8px;
  --container: 1180px;
  --font-body: "Heebo", "Noto Sans Hebrew", sans-serif;
  --font-heading: "Rubik", "Heebo", "Noto Sans Hebrew", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--surface);
  font-size: 16px;
  line-height: 1.62;
  overflow-x: hidden;
}

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

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

:focus-visible {
  outline: 3px solid rgba(199, 24, 32, 0.32);
  outline-offset: 3px;
}

.icon {
  width: 1.15em;
  height: 1.15em;
  display: inline-block;
  vertical-align: -0.18em;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

.narrow {
  width: min(850px, calc(100% - 40px));
}

.skip-link {
  position: fixed;
  top: 8px;
  inset-inline-start: 8px;
  z-index: 100;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(198, 207, 219, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 26px rgba(12, 23, 40, 0.055);
}

.utility-bar {
  background: #0b1422;
  color: var(--white);
  font-size: 14px;
}

.utility-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.utility-inner a,
.utility-inner span,
.site-footer a,
.site-footer span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.utility-inner svg,
.site-footer svg,
.btn svg,
.sticky-leads svg,
.text-link svg {
  width: 18px;
  height: 18px;
}

.lang-switch {
  margin-inline-start: auto;
}

.nav-shell {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  min-width: 220px;
}

.brand img {
  width: 1px;
  height: 1px;
  opacity: 0;
  position: absolute;
}

.brand strong {
  font-size: 23px;
  line-height: 1;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand strong::before {
  content: "RR";
  display: inline-flex;
  direction: ltr;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 30px;
  margin-inline-end: 9px;
  color: var(--red);
  border-inline-start: 4px solid var(--red);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  height: auto;
}

.brand span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

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

.site-nav a,
.nav-parent {
  padding: 10px 11px;
  font: inherit;
  font-weight: 700;
  color: var(--ink-2);
  background: transparent;
  border-radius: 6px;
  border: 0;
  border-bottom: 0;
  cursor: pointer;
}

.site-nav a:hover,
.site-nav a:focus,
.nav-parent:hover,
.nav-parent:focus,
.nav-group.open .nav-parent {
  color: var(--red);
  background: var(--red-soft);
}

.nav-group {
  position: relative;
}

.nav-group::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 100%;
  height: 10px;
}

.nav-parent {
  display: inline-flex;
  align-items: center;
}

.nav-dropdown {
  position: absolute;
  inset-inline-end: 0;
  top: calc(100% + 6px);
  min-width: 230px;
  display: none;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown,
.nav-group.open .nav-dropdown {
  display: grid;
  z-index: 30;
}

.nav-dropdown a {
  border-bottom: 0;
  border-radius: 6px;
}

.menu-button {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 9px 12px;
  align-items: center;
  gap: 8px;
}

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

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

.btn-primary {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 10px 22px rgba(199, 24, 32, 0.22);
}

.btn-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 14px 28px rgba(159, 18, 25, 0.24);
}

.btn-outline {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line-strong);
  box-shadow: inset 0 0 0 1px rgba(12, 23, 40, 0.04);
}

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

.btn-ghost {
  color: var(--ink);
  background: var(--soft);
  border-color: var(--line);
}

.btn-small {
  min-height: 40px;
  padding: 8px 13px;
  white-space: nowrap;
}

.page-hero {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 42%, rgba(255, 255, 255, 0.62) 66%, rgba(255, 255, 255, 0.28) 100%),
    var(--soft);
  border-bottom: 1px solid var(--line);
}

[dir="ltr"] .page-hero {
  background:
    linear-gradient(270deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.92) 42%, rgba(255, 255, 255, 0.58) 64%, rgba(255, 255, 255, 0.25) 100%),
    var(--soft);
}

.hero-grid {
  min-height: 580px;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 1.02fr);
  align-items: center;
  gap: 42px;
  padding: 48px 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  color: var(--red);
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.35;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-family: var(--font-heading);
  font-size: clamp(42px, 5.7vw, 72px);
  line-height: 1.02;
  margin-bottom: 20px;
  max-width: 760px;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.12;
  margin-bottom: 14px;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.22;
  margin-bottom: 9px;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 670px;
  font-size: 19px;
  color: var(--ink-2);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 26px 0 22px;
}

.hero-media {
  align-self: stretch;
  min-height: 410px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 52px rgba(12, 23, 40, 0.16);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-product-page .hero-media {
  background: var(--white);
}

.catalog-product-page .hero-media img,
.product-category-page .hero-media img {
  object-fit: contain;
  padding: 24px;
}

.product-category-page .hero-media {
  background:
    linear-gradient(180deg, #ffffff, #f6f8fb);
  display: grid;
  place-items: center;
  padding: 28px;
}

.product-category-page .hero-media img {
  width: min(78%, 520px);
  height: min(78%, 360px);
  padding: 0;
}

.trust-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  color: var(--ink-2);
  font-weight: 800;
}

.trust-mini span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 6px 9px;
  border: 1px solid rgba(198, 207, 219, 0.82);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.trust-mini svg {
  color: var(--green);
  width: 18px;
  height: 18px;
}

.section {
  padding: 74px 0;
  background: var(--surface);
}

.section.alt,
.finder-band,
.comparison {
  background: var(--soft-2);
}

.section-head {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head.compact {
  display: block;
  max-width: 760px;
}

.section-head p {
  color: var(--muted);
  font-size: 18px;
  max-width: 720px;
}

.finder-band {
  padding: 34px 0 44px;
  border-block: 1px solid var(--line);
}

.finder {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 12px;
  align-items: end;
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-card);
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink-2);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cbd3df;
  border-radius: var(--radius);
  padding: 12px 13px;
  min-height: 46px;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(199, 24, 32, 0.55);
  box-shadow: 0 0 0 4px rgba(199, 24, 32, 0.10);
  outline: 0;
}

.finder-result,
.form-output {
  grid-column: 1 / -1;
  display: none;
  padding: 12px 14px;
  background: #edf8f3;
  border: 1px solid #bee5d4;
  color: #175b47;
  border-radius: var(--radius);
  font-weight: 800;
}

.finder-result.show,
.form-output.show {
  display: block;
}

.solution-grid,
.product-grid,
.category-grid,
.article-grid,
.industry-grid,
.persona-grid,
.use-case-grid,
.lead-magnet-grid,
.content-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.solution-card,
.product-card,
.category-card,
.article-card,
.industry-grid a,
.persona-card,
.use-case-card,
.lead-magnet-card,
.content-pillar-grid a,
.answer-card,
.side-lead,
.contact-form-panel,
.contact-methods a {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.solution-card,
.product-card,
.category-card,
.article-card,
.persona-card,
.use-case-card,
.lead-magnet-card,
.content-pillar-grid a {
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(12, 23, 40, 0.02);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border 0.18s ease, background 0.18s ease;
}

.solution-card:hover,
.product-card:hover,
.category-card:hover,
.article-card:hover,
.industry-grid a:hover,
.persona-card:hover,
.use-case-card:hover,
.lead-magnet-card:hover,
.content-pillar-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(199, 24, 32, 0.45);
  box-shadow: var(--shadow-card-hover);
}

.solution-card img,
.product-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  background: var(--soft);
}

.solution-card,
.article-card,
.use-case-card,
.persona-card,
.lead-magnet-card,
.content-pillar-grid a,
.industry-grid a,
.category-card,
.product-card {
  position: relative;
}

.solution-card::before,
.article-card::before,
.use-case-card::before,
.persona-card::before,
.lead-magnet-card::before,
.content-pillar-grid a::before,
.industry-grid a::before,
.category-card::before,
.product-card::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), rgba(83, 104, 127, 0.25));
  opacity: 0;
  transition: opacity 0.18s ease;
  pointer-events: none;
}

.solution-card:hover::before,
.article-card:hover::before,
.use-case-card:hover::before,
.persona-card:hover::before,
.lead-magnet-card:hover::before,
.content-pillar-grid a:hover::before,
.industry-grid a:hover::before,
.category-card:hover::before,
.product-card:hover::before {
  opacity: 1;
}

.catalog-product-card img {
  object-fit: contain;
  padding: 14px;
  background: linear-gradient(180deg, #ffffff, var(--soft));
}

.solution-card > :not(img),
.product-card > :not(img) {
  margin-inline: 18px;
}

.solution-card .eyebrow,
.product-card span {
  margin-top: 16px;
}

.solution-card p,
.product-card p,
.category-card p,
.article-card p,
.industry-grid p,
.persona-card p,
.use-case-card p,
.lead-magnet-card p,
.content-pillar-grid p {
  color: var(--muted);
}

.product-card h3,
.product-card p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card h3 {
  -webkit-line-clamp: 2;
}

.product-card p {
  -webkit-line-clamp: 3;
}

.text-link,
.product-card strong,
.category-card strong,
.article-card strong,
.industry-grid strong,
.persona-card strong,
.use-case-card strong,
.lead-magnet-card strong,
.content-pillar-grid strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--red);
  font-weight: 900;
  margin-bottom: 18px;
}

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

.category-card {
  min-height: 154px;
  padding: 16px;
  display: grid;
  align-content: start;
}

.persona-card,
.lead-magnet-card,
.content-pillar-grid a {
  min-height: 230px;
  padding: 20px;
  display: grid;
  align-content: start;
}

.persona-card h3,
.lead-magnet-card h3,
.content-pillar-grid h3 {
  font-size: 23px;
}

.use-case-card {
  display: grid;
  grid-template-rows: 176px 1fr;
}

.use-case-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--soft);
}

.use-case-card div {
  padding: 18px;
}

.lead-magnet-card .eyebrow svg {
  width: 18px;
  height: 18px;
}

.section-action {
  margin: 24px 0 0;
  display: flex;
  justify-content: center;
}

.category-card h3 {
  min-height: auto;
  font-size: 20px;
}

.category-card p {
  min-height: 3.2em;
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 12px;
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) 1.6fr;
  gap: 16px;
  align-items: end;
  margin-bottom: 14px;
}

.catalog-search {
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: 0 8px 24px rgba(12, 23, 40, 0.045);
}

.catalog-result-count {
  margin: 0 0 18px;
  color: var(--ink-2);
  font-weight: 800;
}

.catalog-load-actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.catalog-browser-grid .product-card.is-over-limit {
  display: none;
}

.product-card.hidden {
  display: none;
}

.product-meta,
.source-note {
  color: var(--ink-2);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
}

.source-note {
  font-size: 14px;
  overflow-wrap: anywhere;
}

.technical-source {
  direction: ltr;
  text-align: left;
  line-height: 1.55;
}

.source-note a {
  color: var(--red);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.comparison-table [role="row"] {
  display: grid;
  grid-template-columns: 1.15fr 1.15fr 1fr 0.8fr;
}

.comparison-table span,
.comparison-table a {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  border-inline-start: 1px solid var(--line);
}

.comparison-table .head {
  background: linear-gradient(90deg, var(--ink), #17283d);
  color: var(--white);
  font-weight: 900;
}

.comparison-table a {
  color: var(--red);
  font-weight: 900;
}

.split,
.content-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 42px;
  align-items: start;
}

.split > *,
.content-grid > *,
.contact-grid > * {
  min-width: 0;
}

.three-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 11px;
}

.check-list li {
  position: relative;
  padding-inline-start: 28px;
}

.check-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  position: absolute;
  inset-inline-start: 6px;
  top: 0.75em;
  box-shadow: 0 0 0 4px rgba(199, 24, 32, 0.10);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.process-steps div {
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 18px;
  background: linear-gradient(180deg, #ffffff, #f7f9fc);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(12, 23, 40, 0.055);
}

.process-steps strong {
  color: var(--red);
  font-size: 34px;
  line-height: 1;
}

.process-steps span {
  font-weight: 900;
}

.industry-grid a {
  padding: 22px;
  box-shadow: 0 1px 0 rgba(12, 23, 40, 0.02);
}

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

.logo-strip {
  padding: 64px 0;
  border-block: 1px solid var(--line);
  background: var(--white);
}

.logos {
  display: grid;
  grid-template-columns: repeat(11, minmax(72px, 1fr));
  gap: 10px;
  align-items: center;
}

.logos img {
  width: 100%;
  height: 74px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px;
  background: var(--white);
  filter: saturate(0.92);
}

.answer-card {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(199, 24, 32, 0.055), rgba(199, 24, 32, 0) 38%),
    linear-gradient(180deg, #ffffff, #f8fafc);
  border-color: rgba(199, 24, 32, 0.22);
  box-shadow: 0 8px 24px rgba(12, 23, 40, 0.055);
}

.answer-card.inline {
  margin-top: 28px;
}

.side-lead {
  padding: 24px;
  position: sticky;
  top: 130px;
  box-shadow: var(--shadow-card);
}

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

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

.hp-field {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.checkbox-row input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lead-form button[disabled] {
  opacity: 0.68;
  cursor: progress;
  transform: none;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.filter-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.filter-row button {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 9px 14px;
  cursor: pointer;
  font-weight: 800;
}

.filter-row button.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.article-browser {
  display: grid;
  gap: 22px;
}

.article-browser-toolbar {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, var(--soft));
  box-shadow: 0 8px 24px rgba(12, 23, 40, 0.045);
}

.article-browser-toolbar .search-field {
  margin: 0;
}

.article-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.article-filter button {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  border-radius: 999px;
  padding: 9px 12px;
  font-weight: 900;
  cursor: pointer;
}

.article-filter button.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.article-filter span {
  color: var(--red);
  margin-inline-start: 4px;
}

.article-filter button.active span {
  color: var(--white);
}

.article-count {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.article-browser-actions {
  display: flex;
  justify-content: center;
}

.article-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 210px;
  background: var(--white);
}

.article-card.is-over-limit {
  display: none;
}

.article-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card div {
  padding: 18px;
}

.article-grid-home .article-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.article-grid-home .article-card img {
  width: 100%;
  height: 172px;
  object-fit: cover;
}

.article-grid-home .article-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
}

.article-grid-home .article-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.28;
}

.article-grid-home .article-card p {
  margin: 0 0 6px;
  line-height: 1.75;
}

.article-grid-home .article-card strong {
  margin-top: auto;
}

.long-form {
  max-width: 760px;
  width: 100%;
  min-width: 0;
  overflow-wrap: break-word;
}

.long-form h2 {
  margin-top: 34px;
}

.keyword-chips,
.side-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
}

.keyword-chips span,
.side-keywords span {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink-2);
  padding: 6px 10px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 1px 0 rgba(12, 23, 40, 0.03);
}

.article-intent {
  border: 1px solid var(--line);
  border-color: rgba(199, 24, 32, 0.24);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: var(--red-soft);
  color: var(--ink-2);
}

.article-answer p {
  font-size: 19px;
  color: var(--ink);
}

.article-summary,
.article-checklist,
.article-toc,
.article-link-panel,
.article-table-section,
.article-source-panel {
  margin: 30px 0;
}

.article-toc {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--white);
  padding: 18px;
  box-shadow: 0 8px 22px rgba(12, 23, 40, 0.05);
}

.article-toc strong {
  color: var(--ink);
  font-size: 18px;
}

.article-toc a,
.article-link-grid a {
  color: var(--red);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.article-rich-section {
  scroll-margin-top: 130px;
  padding-bottom: 6px;
}

.article-rich-section p {
  font-size: 18px;
  color: var(--ink-2);
}

.article-table-wrap {
  overflow-x: auto;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.article-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: var(--white);
}

.article-table th,
.article-table td {
  padding: 13px 15px;
  border-bottom: 1px solid var(--line);
  text-align: start;
  vertical-align: top;
}

.article-table th {
  background: var(--ink);
  color: var(--white);
}

.article-source-panel {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--white);
  padding: 22px;
  box-shadow: var(--shadow-card);
}

.article-source-head h2 {
  margin-top: 4px;
}

.article-source-head p {
  color: var(--ink-2);
  margin-bottom: 18px;
}

.article-source-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.article-source-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, var(--soft));
  padding: 16px;
  min-width: 0;
}

.article-source-card span {
  display: inline-block;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 6px;
}

.article-source-card h3 {
  font-size: 18px;
  line-height: 1.35;
  margin: 0 0 6px;
}

.article-source-card a {
  color: var(--ink);
  overflow-wrap: anywhere;
}

.article-source-card small {
  display: block;
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 8px;
}

.article-source-card p {
  color: var(--ink-2);
  font-size: 15px;
  margin: 0;
}

.article-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.article-link-grid a {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: var(--white);
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(12, 23, 40, 0.025);
}

.side-keywords {
  display: grid;
  margin-bottom: 18px;
}

.side-keywords strong {
  color: var(--ink);
}

.spec-table-wrap {
  margin: 28px 0;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.spec-table th,
.spec-table td {
  padding: 13px 15px;
  border-bottom: 1px solid var(--line);
  text-align: start;
  vertical-align: top;
}

.spec-table th {
  width: 32%;
  background: var(--soft);
  color: var(--ink);
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: 0;
}

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

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  background: var(--white);
}

summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 18px;
}

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

.lead-panel {
  background:
    linear-gradient(135deg, rgba(199, 24, 32, 0.16), rgba(199, 24, 32, 0) 42%),
    linear-gradient(180deg, #111d2d, #0b1422);
  color: var(--white);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.lead-panel p,
.site-footer p {
  color: rgba(255, 255, 255, 0.78);
}

.lead-panel .lead-form {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

.photo-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.photo-stack img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-radius: var(--radius);
}

.contact-methods {
  display: grid;
  gap: 12px;
}

.contact-methods a {
  padding: 22px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 4px 12px;
  box-shadow: 0 1px 0 rgba(12, 23, 40, 0.025);
}

.contact-methods svg {
  grid-row: span 2;
  width: 30px;
  height: 30px;
  color: var(--red);
}

.contact-methods strong {
  font-size: 22px;
  line-height: 1.2;
}

.contact-methods span {
  color: var(--muted);
}

.contact-form-panel {
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.legal h1 {
  font-size: 44px;
}

.site-footer {
  background:
    linear-gradient(180deg, #111c2b, #0a111c);
  color: var(--white);
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 36px;
}

.footer-grid h2 {
  font-size: 20px;
}

.footer-grid a,
.footer-grid span {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 8px;
}

.footer-logo {
  display: none;
}

.footer-brand {
  display: block;
  font-size: 24px;
  margin-bottom: 14px;
}

.cert-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cert-row span {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  padding: 7px 9px;
  font-size: 13px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  margin-top: 36px;
  padding-top: 18px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.72);
}

.sticky-leads {
  position: fixed;
  inset-inline-end: 18px;
  bottom: 18px;
  z-index: 60;
  display: grid;
  gap: 8px;
}

.sticky-leads a,
.sticky-leads button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: var(--red);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(12, 23, 40, 0.22);
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease;
}

.sticky-leads a:hover,
.sticky-leads button:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.sticky-leads span {
  display: none;
  font-weight: 900;
  font-size: 13px;
}

.mobile-article-lead {
  display: none;
}

.lead-dialog {
  width: min(720px, calc(100% - 32px));
  border: 0;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 28px 70px rgba(12, 23, 40, 0.26);
}

.lead-dialog::backdrop {
  background: rgba(12, 23, 40, 0.56);
}

.dialog-close {
  position: absolute;
  inset-inline-end: 12px;
  top: 12px;
  border: 0;
  background: var(--soft);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
}

.hidden {
  display: none !important;
}

@media (max-width: 1040px) {
  .menu-button {
    display: inline-flex;
    margin-inline-start: auto;
  }

  .site-nav {
    position: absolute;
    inset-inline: 20px;
    top: calc(100% + 8px);
    display: none;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 10px;
  }

  .site-nav.open {
    display: grid;
  }

  .nav-group {
    display: grid;
  }

  .nav-parent {
    border-bottom: 0;
  }

  .nav-dropdown {
    position: static;
    display: grid;
    min-width: 0;
    padding: 6px 12px 10px;
    border: 0;
    box-shadow: none;
    background: var(--soft);
  }

  .nav-shell > .btn {
    display: none;
  }

  .hero-grid,
  .split,
  .content-grid,
  .contact-grid,
  .lead-panel {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: 0;
  }

  .hero-media {
    min-height: 320px;
  }

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

  .solution-grid,
  .product-grid,
  .category-grid,
  .article-grid,
  .industry-grid,
  .persona-grid,
  .use-case-grid,
  .lead-magnet-grid,
  .content-pillar-grid,
  .three-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .catalog-toolbar {
    grid-template-columns: 1fr;
  }

  .logos {
    grid-template-columns: repeat(5, minmax(72px, 1fr));
  }

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

  .side-lead {
    position: static;
  }
}

@media (max-width: 820px) {
  .utility-inner {
    gap: 10px;
  }

  .utility-inner span {
    display: none;
  }

  .nav-shell {
    min-height: 68px;
  }

  .menu-button {
    display: inline-flex;
    margin-inline-start: auto;
  }

  .site-nav {
    position: absolute;
    inset-inline: 20px;
    top: calc(100% + 8px);
    display: none;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 8px;
  }

  .site-nav.open {
    display: grid;
  }

  .nav-group {
    display: grid;
  }

  .nav-parent {
    border-bottom: 0;
  }

  .nav-dropdown {
    position: static;
    display: grid;
    min-width: 0;
    padding: 6px 12px 10px;
    border: 0;
    box-shadow: none;
    background: var(--soft);
  }

  .nav-shell > .btn {
    display: none;
  }

  h1 {
    font-size: 42px;
  }

  .hero-copy p {
    font-size: 17px;
  }

  .section {
    padding: 56px 0;
  }

  .section-head,
  .finder,
  .solution-grid,
  .product-grid,
  .article-grid,
  .industry-grid,
  .persona-grid,
  .use-case-grid,
  .lead-magnet-grid,
  .content-pillar-grid,
  .three-cols,
  .industry-grid.large,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .long-form,
  .side-lead,
  .answer-card,
  .article-toc,
  .article-summary,
  .article-checklist,
  .article-link-panel,
  .article-table-section,
  .article-source-panel {
    max-width: 100%;
  }

  .category-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .category-card {
    min-height: 0;
    padding: 14px;
  }

  .category-card .eyebrow {
    margin-bottom: 4px;
  }

  .category-card p {
    min-height: 0;
    margin-bottom: 8px;
  }

  .article-card {
    grid-template-columns: 1fr;
  }

  .article-card img {
    height: 168px;
  }

  .use-case-card {
    grid-template-columns: 96px 1fr;
    grid-template-rows: auto;
    min-height: 0;
  }

  .use-case-card img {
    height: 100%;
    min-height: 142px;
  }

  .use-case-card div,
  .article-card div {
    padding: 14px;
  }

  .use-case-card h3,
  .article-card h3,
  .persona-card h3,
  .lead-magnet-card h3,
  .content-pillar-grid h3 {
    font-size: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .use-case-card p,
  .article-card p,
  .persona-card p,
  .lead-magnet-card p,
  .content-pillar-grid p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .persona-card,
  .lead-magnet-card,
  .content-pillar-grid a {
    min-height: 0;
    padding: 16px;
  }

  .mobile-article-lead {
    display: block;
  }

  .article-link-grid {
    grid-template-columns: 1fr;
  }

  .article-source-grid {
    grid-template-columns: 1fr;
  }

  .article-rich-section p,
  .article-answer p {
    font-size: 16.5px;
  }

  .comparison-table {
    display: grid;
    gap: 10px;
    border: 0;
    background: transparent;
    overflow: visible;
  }

  .comparison-table [role="row"] {
    min-width: 0;
    display: grid;
    grid-template-columns: 1fr;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    overflow: hidden;
  }

  .comparison-table .head {
    display: none;
  }

  .comparison-table span,
  .comparison-table a {
    border: 0;
    border-bottom: 1px solid var(--line);
    padding: 10px 14px;
  }

  .comparison-table span::before,
  .comparison-table a::before {
    content: attr(data-label);
    display: block;
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 2px;
  }

  .article-table-wrap {
    overflow: visible;
    border: 0;
  }

  .article-table,
  .article-table thead,
  .article-table tbody,
  .article-table tr,
  .article-table td {
    display: block;
    min-width: 0;
    width: 100%;
  }

  .article-table thead {
    display: none;
  }

  .article-table {
    background: transparent;
  }

  .article-table tr {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    margin-bottom: 10px;
    overflow: hidden;
  }

  .article-table td {
    border: 0;
    border-bottom: 1px solid var(--line);
    padding: 10px 14px;
  }

  .article-table td:last-child {
    border-bottom: 0;
  }

  .article-table td::before {
    content: attr(data-label);
    display: block;
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 3px;
  }

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

  .lead-panel {
    padding: 22px;
  }

  .catalog-browser-grid {
    gap: 10px;
  }

  .product-card img {
    height: 150px;
  }

  .product-card > :not(img) {
    margin-inline: 14px;
  }

  .product-card h3 {
    font-size: 19px;
    margin-bottom: 6px;
  }

  .product-card p {
    -webkit-line-clamp: 2;
    margin-bottom: 8px;
  }

  .product-card strong {
    margin-bottom: 14px;
  }

  .catalog-product-card img {
    padding: 10px;
  }
}

@media (max-width: 540px) {
  .container,
  .narrow {
    width: min(100% - 24px, var(--container));
  }

  .nav-shell {
    gap: 8px;
  }

  .menu-button {
    padding: 8px 10px;
  }

  .brand {
    min-width: 0;
    max-width: 190px;
  }

  .brand strong {
    font-size: 17px;
    white-space: normal;
    line-height: 1.1;
  }

  .brand strong::before {
    width: 34px;
    height: 26px;
    font-size: 16px;
    margin-inline-end: 6px;
  }

  .brand span {
    display: none;
  }

  .utility-inner {
    justify-content: space-between;
  }

  .utility-inner a[href^="tel"] {
    display: none;
  }

  .lang-switch {
    margin-inline-start: 0;
  }

  h1 {
    font-size: clamp(30px, 9vw, 38px);
    line-height: 1.08;
    overflow-wrap: break-word;
    max-width: 100%;
  }

  h2 {
    font-size: 27px;
  }

  .hero-grid {
    padding: 28px 0 24px;
    gap: 18px;
  }

  .hero-copy {
    text-align: start;
  }

  .hero-copy p {
    font-size: 16.5px;
    max-width: 100%;
  }

  .trust-mini {
    justify-content: flex-start;
    font-size: 13px;
  }

  .trust-mini span {
    flex: 1 1 100%;
    justify-content: flex-start;
  }

  .hero-media {
    height: 168px;
    min-height: 0;
  }

  .catalog-product-page .hero-media img {
    padding: 16px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    display: grid;
  }

  .process-steps,
  .photo-stack {
    grid-template-columns: 1fr;
  }

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

  .sticky-leads {
    inset-inline: 10px;
    bottom: 10px;
    grid-template-columns: repeat(3, 1fr);
    z-index: 80;
    padding: 6px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(198, 207, 219, 0.8);
    border-radius: var(--radius);
    backdrop-filter: blur(12px);
  }

  .sticky-leads a,
  .sticky-leads button {
    width: 100%;
    min-width: 48px;
    min-height: 50px;
    border-radius: 6px;
    gap: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
  }

  .sticky-leads span {
    display: inline;
  }

  body {
    padding-bottom: calc(82px + env(safe-area-inset-bottom));
  }

  .lead-dialog {
    padding: 22px 16px 18px;
  }

  .dialog-close {
    width: 40px;
    height: 40px;
  }
}
