/* BiLi Solutions — pixel-match styles from Elementor post-181.css */

:root {
  --primary: #f9c193;
  --secondary: #313131;
  --text: #333333;
  --accent: #f87f18;
  /* WCAG AA variants of the brand orange:
     --accent-text  5.2:1 on white — small orange text
     --accent-strong 3.4:1 on white — large (24px+) bold headings */
  --accent-text: #b34e00;
  --accent-strong: #e86100;
  --dark: #202020;
  --dark-btn: #2c2c2c;
  --form-btn: #303030;
  --navy: #1c244b;
  --white: #ffffff;
  --footer-bg: #f2efec;
  --container: 1140px;
  --header-h: 70px;
  --phone-shadow: -11px 12px 25px rgba(243, 101, 74, 0.24);
  --carousel-glow: 0 0 20px 2px rgba(235, 157, 0, 0.5);
}

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

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

body {
  margin: 0;
  font-family: "Open Sans Hebrew", "Open Sans", Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--dark);
  overflow-x: clip;
  max-width: 100%;
}

/* Visible keyboard focus — required by IS-5568/WCAG 2.4.7 */
:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

#main-content {
  overflow-x: clip;
}

[id] {
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
}

img, video { max-width: 100%; height: auto; display: block; }

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

button, input, textarea { font: inherit; }

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 2px solid transparent;
  border-radius: 100px;
  font-family: "Open Sans Hebrew", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.9375rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-align: center;
}

.btn svg { width: 1rem; height: 1rem; flex-shrink: 0; }

.btn--login {
  background: var(--accent);
  color: var(--white);
  border-width: 1px;
  border-color: var(--secondary);
  padding: 6px 16px;
  font-size: 1.0625rem;
}

.btn--login:hover,
.btn--login:focus-visible {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--primary);
}

.btn--hero {
  background: var(--white);
  color: var(--secondary);
  border-color: var(--accent);
  padding: 8px 12px;
  flex-direction: row-reverse;
}

.btn--hero:hover,
.btn--hero:focus-visible {
  background: var(--accent);
  color: var(--dark);
}

.btn--accent {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--white);
  padding: 8px 24px;
  font-weight: 700;
}

.btn--accent:hover,
.btn--accent:focus-visible {
  background: var(--white);
  color: var(--text);
}

.btn--dark {
  background: var(--dark-btn);
  color: var(--white);
  border-color: var(--white);
  padding: 15px 35px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.9375rem;
}

.btn--dark:hover,
.btn--dark:focus-visible {
  background: var(--accent);
  color: var(--dark);
}

.btn--submit {
  width: 100%;
  background: var(--form-btn);
  color: var(--white);
  border: 1px solid var(--white);
  border-radius: 10px;
  padding: 12px;
  font-size: 1.0625rem;
}

.btn--submit:hover,
.btn--submit:focus-visible {
  background: var(--accent);
  color: var(--dark);
}

/* Shape dividers — Elementor tilt pattern */
.shape-divider {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  direction: ltr;
  pointer-events: none;
}

.shape-divider--bottom {
  bottom: -1px;
  transform: rotate(180deg);
  z-index: 1;
}

.shape-divider--top {
  top: -1px;
  z-index: 2;
}

.shape-divider svg {
  display: block;
  position: relative;
  left: 50%;
  width: calc(100% + 0.0813rem);
  height: 70px;
  transform: translateX(-50%);
}

.shape-divider--fill-white svg path { fill: var(--white); }
.shape-divider--fill-dark svg path { fill: var(--dark); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  min-height: var(--header-h);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  isolation: isolate;
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  min-height: var(--header-h);
  padding: 0 clamp(16px, 4%, 3rem);
}

.site-header__logo img {
  display: block;
  width: auto;
  height: 28px;
  object-fit: contain;
}

.site-header__nav {
  justify-self: center;
}

.site-header__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header__links a {
  color: var(--secondary);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.2s;
}

.site-header__links a:hover,
.site-header__links a:focus-visible {
  color: var(--accent-text);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.site-header__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin-inline: auto;
  background: var(--secondary);
  transition: transform 0.2s, opacity 0.2s;
}

.site-header.is-open .site-header__toggle span:nth-child(1) {
  transform: translateY(0.4375rem) rotate(45deg);
}

.site-header.is-open .site-header__toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .site-header__toggle span:nth-child(3) {
  transform: translateY(-0.4375rem) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  z-index: 2;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 10% 5% 70px;
  background: var(--dark);
  overflow: visible;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 70% at 22% 58%, rgba(243, 101, 74, 0.2) 0%, transparent 68%);
  z-index: 1;
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
}

