:root {
  --ink: #122836;
  --muted-ink: #526776;
  --blue: #075d8f;
  --blue-deep: #04344f;
  --pool: #12a8b8;
  --sand: #d8c49c;
  --stone: #eef3f4;
  --cream: #fbfaf5;
  --white: #ffffff;
  --line: #d9e5e8;
  --shadow: 0 18px 50px rgba(4, 52, 79, .12);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--pool);
  outline-offset: 3px;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  padding: 12px 16px;
  background: var(--blue-deep);
  color: var(--white);
  z-index: 1000;
}

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

.narrow {
  width: min(100% - 40px, 840px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 245, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand img {
  width: 178px;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  text-decoration: none;
  padding: 10px 13px;
  border-radius: var(--radius);
  font-weight: 700;
  color: var(--ink);
}

.nav-link:hover,
.nav-link.is-active {
  background: var(--stone);
  color: var(--blue);
}

.header-call {
  text-decoration: none;
  border: 1px solid var(--blue);
  color: var(--blue);
  padding: 10px 16px;
  border-radius: var(--radius);
  font-weight: 800;
}

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

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

h1,
h2,
h3 {
  line-height: 1.1;
  margin: 0 0 18px;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.1rem, 4.35vw, 4.15rem);
}

h2 {
  font-size: clamp(1.9rem, 3vw, 3.1rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0 0 16px;
}

.lead {
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  color: var(--muted-ink);
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .08em;
}

.hero {
  padding: 38px 0 28px;
  background:
    linear-gradient(110deg, rgba(251, 250, 245, .98) 0%, rgba(251, 250, 245, .88) 50%, rgba(18, 168, 184, .18) 100%),
    var(--cream);
}

.hero-grid,
.page-hero-grid,
.two-col,
.contact-grid,
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, .9fr);
  gap: 48px;
  align-items: center;
}

.hero-copy {
  padding: 26px 0;
}

.hero-media {
  min-height: 360px;
}

.hero-media img,
.rounded {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.hero-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1.08 / 1;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(7, 93, 143, .23);
}

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

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

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

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

.full {
  width: 100%;
}

.zone {
  max-width: 720px;
  color: var(--muted-ink);
  font-weight: 700;
}

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

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

.strip-grid span {
  padding: 18px;
  background: rgba(255, 255, 255, .06);
  text-align: center;
  font-weight: 800;
}

.section {
  padding: 76px 0;
}

.muted {
  background: var(--stone);
}

.section-head {
  margin-bottom: 30px;
}

.section-head p {
  max-width: 760px;
  color: var(--muted-ink);
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(4, 52, 79, .06);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

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

.service-card a {
  text-decoration: none;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  margin: 11px 0;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 12px;
  height: 2px;
  background: var(--pool);
}

.reverse {
  grid-template-columns: minmax(330px, .9fr) minmax(0, 1fr);
}

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

.method-grid div,
.method-card,
.side-panel,
.contact-card,
.quote-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 10px 28px rgba(4, 52, 79, .07);
}

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

.gallery img {
  width: 100%;
  aspect-ratio: 1.3 / 1;
  object-fit: cover;
}

.page-hero {
  padding: 54px 0 60px;
  background: linear-gradient(135deg, var(--stone), var(--cream));
}

.page-hero.split {
  padding-bottom: 46px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
  font-size: .92rem;
  color: var(--muted-ink);
}

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

.breadcrumb a::after {
  content: "/";
  color: var(--muted-ink);
  margin-left: 8px;
}

.content-grid {
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
}

.content-grid article h2 {
  margin-top: 34px;
}

.content-grid article h2:first-child {
  margin-top: 0;
}

.side-panel {
  position: sticky;
  top: 100px;
}

.side-panel .btn + .btn,
.contact-card .btn + .btn {
  margin-top: 10px;
}

.method-card ol {
  margin: 0;
  padding-left: 20px;
}

.faq-section details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.faq-section details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-section summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-section details p {
  margin-top: 12px;
  color: var(--muted-ink);
}

.related ul,
.site-footer ul {
  list-style: none;
  padding: 0;
}

.related li,
.site-footer li {
  margin: 8px 0;
}

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

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

