:root {
  --brand-dark: #10151b;
  --brand-darker: #0a0e13;
  --brand-light: #f6f7f5;
  --brand-surface: #ffffff;
  --brand-accent: #f2542d;
  --brand-accent-dark: #c93c17;
  --brand-steel: #2c3541;
  --brand-line: #e2e5e8;
  --brand-ink: #1b2027;
  --brand-muted: #4a5560;
  --brand-shadow: 0 18px 45px rgba(10, 14, 19, 0.12);
  --brand-shadow-sm: 0 8px 24px rgba(10, 14, 19, 0.08);
  --brand-radius: 14px;
  --brand-radius-lg: 26px;
  --brand-font: "Barlow", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --brand-font-display: "Oswald", "Barlow", "Inter", system-ui, sans-serif;
  --brand-transition: 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
  --brand-max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--brand-font);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--brand-ink);
  background-color: var(--brand-light);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--brand-accent-dark);
  text-decoration: none;
  transition: color var(--brand-transition);
}

a:hover,
a:focus-visible {
  color: var(--brand-accent);
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--brand-font-display);
  font-weight: 600;
  letter-spacing: 0.4px;
  line-height: 1.15;
  color: var(--brand-dark);
  margin-top: 0;
}

h1 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  text-transform: uppercase;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

p {
  color: var(--brand-muted);
}

.container-brand {
  width: 100%;
  max-width: var(--brand-max);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  position: relative;
  padding: 90px 0;
}

.section--tight {
  padding: 60px 0;
}

.section--dark {
  background-color: var(--brand-dark);
  color: #f2f4f6;
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: #ffffff;
}

.section--dark p {
  color: #d3d9df;
}

.section--image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--brand-dark);
  color: #ffffff;
}

.section--image h1,
.section--image h2,
.section--image h3,
.section--image h4 {
  color: #ffffff;
}

.section--image p {
  color: #e4e8ec;
}

.section__eyebrow {
  display: inline-block;
  font-family: var(--brand-font);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: 14px;
}

.section--dark .section__eyebrow,
.section--image .section__eyebrow {
  color: #ff8b62;
}

.section__lead {
  max-width: 720px;
  font-size: 1.08rem;
}

.section__head {
  margin-bottom: 52px;
}

.section__head--center {
  text-align: center;
}

.section__head--center .section__lead {
  margin-left: auto;
  margin-right: auto;
}

.btn-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  font-family: var(--brand-font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #ffffff;
  background-color: var(--brand-accent);
  border: 2px solid var(--brand-accent);
  border-radius: 4px;
  cursor: pointer;
  transition: var(--brand-transition);
}

.btn-brand:hover,
.btn-brand:focus-visible {
  background-color: var(--brand-accent-dark);
  border-color: var(--brand-accent-dark);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: var(--brand-shadow-sm);
}