.hero__visual {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: flex-end;
  margin-bottom: -200px;
}

.hero__phone-wrap {
  position: relative;
  z-index: 10;
  width: min(343px, 100%);
  will-change: transform;
}

.hero__content h1 {
  margin: 0;
  font-size: clamp(1.875rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.115;
  letter-spacing: -1.05px;
  color: var(--white);
  text-align: start;
}

.hero__content .hero__text {
  color: var(--white);
  text-align: start;
  margin: 1rem 0 1.5rem;
  font-size: 1.0625rem;
  line-height: 1.5;
}

.hero__content .hero__text p {
  margin: 0 0 0.5rem;
  font-weight: 400;
}

.hero__content .hero__text p:last-child {
  margin-bottom: 0;
}

.hero__phone {
  width: 100%;
  border-radius: 54px;
  box-shadow: var(--phone-shadow);
  display: block;
}

.hero__thumb {
  position: absolute;
  bottom: 200px;
  left: -52px;
  width: 150px;
  max-width: 44%;
  border: 2px solid var(--accent);
  border-radius: 5px;
  box-shadow: var(--phone-shadow);
  z-index: 5;
}

/* Features — Elementor section 317e7e48 */
.features {
  position: relative;
  background: var(--white);
  padding: 0 clamp(20px, 5%, 5.9375rem) 40px;
  margin-top: 0;
}

.features__inner {
  padding-top: 171px;
  max-width: 1714px;
  margin-inline: auto;
}

.features__title {
  margin: 57px 0 87px;
  text-align: center;
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -1.05px;
  color: var(--accent-strong);
}

.features__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 298px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  max-width: none;
  margin-inline: auto;
}

.features__col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}

.features__col--start { padding-inline-end: 91px; }
.features__col--end { padding-inline-start: 91px; }

.icon-box {
  text-align: center;
}

.icon-box__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
  color: var(--secondary);
}

.icon-box__icon svg {
  width: 40px;
  height: 40px;
  fill: currentColor;
}

.icon-box h3 {
  margin: 0 0 0.35rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.9375rem;
  color: var(--secondary);
}

.icon-box p {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.5;
  color: var(--text);
}

.features__video-wrap {
  padding: 0;
  justify-self: center;
}

.features__video-wrap video {
  display: block;
  width: 298px;
  max-width: 100%;
  height: auto;
  vertical-align: top;
  background: transparent;
}

/* About — Elementor section ef33225 */
.about {
  position: relative;
  background: transparent;
  padding: 200px clamp(20px, 15%, 17.8125rem) 15%;
  overflow: visible;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 10%;
  max-width: 1790px;
  margin-inline: auto;
}

.about__content h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.75rem, 3vw, 3.25rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -1.05px;
  color: var(--primary);
  text-align: start;
}

.about__content p {
  margin: 0 0 1rem;
  color: var(--white);
  text-align: start;
  line-height: 1.6;
}

.about__image img {
  width: 100%;
  max-width: 400px;
  margin-inline: auto;
  border-radius: 8px;
}

/* How it works */
.how {
  background: var(--white);
  padding: 5% 3%;
}

.how__intro {
  text-align: center;
  margin-bottom: 2rem;
}

.how__intro h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 3vw, 3.25rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -1.05px;
  color: var(--navy);
}

.how__intro p {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.9375rem;
  color: var(--accent-strong);
}

.how__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1200px;
  margin-inline: auto;
}

.how__image img {
  width: 100%;
  max-width: 500px;
  margin-inline: auto;
}

.how__steps {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 2rem;
}

.step-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 258px;
  margin-inline: auto;
}

.step-box__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 8px;
}

.step-box__icon svg { width: 100%; height: 100%; }

.step-box h4 {
  margin: 0 0 0.35rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.9375rem;
  color: var(--accent-strong);
}

.step-box p {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.5;
  color: var(--text);
}

.how__cta {
  text-align: center;
  margin-top: 2rem;
}

/* Testimonials */
.testimonials {
  min-height: 50vh;
  padding: 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: var(--dark);
}

.testimonials__label {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.9375rem;
  letter-spacing: 4px;
  color: var(--primary);
  text-align: center;
}