.cta-band .eyebrow,
.cta-band p {
  color: rgba(255, 255, 255, .82);
}

.contact-grid {
  grid-template-columns: 360px minmax(0, 1fr);
  align-items: start;
}

.quote-form label {
  display: block;
  font-weight: 900;
  margin: 16px 0 6px;
}

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid #b9c9cf;
  border-radius: var(--radius);
  padding: 12px 13px;
  font: inherit;
  background: var(--white);
  color: var(--ink);
}

textarea {
  resize: vertical;
}

[aria-invalid="true"] {
  border-color: #a33b2c;
}

.error {
  display: block;
  min-height: 22px;
  color: #8f2f23;
  font-size: .9rem;
}

.consent {
  display: flex !important;
  gap: 10px;
  align-items: flex-start;
}

.consent input {
  width: auto;
  margin-top: 6px;
}

.hp-field {
  position: absolute;
  left: -100vw;
}

.form-status {
  margin-top: 16px;
  color: var(--blue-deep);
  font-weight: 800;
}

.legal h2 {
  margin-top: 34px;
}

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

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

.footer-logo {
  width: 190px;
  filter: brightness(0) invert(1);
  margin-bottom: 18px;
}

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

.site-footer a {
  color: rgba(255, 255, 255, .9);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .16);
  padding-top: 18px;
  margin-top: 28px;
  font-size: .92rem;
}

.mobile-call {
  display: none;
}

@media (max-width: 960px) {
  .header-inner {
    grid-template-columns: auto auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 10px;
    box-shadow: var(--shadow);
  }

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

  .header-call {
    justify-self: end;
  }

  .hero-grid,
  .page-hero-grid,
  .two-col,
  .reverse,
  .contact-grid,
  .content-grid,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .gallery,
  .strip-grid,
  .method-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .side-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .container,
  .narrow {
    width: min(100% - 28px, var(--container));
  }

  .brand img {
    width: 148px;
  }

  .header-call {
    display: none;
  }

  .header-inner {
    grid-template-columns: auto auto;
  }

  .hero,
  .page-hero {
    padding-top: 34px;
  }

  .hero-media {
    min-height: 250px;
  }

  .cards-grid,
  .gallery,
  .strip-grid,
  .method-grid,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 54px 0;
  }

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

  .btn {
    width: 100%;
  }

  .mobile-call {
    display: flex;
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 60;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    border-radius: var(--radius);
    color: var(--white);
    background: var(--blue);
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 12px 32px rgba(4, 52, 79, .24);
  }

  .site-footer {
    padding-bottom: 86px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}

/* Premium refresh */
:root {
  --ink: #102535;
  --muted-ink: #5a6b75;
  --blue: #006b9f;
  --blue-deep: #032f47;
  --pool: #00aeba;
  --sand: #cbb17a;
  --stone: #edf4f2;
  --cream: #fbf8ef;
  --line: #d7e2df;
  --shadow: 0 24px 70px rgba(3, 47, 71, .14);
}

body {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
}

.site-header {
  background: rgba(251, 248, 239, .9);
}

.nav-link {
  font-weight: 800;
}

.nav-services {
  position: relative;
}

.nav-services summary {
  list-style: none;
  cursor: pointer;
}

.nav-services summary::-webkit-details-marker {
  display: none;
}

.nav-services summary::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 8px;
}

.services-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 320px;
  padding: 10px;
  background: rgba(255, 255, 255, .98);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.services-menu a {
  display: block;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--ink);
  font-weight: 750;
}

.services-menu a:hover {
  background: var(--stone);
  color: var(--blue);
}

.hero,
.page-hero {
  padding: 0;
  background: var(--blue-deep);
}

.hero-bg {
  position: relative;
  isolation: isolate;
  min-height: clamp(560px, 72vh, 780px);
  display: flex;
  align-items: center;
  color: var(--white);
  background-size: cover;
  background-position: center;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(2, 27, 42, .9) 0%, rgba(2, 27, 42, .72) 42%, rgba(2, 27, 42, .3) 76%, rgba(2, 27, 42, .14) 100%),
    linear-gradient(0deg, rgba(2, 27, 42, .25), rgba(2, 27, 42, .25));
}

.hero-home {
  background-image: url("../images/hero-piscine-gard.webp");
}

