:root {
  --ink: #0f1720;
  --ink-soft: #334155;
  --muted: #455768;
  --line: #d7e0e8;
  --paper: #f5f8fa;
  --surface: #ffffff;
  --brand: #0e7490;
  --brand-deep: #0a5569;
  --brand-soft: #e6f4f7;
  --accent: #b45309;
  --success: #166534;
  --success-bg: #dcfce7;
  --error: #991b1b;
  --error-bg: #fee2e2;
  --nav-h: 72px;
  --max: 1120px;
  --font: "Heebo", "Segoe UI", Tahoma, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  inset-inline-start: 16px;
  top: -48px;
  background: var(--ink);
  color: #fff;
  padding: 8px 14px;
  z-index: 2000;
}

.skip-link:focus {
  top: 12px;
}

/* —— Nav —— */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--nav-h);
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px clamp(16px, 4vw, 48px);
  background: rgba(245, 248, 250, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.nav.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 255, 255, 0.92);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--brand-deep);
}

.brand__mark {
  width: 40px;
  height: 40px;
  color: var(--brand);
}

.brand__name {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.nav__links {
  display: none;
  align-items: center;
  gap: 6px;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.9rem;
}

.nav__links > a,
.nav-drop__btn {
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.18s var(--ease), color 0.18s var(--ease);
}

.nav__links > a:hover,
.nav__links > a:focus-visible,
.nav-drop__btn:hover,
.nav-drop__btn:focus-visible,
.nav__links > a[aria-current="page"],
.nav-drop.is-current .nav-drop__btn,
.nav-drop.is-open .nav-drop__btn {
  color: var(--brand-deep);
  background: var(--brand-soft);
}

.nav-drop {
  position: relative;
}

.nav-drop__btn {
  appearance: none;
  background: none;
  border: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font: inherit;
  font-weight: 500;
  color: inherit;
  cursor: pointer;
  white-space: nowrap;
}

.nav-drop__chev {
  width: 0.42em;
  height: 0.42em;
  border-inline-end: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s var(--ease);
}

.nav-drop.is-open .nav-drop__chev,
.nav-drop:hover .nav-drop__chev,
.nav-drop:focus-within .nav-drop__chev {
  transform: rotate(225deg) translateY(-1px);
}

.nav-drop__menu {
  display: none;
  gap: 2px;
  min-width: 248px;
  padding: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.nav-drop.is-open .nav-drop__menu {
  display: grid;
}

.nav-drop__label {
  margin: 8px 12px 4px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-drop__label:first-child {
  margin-top: 2px;
}

.nav-drop__menu a + .nav-drop__label {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.nav-drop__menu a {
  display: grid;
  gap: 1px;
  padding: 9px 12px;
  border-radius: 9px;
  line-height: 1.25;
}

.nav-drop__item-name {
  font-weight: 600;
  color: var(--ink);
}

.nav-drop__item-desc {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
}

.nav-drop__menu a:hover,
.nav-drop__menu a:focus-visible,
.nav-drop__menu a[aria-current="page"] {
  background: var(--brand-soft);
}

.nav-drop__menu a[aria-current="page"] .nav-drop__item-name {
  color: var(--brand-deep);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  max-width: 100%;
  text-align: center;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease),
    color 0.2s var(--ease), border-color 0.2s var(--ease);
}

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

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--ink);
  color: #fff;
}

.btn--primary:hover {
  background: var(--brand-deep);
}

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

.btn--ghost:hover {
  border-color: var(--brand);
  color: var(--brand-deep);
}

.btn--email,
.btn--whatsapp {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 10px 18px;
  background: var(--brand);
  color: #fff;
  align-self: start;
  line-height: 1.3;
  overflow-wrap: normal;
}

.btn--email:hover,
.btn--whatsapp:hover {
  background: var(--brand-deep);
}

.btn--email__label {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0;
}

.btn--email__addr {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  opacity: 0.95;
}

.btn--block {
  width: 100%;
}

.nav__cta {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.92rem;
}

.nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav__toggle span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
}

@media (min-width: 1024px) {
  .nav__links {
    display: flex;
  }

  .nav-drop__menu {
    position: absolute;
    top: calc(100% + 8px);
    inset-inline-start: 0;
    z-index: 40;
    display: grid;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    box-shadow: 0 18px 44px rgba(15, 23, 32, 0.12);
    transition: opacity 0.16s var(--ease), transform 0.16s var(--ease),
      visibility 0.16s;
  }

  .nav-drop__menu::before {
    content: "";
    position: absolute;
    inset-inline: 0;
    bottom: 100%;
    height: 12px;
  }

  .nav-drop:hover .nav-drop__menu,
  .nav-drop:focus-within .nav-drop__menu,
  .nav-drop.is-open .nav-drop__menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
}