.testimonials__title {
  margin: 0;
  max-width: 66%;
  font-size: clamp(1.75rem, 3.5vw, 2.8125rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1.05px;
  color: var(--accent);
  text-align: center;
}

.testimonials__marquee {
  position: relative;
  width: min(1200px, 100%);
  margin-top: 20px;
  overflow: hidden;
  direction: ltr;
}

.testimonials__marquee-row {
  overflow: hidden;
  width: 100%;
}

.testimonials__marquee-row + .testimonials__marquee-row {
  margin-top: 24px;
}

.testimonials__marquee-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  will-change: transform;
}

.testimonials__marquee-track--left {
  animation: marquee-left 40s linear infinite;
}

.testimonials__marquee-track--right {
  animation: marquee-right 45s linear infinite;
}

.testimonials__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 80px;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--carousel-glow);
}

.testimonials__logo img {
  display: block;
  max-width: 100%;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.testimonials__marquee-fade {
  position: absolute;
  top: 0;
  width: 96px;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.testimonials__marquee-fade--start {
  left: 0;
  background: linear-gradient(to right, var(--dark), transparent);
}

.testimonials__marquee-fade--end {
  right: 0;
  background: linear-gradient(to left, var(--dark), transparent);
}

@keyframes marquee-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .testimonials__marquee-track--left,
  .testimonials__marquee-track--right {
    animation: none;
  }
}

.testimonials__cta { margin-top: 10px; }

/* FAQ */
.faq {
  background: var(--white);
  padding: 5% 10%;
}

.faq__header { text-align: center; margin-bottom: 2rem; }

.faq__label {
  margin: 0 0 0.75rem;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.9375rem;
  letter-spacing: 4px;
  color: var(--accent-text);
}

.faq__title {
  margin: 0;
  font-size: clamp(1.75rem, 3.5vw, 2.8125rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1.05px;
  color: var(--text);
}

.faq__list {
  max-width: 820px;
  margin: 0 auto;
  border-top: 3px solid var(--accent);
}

.faq__item { border-bottom: 3px solid #eee; }

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  padding: 25px 0;
  border: none;
  background: none;
  text-align: start;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.9375rem;
  color: var(--secondary);
  cursor: pointer;
}

.faq__question:hover,
.faq__question:focus-visible,
.faq__item.is-open .faq__question {
  color: var(--accent-strong);
}

.faq__icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  position: relative;
  color: var(--accent-strong);
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform 0.2s;
}

.faq__icon::before {
  top: 50%; left: 0; right: 0; height: 4px;
  border-radius: 2px;
  transform: translateY(-50%);
}

.faq__icon::after {
  left: 50%; top: 0; bottom: 0; width: 4px;
  border-radius: 2px;
  transform: translateX(-50%);
}

.faq__item.is-open .faq__icon::after { transform: translateX(-50%) scaleY(0); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq__answer-inner {
  padding: 0 0 25px;
  color: var(--secondary);
  font-size: 1.0625rem;
  line-height: 1.6;
}

.faq__item.is-open .faq__answer { max-height: 40rem; }

/* Contact */
.contact {
  margin-top: 150px;
  padding: 0 5%;
  background: var(--dark);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8%;
  align-items: center;
  max-width: var(--container);
  margin-inline: auto;
}

.contact__form-wrap h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 3vw, 3.25rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -1.05px;
  color: var(--primary);
  text-align: start;
}

.contact__form-wrap > p {
  margin: 0 0 1.5rem;
  color: var(--white);
  text-align: start;
  line-height: 1.6;
}

.contact-form { display: grid; gap: 10px; }

.contact-form input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 9px;
  background: var(--white);
  color: var(--text);
}

.contact-form input::placeholder { color: #757575; }

.contact-form input:focus {
  outline: 2px solid var(--accent-strong);
  outline-offset: 1px;
}

.contact-form__consent {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--white);
}

.contact-form__consent a {
  color: inherit;
  text-decoration: underline;
}

.form-message {
  padding: 0.75rem;
  border-radius: 9px;
  display: none;
  color: var(--white);
}

.form-message.is-visible { display: block; }
.form-message--success { background: rgba(76, 175, 80, 0.25); }
.form-message--error { background: rgba(244, 67, 54, 0.25); }

.contact__visual img {
  max-width: 100%;
  margin-inline: auto;
}

/* Footer */
.site-footer {
  position: relative;
  margin-top: 0;
  background: var(--footer-bg);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.site-footer__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.site-footer__decor::before,
.site-footer__decor::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  transform: rotate(-45deg);
}

