:root {
  --blue: #1f72bd;
  --dark: #172436;
  --light: #f5f7fb;
  --text: #263241;
  --muted: #6b7785;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

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

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, 92%);
  margin: auto;
}

/* ==================== HEADER ==================== */

.site-header {
  background: var(--dark);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}

.logo {
  font-weight: 800;
  color: #fff;
  font-size: 1.45rem;
  letter-spacing: 0.3px;
}

.logo span {
  color: #8fc6ff;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.main-nav a,
.dropdown button {
  color: #fff;
  background: none;
  border: 0;
  font: inherit;
  cursor: pointer;
  padding: 12px 4px;
  font-weight: 900;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 260px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  border-radius: 10px;
  padding: 8px;
}

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

.dropdown-menu a {
  display: block;
  color: var(--dark);
  padding: 10px 12px;
  border-radius: 8px;
}

.dropdown-menu a:hover {
  background: var(--light);
  text-decoration: none;
}

.menu-toggle {
  display: none;
}

/* ==================== HERO ==================== */

.hero {
  background: linear-gradient(90deg, 
    rgb(23 36 54 / 89%), rgb(31 114 189 / 42%)), 
    url(/images/esterno_officine_perini.jpg) center / cover;
  min-height: 520px;
  color: #fff;
  display: flex;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 1.05;
  margin: 0 0 20px;
}

.hero h2 {
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  max-width: 760px;
  font-weight: 500;
}

.page-hero {
  background: linear-gradient(135deg, var(--dark), var(--blue));
  color: #fff;
  padding: 72px 0;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.1;
}

.page-hero a {
  color: #fff;
}

.hero-contacts {
  font-size: 1.1rem;
  line-height: 1.8;
}

.hero-contacts a {
  font-weight: 700;
}

/* ==================== CONTACT MAIN SECTION ==================== */

.contact-main-section {
  background: var(--light);
  padding: 48px 0;
}

.contact-main-section .split {
  align-items: start;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card-big {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: box-shadow 0.3s, transform 0.3s;
}

.info-card-big:hover {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.icb-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--blue), #4490d0);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icb-icon svg {
  width: 26px;
  height: 26px;
  color: #fff;
}

.info-card-big h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  color: var(--dark);
}

.info-card-big p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}

.info-card-big a {
  color: var(--blue);
  font-weight: 700;
}

.page-hero-split {
  background: linear-gradient(135deg, var(--dark), var(--blue));
  color: #fff;
}

.page-hero-split h1 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.1;
  padding: 72px 0 0;
  margin: 0;
}

.page-hero-split .split {
  padding-top: 24px;
  padding-bottom: 56px;
}

.page-hero-split .hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-split .hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  max-height: 500px;
  width: auto;
}

/* ==================== BUTTONS ==================== */

.btn {
  display: inline-block;
  background: var(--blue);
  color: #fff !important;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
}

.btn:hover {
  text-decoration: none;
  filter: brightness(0.95);
}

/* ==================== NOTICE / CARDS ==================== */

