:root {
  color-scheme: light;
  --ink: #071014;
  --ink-soft: #26363d;
  --paper: #f5f1e8;
  --paper-2: #ffffff;
  --muted: #66757b;
  --line: rgba(7, 16, 20, 0.13);
  --line-light: rgba(255, 255, 255, 0.16);
  --teal: #0b6f7f;
  --teal-light: #39b6c6;
  --gold: #c58c2d;
  --gold-light: #f0c66a;
  --rose: #b44f5c;
  --green: #758f48;
  --dark: #081116;
  --dark-2: #111d22;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(7, 16, 20, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  min-height: 74px;
  margin: 16px auto 0;
  padding: 10px 12px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(7, 16, 20, 0.54);
  backdrop-filter: blur(18px);
  direction: ltr;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 16, 20, 0.9);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.25);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
}

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

.brand strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.05;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  line-height: 1;
}

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

.site-nav a {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  border-radius: 8px;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  outline: none;
}

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

.mobile-tools {
  display: none;
  align-items: center;
  justify-content: end;
  gap: 10px;
  direction: ltr;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.9rem;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button-primary {
  color: #081116;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-color: rgba(255, 255, 255, 0.2);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 42px;
  padding: 4px;
  direction: ltr;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.language-switch button {
  min-width: 68px;
  height: 34px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.68);
  border: 0;
  border-radius: 6px;
  background: transparent;
  font-size: 0.76rem;
  font-weight: 900;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.language-switch button:hover,
.language-switch button:focus-visible {
  color: var(--white);
  outline: none;
}

.language-switch button[aria-pressed="true"] {
  color: #081116;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.button-large {
  min-height: 50px;
  padding-inline: 19px;
  font-size: 0.98rem;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  justify-self: end;
  min-width: 82px;
  height: 42px;
  padding: 0 12px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.83rem;
  font-weight: 850;
  cursor: pointer;
}

.menu-toggle svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 860px;
  overflow: hidden;
  color: var(--white);
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 16, 20, 0.97) 0%, rgba(7, 16, 20, 0.74) 37%, rgba(7, 16, 20, 0.2) 72%),
    linear-gradient(180deg, rgba(7, 16, 20, 0.52) 0%, rgba(7, 16, 20, 0.1) 44%, rgba(7, 16, 20, 0.94) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 190px;
  padding-top: 150px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.83rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.contact-section h2 {
  margin: 0;
  font-weight: 900;
  line-height: 0.98;
}

.hero h1 {
  max-width: 730px;
  font-size: 5.35rem;
}

.hero-lede {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.22rem;
  line-height: 1.65;
}

.hero-ar {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.77);
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-actions {
  margin-top: 34px;
}

.hero-metrics {
  position: absolute;
  z-index: 2;
  inset: auto 0 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  border: 1px solid var(--line-light);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: rgba(7, 16, 20, 0.74);
  backdrop-filter: blur(18px);
}

.hero-metrics div {
  min-width: 0;
  padding: 24px;
  border-right: 1px solid var(--line-light);
}

.hero-metrics div:last-child {
  border-right: 0;
}

.hero-metrics strong {
  display: block;
  color: var(--gold-light);
  font-size: 1.8rem;
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.9rem;
  line-height: 1.35;
}

.section {
  padding: 112px 0;
}

.section-light {
  background: var(--paper);
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(11, 111, 127, 0.22), rgba(197, 140, 45, 0.08)),
    var(--dark);
}

.section-tool {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(7, 16, 20, 0.96), rgba(12, 48, 54, 0.94)),
    var(--dark);
}

.section-heading,
.tool-layout,
.split-layout,
.team-layout,
.product-grid,
.pain-grid,
.process-strip,
.client-strip,
.contact-section,
.footer-inner,
.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading h2,
.section .split-layout h2,
.section .team-layout h2,
.tool-layout h2,
.contact-section h2 {
  font-size: 3.05rem;
}

.section-heading p:not(.eyebrow),
.tool-layout p,
.split-layout p,
.team-layout p,
.contact-section p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.section-dark .section-heading p:not(.eyebrow),
.section-tool .tool-layout p,
.section-tool .outcome-panel p,
.section-tool .outcome-panel li {
  color: rgba(255, 255, 255, 0.76);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.product-card,
.pain-grid article,
.team-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-2);
}

.product-card {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(7, 16, 20, 0.07);
  transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(11, 111, 127, 0.28);
  box-shadow: 0 18px 44px rgba(7, 16, 20, 0.12);
}

.product-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  color: var(--white);
  border-radius: 8px;
}

.product-icon svg {
  width: 24px;
  height: 24px;
}

.product-gold .product-icon {
  background: var(--gold);
}