.hero-equipment {
  background-image: url("../images/hero-entretien-equipements.webp");
}

.hero-renovation {
  background-image: url("../images/hero-renovation-liner.webp");
}

.hero-fuite {
  background-image: url("../images/hero-fuite-piscine.webp");
}

.hero-abri {
  background-image: url("../images/hero-abri-motorisation.webp");
}

.hero-content {
  max-width: 760px;
  padding-block: 88px;
}

.hero-bg .eyebrow {
  color: var(--sand);
}

.hero-bg .lead,
.hero-bg .zone {
  color: rgba(255, 255, 255, .88);
}

.hero-bg .btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .38);
  backdrop-filter: blur(12px);
}

.hero-bg .breadcrumb {
  color: rgba(255, 255, 255, .76);
}

.hero-bg .breadcrumb a {
  color: var(--white);
}

.proof-strip {
  background: #062739;
}

.strip-grid span {
  background: rgba(255, 255, 255, .055);
}

.service-card {
  border: 1px solid rgba(215, 226, 223, .95);
  box-shadow: 0 18px 50px rgba(3, 47, 71, .08);
  transition: transform .22s ease, box-shadow .22s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 68px rgba(3, 47, 71, .14);
}

.contact-card,
.quote-form,
.side-panel,
.method-card,
.method-grid div {
  box-shadow: 0 20px 62px rgba(3, 47, 71, .1);
}

.footer-logo {
  filter: none;
  background: rgba(255, 255, 255, .96);
  border-radius: var(--radius);
  padding: 8px;
}

.footer-consent {
  border: 0;
  padding: 0;
  color: rgba(255, 255, 255, .9);
  background: transparent;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  inset: auto 20px 20px 20px;
  z-index: 90;
}

.cookie-panel {
  width: min(100%, 980px);
  margin-left: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 22px;
  align-items: center;
  padding: 22px;
  background: rgba(255, 255, 255, .97);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(3, 47, 71, .22);
}

.cookie-panel h2 {
  font-size: 1.28rem;
  margin-bottom: 8px;
}

.cookie-panel p {
  color: var(--muted-ink);
  margin-bottom: 0;
}

.cookie-options {
  display: grid;
  gap: 8px;
  min-width: 190px;
}

.cookie-options label {
  display: flex;
  gap: 8px;
  align-items: center;
  font-weight: 800;
}

.cookie-options input {
  width: auto;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 960px) {
  .nav-services {
    width: 100%;
  }

  .services-menu {
    position: static;
    min-width: 0;
    width: 100%;
    margin-top: 8px;
    box-shadow: none;
    background: var(--stone);
  }

  .hero-bg {
    min-height: 620px;
  }

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

  .cookie-actions {
    justify-content: stretch;
  }
}

@media (max-width: 640px) {
  .hero-bg {
    min-height: 620px;
    background-position: 62% center;
  }

  .hero-content {
    padding-block: 58px 92px;
  }

  .cookie-banner {
    inset: auto 12px 82px 12px;
  }

  .cookie-panel {
    padding: 16px;
    max-height: 54vh;
    overflow: auto;
  }

  .cookie-panel h2 {
    font-size: 1.08rem;
  }

  .cookie-panel p {
    font-size: .92rem;
    line-height: 1.45;
  }

  .cookie-options {
    gap: 5px;
  }

  .cookie-options label {
    font-size: .92rem;
  }

  .cookie-actions .btn {
    min-height: 42px;
  }
}

/* Final premium pass */
:root {
  --ink: #0d2634;
  --muted-ink: #516a76;
  --blue: #006f9e;
  --blue-deep: #052b3c;
  --pool: #03aeb8;
  --sand: #d6bf82;
  --stone: #eef5f2;
  --cream: #faf7ef;
  --white: #fff;
  --line: #d6e3df;
  --shadow: 0 26px 72px rgba(5, 43, 60, .13);
}

body {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .76), rgba(250, 247, 239, .95) 360px),
    var(--cream);
  text-rendering: geometricPrecision;
}

.site-header {
  background: rgba(250, 247, 239, .82);
  box-shadow: 0 12px 42px rgba(5, 43, 60, .06);
}

.header-inner {
  gap: 18px;
}