.notice {
  background: #f5f7fb;
  border-left: 6px solid var(--blue);
  padding: 10px 28px;
  /* margin-top: 42px; */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.notice1 {
  background: #f5f7fb;
  border-left: 6px solid var(--blue);
  padding: 10px 28px;
  margin-top: 42px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.notice h3 {
  margin: 10px 0 12px;
  color: var(--dark);
}

.notice ol {
  margin: 0 0 10px;
  padding-left: 20px;
}

.notice ol li {
  margin-bottom: 6px;
  line-height: 1.5;
}

.cards {
  display: grid;
  gap: 24px;
  margin-top: 42px;
  margin-bottom: 42px;
}

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

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

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

.cards article {
  background: #fff;
  border: 1px solid #e6ebf2;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s;
}

.cards article:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.cards article h3 {
  color: var(--blue);
}

.cards article button {
  margin-top: auto;
}

.btn-card-inverse {
  display: inline-block;
  background: #fff !important;
  color: #1f72bd !important;
  font-weight: 700 !important;
  font-size: inherit;
  padding: 10px 20px;
  border: 2px solid #fff !important;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  align-self: flex-start;
}

.btn-card-inverse:hover {
  background: transparent !important;
  color: #fff !important;
}

article.card_blu {
  background: #186fbc;
  border: 1px solid #e6ebf2;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  color: #fff;
  display: flex;
  flex-direction: column;
}

.split .card_blu {
  background: #186fbc;
  border-radius: 18px;
  padding: 32px 36px;
  color: #fff;
}

.split .card_blu .card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.split .card_blu .card-header h3 {
  margin: 0;
  color: #fff;
  font-size: 1.2rem;
}

.split .card_blu .card-icon {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.split .card_blu .card-icon svg {
  width: 26px;
  height: 26px;
  color: #fff;
}

.split .card_blu ol {
  margin: 0;
  padding-left: 20px;
}

.split .card_blu ol li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.split .card_blu ol li:last-child {
  margin-bottom: 0;
}

/* ==================== CARDS BUTTONS ==================== */

.cards article button {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: inherit;
  padding: 10px 20px;
  border: 2px solid var(--blue);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  align-self: flex-start;
}

.cards article button:hover {
  background: transparent;
  color: var(--blue);
}

article.card_blu button {
  background: #fff;
  color: var(--blue);
  border: 2px solid #fff;
}

article.card_blu button:hover {
  background: transparent;
  color: #fff;
}

.card-icon {
  width: 52px;
  height: 52px;
  background: var(--light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon svg {
  width: 26px;
  height: 26px;
  color: var(--blue);
}

.cards article .card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.cards article .card-header h3 {
  margin: 0;
}

.cards .price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--blue);
  margin-top: auto;
  padding-top: 12px;
}

.cards img {
  width: 74px;
  height: 74px;
  object-fit: contain;
}

/* ==================== SPLIT / PROSE ==================== */

.split-wrapper {
  background: linear-gradient(135deg, var(--light) 0%, #e8edf5 100%);
  padding: 24px 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
}

.split > img,
.wide-img {
  max-width: 100%;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.split-text h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.2;
  margin: 12px 0 28px;
  color: var(--dark);
}

.split-services {
  display: grid;
  gap: 24px;
}

.service-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  padding: 20px 24px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s, transform 0.3s;
}

.service-item:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.service-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: #fff;
  border-radius: 12px;
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-item h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
}

.service-item h3 a {
  color: var(--dark);
  font-weight: 700;
}

.service-item h3 a:hover {
  color: var(--blue);
  text-decoration: none;
}

.service-item p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

.service-code {
  font-size: 0.82rem !important;
  color: var(--blue) !important;
  font-weight: 600;
  margin-top: 4px !important;
}

.split-image {
  position: relative;
}

.split-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.split-image.reduced {
  max-width: 480px;
  margin: 0 auto;
}

.split-image::after {
  content: "";
  position: absolute;
  inset: 12px -12px -12px 12px;
  border: 3px solid var(--blue);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.25;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  font-weight: 800;
  margin: 0;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 8px 0 40px;
  color: var(--dark);
  line-height: 1.15;
}

/* ==================== VALUES SECTION (chi-siamo) ==================== */

.values-section {
  background: var(--light);
  padding: 64px 0 72px;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: left;
}

.value-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s, transform 0.3s;
}

.value-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.value-icon {
  width: 56px;
  height: 56px;
  background: var(--blue);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.value-icon svg {
  width: 28px !important;
  height: 28px !important;
  color: #fff;
  display: block;
}

.value-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  color: var(--dark);
}

.value-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ==================== TESTIMONIAL SECTION (chi-siamo) ==================== */

.testimonial-section {
  background: linear-gradient(135deg, var(--dark), #1e3150);
  padding: 64px 0;
}

.testimonial-blockquote {
  margin: 0;
  padding: 0;
  text-align: center;
  color: #dbe6f5;
  max-width: 800px;
  margin: 0 auto;
}

.quote-icon {
  width: 40px;
  height: 40px;
  color: var(--blue);
  opacity: 0.6;
  margin-bottom: 20px;
}

.testimonial-blockquote p {
  font-size: 1.05rem;
  line-height: 1.7;
  font-style: italic;
  margin: 0 0 24px;
}

.testimonial-blockquote footer {
  font-size: 1rem;
  color: #fff;
}

.testimonial-blockquote footer strong {
  font-weight: 700;
}

.cta-center {
  text-align: center;
  margin-top: 32px;
}

.prose {
  padding: 46px 0;
}

.prose-compact-top {
  padding-top: 0;
}

.prose h2 {
  font-size: 2rem;
}

.prose blockquote {
  border-left: 5px solid var(--blue);
  margin: 28px 0;
  padding: 18px 24px;
  background: var(--light);
  font-style: italic;
}

.prose li {
  margin: 0.35rem 0;
}

/* ==================== SERVICES GRID ==================== */

.services-grid-section {
  background: var(--light);
  padding: 48px 0 56px;
}

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

.service-grid-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s, transform 0.3s;
}

.service-grid-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.sg-icon {
  width: 44px;
  height: 44px;
  background: var(--blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sg-icon svg {
  width: 22px;
  height: 22px;
  color: #fff;
}

.service-grid-item span {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text);
  padding-top: 8px;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================== BRAND STRIP ==================== */

.brand-strip-wrapper {
  background: var(--light);
  margin-bottom: 48px;
}

.brand-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 48px 0;
}

/* ==================== MAP ==================== */

.map-wrapper {
  width: 100%;
  line-height: 0;
}

.map-wrapper iframe {
  display: block;
}

.map-placeholder {
  width: 100%;
  height: 400px;
  background: #e8edf5;
  display: none;
  align-items: center;
  justify-content: center;
  color: #6b7785;
  font-size: 0.95rem;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}

.map-placeholder.is-visible {
  display: flex;
}

.brand-strip a {
  display: block;
  line-height: 0;
}

.brand-strip a:hover {
  opacity: 0.85;
}

.brand-strip img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* ==================== FOOTER ==================== */

.site-footer {
  background: #101a27;
  color: #dbe6f5;
  padding: 48px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
}

.site-footer a {
  color: #fff;
}

.footer-brand {
  text-align: right;
}

.footer-brand img {
  max-width: 170px;
  background: #1b2a3d;
  padding: 12px;
  border-radius: 8px;
}

.footer-brand img[alt="ACTAINFO"] {
  max-width: none;
  background: none;
  padding: 0;
  border-radius: 0;
  height: 18px;
  width: auto;
  vertical-align: top !important;
  margin-right: 0 !important;
}

.small {
  font-size: 0.85rem;
  color: #9fb1c7;
}

/* ==================== CONTACT FORM ==================== */

.contact-form {
  display: grid;
  gap: 14px;
  background: var(--light);
  padding: 28px;
  border-radius: 18px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1px solid #cfd8e3;
  border-radius: 10px;
  padding: 12px;
  font: inherit;
}

.privacy {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 8px;
  font-weight: 400 !important;
  font-size: 0.88rem;
}

.privacy input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin: 0;
}

.contact-form h3 {
  margin: 0 0 16px;
  color: var(--dark);
  font-size: 1.3rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.note-gpl {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  font-style: italic;
}

.captcha-field {
  background: #f0f4fa;
  border: 1px solid #dce4f0;
  border-radius: 12px;
  padding: 16px;
}

.captcha-field label {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.captcha-question {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--blue);
  background: #fff;
  padding: 6px 18px;
  border-radius: 8px;
  border: 1px solid #d0dae8;
}

.captcha-field input[type="number"] {
  width: 130px;
  flex-shrink: 0;
}

/* ==================== BOOKING SECTION ==================== */

.booking-section {
  background: var(--light);
  padding: 48px 0;
}

.booking-section .split {
  align-items: start;
}

.booking-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: box-shadow 0.3s, transform 0.3s;
}

.info-card:hover {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.info-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--blue), #4490d0);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

.info-card h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: var(--dark);
}