@media (max-width: 1023px) {
  .nav {
    flex-wrap: wrap;
  }

  .nav__toggle {
    display: inline-flex;
  }

  .nav__cta {
    display: none;
  }

  .nav__links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    order: 3;
    padding: 10px 0 14px;
  }

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

  .nav__links > a,
  .nav-drop__btn {
    width: 100%;
    justify-content: space-between;
    padding: 12px 12px;
    text-align: inherit;
  }

  .nav-drop__menu {
    margin: 0 0 6px;
    background: var(--paper);
  }

  .hero {
    min-height: unset;
    align-items: start;
  }

  .hero__content {
    padding: 28px 0 32px;
  }

  .hero__brand {
    font-size: clamp(2rem, 11vw, 2.6rem);
    margin-bottom: 14px;
  }

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

  .hero__lead {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  html[lang="he"] .hero h1,
  html[lang="he"] .hero__lead {
    max-width: none;
  }

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

/* —— Hero —— */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  min-height: calc(100dvh - var(--nav-h));
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero__visual {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 55% at 70% 15%, rgba(14, 116, 144, 0.16), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(180, 83, 9, 0.08), transparent 55%),
    linear-gradient(165deg, #eef5f8 0%, #f5f8fa 45%, #e8eef3 100%);
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/hero-grid.svg");
  background-size: cover;
  background-position: center;
  opacity: 0.9;
  animation: drift 22s linear infinite alternate;
}

.hero__visual::after {
  content: "";
  position: absolute;
  inset-inline: 8%;
  bottom: 12%;
  height: 42%;
  background:
    linear-gradient(90deg, transparent, rgba(14, 116, 144, 0.08), transparent),
    repeating-linear-gradient(
      90deg,
      rgba(15, 23, 32, 0.05) 0,
      rgba(15, 23, 32, 0.05) 1px,
      transparent 1px,
      transparent 9%
    );
  mask-image: linear-gradient(to top, black, transparent);
  pointer-events: none;
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1.02);
  }
  to {
    transform: translate3d(-1.5%, 1%, 0) scale(1.06);
  }
}

.hero__content {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(48px, 10vh, 120px) 0 clamp(56px, 9vh, 96px);
}

.hero__brand {
  font-size: clamp(3rem, 9vw, 5.75rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.92;
  color: var(--brand-deep);
  margin: 0 0 28px;
  opacity: 0;
  transform: translateY(24px);
  animation: rise 0.9s var(--ease) 0.1s forwards;
}

.hero__brand-tag {
  display: block;
  font-size: 0.28em;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--muted);
  margin-top: 14px;
}

