:root {
  --blue: #05b1f6;
  --blue-deep: #045eb3;
  --ice: #9dd3ee;
  --yellow: #feb239;
  --orange: #fe4b26;
  --text: #123047;
  --muted: #5d7180;
  --bg: #f5fafe;
  --white: #ffffff;
  --line: #dbeaf3;
  --shadow: 0 18px 50px rgba(18, 48, 71, 0.14);
  --soft-shadow: 0 10px 28px rgba(4, 94, 179, 0.12);
  --radius: 8px;
  --container: 1180px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

svg {
  width: 1.1em;
  height: 1.1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  flex: 0 0 auto;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 1rem;
  font-size: 3.6rem;
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: break-word;
  hyphens: auto;
}

h2 {
  margin-bottom: 0.85rem;
  font-size: 2.05rem;
  line-height: 1.15;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.5rem;
  font-size: 1.12rem;
  line-height: 1.25;
  letter-spacing: 0;
}

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

.container {
  width: calc(100% - 40px);
  max-width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--blue-deep);
  border-radius: var(--radius);
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(219, 234, 243, 0.9);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(18, 48, 71, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  width: calc(100% - 32px);
  max-width: 1240px;
  min-height: var(--header-height);
  margin-inline: auto;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 238px;
  max-height: 60px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  flex: 1 1 auto;
}

.desktop-nav > a,
.nav-item > button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.65rem 0.75rem;
  color: #1d435d;
  background: transparent;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 650;
  white-space: nowrap;
}

.desktop-nav > a:hover,
.desktop-nav > a.is-active,
.nav-item:hover > button,
.nav-item:focus-within > button {
  color: var(--blue-deep);
  background: #eaf7fe;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex: 0 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  max-width: 100%;
  padding: 0.78rem 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  box-shadow: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: var(--blue-deep);
  box-shadow: 0 14px 30px rgba(4, 94, 179, 0.22);
}

.btn-primary:hover {
  background: #034e95;
}

.btn-secondary {
  color: var(--text);
  background: var(--yellow);
  box-shadow: 0 14px 30px rgba(254, 178, 57, 0.26);
}

.btn-secondary:hover {
  background: #ffc15e;
}

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

.btn-quote {
  color: var(--text);
  background: var(--yellow);
}

.btn-dark {
  color: var(--white);
  background: var(--text);
}

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

.btn-light {
  color: var(--blue-deep);
  background: #eaf7fe;
  border-color: var(--line);
}

.btn.full {
  width: 100%;
}

.mobile-toggle {
  display: none;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--blue-deep);
  background: #eaf7fe;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.has-mega {
  position: relative;
}

.has-mega::after {
  position: absolute;
  right: -0.8rem;
  bottom: -24px;
  left: -0.8rem;
  height: 28px;
  content: "";
}

.mega-menu {
  position: fixed;
  top: var(--header-height);
  left: 50%;
  z-index: 160;
  width: calc(100% - 40px);
  max-width: 1050px;
  padding-top: 6px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu,
.mega-menu:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mega-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 1rem;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mega-column {
  padding: 1rem;
  border-radius: var(--radius);
}

.mega-column.mega-wide {
  grid-column: span 2;
}

.mega-column h2 {
  margin-bottom: 0.65rem;
  font-size: 1rem;
}

.mega-column p {
  margin-bottom: 1rem;
}

.mega-featured {
  color: var(--white);
  background: var(--blue-deep);
}

.mega-featured p {
  color: rgba(255, 255, 255, 0.82);
}

.mega-column ul {
  display: grid;
  gap: 0.35rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.mega-column li a,
.mega-sector-grid a,
.mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 0.52rem 0.65rem;
  color: #244b64;
  background: #f4fbff;
  border: 1px solid transparent;
  border-radius: var(--radius);
}

.mega-column li a:hover,
.mega-sector-grid a:hover,
.mobile-nav a:hover {
  color: var(--blue-deep);
  border-color: var(--ice);
  background: var(--white);
}

.mega-cta {
  display: grid;
  gap: 0.55rem;
}

.mega-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 42px;
  padding: 0.65rem;
  color: var(--text);
  background: var(--yellow);
  border-radius: var(--radius);
  font-weight: 700;
}

