:root {
  --blue: #1277c5;
  --blue-dark: #0b2745;
  --navy: #102033;
  --text: #233142;
  --muted: #657386;
  --ice: #f3f8fc;
  --line: #dbe6ef;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(16, 32, 51, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  gap: 18px;
  align-items: center;
  min-height: 80px;
  padding: 0 42px;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 28px rgba(16, 32, 51, 0.08);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.logo strong,
.footer strong {
  display: block;
  color: var(--blue-dark);
  font-size: 15px;
  letter-spacing: 0.08em;
}

.logo strong em {
  color: var(--blue);
  font-style: normal;
}

.logo small {
  display: block;
  color: var(--muted);
  font-size: 11px;
}

.desktop-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a:hover,
.header-phone:hover {
  color: var(--blue);
}

.header-phone {
  color: var(--blue-dark);
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 24px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.btn-primary {
  color: var(--white);
  background: var(--blue);
}

.btn-primary:hover {
  background: var(--blue-dark);
}

.btn-outline {
  border-color: var(--line);
}

.btn-outline.light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.48);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
}

.menu-btn span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--blue-dark);
}

.mobile-nav {
  position: fixed;
  inset: 80px 0 auto;
  z-index: 45;
  display: none;
  flex-direction: column;
  gap: 1px;
  padding: 16px 20px 22px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.mobile-nav a:not(.btn) {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 94vh;
  padding: 120px 42px 48px;
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(100deg, rgba(11, 39, 69, 0.92), rgba(11, 39, 69, 0.72) 46%, rgba(11, 39, 69, 0.2));
}

.hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  width: min(760px, 100%);
  padding: 42px;
  color: var(--white);
  background: rgba(11, 39, 69, 0.58);
  border-left: 3px solid var(--blue);
  backdrop-filter: blur(10px);
}

.overline,
.eyebrow {
  margin: 0;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.overline {
  color: rgba(255, 255, 255, 0.78);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--blue-dark);
  line-height: 1.08;
}

h1 {
  margin-top: 24px;
  color: var(--white);
  font-size: clamp(38px, 6vw, 72px);
}

h2 {
  margin-top: 14px;
  font-size: clamp(30px, 4vw, 48px);
}

h3 {
  font-size: 19px;
}

.hero-copy p:not(.overline) {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.process {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.process span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.service-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 52px;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: 76vh;
  margin: 0 auto;
  padding: 128px 0 72px;
}

.service-hero img {
  width: 100%;
  height: min(520px, 58vh);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.service-hero h1 {
  color: var(--blue-dark);
  font-size: clamp(38px, 5vw, 64px);
}

.service-hero p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.service-hero .btn {
  margin-top: 34px;
}

.service-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 52px;
  align-items: start;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.band {
  width: 100%;
  padding-right: max(20px, calc((100% - 1180px) / 2));
  padding-left: max(20px, calc((100% - 1180px) / 2));
  background: var(--ice);
}

.dark {
  width: 100%;
  padding-right: max(20px, calc((100% - 1180px) / 2));
  padding-left: max(20px, calc((100% - 1180px) / 2));
  color: rgba(255, 255, 255, 0.78);
  background: var(--blue-dark);
}

.dark h2 {
  color: var(--white);
}

.section-head {
  max-width: 680px;
  margin-bottom: 46px;
}

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

.card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 230px;
  scroll-margin-top: 112px;
  padding: 0 28px 28px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(18, 119, 197, 0.08), transparent 55%),
    var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  will-change: transform;
}

.card > img {
  position: relative;
  z-index: 0;
  width: calc(100% + 56px);
  height: 170px;
  margin: 0 -28px 24px;
  object-fit: cover;
  background: var(--ice);
  transition: transform 0.5s ease;
}

.card:hover {
  border-color: rgba(18, 119, 197, 0.45);
  box-shadow: 0 24px 55px rgba(16, 32, 51, 0.16);
  transform: translateY(-6px);
}

.card:hover > img {
  transform: scale(1.05);
}