.hero h1 {
  max-width: 16ch;
  margin: 0 0 18px;
  font-size: clamp(1.65rem, 3.4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(24px);
  animation: rise 0.9s var(--ease) 0.25s forwards;
}

.hero__lead {
  max-width: 38ch;
  margin: 0 0 32px;
  font-size: 1.1rem;
  color: var(--muted);
  opacity: 0;
  transform: translateY(24px);
  animation: rise 0.9s var(--ease) 0.4s forwards;
}

html[lang="he"] .hero h1 {
  max-width: 22ch;
}

html[lang="he"] .hero__lead {
  max-width: 46ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  opacity: 0;
  transform: translateY(24px);
  animation: rise 0.9s var(--ease) 0.55s forwards;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* —— Credentials —— */
.credentials {
  padding: 28px 0;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.credentials__inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.credentials__label {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

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

@media (min-width: 720px) {
  .credentials__list {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (min-width: 960px) {
  .credentials__list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.credential {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(14, 116, 144, 0.06), transparent 55%),
    var(--paper);
}

.credential__vendor {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand);
}

.credential strong {
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.credential > span:last-child {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

/* —— Sections —— */
.section {
  padding: clamp(72px, 12vw, 120px) 0;
}

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

.section__inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.section__head {
  max-width: 38rem;
  margin-bottom: clamp(36px, 6vw, 56px);
}

.section__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--brand);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.section__head h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.section__head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Products */
.product {
  padding: clamp(32px, 5vw, 48px) 0;
  border-top: 1px solid var(--line);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.product.is-in {
  opacity: 1;
  transform: none;
}

.product:last-child {
  border-bottom: 1px solid var(--line);
}

.product__header {
  max-width: 46rem;
  margin-bottom: 28px;
}

.product__name {
  margin: 0 0 10px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand-deep);
}

.product__header h3 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  letter-spacing: -0.03em;
}

.product__header p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.product__cols {
  display: grid;
  gap: 28px;
  margin-bottom: 28px;
}

@media (min-width: 860px) {
  .product__cols {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
  }
}

.product__cols h4 {
  margin: 0 0 12px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.02em;
}

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

.feature-list li {
  position: relative;
  padding-inline-start: 18px;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.45;
}

.feature-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 1px;
  background: var(--brand);
  opacity: 0.75;
}

.product__note {
  margin-top: 22px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

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

/* Expertise — stacked rows, not card grid */
.expertise-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.expertise-item {
  display: grid;
  gap: 16px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.expertise-item.is-in {
  opacity: 1;
  transform: none;
}

@media (min-width: 800px) {
  .expertise-item {
    grid-template-columns: 220px 1fr;
    gap: 40px;
    align-items: start;
    padding: 36px 0;
  }
}

.expertise-item__index {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.08em;
}

.expertise-item h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.expertise-item p {
  margin: 0 0 16px;
  color: var(--muted);
  max-width: 52ch;
}

.expertise-item p a {
  color: var(--brand-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

.tag {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--brand-soft);
  padding: 5px 10px;
  border-radius: 4px;
}

/* Platforms strip */
.platforms {
  padding: 28px 0;
  border-block: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
}

.platforms__inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 28px;
}

.platforms__label {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.platforms__items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-weight: 700;
  color: var(--ink-soft);
  letter-spacing: -0.02em;
}

.platforms__items span {
  position: relative;
}

.platforms__items span:not(:last-child)::after {
  content: "·";
  margin-inline-start: 22px;
  color: var(--line);
  font-weight: 400;
}

/* About */
.about {
  display: grid;
  gap: 36px;
}

@media (min-width: 860px) {
  .about {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: end;
  }
}

.about__panel {
  background:
    linear-gradient(145deg, rgba(14, 116, 144, 0.1), transparent 55%),
    var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(28px, 4vw, 40px);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about__panel strong {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2rem);
  line-height: 1.25;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.about__meta {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.about__meta span {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: baseline;
}

.about__meta b {
  color: var(--ink);
  font-weight: 700;
  min-width: 4.5rem;
}

.process-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: baseline;
}

.process {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
}

.process__arrow {
  color: var(--brand);
  font-weight: 700;
  line-height: 1;
}

/* Contact */
.contact {
  display: grid;
  gap: 40px;
}

@media (min-width: 860px) {
  .contact {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: start;
  }
}

.contact__intro h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  letter-spacing: -0.03em;
}

.contact__intro p {
  margin: 0 0 24px;
  color: var(--muted);
}

.contact__channels {
  display: grid;
  gap: 12px;
  justify-items: start;
}

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

.btn--email-alt {
  background: #fff;
  border-color: var(--brand);
  color: var(--brand-deep);
}

.btn--email-alt:hover {
  background: var(--brand-soft);
  color: var(--brand-deep);
}

.contact__channels span {
  color: var(--ink-soft);
  font-weight: 500;
}

.mail-list {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.mail-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
}

.mail-list__role {
  min-inline-size: 5.5em;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
}

.mail-list a {
  color: var(--brand-deep);
  font-weight: 600;
  direction: ltr;
  unicode-bidi: isolate;
}

.mail-list a:hover {
  text-decoration: underline;
}

.contact__hint {
  font-size: 0.9rem;
  color: var(--muted);
}

.form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(24px, 4vw, 40px);
}

.form-group {
  margin-bottom: 18px;
}

.form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.92rem;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 13px 14px;
  color: var(--ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease),
    background 0.2s var(--ease);
}

.form input:focus,
.form textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(14, 116, 144, 0.12);
}

.form textarea {
  resize: vertical;
  min-height: 120px;
}

.feedback {
  display: none;
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 0.95rem;
}

.feedback.is-visible {
  display: block;
}

.feedback--ok {
  background: var(--success-bg);
  color: var(--success);
}

.feedback--err {
  background: var(--error-bg);
  color: var(--error);
}

.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

footer {
  padding: 36px 0 48px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.footer__inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
}

.footer__brand {
  font-weight: 800;
  color: var(--brand-deep);
  letter-spacing: -0.03em;
}

.footer-mails {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 0.86rem;
}

.footer-mails a {
  color: var(--brand-deep);
  direction: ltr;
  unicode-bidi: isolate;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 0.86rem;
  flex-basis: 100%;
}

.footer-legal a[aria-current="page"] {
  font-weight: 700;
  color: var(--brand-deep);
}

.form-legal {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.form-legal a {
  color: var(--brand-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

footer a:hover {
  color: var(--brand-deep);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__visual::before,
  .hero__brand,
  .hero h1,
  .hero__lead,
  .hero__actions,
  .expertise-item {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