.mega-sector-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}

.mega-sector-grid a {
  justify-content: center;
  min-height: 46px;
  padding: 0.62rem 0.75rem;
  font-size: 0.96rem;
  font-weight: 700;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 720px;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 30, 50, 0.92) 0%, rgba(8, 30, 50, 0.73) 42%, rgba(8, 30, 50, 0.28) 100%),
    linear-gradient(0deg, rgba(4, 94, 179, 0.24), rgba(4, 94, 179, 0.24));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) 360px;
  gap: 2.2rem;
  align-items: center;
  padding: 4rem 0;
}

.hero-copy {
  width: 100%;
  max-width: 780px;
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.3rem 0.65rem;
  margin-bottom: 1rem;
  color: var(--blue-deep);
  background: #e5f7ff;
  border: 1px solid #bfe7fb;
  border-radius: var(--radius);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero .eyebrow,
.final-cta .eyebrow {
  color: var(--text);
  background: var(--yellow);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero h1 {
  max-width: 760px;
  color: var(--white);
}

.hero-text {
  max-width: 730px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.hero-actions.centered {
  justify-content: center;
}

.badge-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  max-width: 740px;
  margin-top: 1.5rem;
}

.badge-grid span {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 46px;
  padding: 0.68rem 0.75rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.hero-board,
.page-summary,
.service-card,
.step-card,
.aside-box,
.contact-form,
.contact-details,
.faq-list details {
  border-radius: var(--radius);
}

.hero-board {
  padding: 1.15rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
  min-width: 0;
}

.board-top {
  padding-bottom: 0.9rem;
  margin-bottom: 0.95rem;
  border-bottom: 1px solid var(--line);
}

.board-top span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.board-top strong {
  color: var(--blue-deep);
  font-size: 1.8rem;
  line-height: 1.1;
}

.hero-board ul {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 0 0 1rem;
  list-style: none;
}

.hero-board li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 42px;
  padding: 0.55rem;
  background: var(--bg);
  border-radius: var(--radius);
  font-weight: 700;
}

.hero-board li svg {
  color: var(--blue);
}

.hero-board > a,
.page-summary > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  min-height: 46px;
  color: var(--white);
  background: var(--orange);
  border-radius: var(--radius);
  font-weight: 700;
}

.section {
  padding: 5rem 0;
}

.services-section,
.process-section,
.maintenance-section,
.faq-section {
  background: var(--bg);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2rem;
}

.section-heading.compact {
  max-width: 620px;
  margin-inline: auto;
  text-align: center;
}

.section-heading p {
  font-size: 1.05rem;
}

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

.service-card {
  display: grid;
  gap: 0.75rem;
  min-height: 280px;
  padding: 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: var(--ice);
  box-shadow: var(--shadow);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--blue-deep);
  background: #e5f7ff;
  border: 1px solid #bfe7fb;
  border-radius: var(--radius);
}

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

.service-card strong {
  font-size: 1.1rem;
  line-height: 1.25;
}

.service-card p {
  margin-bottom: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  align-self: end;
  color: var(--blue-deep);
  font-weight: 700;
}

.cta-band {
  padding: 3rem 0;
  color: var(--white);
  background: var(--blue-deep);
}

.cta-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
}

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

.cta-band p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.split-grid,
.local-layout,
.two-col-text {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: 2.4rem;
  align-items: start;
}

.split-grid > *,
.local-layout > *,
.two-col-text > *,
.page-hero-grid > *,
.content-grid > *,
.contact-grid > * {
  min-width: 0;
}

.check-panel,
.mini-list {
  display: grid;
  gap: 0.7rem;
}

.check-panel {
  padding: 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.check-panel span,
.mini-list span {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  min-height: 42px;
  padding: 0.65rem 0.75rem;
  background: #f7fcff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 650;
}

.check-panel svg,
.mini-list svg {
  margin-top: 0.2rem;
  color: #0a9b73;
}

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

.step-card {
  min-height: 210px;
  padding: 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}

.step-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  color: var(--text);
  background: var(--yellow);
  border-radius: var(--radius);
  font-weight: 700;
}