.main-nav {
  gap: 3px;
}

.nav-link {
  font-size: .94rem;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.is-active {
  background: rgba(255, 255, 255, .72);
  box-shadow: inset 0 0 0 1px rgba(214, 227, 223, .9);
}

.services-menu {
  overflow: hidden;
}

.services-menu a {
  font-size: .94rem;
}

.hero-bg::after {
  background:
    linear-gradient(90deg, rgba(2, 23, 34, .88) 0%, rgba(2, 23, 34, .62) 44%, rgba(2, 23, 34, .22) 76%, rgba(2, 23, 34, .04) 100%),
    radial-gradient(circle at 22% 48%, rgba(3, 174, 184, .16), rgba(3, 174, 184, 0) 34%);
}

.hero-content h1 {
  max-width: 880px;
}

.lead {
  max-width: 760px;
}

.proof-strip {
  background: #041f2d;
}

.strip-grid span {
  color: rgba(255, 255, 255, .88);
  letter-spacing: .01em;
}

.section {
  position: relative;
}

.section-head {
  max-width: 850px;
}

.service-card,
.method-grid div,
.method-card,
.side-panel,
.contact-card,
.quote-form {
  border-color: rgba(214, 227, 223, .96);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 56px rgba(5, 43, 60, .09);
}

.service-card {
  min-height: 100%;
}

.service-card img,
.gallery img,
.rounded {
  filter: saturate(1.04) contrast(1.02);
}

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

.service-card .eyebrow {
  font-size: .7rem;
  color: #697b71;
}

.reviews-section {
  padding-block: 52px;
  background: linear-gradient(180deg, var(--cream), #fff);
}

.reviews-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  align-items: center;
  padding: 30px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.reviews-card h2 {
  margin-bottom: 12px;
}

.reviews-card p {
  max-width: 720px;
  color: var(--muted-ink);
}

.reviews-score {
  display: grid;
  justify-items: start;
  gap: 8px;
  padding: 22px;
  background: var(--stone);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.google-logo {
  display: inline-flex;
  gap: 1px;
  align-items: center;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0;
}

.google-logo span:nth-child(1),
.google-logo span:nth-child(4) {
  color: #4285f4;
}

.google-logo span:nth-child(2),
.google-logo span:nth-child(6) {
  color: #ea4335;
}

.google-logo span:nth-child(3) {
  color: #fbbc05;
}

.google-logo span:nth-child(5) {
  color: #34a853;
}

.stars {
  color: #d9a429;
  font-size: 1.55rem;
  letter-spacing: .04em;
  line-height: 1;
}

.reviews-score strong {
  font-size: 1.9rem;
  line-height: 1;
}

.reviews-score span {
  color: var(--muted-ink);
  font-weight: 800;
}

.reviews-score .btn {
  width: 100%;
  margin-top: 8px;
}

.faq-section details {
  background: rgba(255, 255, 255, .52);
  border: 1px solid var(--line);
  border-bottom: 0;
  padding: 20px 22px;
}

.faq-section details:first-of-type {
  border-radius: var(--radius) var(--radius) 0 0;
}

.faq-section details:last-child {
  border-bottom: 1px solid var(--line);
  border-radius: 0 0 var(--radius) var(--radius);
}

.faq-section summary {
  list-style: none;
}

.faq-section summary::-webkit-details-marker {
  display: none;
}

.faq-section summary::after {
  content: "+";
  float: right;
  color: var(--blue);
  font-size: 1.2rem;
  line-height: 1;
  margin-left: 16px;
}

.faq-section details[open] summary::after {
  content: "-";
}

.site-footer {
  background: #031d2a;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  color: var(--blue-deep);
  background: var(--white);
}

.social-links svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1100px) {
  .nav-link {
    padding-inline: 9px;
    font-size: .88rem;
  }

  .header-call {
    padding-inline: 12px;
  }
}

@media (max-width: 960px) {
  .nav-link {
    white-space: normal;
  }

  .cards-grid.two-cards {
    grid-template-columns: 1fr;
  }

  .services-menu a {
    white-space: normal;
  }

  .reviews-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .reviews-card {
    padding: 20px;
  }

  .reviews-score {
    padding: 18px;
  }
}