.icon {
  position: absolute;
  top: 124px;
  left: 0;
  z-index: 10;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  background: var(--blue);
  border: 1px solid rgba(255, 255, 255, 0.45);
  pointer-events: none;
}

.services .card h3 {
  margin-top: 51px;
}

.card h3,
.card p,
.card .service-link {
  position: relative;
  z-index: 1;
}

.icon svg,
.service-link svg,
.pillars svg,
.direct-contact svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card:hover .icon {
  z-index: 10;
  opacity: 1;
  color: var(--white);
  background: var(--blue);
  transform: none;
}

.card .icon svg {
  position: relative;
  z-index: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.service-link:hover svg {
  transform: translateX(4px);
}

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

.project-card {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  will-change: transform;
}

.project-card img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover {
  border-color: rgba(18, 119, 197, 0.45);
  box-shadow: 0 24px 55px rgba(16, 32, 51, 0.16);
  transform: translateY(-6px);
}

.project-card:hover img {
  transform: scale(1.05);
}

.project-card > span {
  position: absolute;
  top: 154px;
  left: 0;
  z-index: 10;
  padding: 10px 13px;
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--blue);
  pointer-events: none;
}

.project-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 42px 24px 24px;
}

.project-card p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-card h3 {
  font-size: 17px;
  line-height: 1.25;
}

.project-card .project-card-text {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.55;
  text-transform: none;
}

.project-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 42px;
  padding: 30px;
  background: var(--ice);
  border: 1px solid var(--line);
}

.project-cta strong {
  color: var(--blue-dark);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.company-image {
  display: block;
  width: 100%;
  height: 260px;
  margin-top: 34px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 60px;
  align-items: start;
}

.split p {
  color: var(--muted);
}

.dark .split p {
  color: rgba(255, 255, 255, 0.72);
}

.project-copy {
  max-width: 600px;
}

.project-copy .btn {
  margin-top: 34px;
}

.location-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 22px 0 0;
  padding: 12px 16px;
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--blue-dark);
}

.location-pill svg {
  width: 17px;
  height: 17px;
  color: var(--blue);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sector-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.sector-tags li {
  padding: 12px 16px;
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--white);
  border: 1px solid var(--line);
}

.sector-list,
.steps,
.pillars,
.metrics {
  display: grid;
  gap: 1px;
  padding: 0;
  margin: 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
}

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

.project-panel {
  display: grid;
  gap: 18px;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 220px 160px 160px;
  gap: 16px;
}

.project-gallery figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  will-change: transform;
}

.project-gallery .project-tall,
.project-gallery .project-wide {
  grid-column: 1 / -1;
}

.project-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-gallery figure:hover {
  border-color: rgba(18, 119, 197, 0.45);
  box-shadow: 0 24px 55px rgba(16, 32, 51, 0.16);
  transform: translateY(-5px);
}

.project-gallery figure:hover img {
  transform: scale(1.05);
}

.project-gallery figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 12px 14px;
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(11, 39, 69, 0.78);
}

.sector-list li,
.steps li,
.metrics div {
  padding: 22px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--white);
  transition: transform 0.22s ease, color 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
}

.sector-list li:hover,
.steps li:hover,
.metrics div:hover {
  z-index: 1;
  color: var(--blue);
  box-shadow: 0 14px 32px rgba(16, 32, 51, 0.12);
  transform: translateY(-4px);
}

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

.steps li {
  counter-increment: step;
  letter-spacing: 0;
  text-transform: none;
}

.steps li::before {
  margin-right: 14px;
  color: var(--blue);
  font-weight: 900;
  content: counter(step, decimal-leading-zero);
}

.pillars {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.12);
}

.pillars span {
  display: grid;
  gap: 16px;
  padding: 20px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.06);
}

.pillars svg {
  width: 30px;
  height: 30px;
  color: var(--blue);
}

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

.metrics strong,
.metrics span {
  display: block;
}

.metrics span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.contact {
  padding-top: 96px;
  padding-bottom: 112px;
}

.contact .split {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 56px;
}