.step-card p {
  margin-bottom: 0;
}

.local-section {
  background: #ffffff;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}

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

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

.sector-grid a {
  display: grid;
  place-items: center;
  min-height: 46px;
  padding: 0.55rem;
  color: var(--blue-deep);
  background: #eaf7fe;
  border: 1px solid #c8eafa;
  border-radius: var(--radius);
  font-weight: 700;
}

.sector-grid a:hover {
  color: var(--white);
  background: var(--blue-deep);
}

.intervention-panel {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.paris-map-card {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.paris-map-card iframe {
  display: block;
  width: 100%;
  height: 260px;
  border: 0;
}

.paris-map-card figcaption {
  padding: 0.7rem 0.85rem;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.two-col-text article,
.rich-content article {
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
}

.seo-image-card {
  margin: 0 0 1.25rem;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

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

.page-hero {
  padding: 4.2rem 0 3.4rem;
  background:
    linear-gradient(120deg, rgba(5, 177, 246, 0.13), rgba(254, 178, 57, 0.12)),
    var(--bg);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 2rem;
  align-items: center;
}

.page-hero h1 {
  max-width: 840px;
  color: var(--text);
}

.page-hero p {
  max-width: 820px;
  font-size: 1.08rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--blue-deep);
  font-weight: 700;
}

.page-summary {
  padding: 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.page-summary strong {
  display: block;
  margin: 1rem 0 0.25rem;
  color: var(--blue-deep);
  font-size: 1.6rem;
  line-height: 1.1;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 2.5rem;
  align-items: start;
}

.rich-content h2 {
  max-width: 760px;
}

.rich-content p {
  max-width: 860px;
  font-size: 1.04rem;
}

.inline-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem;
  margin: 1.2rem 0;
  color: var(--white);
  background: var(--blue-deep);
  border-radius: var(--radius);
}

.inline-cta h2 {
  margin-bottom: 0.35rem;
  color: var(--white);
  font-size: 1.35rem;
}

.inline-cta p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.sticky-aside {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  display: grid;
  gap: 1rem;
}

.aside-box {
  padding: 1.15rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}

.aside-box.soft {
  background: var(--bg);
}

.aside-box h2 {
  font-size: 1.2rem;
}

.aside-links {
  display: grid;
  gap: 0.45rem;
}

.aside-links a {
  display: flex;
  min-height: 40px;
  align-items: center;
  padding: 0.55rem 0.65rem;
  color: var(--blue-deep);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 920px;
  margin-inline: auto;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(18, 48, 71, 0.06);
}

.faq-list summary {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 0.95rem 1.1rem;
  color: var(--text);
  cursor: pointer;
  font-weight: 700;
}

.faq-list p {
  padding: 0 1.1rem 1.05rem;
  margin-bottom: 0;
}

.final-cta {
  padding: 5rem 0;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(120deg, rgba(4, 94, 179, 0.96), rgba(5, 177, 246, 0.85)),
    var(--blue-deep);
}

.final-cta h2 {
  max-width: 760px;
  margin-inline: auto;
  color: var(--white);
}

.final-cta p {
  max-width: 720px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.84);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: start;
}

.contact-details,
.contact-form {
  padding: 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}

.contact-details {
  display: grid;
  gap: 0.75rem;
}

.contact-details h2,
.contact-form h2 {
  font-size: 1.35rem;
}

.contact-details > a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.72rem;
  color: var(--blue-deep);
  background: #eaf7fe;
  border: 1px solid #c8eafa;
  border-radius: var(--radius);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

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

.contact-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--text);
  font-weight: 650;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.8rem 0.85rem;
  color: var(--text);
  background: #fbfdff;
  border: 1px solid #cfe5f2;
  border-radius: var(--radius);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(5, 177, 246, 0.16);
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.privacy-note {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.form-message {
  padding: 0.85rem;
  border-radius: var(--radius);
  font-weight: 700;
}

.form-message.success {
  color: #075a44;
  background: #dcf8ef;
  border: 1px solid #a9ead9;
}

.form-message.error {
  color: #9f2410;
  background: #fff0eb;
  border: 1px solid #ffc7b8;
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 200;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  max-width: 920px;
  padding: 1rem;
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--text);
}

.cookie-banner p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
}

.site-footer {
  padding: 3rem 0 1.5rem;
  color: rgba(255, 255, 255, 0.82);
  background: #08253d;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 2rem;
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.footer-brand img {
  width: 260px;
  padding: 0.45rem;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius);
}

.footer-inner h2 {
  color: var(--white);
  font-size: 1rem;
}

.footer-inner p {
  color: rgba(255, 255, 255, 0.74);
}

.footer-inner ul {
  display: grid;
  gap: 0.45rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-inner a:hover,
.footer-bottom a:hover {
  color: var(--yellow);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 40px, var(--container));
  padding-top: 1.4rem;
  margin: 2rem auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

@media (max-width: 1140px) {
  .desktop-nav {
    display: none;
  }

  .mobile-toggle {
    display: grid;
  }

  .header-inner {
    justify-content: space-between;
  }

  .mobile-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    gap: 0.55rem;
    padding: 1rem 1.25rem 2rem;
    overflow: auto;
    background: var(--white);
    border-top: 1px solid var(--line);
  }

  .mobile-nav.is-open {
    display: grid;
    align-content: start;
  }

  .mobile-nav details {
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .mobile-nav summary {
    min-height: 48px;
    padding: 0.75rem;
    color: var(--blue-deep);
    cursor: pointer;
    font-weight: 700;
  }

  .mobile-nav details div {
    display: grid;
    gap: 0.45rem;
    padding: 0 0.75rem 0.75rem;
  }

  .mobile-call {
    justify-content: center;
    color: var(--white) !important;
    background: var(--blue-deep) !important;
  }

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

  .header-actions .btn-phone,
  .header-actions .btn-quote {
    display: none;
  }
}

@media (max-width: 1020px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero {
    min-height: 760px;
  }

  .hero-grid,
  .page-hero-grid,
  .content-grid,
  .contact-grid,
  .split-grid,
  .local-layout,
  .two-col-text {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 1.4rem;
  }

  .hero-board,
  .page-summary {
    max-width: 520px;
  }

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

  .sticky-aside {
    position: static;
  }

  .cta-band-inner {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  :root {
    --header-height: 74px;
  }

  body {
    font-size: 15.5px;
  }

  h1 {
    font-size: 2.1rem;
    line-height: 1.08;
  }

  h2 {
    font-size: 1.55rem;
  }

  .container,
  .footer-inner,
  .footer-bottom {
    width: calc(100% - 28px);
    max-width: var(--container);
  }

  .brand img {
    width: 190px;
    max-height: 52px;
  }

  .hero {
    min-height: 780px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(8, 30, 50, 0.94) 0%, rgba(8, 30, 50, 0.72) 62%, rgba(8, 30, 50, 0.38) 100%),
      linear-gradient(0deg, rgba(4, 94, 179, 0.18), rgba(4, 94, 179, 0.18));
  }

  .hero-grid {
    padding: 2.8rem 0;
  }

  .hero h1 {
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .badge-grid,
  .service-grid,
  .steps-grid,
  .sector-grid,
  .sector-grid.large,
  .form-row,
  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

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

  .section {
    padding: 3.4rem 0;
  }

  .page-hero {
    padding: 3rem 0 2.6rem;
  }

  .inline-cta {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 1.82rem;
  }

  .brand img {
    width: 170px;
  }

  .header-inner {
    width: calc(100% - 20px);
    max-width: 1240px;
    gap: 0.6rem;
  }

  .hero-board,
  .page-summary,
  .contact-details,
  .contact-form,
  .check-panel,
  .service-card,
  .step-card,
  .aside-box {
    padding: 1rem;
  }
}