.info-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.success-msg,
.error-msg {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 24px;
  grid-column: 1 / -1;
}

.success-msg {
  background: #e6f7e6;
  color: #2a7d2a;
  border: 1px solid #b8e0b8;
}

.error-msg {
  background: #fde8e8;
  color: #b33a3a;
  border: 1px solid #f5c6c6;
}

.success-msg svg,
.error-msg svg {
  flex-shrink: 0;
}

/* ==================== VEHICLE LIST ==================== */

.vehicle-list-section {
  padding: 48px 0;
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.vehicle-item {
  background: var(--light);
  border: 1px solid #e0e6ef;
  border-radius: 12px;
  padding: 16px 14px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  transition: background 0.2s, border-color 0.2s;
}

.vehicle-item:hover {
  background: #e8edf5;
  border-color: var(--blue);
}

.vehicle-item span {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.3;
}

@media (max-width: 768px) {
  .vehicle-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .vehicle-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================== COOKIE BANNER ==================== */

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid #d9e2ef;
  border-radius: 14px;
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.18);
  padding: 18px;
  max-width: 780px;
  margin: auto;
  z-index: 20;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-banner button {
  margin-right: 8px;
  padding: 9px 14px;
  border: 0;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  cursor: pointer;
}

.cookie-banner button:nth-child(2) {
  background: #6b7785;
}

/* ==================== COOKIE SETTINGS BUTTON ==================== */

.cookie-settings-btn {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 30;
  background: var(--blue);
  color: #fff;
  border: 0;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}

.cookie-settings-btn:hover {
  transform: scale(1.1);
}

.cookie-settings-btn svg {
  width: 20px;
  height: 20px;
}

.cookie-settings-btn.is-visible {
  display: flex;
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
    background: var(--blue);
    color: #fff;
    border: 0;
    border-radius: 8px;
    padding: 10px 14px;
  }

  .main-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    background: var(--dark);
    padding: 16px 4%;
    flex-direction: column;
    align-items: flex-start;
  }

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

  .dropdown-menu {
    position: static;
    display: block;
    background: #223047;
    box-shadow: none;
  }

  .dropdown-menu a {
    color: #fff;
  }

  .brand-strip {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 24px 0;
  }

  .split-image::after {
    display: none;
  }

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

  .cards.four,
  .cards.three,
  .cards.two,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    text-align: left;
  }

  .hero {
    min-height: 460px;
  }
}

@media (max-width: 600px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}