.product-salon .product-icon {
  background: var(--rose);
}

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

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

.product-kicker {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.product-card h3,
.pain-grid h3,
.team-grid h3,
.outcome-panel h3 {
  margin: 0;
  font-size: 1.42rem;
  line-height: 1.18;
}

.product-card p:not(.product-kicker) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 24px;
}

.tag-row span,
.agent-list span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf6;
  font-size: 0.8rem;
  font-weight: 750;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin-top: 20px;
  color: var(--teal);
  font-weight: 850;
}

.text-link svg {
  width: 17px;
  height: 17px;
}

.tool-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 48px;
  align-items: center;
}

.tool-layout h2 {
  max-width: 560px;
}

.sector-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 160px));
  gap: 10px;
  margin-top: 28px;
}

.sector-button {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.sector-button svg {
  width: 19px;
  height: 19px;
}

.sector-button.is-active,
.sector-button:hover,
.sector-button:focus-visible {
  color: var(--white);
  border-color: rgba(240, 198, 106, 0.48);
  background: rgba(197, 140, 45, 0.18);
  outline: none;
}

.outcome-panel {
  min-height: 500px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
}

.panel-kicker {
  margin: 0 0 12px;
  color: var(--gold-light);
  font-size: 0.84rem;
  font-weight: 850;
  text-transform: uppercase;
}

.outcome-panel h3 {
  max-width: 640px;
  color: var(--white);
  font-size: 2.2rem;
}

.outcome-panel p {
  margin: 18px 0 0;
  max-width: 650px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 0.98rem;
  line-height: 1.55;
}

.check-list svg {
  width: 19px;
  height: 19px;
  margin-top: 2px;
  color: var(--gold-light);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  gap: 56px;
  align-items: center;
}

.agent-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.agent-list span {
  gap: 7px;
}

.agent-list svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
}

.console {
  padding: 18px;
  color: var(--white);
  border: 1px solid rgba(7, 16, 20, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(8, 17, 22, 0.92), rgba(12, 54, 62, 0.9)),
    var(--dark);
  box-shadow: var(--shadow);
}

.console-top {
  display: flex;
  gap: 7px;
  padding: 3px 0 18px;
}

.console-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
}

.console-top span:nth-child(2) {
  background: var(--teal-light);
}

.console-top span:nth-child(3) {
  background: var(--rose);
}

.console-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 58px;
  padding: 0 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.console-row strong {
  font-size: 0.96rem;
}

.console-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 30px;
  padding: 0 10px;
  color: #071014;
  border-radius: 8px;
  background: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 850;
}

.process-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper-2);
}

.process-strip div {
  min-height: 128px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.process-strip div:last-child {
  border-right: 0;
}

.process-strip strong {
  display: block;
  color: var(--gold);
  font-size: 0.88rem;
}

.process-strip span {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-size: 1.03rem;
  font-weight: 850;
  line-height: 1.32;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pain-grid article {
  min-height: 240px;
  padding: 24px;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.pain-grid svg {
  width: 30px;
  height: 30px;
  margin-bottom: 26px;
  color: var(--gold-light);
}

.pain-grid p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.team-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 56px;
  align-items: start;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

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

.team-grid span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  color: var(--white);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  font-weight: 900;
}

.team-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.client-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 46px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.client-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf6;
  color: var(--ink-soft);
  font-weight: 850;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  padding: 58px 0;
}

.contact-section h2 {
  color: var(--white);
}

.contact-section p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
}

#contact {
  width: 100%;
  max-width: none;
  padding-inline: max(16px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(7, 16, 20, 0.94), rgba(11, 111, 127, 0.72)),
    var(--dark);
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background:
    linear-gradient(180deg, #050b0e 0%, #071014 100%);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(180px, 0.7fr) minmax(260px, 0.95fr);
  gap: 42px;
  padding: 44px 0 34px;
}

.footer-main p {
  max-width: 360px;
  margin: 18px 0 0;
  line-height: 1.65;
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.62);
}

.footer-column h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 0.98rem;
}

.footer-column a,
.footer-column span {
  display: block;
  margin-top: 10px;
}

.footer-column a:hover {
  color: var(--gold-light);
}

.footer-contact {
  font-style: normal;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0 26px;
  color: rgba(255, 255, 255, 0.52);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.84rem;
}

html[dir="rtl"] body {
  font-family: Tahoma, Arial, "Segoe UI", sans-serif;
}

html[dir="rtl"] .site-nav,
html[dir="rtl"] .header-actions,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .contact-actions,
html[dir="rtl"] .agent-list,
html[dir="rtl"] .tag-row,
html[dir="rtl"] .client-strip,
html[dir="rtl"] .footer-bottom {
  direction: rtl;
}