.site-footer__decor::before {
  top: -120px;
  left: 8%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(49, 49, 49, 0.06) 0%, rgba(49, 49, 49, 0.01) 70%, transparent 100%);
}

.site-footer__decor::after {
  top: -80px;
  right: 12%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(248, 127, 24, 0.08) 0%, transparent 75%);
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(3, minmax(140px, 1fr));
  gap: 2rem 2.5rem;
  max-width: 1200px;
  margin-inline: auto;
  padding: 3rem clamp(20px, 5%, 3rem) 2rem;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.site-footer__logo img {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.site-footer__tagline {
  margin: 0;
  max-width: 28ch;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--secondary);
}

.site-footer__heading {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--secondary);
}

.site-footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__links li + li {
  margin-top: 0.65rem;
}

.site-footer__links a {
  display: inline-block;
  padding-block: 4px;
  color: var(--text);
  font-size: 0.875rem;
  line-height: 1.4;
  transition: color 0.2s;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: var(--accent-text);
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-block: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary);
}

.site-footer__whatsapp:hover {
  color: var(--accent-text);
}

.site-footer__whatsapp svg {
  width: 20px;
  height: 20px;
  fill: #25d366;
  flex-shrink: 0;
}

.site-footer__bottom {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding: 1rem clamp(20px, 5%, 3rem) 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  max-width: 1200px;
  margin-inline: auto;
  font-size: 0.8125rem;
  color: var(--secondary);
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
  margin-top: 0.5rem;
}

.site-footer__legal a {
  font-size: 0.875rem;
  text-decoration: underline;
}

/* Legal pages */
.legal-page {
  background: var(--white);
  color: var(--text);
  padding: 3rem 0 5rem;
}

.legal-page h1,
.legal-page h2 {
  line-height: 1.3;
  color: var(--secondary);
}

.legal-page a:not(.back-link) {
  color: var(--accent-text);
  text-decoration: underline;
}

.legal-meta {
  color: #5c5c5c;
  font-size: 0.9375rem;
}

.back-link { color: var(--accent-text); font-weight: 600; }

/* 404 page */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.error-page .container { text-align: center; }
.error-page img { margin: 0 auto 1.5rem; }
.error-page__cta { margin-top: 2rem; }

/* Responsive */
@media (max-width: 64rem) {
  .hero__grid,
  .about__grid,
  .how__grid,
  .contact__grid,
  .features__grid {
    /* minmax(0, 1fr) — allows the track to shrink below fixed-width children on narrow screens */
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__content .hero__text { padding-inline-start: 0; }

  .site-header__inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-header__toggle {
    display: flex;
  }

  .site-header__nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    padding: 1rem clamp(16px, 4%, 3rem) 1.25rem;
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  }

  .site-header.is-open .site-header__nav {
    display: block;
  }

  .site-header__links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-header__links a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .site-header__links li:last-child a {
    border-bottom: none;
  }

  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  /* Mobile hero — text first, centered (matches the original site's mobile layout) */
  .hero__visual { justify-content: center; margin-bottom: -32px; }

  .hero__content {
    text-align: center;
  }

  .hero__content h1,
  .hero__content .hero__text {
    text-align: center;
  }

  .hero__thumb {
    left: 0;
    bottom: 28%;
  }

  .features__col--start,
  .features__col--end { padding: 0; }

  /* Natural DOM order on mobile: 2 icon boxes -> video -> 2 icon boxes (like the original) */

  /* About: text + button above the image; button centered */
  .about__image { order: 1; }

  .about__content .btn {
    display: flex;
    width: fit-content;
    margin-inline: auto;
  }

  .features {
    padding-inline: 20px;
  }

  .features__inner {
    padding-top: 80px;
  }

  .features__title {
    margin: 32px 0 40px;
    font-size: clamp(1.75rem, 6vw, 3.25rem);
  }

  .features__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .features__col--start,
  .features__col--end { padding: 0; }

  .about { padding: 75px 20px; }

  .contact { margin-top: 100px; }

  .testimonials__title { max-width: 100%; }

  .testimonials__logo {
    width: 100px;
    height: 68px;
    padding: 10px 12px;
  }

  .testimonials__marquee-track { gap: 28px; }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 40rem) {
  .hero { min-height: auto; padding-top: 45px; }

  .testimonials__logo {
    width: 88px;
    height: 60px;
  }

  .testimonials__logo img { max-height: 44px; }

  .testimonials__marquee-fade { width: 48px; }
}
