:root {
  --ink: #10221c;
  --muted: #61706a;
  --line: #dce7e1;
  --green: #14784c;
  --green-dark: #0b4f35;
  --water: #1679a7;
  --field: #f4f8f4;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.site-header {
  min-height: 92vh;
  background:
    linear-gradient(90deg, rgba(10, 32, 24, .88), rgba(10, 54, 57, .64), rgba(10, 32, 24, .18)),
    url("../images/hero_bg_1.jpg") center / cover no-repeat;
  color: var(--white);
}

.navbar {
  padding: 14px 0;
  background: rgba(5, 24, 19, .74);
  backdrop-filter: blur(12px);
}

.navbar .container {
  max-width: 1380px;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  display: block;
  width: min(220px, 50vw);
  height: 42px;
  max-width: 100%;
  object-fit: contain;
}

.navbar-brand:hover,
.nav-link:hover {
  color: #bfe8d4;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, .55);
}

.navbar-toggler-icon {
  background-image: linear-gradient(var(--white), var(--white));
  background-size: 24px 2px;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--white);
}

.navbar-toggler-icon::before {
  top: 8px;
}

.navbar-toggler-icon::after {
  bottom: 8px;
}

.nav-link {
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  padding: 8px 8px !important;
  white-space: nowrap;
}

.header-video {
  position: absolute;
  top: 148px;
  left: 28px;
  z-index: 4;
  width: min(420px, calc(100vw - 32px));
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .32);
}

.header-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.nav-quote {
  margin-left: 4px;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
}

.dropdown-menu {
  border: 0;
  border-radius: 8px;
  min-width: 280px;
  max-height: 78vh;
  overflow-y: auto;
  box-shadow: 0 18px 45px rgba(11, 38, 29, .18);
}

.menu-dropdown:hover > .dropdown-menu,
.menu-dropdown:focus-within > .dropdown-menu,
.menu-dropdown.is-open > .dropdown-menu {
  display: block;
}

.dropdown-header {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.dropdown-divider {
  border-top-color: var(--line);
}

.dropdown-item {
  color: var(--ink);
  font-weight: 700;
  white-space: normal;
}

.dropdown-item:hover {
  background: var(--field);
  color: var(--green-dark);
}

.hero {
  min-height: calc(92vh - 78px);
  display: flex;
  align-items: center;
  padding: 76px 0 54px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(380px, 600px);
  align-content: center;
  align-items: end;
  gap: 42px;
}

.hero-copy {
  grid-column: 2;
  max-width: 600px;
  margin-left: 0;
  justify-self: end;
}

.eyebrow,
.section-kicker {
  display: inline-block;
  color: #79d6ac;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 600px;
  margin: 12px 0 14px;
  font-size: clamp(34px, 4.8vw, 56px);
  line-height: 1.04;
  font-weight: 900;
}

.hero p {
  max-width: 560px;
  color: rgba(255, 255, 255, .86);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.btn {
  border-radius: 8px;
  padding: 13px 20px;
  font-weight: 800;
}

.btn-primary {
  background: var(--green);
  border-color: var(--green);
}

.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.section {
  padding: 78px 0;
}

.cepex-media-section {
  background: #fff;
  padding-bottom: 34px;
}

.cepex-media-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.cepex-media-heading .section-kicker {
  color: var(--green);
}

.cepex-media-heading h2 {
  margin: 8px 0 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  font-weight: 900;
}

.cepex-media-slider {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #071710;
  box-shadow: 0 22px 48px rgba(16, 34, 28, .12);
}

.cepex-media-track {
  display: flex;
  width: 400%;
  animation: cepexSlide 24s infinite;
}

.cepex-media-slider:hover .cepex-media-track {
  animation-play-state: paused;
}

.cepex-media-slide {
  flex: 0 0 25%;
  margin: 0;
}

.cepex-media-slide img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

@keyframes cepexSlide {
  0%, 20% {
    transform: translateX(0);
  }
  25%, 45% {
    transform: translateX(-25%);
  }
  50%, 70% {
    transform: translateX(-50%);
  }
  75%, 95% {
    transform: translateX(-75%);
  }
  100% {
    transform: translateX(0);
  }
}

.intro-section,
.resources-section {
  background: var(--field);
}

.intro-grid,
.project-layout,
.quote-layout,
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 470px);
  gap: 54px;
  align-items: center;
}

.section h2 {
  margin: 10px 0 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  font-weight: 900;
}

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

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading .section-kicker,
.intro-section .section-kicker,
.project-section .section-kicker,
.quote-section .section-kicker {
  color: var(--green);
}

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