.btn-brand--ghost {
  background-color: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-brand--ghost:hover,
.btn-brand--ghost:focus-visible {
  background-color: #ffffff;
  border-color: #ffffff;
  color: var(--brand-dark);
}

.btn-brand--dark {
  background-color: var(--brand-dark);
  border-color: var(--brand-dark);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background-color: rgba(10, 14, 19, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background-color var(--brand-transition);
}

.site-header__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-header__brand-name {
  font-family: var(--brand-font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
}

.site-header__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  font-size: 0.86rem;
  color: #cfd6dd;
}

.site-header__contact span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-header__contact i {
  color: var(--brand-accent);
}

.site-nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0 0 18px;
}

.site-nav__link {
  display: inline-block;
  padding: 10px 16px;
  font-family: var(--brand-font-display);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: #dfe4ea;
  border-radius: 4px;
  transition: var(--brand-transition);
}

.site-nav__link:hover,
.site-nav__link:focus-visible,
.site-nav__link.is-active {
  color: #ffffff;
  background-color: rgba(242, 84, 45, 0.22);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-size: 1.3rem;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  cursor: pointer;
}

.hero {
  position: relative;
  padding: 130px 0 110px;
  background-color: var(--brand-dark);
  background-size: cover;
  background-position: center;
  color: #ffffff;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -140px;
  width: 420px;
  height: 420px;
  border: 2px solid rgba(242, 84, 45, 0.35);
  border-radius: 50%;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero__title {
  font-size: clamp(2.2rem, 5.4vw, 4rem);
  color: #ffffff;
  margin-bottom: 22px;
}

.hero__text {
  font-size: 1.12rem;
  color: #dfe5eb;
  margin-bottom: 34px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 46px;
  margin-top: 62px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero__stat-number {
  display: block;
  font-family: var(--brand-font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--brand-accent);
}

.hero__stat-label {
  font-size: 0.86rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #c4ccd4;
}

.slider {
  position: relative;
  overflow: hidden;
}

.slider__track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.slider__slide {
  position: relative;
  flex: 0 0 100%;
  min-height: 460px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-color: var(--brand-steel);
}

.slider__slide-body {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 40px 0;
}

.slider__slide-body h2 {
  color: #ffffff;
  margin-bottom: 18px;
}

.slider__slide-body p {
  color: #e1e6eb;
  margin-bottom: 26px;
}

.slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #ffffff;
  background-color: rgba(10, 14, 19, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--brand-transition);
}

.slider__nav:hover,
.slider__nav:focus-visible {
  background-color: var(--brand-accent);
  border-color: var(--brand-accent);
}

.slider__nav--prev {
  left: 22px;
}

.slider__nav--next {
  right: 22px;
}

.slider__dots {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}

.slider__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  transition: var(--brand-transition);
}

.slider__dot.is-active {
  background-color: var(--brand-accent);
  transform: scale(1.25);
}

.grid {
  display: grid;
  gap: 28px;
}

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

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

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

.card-part {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: var(--brand-surface);
  border: 1px solid var(--brand-line);
  border-radius: var(--brand-radius);
  overflow: hidden;
  transition: var(--brand-transition);
}

.card-part:hover {
  transform: translateY(-6px);
  box-shadow: var(--brand-shadow);
  border-color: rgba(242, 84, 45, 0.35);
}

.card-part__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: var(--brand-steel);
}

.card-part__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.card-part:hover .card-part__media img {
  transform: scale(1.06);
}

.card-part__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 6px 13px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #ffffff;
  background-color: var(--brand-accent);
  border-radius: 3px;
}

.card-part__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 26px;
}

.card-part__title {
  margin-bottom: 12px;
}

.card-part__text {
  flex-grow: 1;
  font-size: 0.96rem;
}

.card-part__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--brand-line);
}

.card-part__price {
  font-family: var(--brand-font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.card-part__link {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.feature {
  padding: 30px;
  background-color: var(--brand-surface);
  border: 1px solid var(--brand-line);
  border-radius: var(--brand-radius);
  height: 100%;
  transition: var(--brand-transition);
}

.feature:hover {
  border-color: rgba(242, 84, 45, 0.4);
  box-shadow: var(--brand-shadow-sm);
}

.feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin-bottom: 20px;
  font-size: 1.4rem;
  color: #ffffff;
  background-color: var(--brand-dark);
  border-radius: 12px;
}

.feature h3 {
  margin-bottom: 12px;
}

.section--dark .feature {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.14);
}

.section--dark .feature__icon {
  background-color: var(--brand-accent);
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 60px;
}

.split__media {
  position: relative;
  border-radius: var(--brand-radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background-color: var(--brand-steel);
}

.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split__badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  padding: 18px 22px;
  background-color: var(--brand-accent);
  color: #ffffff;
  border-radius: 12px;
  font-family: var(--brand-font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

.check-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
  color: var(--brand-muted);
}

.section--dark .check-list li,
.section--image .check-list li {
  color: #d8dee4;
}

.check-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--brand-accent);
}

.step {
  position: relative;
  padding: 30px 26px 26px;
  background-color: var(--brand-surface);
  border: 1px solid var(--brand-line);
  border-radius: var(--brand-radius);
  height: 100%;
}

.step__number {
  position: absolute;
  top: -22px;
  left: 26px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--brand-font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  background-color: var(--brand-dark);
  border-radius: 50%;
}

.step h3 {
  margin-top: 22px;
  margin-bottom: 10px;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  text-align: center;
}

.stats-bar__item {
  padding: 28px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--brand-radius);
}

.stats-bar__value {
  display: block;
  font-family: var(--brand-font-display);
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--brand-accent);
}

.stats-bar__label {
  font-size: 0.85rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #cbd2d9;
}