.contact-copy {
  position: sticky;
  top: 112px;
  align-self: start;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin: 22px 0 0;
  color: var(--muted);
}

.contact-panel {
  margin-top: 40px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
}

.contact-panel h3 {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}

.direct-contact {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.direct-contact a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  transition: border-color 0.2s ease;
}

.direct-contact a:hover {
  border-color: var(--blue);
}

.direct-contact svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--blue);
}

.direct-contact span,
.direct-contact strong,
.direct-contact em {
  display: block;
}

.direct-contact strong {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.direct-contact em {
  color: var(--blue-dark);
  font-style: normal;
  font-weight: 800;
  overflow-wrap: anywhere;
  text-decoration: none;
  -webkit-text-fill-color: var(--blue-dark);
}

.contact-location {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-location svg {
  width: 17px;
  height: 17px;
  color: var(--blue);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  min-height: 720px;
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  color: var(--text);
  font: inherit;
  border: 1px solid var(--line);
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(18, 119, 197, 0.15);
}

.full {
  grid-column: 1 / -1;
}

.honeypot {
  display: none;
}

.file {
  padding: 24px;
  text-align: center;
  border: 2px dashed var(--line);
}

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

.form-actions .btn {
  width: 100%;
}

.consent {
  display: flex;
  grid-template-columns: auto 1fr;
  align-items: center;
  letter-spacing: 0;
  text-transform: none;
}

.consent input {
  width: 18px;
  min-height: 18px;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--blue-dark);
  font-weight: 700;
}

.thank-you {
  min-height: 68vh;
  padding-top: 160px;
}

.thank-you h1 {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--blue-dark);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
}

.thank-you p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
}

.footer {
  color: rgba(255, 255, 255, 0.72);
  background: var(--blue-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0;
}

.footer strong {
  color: var(--white);
  font-size: 24px;
  letter-spacing: 0.02em;
}

.footer-brand p {
  max-width: 430px;
}

.footer ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.footer a {
  color: rgba(255, 255, 255, 0.78);
}

.footer a:hover {
  color: var(--blue);
}

.footer nav {
  display: grid;
  gap: 12px;
  align-content: start;
  font-size: 14px;
}

.footer nav p,
.footer-area {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-area {
  margin-top: 24px;
  color: var(--blue);
}

.footer-bottom {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  background: var(--blue-dark);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.cookie-banner {
  position: fixed;
  inset: auto 0 0;
  z-index: 70;
  display: none;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 16px 42px;
  background: rgba(255, 255, 255, 0.97);
  border-top: 1px solid var(--line);
}

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

.cookie-banner p {
  margin: 0;
  font-size: 13px;
}

.cookie-banner button {
  min-height: 40px;
  padding: 0 16px;
  font-weight: 800;
  background: var(--white);
  border: 1px solid var(--line);
}

.cookie-banner button:last-child {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 0 20px;
  }

  .desktop-nav,
  .header-phone,
  .header-cta {
    display: none;
  }

  .menu-btn {
    display: block;
  }

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

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

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

  .contact .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    position: static;
  }

  .service-hero,
  .service-page-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 88vh;
    padding: 112px 20px 34px;
  }

  .hero-copy {
    padding: 28px 22px;
  }

  .service-hero {
    min-height: auto;
    padding-top: 112px;
  }

  .service-hero img {
    height: 260px;
  }

  .btn {
    width: 100%;
  }

  .section,
  .band,
  .dark {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .card-grid,
  .project-cards,
  .sector-list,
  .project-gallery,
  .steps,
  .pillars,
  .metrics,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .project-gallery {
    grid-template-rows: repeat(4, 180px);
  }

  .project-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .quote-form {
    min-height: auto;
    padding: 24px;
  }

  .form-actions {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    padding: 20px;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    padding: 16px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .card,
  .card > img,
  .project-card,
  .project-card img,
  .project-gallery figure,
  .project-gallery img,
  .sector-list li,
  .steps li,
  .metrics div,
  .reveal {
    transform: none;
    transition: none;
  }

  .reveal {
    opacity: 1;
  }
}