.product-card {
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(23, 54, 43, .08);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-card div {
  padding: 22px;
}

.product-card h3 {
  margin: 0 0 8px;
  font-size: 21px;
  font-weight: 900;
}

.product-card p {
  margin: 0;
  font-size: 15px;
}

.cepex-products {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.toro-products {
  margin-top: 58px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.cepex-heading {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(280px, 1fr);
  gap: 22px 44px;
  align-items: end;
  margin-bottom: 26px;
}

.cepex-heading .section-kicker {
  grid-column: 1 / -1;
  color: var(--green);
}

.cepex-heading h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  font-weight: 900;
}

.cepex-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

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

.cepex-card {
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f8fbfa);
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.cepex-card:hover {
  color: var(--ink);
  text-decoration: none;
  transform: translateY(-3px);
  border-color: rgba(20, 120, 76, .42);
  box-shadow: 0 18px 36px rgba(23, 54, 43, .1);
}

.cepex-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(22, 121, 167, .12);
  color: var(--water);
  font-weight: 900;
}

.cepex-card h3 {
  margin: 20px 0 9px;
  font-size: 20px;
  font-weight: 900;
}

.cepex-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

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

.toro-card {
  overflow: hidden;
  scroll-margin-top: 96px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(23, 54, 43, .08);
}

.toro-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #f8fbfa;
}

.toro-card div {
  padding: 20px;
}

.toro-card span {
  color: var(--water);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.toro-card h3 {
  margin: 7px 0 8px;
  font-size: 21px;
  font-weight: 900;
}

.toro-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 15px;
}

.toro-card a {
  color: var(--green-dark);
  font-weight: 900;
}

.cepex-source {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.cepex-source a {
  color: var(--green-dark);
  font-weight: 800;
}

.cepex-detail-grid {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.cepex-detail {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  scroll-margin-top: 96px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.cepex-detail img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
}

.cepex-detail span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.cepex-detail h3 {
  margin: 6px 0 8px;
  font-size: 26px;
  font-weight: 900;
}

.cepex-detail p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 16px;
}

.cepex-detail p::before {
  content: "Description";
  display: block;
  margin-bottom: 6px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.spec-list {
  display: grid;
  gap: 7px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.spec-list li {
  position: relative;
  padding-left: 20px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.spec-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--water);
}

.spec-table-wrap {
  width: 100%;
  margin: 0 0 16px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.spec-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: #fff;
}

.spec-table th,
.spec-table td {
  padding: 11px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 13px;
}

.spec-table th {
  background: var(--field);
  color: var(--green-dark);
  font-weight: 900;
}

.spec-table td {
  color: var(--ink);
}

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

.spec-table .info-heading {
  width: 92px;
  text-align: center;
}

.spec-info-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 8px;
  background: var(--green);
  color: #fff !important;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.spec-info-link:hover {
  background: var(--green-dark);
  color: #fff !important;
  text-decoration: none;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
  gap: 10px;
  margin: 0 0 16px;
}

.product-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.product-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 8px;
  object-fit: contain;
  background: #f8fbfa;
}

.product-gallery figcaption {
  min-height: 36px;
  padding: 7px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.info-column-block {
  margin: 0 0 18px;
}

.info-column-block h4 {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 900;
}

.info-product-list {
  display: grid;
  gap: 12px;
}

.info-product-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.info-product-card > img {
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 8px;
  border-radius: 8px;
  object-fit: contain;
  background: #f8fbfa;
}

.info-product-body h5 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 900;
}

.info-product-body dl {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 5px 10px;
  margin: 0 0 10px;
}

.info-product-body dt {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.info-product-body dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.info-product-body a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.cepex-detail a {
  color: var(--green-dark);
  font-weight: 900;
}

.project-section {
  background: #fff;
}

.project-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 22px 48px rgba(16, 34, 28, .12);
}

.project-image img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.check-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 10px 0 10px 34px;
  border-top: 1px solid var(--line);
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--water);
}

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

.resource-item {
  min-height: 190px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.resource-item:hover {
  color: var(--ink);
  text-decoration: none;
  transform: translateY(-4px);
  box-shadow: 0 22px 42px rgba(23, 54, 43, .1);
}

.resource-item span {
  color: var(--green);
  font-weight: 900;
}

.resource-item strong {
  display: block;
  margin-top: 16px;
  font-size: 25px;
  line-height: 1.18;
}

.quote-section {
  background:
    linear-gradient(90deg, rgba(10, 32, 24, .94), rgba(13, 72, 75, .86)),
    url("../images/hero_bg_1_gradient.jpg") center / cover no-repeat;
  color: var(--white);
}

.quote-section p {
  color: rgba(255, 255, 255, .78);
}

.quote-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.quote-form label {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
}

.quote-form button {
  border: 0;
  border-radius: 8px;
  padding: 14px 18px;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
}

.site-footer {
  padding: 54px 0;
  background: #071710;
  color: rgba(255, 255, 255, .78);
}

.site-footer .footer-grid {
  grid-template-columns: 1.1fr 1fr 1.2fr .75fr;
  gap: 32px;
  align-items: start;
}

.footer-brand {
  display: inline-block;
  color: var(--white);
  font-size: 26px;
  font-weight: 900;
}

.site-footer h2 {
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
}

.site-footer a {
  display: block;
  color: rgba(255, 255, 255, .78);
  margin-bottom: 5px;
}

.footer-cookie-link {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .78);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.footer-cookie-link:hover,
.site-footer a:hover {
  color: var(--white);
}

.cookie-panel {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1000;
  display: none;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  width: min(560px, calc(100vw - 36px));
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: #071710;
  color: rgba(255, 255, 255, .86);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .34);
}