.gallery-item {
  position: relative;
  border-radius: var(--brand-radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background-color: var(--brand-steel);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px;
  color: #ffffff;
  background-image: linear-gradient(rgba(10, 14, 19, 0), rgba(10, 14, 19, 0.92));
  font-size: 0.92rem;
}

.review-card {
  padding: 32px;
  background-color: var(--brand-surface);
  border: 1px solid var(--brand-line);
  border-radius: var(--brand-radius);
  height: 100%;
}

.review-card__stars {
  color: var(--brand-accent);
  margin-bottom: 16px;
}

.review-card__text {
  font-size: 1rem;
  color: var(--brand-ink);
}

.review-card__author {
  margin-top: 22px;
  font-family: var(--brand-font-display);
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--brand-dark);
}

.review-card__role {
  font-size: 0.84rem;
  color: var(--brand-muted);
}

.brand-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 46px;
}

.brand-strip__item {
  font-family: var(--brand-font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #8a949e;
  transition: var(--brand-transition);
}

.brand-strip__item:hover {
  color: var(--brand-accent);
}

.price-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 36px 30px;
  background-color: var(--brand-surface);
  border: 1px solid var(--brand-line);
  border-radius: var(--brand-radius-lg);
  transition: var(--brand-transition);
}

.price-card--featured {
  background-color: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #ffffff;
}

.price-card--featured h3,
.price-card--featured .price-card__value {
  color: #ffffff;
}

.price-card--featured p,
.price-card--featured .price-card__note {
  color: #ccd3da;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--brand-shadow);
}

.price-card__value {
  font-family: var(--brand-font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin: 12px 0 6px;
}

.price-card__value small {
  font-size: 0.95rem;
  font-weight: 500;
}

.price-card__list {
  list-style: none;
  margin: 24px 0 30px;
  padding: 0;
  flex-grow: 1;
}

.price-card__list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.price-card__list li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--brand-accent);
}

.accordion-brand .accordion-item {
  border: 1px solid var(--brand-line);
  border-radius: var(--brand-radius) !important;
  margin-bottom: 14px;
  overflow: hidden;
}

.accordion-brand .accordion-button {
  font-family: var(--brand-font-display);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: var(--brand-dark);
  background-color: var(--brand-surface);
}

.accordion-brand .accordion-button:not(.collapsed) {
  color: #ffffff;
  background-color: var(--brand-dark);
}

.accordion-brand .accordion-button:focus {
  box-shadow: none;
}

.accordion-brand .accordion-body {
  font-size: 0.97rem;
  color: var(--brand-muted);
  background-color: var(--brand-surface);
}

.form-panel {
  padding: 40px;
  background-color: var(--brand-surface);
  border: 1px solid var(--brand-line);
  border-radius: var(--brand-radius-lg);
  box-shadow: var(--brand-shadow-sm);
}

.form-panel--dark {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.form-label-brand {
  display: block;
  margin-bottom: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--brand-dark);
}

.form-panel--dark .form-label-brand {
  color: #e3e8ed;
}

.form-control-brand {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--brand-font);
  font-size: 0.98rem;
  color: var(--brand-ink);
  background-color: #ffffff;
  border: 1px solid var(--brand-line);
  border-radius: 8px;
  transition: var(--brand-transition);
}

.form-control-brand:focus {
  outline: none;
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 3px rgba(242, 84, 45, 0.18);
}

.form-control-brand.is-invalid {
  border-color: #c0392b;
}

.form-error {
  display: none;
  margin-top: 6px;
  font-size: 0.82rem;
  color: #c0392b;
}

.form-error.is-visible {
  display: block;
}

.form-panel--dark .form-control-brand.is-invalid,
.form-panel--dark .form-error {
  color: #ffb3a1;
  border-color: #ffb3a1;
}

.form-note {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--brand-muted);
}

.form-panel--dark .form-note {
  color: #b9c2cb;
}

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 14px 18px;
  font-size: 0.92rem;
  color: #0d3d24;
  background-color: #d9f2e3;
  border: 1px solid #9fdcbb;
  border-radius: 8px;
}

.form-success.is-visible {
  display: flex;
}

.map-frame {
  position: relative;
  border-radius: var(--brand-radius-lg);
  overflow: hidden;
  border: 1px solid var(--brand-line);
  background-color: var(--brand-steel);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 460px;
  border: 0;
}

.cta-band {
  position: relative;
  padding: 84px 0;
  background-size: cover;
  background-position: center;
  background-color: var(--brand-dark);
  color: #ffffff;
}

.cta-band h2 {
  color: #ffffff;
}

.cta-band p {
  color: #dde3e9;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.site-footer {
  padding: 78px 0 0;
  background-color: var(--brand-darker);
  color: #b9c2cb;
}

