:root {
  --brand: #d7001d;
  --brand-dark: #b60018;
  --ink: #10171f;
  --muted: #68717d;
  --line: #e7e9ed;
  --surface: #f7f8fa;
  --white: #fff;
  --green: #22b95c;
  --green-dark: #169647;
  --shadow: 0 14px 35px rgba(15, 24, 34, .08);
  --container: 1190px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 32px), var(--container)); margin-inline: auto; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Header */
.site-header { background: #fff; position: relative; z-index: 100; }
.navbar { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid rgba(17,24,32,.05); }
.admin-bar .navbar { top: 32px; }
.navbar__inner { min-height: 82px; display: grid; grid-template-columns: 210px 1fr auto; align-items: center; gap: 22px; }
.brand { display: inline-flex; align-items: center; width: 186px; }
.brand__default-logo { width: 170px; height: auto; }
.custom-logo-link { display: inline-flex; align-items: center; }
.custom-logo { max-width: 180px; max-height: 60px; width: auto; height: auto; }
.primary-nav .menu { list-style: none; display: flex; align-items: center; justify-content: center; gap: 30px; margin: 0; padding: 0; font-size: 14px; font-weight: 800; }
.primary-nav a { transition: color .18s ease; }
.primary-nav a:hover { color: var(--brand); }
.navbar__actions { display: flex; align-items: center; gap: 14px; }
.navbar__search { width: 43px; height: 43px; border-radius: 50%; display: grid; place-items: center; background: #f5f6f8; }
.navbar__search svg { width: 21px; height: 21px; fill: none; stroke: var(--ink); stroke-width: 1.8; stroke-linecap: round; }
.nav-toggle { display: none; border: 0; background: transparent; padding: 9px; }
.nav-toggle span:not(.screen-reader-text) { display: block; width: 25px; height: 2px; background: var(--ink); margin: 5px 0; }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 21px; border: 0; border-radius: 8px; background: var(--brand); color: #fff; font-size: 13px; font-weight: 800; white-space: nowrap; transition: background .18s ease, transform .18s ease, box-shadow .18s ease; }
.button:hover { background: var(--brand-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 9px 22px rgba(215,0,29,.16); }
.navbar__cta { min-width: 158px; }
.button--small { min-height: 40px; padding: 0 19px; font-size: 13px; border-radius: 7px; }
.button--outline { min-height: 38px; border: 1px solid rgba(255,255,255,.75); background: transparent; }
.button--outline:hover { background: #fff; color: #10171f; box-shadow: none; }

/* Hero / slider */
.hero--reference {
  width: 100%;
  aspect-ratio: 1168 / 352;
  height: auto;
  background-image: url('../images/hero-reference.png');
  background-position: center top;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-color: #26333d;
  position: relative;
  overflow: hidden;
}
.hero__mobile-copy { display: none; }

/* Reference-like feature strip directly below slider */
.benefits { padding: 20px 0; border-bottom: 1px solid #eceef1; background: #fff; }
.benefits__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.benefit { display: flex; align-items: center; gap: 12px; min-width: 0; }
.benefit__icon { width: 40px; height: 40px; border: 1px solid #e4e7ea; border-radius: 50%; flex: 0 0 auto; display: grid; place-items: center; color: var(--brand); font-size: 17px; font-weight: 900; }
.benefit strong, .benefit small { display: block; }
.benefit strong { font-size: 15px; line-height: 1.25; }
.benefit small { color: var(--muted); margin-top: 4px; font-size: 13px; line-height: 1.45; }

.section { padding: 30px 0; }
.section--categories { padding-top: 28px; padding-bottom: 12px; }
.section--vehicles { padding-top: 22px; padding-bottom: 24px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 16px; }
.section-heading h2 { margin: 0; font-size: 32px; line-height: 1.08; letter-spacing: -.85px; }
.section-heading p { margin: 8px 0 0; color: var(--muted); font-size: 14px; line-height: 1.5; }
.section-heading > a { color: var(--brand); font-size: 13px; font-weight: 850; white-space: nowrap; }
.section-heading > a span { margin-left: 4px; font-size: 16px; }

/* Vehicle category slider/cards */
.category-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.category-card { min-width: 0; background: #f8f9fa; border: 1px solid #e8eaed; border-radius: 9px; min-height: 124px; padding: 8px 10px 10px; display: grid; grid-template-columns: minmax(0,1fr) 30px; grid-template-rows: 76px auto; align-items: center; transition: transform .18s ease, box-shadow .18s ease; }
.category-card:hover { transform: translateY(-2px); box-shadow: 0 9px 20px rgba(17,24,32,.06); }
.category-card__image { grid-column: 1 / -1; height: 72px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.category-card__image img { width: 100%; height: 68px; object-fit: contain; object-position: center; mix-blend-mode: multiply; }
.category-card__copy { min-width: 0; align-self: end; }
.category-card strong, .category-card small { display: block; }
.category-card strong { font-size: 11px; line-height: 1.2; }
.category-card small { margin-top: 3px; font-size: 9.5px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.category-card b { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: #fff; border: 1px solid #e4e6e9; font-size: 17px; font-weight: 600; align-self: end; justify-self: end; }

/* Featured vehicles */
.vehicle-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; }
.vehicle-card { min-width: 0; overflow: hidden; background: #fff; border: 1px solid #e2e5e9; border-radius: 12px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.vehicle-card:hover { transform: translateY(-3px); border-color: #d6dbe0; box-shadow: 0 16px 34px rgba(17,24,32,.08); }
.vehicle-card__visual {
  position: relative;
  height: 184px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  background: radial-gradient(circle at 50% 82%, #eef1f4 0 13%, transparent 46%), linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
  border-bottom: 1px solid #f0f1f3;
}
.vehicle-card__visual::after {
  content: '';
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 20px;
  height: 12px;
  border-radius: 50%;
  background: rgba(20,27,35,.11);
  filter: blur(9px);
  z-index: 0;
}
.vehicle-card__image {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  height: 116%;
  max-width: 96%;
  object-fit: contain;
  object-position: center;
  transform: translateY(8px);
  filter: drop-shadow(0 9px 7px rgba(17,24,32,.10));
}
.vehicle-card--dacia-sandero-stepway .vehicle-card__image { height: 113%; transform: translateY(7px); }
.vehicle-card--fiat-fiorino .vehicle-card__image { height: 116%; transform: translateY(7px); }
.vehicle-card--fiat-egea .vehicle-card__image { height: 112%; transform: translateY(8px); }
.vehicle-card__badge { position: absolute; left: 14px; bottom: 12px; z-index: 3; background: rgba(255,255,255,.96); padding: 6px 9px; border-radius: 6px; font-size: 10px; font-weight: 850; box-shadow: 0 4px 14px rgba(17,24,32,.08); }
.vehicle-card__body { padding: 15px 16px 16px; }
.vehicle-card h3 { margin: 0; font-size: 19px; line-height: 1.2; }
.vehicle-card__specs { display: flex; gap: 12px; flex-wrap: wrap; color: #69727d; margin-top: 10px; font-size: 12px; }
.vehicle-card__footer { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-top: 15px; }
.vehicle-card__hint { color: var(--muted); font-size: 12px; line-height: 1.4; max-width: 150px; }

/* Promo area mirrors the reference proportions */
.promo-section { padding-top: 6px; padding-bottom: 32px; }
.promo-grid { display: grid; grid-template-columns: 2.05fr 1fr; gap: 12px; }
.promo { min-height: 145px; border-radius: 10px; padding: 19px 20px; position: relative; overflow: hidden; }
.promo h2 { margin: 6px 0 8px; font-size: 26px; line-height: 1.08; letter-spacing: -.7px; max-width: 500px; }
.promo p { margin: 0 0 14px; max-width: 520px; font-size: 13px; line-height: 1.5; }
.eyebrow { font-size: 10.5px; letter-spacing: 1.45px; font-weight: 900; }
.promo--dark { color: #fff; display: flex; gap: 17px; align-items: flex-start; background: linear-gradient(90deg, rgba(11,19,27,.98), rgba(11,19,27,.78)), url('../images/hero-mobile-bg.png') center / cover no-repeat; }
.promo__mark { width: 50px; height: 50px; border-radius: 8px; flex: 0 0 auto; display: grid; place-items: center; background: var(--brand); color: #fff; font-size: 25px; font-weight: 950; }
.promo--bergama { background: linear-gradient(90deg, rgba(255,255,255,.97) 0 48%, rgba(255,255,255,.36)), url('../images/hero-mobile-bg.png') 76% center / cover no-repeat; border: 1px solid #e2e5e8; }
.promo--bergama h2 { max-width: 280px; font-size: 23px; }
.promo--bergama p { max-width: 210px; color: #525b66; }
.text-link { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 900; border: 1px solid #d7dade; border-radius: 6px; padding: 9px 13px; background: rgba(255,255,255,.92); }

/* Why us */
.why-us { background: #f7f8fa; padding-top: 30px; padding-bottom: 34px; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.why-card { padding: 26px; background: #fff; border: 1px solid #e6e8ec; border-radius: 12px; }
.why-card > span { color: var(--brand); font-weight: 900; font-size: 13px; }
.why-card h3 { margin: 12px 0 8px; font-size: 20px; }
.why-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

/* Footer */
.site-footer { background: #fff; border-top: 1px solid #e9ebee; padding: 36px 0 18px; color: #47515c; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .75fr 1.1fr 1.25fr; gap: 36px; }
.site-footer h3 { margin: 0 0 11px; color: var(--ink); font-size: 14px; }
.site-footer p, .site-footer li, .site-footer a { font-size: 12.5px; line-height: 1.6; }
.footer-brand p { max-width: 290px; }
.brand--footer { margin-bottom: 11px; }
.brand__default-logo--footer { width: 145px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 7px; }
.footer-cta p { margin-top: 0; }
.button--footer { min-height: 40px; font-size: 10.5px; padding-inline: 15px; }
.footer-bottom { margin-top: 28px; padding-top: 14px; border-top: 1px solid #eceef1; font-size: 10px; color: #89919a; }

/* Mobile quick action bar */
.mobile-action-bar { display: none; }

/* Internal pages */
.page-hero { padding: 65px 0; color: #fff; background: linear-gradient(90deg, rgba(12,20,29,.92), rgba(12,20,29,.62)), url('../images/hero-mobile-bg.png') center / cover no-repeat; }
.page-hero--compact h1 { margin: 9px 0 6px; font-size: clamp(39px,4.2vw,58px); letter-spacing: -2px; }
.page-hero p { margin: 0; max-width: 700px; color: rgba(255,255,255,.8); }
.page-section { min-height: 60vh; background: #f7f8fa; }
.content-layout { max-width: 1000px; }
.content-card { background: #fff; border: 1px solid #e6e8ec; border-radius: 12px; padding: clamp(24px,5vw,52px); }
.content-card h1 { margin-top: 0; }
.entry-content { color: #333b45; }
.entry-content a { color: var(--brand); text-decoration: underline; }

@media (max-width: 1120px) {
  .navbar__inner { grid-template-columns: 185px 1fr auto; gap: 16px; }
  .primary-nav .menu { gap: 19px; font-size: 12px; }
  .navbar__cta { min-width: 145px; padding-inline: 16px; font-size: 12px; }
  .hero--reference { aspect-ratio: 1168 / 352; height: auto; background-position: center top; background-size: 100% 100%; }
  .benefits__grid { gap: 14px; }
}

@media (max-width: 920px) {
  .navbar__inner { min-height: 72px; grid-template-columns: 1fr auto; }
  .navbar__actions { display: none; }
  .nav-toggle { display: block; }
  .primary-nav { position: fixed; top: 82px; left: 16px; right: 16px; opacity: 0; transform: translateY(-8px); pointer-events: none; background: #fff; border: 1px solid #e5e7ea; border-radius: 12px; padding: 12px 15px; box-shadow: 0 18px 45px rgba(17,24,32,.14); transition: .2s ease; z-index: 200; }
  .admin-bar .primary-nav { top: 114px; }
  .primary-nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .primary-nav .menu { display: block; }
  .primary-nav .menu li a { display: block; padding: 11px 8px; border-bottom: 1px solid #eff1f3; }
  .hero--reference { height: 480px; background: linear-gradient(90deg, rgba(10,18,27,.82), rgba(10,18,27,.28)), url('../images/hero-mobile-bg.png') center / cover no-repeat; }
  .hero__mobile-copy { display: flex; height: 100%; color: #fff; flex-direction: column; justify-content: center; max-width: 570px; }
  .hero__mobile-copy .hero__title { margin: 10px 0 12px; font-size: clamp(42px, 8vw, 62px); line-height: .98; letter-spacing: -2.7px; }
  .hero__mobile-copy p { margin: 0; font-size: 15px; line-height: 1.5; max-width: 500px; }
  .hero__trust { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 24px; font-size: 11px; font-weight: 800; }
  .benefits__grid { grid-template-columns: repeat(2,1fr); row-gap: 18px; }
  .category-grid { grid-template-columns: repeat(3,1fr); }
  .vehicle-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 620px) {
  body { padding-bottom: 82px; }
  .container { width: calc(100% - 28px); }
  .navbar__inner { min-height: 68px; }
  .brand { width: 158px; }
  .brand__default-logo, .custom-logo { width: 148px; max-height: 52px; }
  .hero--reference { height: 460px; background-position: 58% center; }
  .hero__mobile-copy { justify-content: flex-end; padding-bottom: 42px; }
  .hero__mobile-copy .hero__title { font-size: 40px; letter-spacing: -2px; }
  .hero__mobile-copy p { font-size: 13px; }
  .hero__trust { gap: 10px 12px; font-size: 9.5px; margin-top: 20px; }
  .benefits { padding: 17px 0; }
  .benefits__grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px 10px; }
  .benefit { align-items: flex-start; gap: 9px; }
  .benefit__icon { width: 34px; height: 34px; font-size: 14px; }
  .benefit strong { font-size: 10.5px; }
  .benefit small { font-size: 9px; }
  .section { padding: 27px 0; }
  .section--categories { padding-bottom: 8px; }
  .section--vehicles { padding-top: 19px; }
  .section-heading { align-items: flex-start; margin-bottom: 14px; }
  .section-heading h2 { font-size: 23px; }
  .section-heading p { font-size: 11px; }
  .section-heading > a { display: none; }
  .category-grid { display: flex; gap: 10px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 1px 1px 10px; margin-right: -14px; scrollbar-width: none; }
  .category-grid::-webkit-scrollbar { display: none; }
  .category-card { flex: 0 0 178px; min-height: 120px; scroll-snap-align: start; }
  .vehicle-grid { grid-template-columns: 1fr; gap: 12px; }
  .vehicle-card { max-width: 390px; width: 100%; margin-inline: auto; }
  .vehicle-card__visual { height: 205px; padding: 0 18px; }
  .vehicle-card__image { height: 114%; max-width: 98%; transform: translateY(8px); }
  .vehicle-card--dacia-sandero-stepway .vehicle-card__image,
  .vehicle-card--fiat-fiorino .vehicle-card__image,
  .vehicle-card--fiat-egea .vehicle-card__image { height: 112%; }
  .promo-grid, .why-grid, .footer-grid { grid-template-columns: 1fr; }
  .promo--dark { display: block; }
  .promo__mark { margin-bottom: 13px; }
  .promo { min-height: 165px; }
  .footer-grid { gap: 24px; }

  .mobile-action-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 74px;
    background: #fff;
    border-top: 1px solid #dfe3e7;
    box-shadow: 0 -8px 25px rgba(15,24,34,.10);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .mobile-action {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #66707a;
    font-size: 10px;
    font-weight: 800;
  }
  .mobile-action__icon { width: 28px; height: 28px; display: grid; place-items: center; }
  .mobile-action__icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
  .mobile-action--call { color: var(--ink); }
  .mobile-action__icon--primary {
    position: absolute;
    top: -27px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    color: #fff;
    background: var(--green);
    border: 5px solid #fff;
    box-shadow: 0 4px 0 rgba(34,185,92,.16), 0 8px 22px rgba(34,185,92,.28);
  }
  .mobile-action__icon--primary svg { width: 27px; height: 27px; stroke-width: 2; }
  .mobile-action--call > span:last-child { margin-top: 32px; }
  .mobile-action--call:active .mobile-action__icon--primary { background: var(--green-dark); }
}


/* v1.8 responsive header: logo stays inside the header flow */
@media (max-width: 920px) {
  .site-header { position: relative; z-index: 300; background: #fff; }
  .navbar { position: relative; top: auto; background: #fff; }
  .navbar__inner {
    position: relative;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    align-items: center;
    min-height: 76px;
    gap: 0;
  }
  .brand {
    position: static;
    transform: none;
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    width: auto;
    max-width: 100%;
    z-index: auto;
  }
  .brand a, .custom-logo-link { display: inline-flex; align-items: center; justify-content: center; }
  .nav-toggle {
    position: static;
    transform: none;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    z-index: 3;
  }
  .primary-nav { top: 76px; }
  .primary-nav .menu { font-size: 15px; }
  .why-us { padding-top: 32px; padding-bottom: 32px; }
}

@media (max-width: 620px) {
  .navbar__inner { min-height: 70px; grid-template-columns: 44px minmax(0, 1fr) 44px; }
  .brand { width: auto; }
  .brand__default-logo, .custom-logo { width: 150px; max-width: 150px; max-height: 50px; object-fit: contain; }
  .nav-toggle { padding: 8px 6px; }
  .nav-toggle span:not(.screen-reader-text) { width: 27px; height: 2.5px; margin: 5px 0; }
  .primary-nav { top: 70px; }
  .primary-nav .menu { font-size: 15px; }
  .primary-nav .menu li a { padding: 13px 10px; }

  .hero__mobile-copy p { font-size: 15px; }
  .hero__trust { font-size: 11.5px; line-height: 1.4; }

  .why-us { padding: 30px 0; }
  .why-us .section-heading { margin-bottom: 18px; }
  .why-us .section-heading h2 { font-size: 28px; line-height: 1.08; }
  .why-us .section-heading p { font-size: 14px; line-height: 1.5; }
  .why-grid { grid-template-columns: 1fr; gap: 12px; }
  .why-card { padding: 21px 20px; }
  .why-card > span { font-size: 13px; }
  .why-card h3 { font-size: 19px; margin: 9px 0 7px; }
  .why-card p { font-size: 14px; line-height: 1.55; }

  .benefit { gap: 10px; }
  .benefit__icon { width: 38px; height: 38px; font-size: 16px; }
  .benefit strong { font-size: 13px; }
  .benefit small { font-size: 11.5px; line-height: 1.4; }

  .section-heading h2 { font-size: 28px; }
  .section-heading p { font-size: 13.5px; }
  .vehicle-card h3 { font-size: 19px; }
  .vehicle-card__specs { font-size: 12px; gap: 11px; }
  .vehicle-card__hint { font-size: 12.5px; max-width: 160px; }
  .button--small { font-size: 13px; min-height: 42px; }

  .site-footer h3 { font-size: 15px; }
  .site-footer p, .site-footer li, .site-footer a { font-size: 13px; }
}

/* v1.7 hero and heading refinements */
@media (min-width: 921px) {
  .hero--reference {
    aspect-ratio: 1168 / 370;
    height: auto;
    background-size: cover;
    background-position: center center;
  }
}

.why-us .section-heading {
  justify-content: center;
  text-align: center;
}
.why-us .section-heading > div {
  width: 100%;
}
.why-us .section-heading p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* v1.9 SEO content + customer testimonials */
.seo-section {
  padding-top: 18px;
  padding-bottom: 38px;
  background: #fff;
}
.seo-panel {
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(0, 1.72fr);
  grid-template-rows: auto 1fr;
  gap: 20px 30px;
  padding: 30px;
  border: 1px solid #e3e6ea;
  border-radius: 16px;
  background: linear-gradient(145deg, #fff 0%, #fbfcfd 100%);
  box-shadow: 0 18px 45px rgba(17,24,32,.055);
}
.seo-panel__intro {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
}
.seo-panel__intro .eyebrow { color: var(--brand); }
.seo-panel__intro h1 {
  margin: 9px 0 12px;
  font-size: clamp(34px, 3.15vw, 46px);
  line-height: 1.02;
  letter-spacing: -1.65px;
}
.seo-panel__intro > p {
  margin: 0;
  max-width: 350px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.seo-panel__scroll {
  grid-column: 2;
  grid-row: 1 / span 2;
  max-height: 420px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 2px 22px 2px 2px;
  color: #39434d;
  scrollbar-width: thin;
  scrollbar-color: var(--brand) #eceff2;
}
.seo-panel__scroll::-webkit-scrollbar { width: 8px; }
.seo-panel__scroll::-webkit-scrollbar-track { background: #eceff2; border-radius: 20px; }
.seo-panel__scroll::-webkit-scrollbar-thumb { background: var(--brand); border-radius: 20px; }
.seo-panel__scroll:focus-visible {
  outline: 3px solid rgba(215,0,29,.15);
  outline-offset: 5px;
  border-radius: 8px;
}
.seo-panel__scroll p {
  margin: 0 0 17px;
  font-size: 15.5px;
  line-height: 1.78;
}
.seo-panel__scroll h2 {
  margin: 27px 0 14px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: -.65px;
}
.seo-panel__action {
  grid-column: 1;
  grid-row: 2;
  align-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding-top: 6px;
}
.seo-panel__action .button { min-height: 44px; }
.seo-panel__action > span {
  max-width: 320px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.testimonials {
  padding-top: 38px;
  padding-bottom: 46px;
  background: #f7f8fa;
  border-top: 1px solid #eef0f2;
}
.section-heading--testimonials {
  justify-content: flex-start;
  margin-bottom: 20px;
}
.section-heading--testimonials .eyebrow {
  display: block;
  margin-bottom: 7px;
  color: var(--brand);
}
.section-heading--testimonials h2 { font-size: 34px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.testimonial-card {
  min-width: 0;
  padding: 22px;
  border: 1px solid #e3e6ea;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(17,24,32,.045);
}
.testimonial-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff0f2;
  border: 1px solid #ffd9de;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
}
.testimonial-card__head strong {
  display: block;
  font-size: 14px;
  line-height: 1.25;
}
.testimonial-card__stars {
  display: block;
  margin-top: 4px;
  color: #f4aa00;
  font-size: 15px;
  letter-spacing: 1.2px;
}
.testimonial-card > p {
  margin: 0;
  color: #5e6874;
  font-size: 13.5px;
  line-height: 1.68;
}
.testimonial-card--placeholder { border-style: dashed; }

@media (max-width: 980px) {
  .seo-panel {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 18px;
  }
  .seo-panel__intro,
  .seo-panel__scroll,
  .seo-panel__action {
    grid-column: 1;
    grid-row: auto;
  }
  .seo-panel__intro > p { max-width: 680px; }
  .seo-panel__scroll { max-height: 390px; padding-right: 18px; }
  .testimonials-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .testimonial-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .seo-section { padding-top: 12px; padding-bottom: 26px; }
  .seo-panel {
    padding: 22px 18px;
    border-radius: 13px;
    gap: 16px;
  }
  .seo-panel__intro h1 {
    font-size: 31px;
    line-height: 1.06;
    letter-spacing: -1.1px;
  }
  .seo-panel__intro > p { font-size: 14px; line-height: 1.6; }
  .seo-panel__scroll {
    max-height: 410px;
    padding-right: 13px;
  }
  .seo-panel__scroll p { font-size: 14.5px; line-height: 1.72; margin-bottom: 15px; }
  .seo-panel__scroll h2 { font-size: 24px; margin-top: 24px; }
  .seo-panel__action .button { width: 100%; }
  .seo-panel__action > span { max-width: none; font-size: 11.5px; }

  .testimonials { padding-top: 30px; padding-bottom: 34px; }
  .section-heading--testimonials h2 { font-size: 28px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card:last-child { grid-column: auto; }
  .testimonial-card { padding: 19px; }
  .testimonial-card > p { font-size: 14px; }
}