.cookie-panel.is-visible {
  display: grid;
}

.cookie-copy strong {
  display: block;
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
}

.cookie-copy p {
  margin: 6px 0 0;
}

.cookie-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.cookie-options label {
  margin: 0;
  font-weight: 800;
}

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

.cookie-btn {
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid var(--green);
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
}

.cookie-btn-light {
  border-color: rgba(255, 255, 255, .24);
  background: transparent;
}

.detail-page {
  background: var(--field);
}

.detail-header {
  background: #071710;
  color: #fff;
}

.detail-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 18px;
}

.detail-back {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.detail-back:hover {
  background: var(--green-dark);
  color: #fff;
  text-decoration: none;
}

.legal-main {
  padding: 54px 0;
}

.legal-content {
  max-width: 920px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.legal-content h1 {
  margin: 10px 0 20px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
  font-weight: 900;
}

.legal-content h2 {
  margin: 28px 0 8px;
  color: var(--green-dark);
  font-size: 21px;
  font-weight: 900;
}

.legal-content p {
  margin: 0 0 12px;
  color: var(--ink);
}

.detail-main {
  padding: 56px 0;
}

.detail-shell {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.detail-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.detail-media img {
  width: 100%;
  max-height: 420px;
  padding: 18px;
  object-fit: contain;
  background: #fff;
  image-rendering: auto;
}

.detail-content {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.detail-content h1 {
  margin: 8px 0 18px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
  font-weight: 900;
}

.detail-description ul {
  display: grid;
  gap: 9px;
  margin: 0 0 22px;
  padding-left: 18px;
}

.detail-description li {
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
}

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

.detail-specs div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--field);
}

.detail-specs dt {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-specs dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 800;
}

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

.detail-docs a,
.detail-docs span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 8px;
  background: rgba(22, 121, 167, .12);
  color: var(--water);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.detail-docs a:hover {
  background: rgba(20, 120, 76, .14);
  color: var(--green-dark);
  text-decoration: none;
}

.detail-docs .doc-missing {
  background: #f4f4f4;
  color: var(--muted);
}

.detail-docs-inline {
  margin-bottom: 14px;
}

.detail-extra {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 24px;
}

.detail-extra-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.detail-extra-card h2 {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 24px;
  font-weight: 900;
}

.detail-extra-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 18px;
}

.detail-extra-card li {
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.toro-subproducts-section {
  margin-top: 28px;
}

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

.toro-subproduct-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.toro-subproduct-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  background: #f8fbfa;
}

.toro-subproduct-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 900;
}

.toro-subproduct-card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 15px;
}

.toro-product-meta {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 4px 10px;
  margin: 0 0 12px;
}

.toro-product-meta dt {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.toro-product-meta dd {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.toro-subproduct-card a {
  color: var(--green-dark);
  font-weight: 900;
}

@media (max-width: 991.98px) {
  .header-video {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: min(560px, calc(100vw - 32px));
    margin: 18px auto 0;
  }

  .brand-logo {
    width: min(220px, 64vw);
  }

  .nav-link {
    white-space: normal;
  }

  .hero-copy {
    grid-column: auto;
    margin-left: 0;
  }

  .menu-dropdown > .dropdown-menu {
    position: static;
    float: none;
    width: 100%;
    margin-top: 6px;
  }

  .site-header {
    min-height: auto;
  }

  .navbar-collapse {
    padding-top: 18px;
  }

  .nav-quote {
    display: inline-block;
    margin: 6px 0;
    padding-right: 14px !important;
    padding-left: 14px !important;
  }

  .hero-inner,
  .intro-grid,
  .project-layout,
  .quote-layout,
  .footer-grid,
  .site-footer .footer-grid,
  .detail-shell,
  .detail-extra {
    grid-template-columns: 1fr;
  }

  .cookie-panel {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
  }

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

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

  .cepex-detail {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .info-product-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 56px 0 38px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero p,
  .section p {
    font-size: 16px;
  }

  .product-grid,
  .cepex-heading,
  .cepex-grid,
  .toro-grid,
  .cepex-detail,
  .info-product-card,
  .detail-specs,
  .toro-subproduct-grid,
  .toro-subproduct-card,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 56px 0;
  }
}