.site-footer h4 {
  margin-bottom: 22px;
  color: #ffffff;
  font-size: 1rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

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

.site-footer__list li {
  margin-bottom: 11px;
}

.site-footer__list a {
  color: #c6ced6;
  font-size: 0.94rem;
}

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

.site-footer__contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.94rem;
}

.site-footer__contact-item i {
  color: var(--brand-accent);
  margin-top: 5px;
}

.site-footer__bottom {
  margin-top: 62px;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.84rem;
}

.site-footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.site-footer__legal-meta {
  font-size: 0.8rem;
  color: #98a2ac;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 1080;
  width: min(1120px, calc(100% - 40px));
  transform: translate(-50%, 140%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  background-color: #ffffff;
  border: 1px solid var(--brand-line);
  border-radius: var(--brand-radius);
  box-shadow: var(--brand-shadow);
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.cookie-banner.is-visible {
  transform: translate(-50%, 0);
}

.cookie-banner__text {
  flex: 1 1 520px;
  margin: 0;
  font-size: 0.92rem;
  color: var(--brand-muted);
}

.cookie-banner__text a {
  color: var(--brand-accent-dark);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
}

.cookie-banner__btn {
  padding: 11px 24px;
  font-family: var(--brand-font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  border-radius: 5px;
  cursor: pointer;
  transition: var(--brand-transition);
  border: 2px solid var(--brand-dark);
}

.cookie-banner__btn--accept {
  color: #ffffff;
  background-color: var(--brand-dark);
}

.cookie-banner__btn--accept:hover,
.cookie-banner__btn--accept:focus-visible {
  background-color: var(--brand-accent);
  border-color: var(--brand-accent);
}

.cookie-banner__btn--reject {
  color: var(--brand-dark);
  background-color: transparent;
}

.cookie-banner__btn--reject:hover,
.cookie-banner__btn--reject:focus-visible {
  background-color: #eef0f2;
}

.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1050;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background-color: var(--brand-accent);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--brand-transition);
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

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

.breadcrumb-brand {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  font-size: 0.84rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.breadcrumb-brand li {
  color: #c4ccd4;
}

.breadcrumb-brand a {
  color: #ffffff;
}

.breadcrumb-brand li + li::before {
  content: "/";
  margin-right: 10px;
  color: #7d8792;
}

.article-body h2 {
  margin-top: 46px;
}

.article-body p {
  font-size: 1.02rem;
}

.article-body blockquote {
  margin: 34px 0;
  padding: 24px 28px;
  border-left: 4px solid var(--brand-accent);
  background-color: #f1f2f0;
  border-radius: 0 12px 12px 0;
  font-size: 1.05rem;
  color: var(--brand-dark);
}

.team-card {
  text-align: center;
  padding: 26px;
  background-color: var(--brand-surface);
  border: 1px solid var(--brand-line);
  border-radius: var(--brand-radius);
  height: 100%;
}

.team-card__photo {
  width: 132px;
  height: 132px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--brand-steel);
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__role {
  font-size: 0.82rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--brand-accent-dark);
}

.timeline {
  position: relative;
  margin: 0;
  padding: 0 0 0 32px;
  list-style: none;
  border-left: 2px solid var(--brand-line);
}

.timeline li {
  position: relative;
  margin-bottom: 34px;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -41px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--brand-accent);
  border: 3px solid var(--brand-light);
}

.timeline__year {
  display: block;
  font-family: var(--brand-font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.contact-tile {
  display: flex;
  gap: 18px;
  padding: 26px;
  background-color: var(--brand-surface);
  border: 1px solid var(--brand-line);
  border-radius: var(--brand-radius);
  height: 100%;
}

.contact-tile__icon {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #ffffff;
  background-color: var(--brand-dark);
  border-radius: 10px;
}

.contact-tile strong {
  display: block;
  margin-bottom: 4px;
  color: var(--brand-dark);
}

.contact-tile p {
  margin: 0;
  font-size: 0.95rem;
}

.legal-body h2 {
  margin-top: 42px;
  font-size: 1.5rem;
}

.legal-body ul {
  padding-left: 20px;
}

.legal-body li {
  margin-bottom: 8px;
  color: var(--brand-muted);
}

.aos-init,
[data-aos] {
  will-change: transform, opacity;
}

@media (max-width: 991px) {
  .grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .site-header__contact {
    display: none;
  }

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

  .site-nav {
    display: none;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 22px;
  }

  .site-nav__link {
    display: block;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 64px 0;
  }

  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 88px 0 74px;
  }

  .hero__stats {
    gap: 28px;
  }

  .slider__nav {
    display: none;
  }

  .form-panel {
    padding: 26px;
  }

  .stats-bar {
    grid-template-columns: 1fr;
  }

  .brand-strip {
    gap: 26px;
  }

  .map-frame iframe {
    height: 340px;
  }
}
/* ===== Contrast fixes (QA) ===== */

/* Brand buttons + tags: orange #f2542d fails white-on-orange (3.45). Use darker accent. */
.btn-brand {
  background-color: #c93c17;
  border-color: #c93c17;
}

.btn-brand:hover,
.btn-brand:focus-visible {
  background-color: #a82f0f;
  border-color: #a82f0f;
}

.card-part__tag {
  background-color: #c93c17;
}

/* Eyebrow labels on light sections: darker accent for >=4.5 contrast */
.section__eyebrow {
  color: #c93c17;
}

/* Card text inside dark sections sits on white cards -> must be dark, not light gray */
.section--dark .card-part__text,
.section--image .card-part__text {
  color: var(--brand-muted);
}

/* White feature cards placed on image/dark sections: force readable dark text */
.section--image .feature h3 {
  color: var(--brand-dark);
}

.section--image .feature p {
  color: var(--brand-muted);
}

/* Footer legal links on very dark background need a lighter accent */
.site-footer__legal-meta a,
.site-footer p a {
  color: #ff8b62;
}

.site-footer__legal-meta a:hover,
.site-footer__legal-meta a:focus-visible,
.site-footer p a:hover,
.site-footer p a:focus-visible {
  color: #ffa88a;
}

/* ===== QA contrast fixes (blog) ===== */

/* Eyebrows on light sections only need a darker accent (dark/image sections keep their own) */
.section:not(.section--dark):not(.section--image) .section__eyebrow {
  color: var(--brand-accent-dark);
}

/* Brand buttons: white text needs a darker orange background to reach 4.5:1 */
.btn-brand:not(.btn-brand--ghost):not(.btn-brand--dark) {
  background-color: var(--brand-accent-dark);
  border-color: var(--brand-accent-dark);
}

.btn-brand:not(.btn-brand--ghost):not(.btn-brand--dark):hover,
.btn-brand:not(.btn-brand--ghost):not(.btn-brand--dark):focus-visible {
  background-color: #a8300f;
  border-color: #a8300f;
}

/* Tags and badges: white text on accent -> darker background */
.card-part__tag {
  background-color: var(--brand-accent-dark);
}

.split__badge {
  background-color: var(--brand-accent-dark);
}

/* Feature cards sit on white surfaces even inside dark/image sections */
.section--image .feature h3 {
  color: var(--brand-dark);
}

.section--image .feature p {
  color: var(--brand-muted);
}

/* Card text inside dark sections is on a white card surface */
.section--dark .card-part p,
.section--dark .card-part .card-part__text {
  color: var(--brand-muted);
}

/* Footer links on the dark footer need a lighter accent */
.site-footer__legal-meta a {
  color: var(--brand-accent);
}

.site-footer__legal-meta a:hover,
.site-footer__legal-meta a:focus-visible {
  color: #ffffff;
}

/* ===== Accessibility contrast fixes (about page + global) ===== */

/* White text on the accent color only reaches ~3.45:1; use the darker accent for all
   white-on-accent elements so they reach >= 4.5:1. */
.split__badge {
  background-color: var(--brand-accent-dark);
}

.card-part__tag {
  background-color: var(--brand-accent-dark);
}

.btn-brand:not(.btn-brand--dark):not(.btn-brand--ghost) {
  background-color: var(--brand-accent-dark);
  border-color: var(--brand-accent-dark);
}

.btn-brand:not(.btn-brand--dark):not(.btn-brand--ghost):hover,
.btn-brand:not(.btn-brand--dark):not(.btn-brand--ghost):focus-visible {
  background-color: #a8300f;
  border-color: #a8300f;
  color: #ffffff;
}

/* Eyebrow labels sat at ~3.2:1 on the light surfaces; darken them. Keep them light
   on the dark / image / hero / cta backgrounds where the light tone is needed. */
.section__eyebrow {
  color: var(--brand-accent-dark);
}

.hero .section__eyebrow,
.cta-band .section__eyebrow,
.section--dark .section__eyebrow,
.section--image .section__eyebrow {
  color: #ff8b62;
}

/* Timeline years were rendered dark-on-dark (ratio 1:1) inside dark sections. */
.section--dark .timeline__year {
  color: #ffffff;
}

/* Card text inherited the light paragraph color of dark sections, producing
   light-grey text on the white card surface. Restore the readable body color. */
.section--dark .card-part p,
.section--dark .card-part__text {
  color: var(--brand-muted);
}

/* Footer legal links used the dark accent on the near-black footer background. */
.site-footer__legal-meta a {
  color: #ff8b62;
}

/* CTA band eyebrow sits on a dark photo background */
.cta-band .section__eyebrow {
  color: #ff8b62;
}

/* ===== QA fix (cookie-policy): legal link list inside white sidebar panels =====
   The .site-footer__list links are styled for the near-black footer (#c6ced6).
   When the same list is reused inside a light .form-panel it becomes unreadable.
   Force the standard link color in that context. */
.form-panel .site-footer__list a,
.form-panel .site-footer__list a:link,
.form-panel .site-footer__list a:visited {
  color: var(--brand-accent-dark);
}

.form-panel .site-footer__list a:hover,
.form-panel .site-footer__list a:focus-visible {
  color: var(--brand-accent);
}

/* ===== QA fixes (homepage contrast) ===== */

/* Hero "quick request" dark form panel: paragraphs inherited the muted
   dark body color on a dark translucent panel (2.13:1). Force light text. */
.form-panel--dark p,
.form-panel--dark .form-note {
  color: #dfe5eb;
}

/* Slider eyebrow labels sit on slides with a dark photo overlay; the dark
   accent used on light sections is unreadable there (2.45:1). */
.slider .section__eyebrow {
  color: #ff8b62;
}

/* Brand-name strip on the light (#f1f2f0) section: light grey was 2.75:1.
   Darken for the light surface without affecting the dark footer strip. */
.section .brand-strip__item {
  color: #4a5560;
}

/* ===== QA fix (kit-elaborazione-motore-p2m): step cards on image sections ===== */
/* The .step cards have a white surface, but the parent .section--image forces
   white h3/p text -> white-on-white. Restore readable colors inside the cards. */
.section--image .step h3,
.section .step h3 {
  color: var(--brand-dark);
}

.section--image .step p,
.section .step p {
  color: var(--brand-muted);
}

/* Eyebrow inside the featured (dark) price card was using the dark accent
   (#c93c17) on a near-black surface (3.62:1). Use the light accent there. */
.price-card--featured .section__eyebrow {
  color: #ff8b62;
}

/* QA fix follow-up: earlier ".section:not(...):not(...) .section__eyebrow" rule
   (4 class selectors) outranked ".price-card--featured .section__eyebrow".
   Boost specificity so the light accent wins on the dark featured card. */
.section .price-card--featured .section__eyebrow {
  color: #ff8b62 !important;
}

/* ===== QA fix (price page): white price cards placed inside dark / image sections =====
   The dark-section rules (".section--dark h3 { color:#fff }", ".section--dark p { color:#d3d9df }",
   inherited light body colour) leaked into the white .price-card surfaces, producing
   white-on-white text (ratio 1:1) and pale grey body copy (1.1-1.4:1).
   Restore readable colours for every NON-featured price card (the featured card keeps
   its dark background and light text). */

.section--dark .price-card:not(.price-card--featured) h3,
.section--image .price-card:not(.price-card--featured) h3,
.section--dark .price-card:not(.price-card--featured) .price-card__value,
.section--image .price-card:not(.price-card--featured) .price-card__value {
  color: var(--brand-dark);
}

.section--dark .price-card:not(.price-card--featured) p,
.section--dark .price-card:not(.price-card--featured) .price-card__note,
.section--image .price-card:not(.price-card--featured) p,
.section--image .price-card:not(.price-card--featured) .price-card__note {
  color: var(--brand-muted);
}

.section--dark .price-card:not(.price-card--featured) .price-card__list li,
.section--image .price-card:not(.price-card--featured) .price-card__list li {
  color: var(--brand-ink);
}

/* Eyebrow label inside the white cards sat on white with the light accent (2.3:1). */
.section .price-card:not(.price-card--featured) .section__eyebrow,
.section--dark .price-card:not(.price-card--featured) .section__eyebrow,
.section--image .price-card:not(.price-card--featured) .section__eyebrow {
  color: var(--brand-accent-dark) !important;
}