html[dir="rtl"] .hero-content,
html[dir="rtl"] .section-heading,
html[dir="rtl"] .tool-layout,
html[dir="rtl"] .split-layout,
html[dir="rtl"] .team-layout,
html[dir="rtl"] .contact-section,
html[dir="rtl"] .footer-inner,
html[dir="rtl"] .product-card,
html[dir="rtl"] .pain-grid article,
html[dir="rtl"] .outcome-panel {
  text-align: right;
}

html[dir="rtl"] .check-list li {
  grid-template-columns: 1fr 22px;
}

html[dir="rtl"] .check-list svg {
  grid-column: 2;
  grid-row: 1;
}

html[dir="rtl"] .check-list span {
  grid-column: 1;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr);
    justify-content: space-between;
    direction: ltr;
  }

  .site-nav {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .mobile-tools {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-open .site-nav {
    position: fixed;
    inset: 90px 16px auto 16px;
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(7, 16, 20, 0.96);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  }

  .nav-open .site-nav a {
    min-height: 48px;
  }

  .hero {
    min-height: 780px;
  }

  .hero-bg {
    object-position: 64% center;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero-content {
    margin-bottom: 172px;
  }

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

  .tool-layout,
  .split-layout,
  .team-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .outcome-panel {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: calc(100% - 20px);
    min-height: 66px;
    margin-top: 10px;
    padding: 9px 10px;
    gap: 10px;
  }

  .language-switch {
    min-height: 40px;
    padding: 4px;
    background: rgba(255, 255, 255, 0.1);
  }

  .language-switch button {
    min-width: 62px;
    height: 31px;
    padding-inline: 9px;
    font-size: 0.72rem;
  }

  .menu-toggle {
    min-width: 76px;
    height: 40px;
    padding-inline: 10px;
    background: rgba(255, 255, 255, 0.1);
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-mark img {
    width: 30px;
    height: 30px;
  }

  .hero {
    display: block;
    min-height: auto;
    padding-bottom: 26px;
  }

  .hero-bg {
    object-position: 72% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 16, 20, 0.98) 0%, rgba(7, 16, 20, 0.82) 52%, rgba(7, 16, 20, 0.36) 100%),
      linear-gradient(180deg, rgba(7, 16, 20, 0.44) 0%, rgba(7, 16, 20, 0.18) 44%, rgba(7, 16, 20, 0.96) 100%);
  }

  .hero-content {
    width: calc(100% - 28px);
    margin: 0 auto 24px;
    padding-top: 128px;
  }

  .hero h1 {
    max-width: 330px;
    font-size: 2.7rem;
    line-height: 1;
  }

  .hero-lede {
    max-width: 340px;
    margin-top: 18px;
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .hero-ar {
    max-width: 340px;
    margin-top: 12px;
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-metrics {
    position: relative;
    inset: auto;
    grid-template-columns: repeat(2, 1fr);
    width: calc(100% - 28px);
    margin: 0 auto;
    border: 1px solid var(--line-light);
    border-radius: 8px;
    overflow: hidden;
  }

  .hero-metrics div {
    padding: 18px;
  }

  .hero-metrics div:nth-child(2) {
    border-right: 0;
  }

  .hero-metrics div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-light);
  }

  .section {
    padding: 62px 0;
  }

  .section-heading,
  .tool-layout,
  .split-layout,
  .team-layout,
  .product-grid,
  .pain-grid,
  .process-strip,
  .client-strip,
  .contact-section,
  .footer-inner,
  .footer-bottom {
    width: calc(100% - 28px);
  }

  #contact {
    padding-inline: 14px;
  }

  .section-heading h2,
  .section .split-layout h2,
  .section .team-layout h2,
  .tool-layout h2,
  .contact-section h2,
  .outcome-panel h3 {
    font-size: 2rem;
    line-height: 1.08;
  }

  .product-grid,
  .pain-grid,
  .team-grid,
  .process-strip,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    gap: 26px;
    padding: 38px 0 24px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 24px;
  }

  .product-card {
    min-height: auto;
    padding: 20px;
  }

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

  .sector-button {
    min-height: 50px;
  }

  .outcome-panel {
    padding: 24px;
  }

  .split-layout,
  .team-layout,
  .tool-layout {
    gap: 34px;
  }

  .console-row {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    min-height: 76px;
  }

  .process-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-strip div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 380px) {
  .site-header {
    width: calc(100% - 16px);
    padding-inline: 8px;
  }

  .mobile-tools {
    gap: 6px;
  }

  .language-switch button {
    min-width: 52px;
    padding-inline: 7px;
  }

  .menu-toggle {
    min-width: 42px;
    padding: 0;
  }

  .menu-toggle span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
