:root {
  --navy: #062b63;
  --navy-deep: #031f4b;
  --blue: #063c82;
  --icon-blue: #064397;
  --cyan: #08b8d4;
  --cyan-dark: #079bb7;
  --sky: #2aa9e0;
  --yellow: #ffb500;
  --white: #ffffff;
  --ice: #f7fafd;
  --pale-blue: #eaf6fc;
  --text: #29435f;
  --heading: #062b63;
  --border: rgba(6, 43, 99, 0.1);
  --shadow: 0 8px 24px rgba(6, 43, 99, 0.09);
  --shadow-hover: 0 14px 32px rgba(6, 43, 99, 0.14);
  --container: 1200px;
  --radius: 15px;
  --button-radius: 7px;
  --font: Inter, Manrope, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

h1,
h2,
h3 {
  color: var(--heading);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.65rem, 4.2vw, 4.35rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3vw, 3rem);
}

h3 {
  font-size: 1.08rem;
}

p {
  margin-bottom: 20px;
}

svg {
  display: block;
  width: 100%;
  height: 100%;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 6px;
  transform: translateY(-160%);
}

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

:focus-visible {
  outline: 3px solid rgba(255, 181, 0, 0.8);
  outline-offset: 3px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: var(--button-radius);
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button-primary {
  color: var(--white);
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 8px 18px rgba(8, 184, 212, 0.22);
}

.button-primary:hover {
  background: var(--cyan-dark);
  border-color: var(--cyan-dark);
}

.button-secondary {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.88);
}

.button-secondary:hover {
  color: var(--navy);
  background: var(--white);
}

.button-yellow {
  color: var(--navy-deep);
  background: var(--yellow);
  border-color: var(--yellow);
  box-shadow: 0 8px 18px rgba(255, 181, 0, 0.24);
}

.button-yellow:hover {
  background: #ffc126;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--cyan-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #89eaf7;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading p:last-child {
  max-width: 650px;
  margin: 0 auto;
}

.inline-icon {
  display: inline-flex;
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  color: currentColor;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 4px 18px rgba(6, 43, 99, 0.1);
}

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

.brand {
  display: inline-flex;
  width: 185px;
  height: 62px;
  align-items: center;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.4vw, 36px);
}

.main-nav a {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 650;
  transition: color 160ms ease;
}

.main-nav a:hover {
  color: var(--cyan-dark);
}

.header-cta {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 0.88rem;
  box-shadow: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  color: var(--navy);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, #062b63 0%, #003b78 100%);
}

.hero-grid {
  display: grid;
  min-height: 540px;
  grid-template-columns: 52% 48%;
  align-items: stretch;
}

.hero-copy {
  align-self: center;
  padding: 72px 56px 94px 0;
}

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

.hero-intro {
  max-width: 610px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.94rem;
  font-weight: 600;
}

.hero-media {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 48% 0 0 48%;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  object-position: center;
}

.wave-divider {
  position: relative;
  height: 58px;
  overflow: hidden;
}

.wave {
  position: absolute;
  left: -4%;
  width: 108%;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.wave-divider-hero {
  margin-top: -58px;
}

.wave-divider-hero .wave-cyan {
  bottom: 0;
  height: 45px;
  background: var(--cyan);
  transform: rotate(-0.8deg);
}

.wave-divider-hero .wave-yellow {
  right: -20%;
  bottom: 4px;
  left: 61%;
  width: 62%;
  height: 35px;
  background: var(--yellow);
  transform: rotate(-2deg);
}

.wave-divider-hero .wave-white {
  bottom: -24px;
  height: 68px;
  background: var(--white);
  transform: rotate(0.4deg);
}

/* Benefits */
.benefits {
  padding-top: 46px;
  padding-bottom: 34px;
  background: var(--white);
}

.benefits .section-heading {
  margin-bottom: 28px;
}

.benefits h2 {
  font-size: clamp(1.8rem, 2.65vw, 2.55rem);
}

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

.benefit-card,
.differential-card {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 26px 18px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 13px;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.benefit-card:hover,
.differential-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.benefit-card h3,
.differential-card h3 {
  max-width: 180px;
  margin: 17px 0 0;
  line-height: 1.35;
}

.feature-icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  color: var(--icon-blue);
}

/* Services */
.services {
  padding-top: 34px;
  padding-bottom: 76px;
  background: var(--white);
}

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

.service-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.service-card > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.service-content {
  display: grid;
  min-height: 170px;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  padding: 24px;
}

.service-content h3 {
  margin-bottom: 10px;
}

.service-content p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
}

.service-icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  margin-top: -47px;
  padding: 9px;
  color: var(--icon-blue);
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 5px 14px rgba(6, 43, 99, 0.12);
}

/* Real work */
.real-work {
  padding: 66px 0;
  overflow: hidden;
  background: linear-gradient(180deg, #eaf7fc 0%, #f5fbfe 100%);
}

.real-work-grid {
  display: grid;
  grid-template-columns: 53% 47%;
  align-items: center;
  gap: 46px;
}

.real-work-media {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(6, 43, 99, 0.15);
}

.real-work-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.real-work-copy {
  max-width: 490px;
}

.real-work-copy h2 {
  margin-bottom: 18px;
}

.badge {
  display: inline-flex;
  padding: 6px 11px;
  color: #087e9a;
  background: #d9f5fa;
  border-radius: 999px;
  letter-spacing: 0.07em;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 25px 0 28px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 650;
}

.check-list span {
  display: inline-flex;
  width: 22px;
  height: 22px;
  color: var(--cyan-dark);
}

/* Differentials */
.differentials {
  padding: 62px 0;
  background: var(--white);
}

.differential-card {
  min-height: 172px;
}

/* Area */
.service-area {
  overflow: hidden;
  background: #ddf1fa;
}

.area-composition {
  display: grid;
  min-height: 350px;
}

.area-photo,
.area-overlay {
  grid-area: 1 / 1;
}

.area-photo {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
  object-position: center;
}

.area-overlay {
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 430px) 1fr;
  align-items: center;
  gap: 40px;
  padding-top: 34px;
  padding-bottom: 34px;
}

.area-panel {
  padding: 30px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  box-shadow: 0 14px 38px rgba(6, 43, 99, 0.18);
  backdrop-filter: blur(5px);
}

.area-panel h2 {
  margin-bottom: 12px;
}

.area-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 700;
}

.area-map {
  position: relative;
  width: min(100%, 500px);
  height: 260px;
  justify-self: end;
}

.map-shape {
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(225, 246, 255, 0.93);
  border: 5px solid rgba(255, 255, 255, 0.85);
  filter: drop-shadow(0 12px 12px rgba(6, 43, 99, 0.24));
  clip-path: polygon(3% 47%, 9% 28%, 22% 24%, 28% 11%, 42% 17%, 49% 7%, 60% 20%, 69% 17%, 80% 29%, 95% 36%, 88% 51%, 96% 61%, 78% 67%, 71% 83%, 54% 77%, 46% 91%, 30% 80%, 16% 83%, 11% 66%);
}

.map-pin {
  position: absolute;
  top: 44%;
  left: 60%;
  display: inline-flex;
  width: 42px;
  height: 42px;
  padding: 8px;
  color: var(--icon-blue);
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(6, 43, 99, 0.2);
}

/* Process */
.process {
  padding: 64px 0 42px;
  background: var(--white);
}

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

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  padding: 12px 30px;
  border-right: 1px solid var(--border);
}

.process-step:first-child {
  padding-left: 0;
}

.process-step:last-child {
  padding-right: 0;
  border-right: 0;
}

.process-icon {
  display: inline-flex;
  width: 58px;
  height: 58px;
  color: var(--icon-blue);
}

.step-number {
  display: block;
  margin-bottom: 5px;
  color: var(--cyan-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.process-step h3 {
  margin-bottom: 9px;
}

.process-step p {
  margin: 0;
  font-size: 0.92rem;
}

.process-note {
  margin: 30px 0 0;
  color: var(--navy);
  text-align: center;
  font-weight: 650;
}

/* FAQ */
.faq {
  padding: 34px 0 70px;
  background: var(--white);
}

.faq-container {
  max-width: 950px;
}

.faq-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
}

.faq-heading h2 {
  margin: 0;
}

.heading-icon {
  display: inline-flex;
  width: 45px;
  height: 45px;
  color: var(--icon-blue);
}

.accordion {
  display: grid;
  gap: 9px;
}

.faq-item {
  overflow: hidden;
  background: var(--ice);
  border: 1px solid var(--border);
  border-radius: 9px;
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: grid;
  width: 100%;
  min-height: 55px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 14px 18px;
  color: var(--navy);
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 750;
}

.faq-chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.faq-item button[aria-expanded="true"] .faq-chevron {
  transform: rotate(225deg);
}

.faq-answer {
  padding: 0 18px 17px;
}

.faq-answer p {
  margin: 0;
}

/* Final CTA */
.final-cta {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, #062b63 0%, #003a78 100%);
}

.final-cta-grid {
  display: grid;
  min-height: 220px;
  grid-template-columns: 1.15fr 0.8fr 0.85fr;
  align-items: center;
  gap: 44px;
  padding-top: 46px;
  padding-bottom: 68px;
}

.final-cta h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(1.9rem, 2.7vw, 2.8rem);
}

.final-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.final-action {
  display: grid;
  justify-items: start;
  gap: 13px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
}

.phone-link span {
  display: inline-flex;
  width: 20px;
  height: 20px;
}

.trust-message {
  display: flex;
  align-items: center;
  gap: 18px;
}

.trust-message p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 650;
}

.trust-icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  color: var(--white);
}

.wave-divider-final {
  height: 48px;
  margin-top: -48px;
}

.wave-divider-final .wave-yellow {
  right: -5%;
  bottom: 2px;
  left: 67%;
  width: 40%;
  height: 34px;
  background: var(--yellow);
  transform: rotate(-3deg);
}

.wave-divider-final .wave-cyan {
  bottom: 0;
  height: 32px;
  background: var(--cyan);
  transform: rotate(0.4deg);
}

.wave-divider-final .wave-white {
  bottom: -28px;
  height: 60px;
  background: var(--white);
  transform: rotate(-0.5deg);
}

/* Footer */
.site-footer {
  padding-top: 38px;
  color: var(--text);
  background: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 60px;
  padding-bottom: 34px;
}

.footer-logo {
  width: 210px;
  height: 72px;
  margin-bottom: 10px;
}

.footer-brand p {
  max-width: 280px;
  margin: 0;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 8px;
}

.footer-links h2,
.footer-contact h2 {
  margin-bottom: 10px;
  font-size: 1rem;
  letter-spacing: 0;
}

.footer-links a {
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--cyan-dark);
}

.footer-contact a,
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  font-size: 0.92rem;
}

.footer-contact span {
  display: inline-flex;
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  color: var(--icon-blue);
}

.footer-bottom {
  padding: 17px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: var(--navy);
  font-size: 0.86rem;
}

/* Motion */
.js .reveal,
.js .stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js .reveal.is-visible,
.js .stagger > *.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Tablet */
@media (max-width: 1020px) {
  .header-inner {
    grid-template-columns: 170px 1fr auto;
    gap: 16px;
  }

  .main-nav {
    gap: 15px;
  }

  .main-nav a {
    font-size: 0.82rem;
  }

  .header-cta {
    display: none;
  }

  .hero-copy {
    padding-right: 34px;
  }

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

  .process-step {
    grid-template-columns: 50px 1fr;
    padding: 10px 20px;
  }

  .process-icon {
    width: 47px;
    height: 47px;
  }

  .final-cta-grid {
    grid-template-columns: 1.2fr 0.9fr;
  }

  .trust-message {
    grid-column: 1 / -1;
  }
}

/* Mobile */
@media (max-width: 768px) {
  html {
    scroll-padding-top: 74px;
  }

  body {
    font-size: 15.5px;
  }

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

  .section {
    padding: 44px 0;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 2.45rem);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(1.6rem, 7.2vw, 2rem);
  }

  h3 {
    font-size: 1rem;
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    min-height: 70px;
    grid-template-columns: 1fr auto;
    gap: 10px;
  }

  .brand {
    width: 160px;
    height: 54px;
  }

  .menu-toggle {
    display: block;
    grid-column: 2;
    grid-row: 1;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 4px 0 14px;
  }

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

  .main-nav a {
    min-height: 44px;
    padding: 11px 4px;
    border-top: 1px solid var(--border);
    font-size: 0.92rem;
  }

  .header-cta {
    display: none;
  }

  .hero-grid {
    width: 100%;
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
    padding: 44px 0 34px;
  }

  .hero h1 {
    max-width: 470px;
  }

  .hero-intro {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 22px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-media {
    width: 100%;
    border-radius: 0;
  }

  .hero-media img {
    min-height: 0;
    aspect-ratio: 16 / 9;
    object-position: center;
  }

  .wave-divider {
    height: 42px;
  }

  .wave-divider-hero {
    margin-top: 0;
  }

  .wave-divider-hero .wave-white {
    bottom: -33px;
  }

  .benefits {
    padding-top: 34px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2 br {
    display: none;
  }

  .benefit-grid,
  .differential-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .benefit-card,
  .differential-card {
    min-height: 150px;
    padding: 18px 10px;
  }

  .feature-icon {
    width: 43px;
    height: 43px;
  }

  .benefit-card h3,
  .differential-card h3 {
    margin-top: 13px;
    font-size: 0.88rem;
  }

  .services {
    padding-top: 28px;
    padding-bottom: 46px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .service-content {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 15px;
  }

  .service-icon {
    width: 44px;
    height: 44px;
    margin-top: -35px;
    padding: 8px;
  }

  .service-content h3 {
    margin-bottom: 7px;
    font-size: 0.9rem;
  }

  .service-content p {
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .real-work {
    padding: 44px 0;
  }

  .real-work-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .real-work-copy {
    max-width: none;
  }

  .real-work-copy h2 br {
    display: none;
  }

  .real-work-copy .button {
    width: 100%;
  }

  .differentials {
    padding: 42px 0;
  }

  .area-composition {
    display: block;
    min-height: 0;
  }

  .area-photo {
    min-height: 0;
    aspect-ratio: 16 / 8;
    object-position: center;
  }

  .area-overlay {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 20px 40px;
    background: #ddf1fa;
  }

  .area-panel {
    padding: 24px 20px;
    backdrop-filter: none;
  }

  .area-panel h2 br {
    display: none;
  }

  .area-panel .button {
    width: 100%;
  }

  .area-map {
    width: min(100%, 420px);
    height: 190px;
    justify-self: center;
  }

  .map-pin {
    width: 36px;
    height: 36px;
  }

  .process {
    padding: 44px 0 34px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-step {
    grid-template-columns: 52px 1fr;
    gap: 16px;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .process-step:first-child {
    padding-top: 0;
  }

  .process-step:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .process-icon {
    width: 48px;
    height: 48px;
  }

  .process-note {
    margin-top: 27px;
  }

  .faq {
    padding: 30px 0 48px;
  }

  .faq-heading {
    align-items: center;
  }

  .heading-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
  }

  .faq-item button {
    padding: 14px;
    font-size: 0.9rem;
  }

  .faq-answer {
    padding: 0 14px 15px;
    font-size: 0.9rem;
  }

  .final-cta-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 42px;
    padding-bottom: 74px;
  }

  .final-action {
    width: 100%;
  }

  .final-action .button {
    width: 100%;
  }

  .trust-message {
    grid-column: auto;
  }

  .trust-icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .wave-divider-final {
    height: 44px;
    margin-top: -44px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 30px;
  }

  .footer-logo {
    width: 195px;
    height: 68px;
  }
}

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

  .service-content {
    grid-template-columns: 52px 1fr;
    gap: 13px;
    padding: 20px;
  }

  .service-icon {
    margin-top: -42px;
  }

  .service-content h3 {
    font-size: 1rem;
  }

  .service-content p {
    font-size: 0.88rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal,
  .js .stagger > * {
    opacity: 1;
    transform: none;
  }
}

/* SITE FACIL ICON LIBRARY — desenho determinístico */
.sf-lib-icon{display:inline-block;width:1em;height:1em;min-width:1em;min-height:1em;overflow:visible;color:inherit;vertical-align:-.125em;flex:0 0 auto}.sf-lib-icon path{fill:currentColor!important;stroke:none!important}.sf-lib-icon[aria-hidden="true"]{pointer-events:none}
/* SF_PREMIUM_POLISH_V5_11_15_START */
:root{--sf-brand-primary:#003070;--sf-brand-glow-fallback:rgba(0,48,112,.24)}
html{scroll-behavior:smooth}
/* IMPORTANTE: nunca sobrescrever background/color/border dos botões. A prévia é a fonte visual. */
.sf-premium-button{position:relative;isolation:isolate;transition:transform .22s cubic-bezier(.2,.75,.2,1),box-shadow .22s ease,filter .22s ease,border-color .22s ease!important;will-change:transform;transform:translateZ(0)}
.sf-premium-button:hover{transform:translateY(-2px);filter:brightness(1.045);box-shadow:0 11px 28px rgba(0,0,0,.20),0 0 20px var(--sf-btn-glow,var(--sf-brand-glow-fallback))}
.sf-premium-button:active{transform:translateY(0) scale(.985)}
.sf-premium-button:focus-visible{outline:3px solid var(--sf-btn-outline,var(--sf-brand-primary));outline-offset:3px}
.sf-premium-button svg,.sf-premium-button .icon,.sf-premium-button [class*="icon"]{transition:transform .22s ease,opacity .22s ease!important}
.sf-premium-button:hover svg,.sf-premium-button:hover .icon,.sf-premium-button:hover [class*="icon"]{transform:translateX(2px)}
.sf-premium-card{transition:transform .30s cubic-bezier(.2,.75,.2,1),box-shadow .30s ease,border-color .30s ease,filter .30s ease;will-change:transform}
.sf-premium-card:hover{transform:translateY(-4px);box-shadow:0 16px 34px rgba(0,0,0,.14);filter:brightness(1.012)}
.sf-premium-icon{transition:transform .28s cubic-bezier(.2,.75,.2,1),filter .28s ease,opacity .28s ease!important;transform-origin:center;will-change:transform}
.sf-premium-card:hover .sf-premium-icon{transform:translateY(-2px) scale(1.045)}
.sf-premium-card img{transition:transform .55s cubic-bezier(.2,.75,.2,1),filter .4s ease!important}
.sf-premium-card:hover img{transform:scale(1.018);filter:saturate(1.03) contrast(1.01)}
.sf-reveal:nth-of-type(2n){--sf-reveal-delay:.055s}.sf-reveal:nth-of-type(3n){--sf-reveal-delay:.105s}.sf-reveal:nth-of-type(4n){--sf-reveal-delay:.155s}
.sf-reveal.sf-animate-in{animation-delay:var(--sf-reveal-delay,0s)}
.sf-motion-active .sf-reveal:not(.sf-animate-in){opacity:0;transform:translateY(18px)}
.sf-motion-active .sf-reveal-left:not(.sf-animate-in){transform:translateX(-22px)}
.sf-motion-active .sf-reveal-right:not(.sf-animate-in){transform:translateX(22px)}
.sf-reveal.sf-animate-in{animation:sfRevealUp .68s cubic-bezier(.2,.75,.2,1) both}
.sf-reveal-left.sf-animate-in{animation-name:sfRevealLeft}
.sf-reveal-right.sf-animate-in{animation-name:sfRevealRight}
@keyframes sfRevealUp{from{opacity:.04;transform:translateY(20px)}to{opacity:1;transform:none}}
@keyframes sfRevealLeft{from{opacity:.04;transform:translateX(-24px)}to{opacity:1;transform:none}}
@keyframes sfRevealRight{from{opacity:.04;transform:translateX(24px)}to{opacity:1;transform:none}}
@media(max-width:768px){.sf-reveal-left.sf-animate-in,.sf-reveal-right.sf-animate-in{animation-name:sfRevealUp}.sf-premium-card:hover{transform:translateY(-2px)}}
body.sf-motion-profile-energy .sf-premium-button:hover{filter:brightness(1.06)}
body.sf-motion-profile-dynamic .sf-premium-button:hover{transform:translateY(-3px) scale(1.01)}
body.sf-motion-profile-fluid .sf-premium-card:hover{transform:translateY(-3px)}
body.sf-motion-profile-soft .sf-premium-button,body.sf-motion-profile-soft .sf-premium-card,body.sf-motion-profile-soft .sf-premium-icon{transition-duration:.34s!important}
/* MOBILE REAL = edge-to-edge. A moldura arredondada pertence somente à imagem/mockup da prévia. */
@media(max-width:768px){
  html,body{width:100%!important;max-width:100%!important;margin:0!important;padding:0!important;overflow-x:hidden!important;border-radius:0!important}
  body{min-width:0!important}
  .sf-mobile-header-whatsapp{display:none!important}
  .sf-mobile-page-shell{width:100%!important;max-width:none!important;margin-left:0!important;margin-right:0!important;padding-left:0!important;padding-right:0!important;border:0!important;border-radius:0!important;box-shadow:none!important;overflow:visible!important}
  .sf-mobile-page-shell>header:first-child,.sf-mobile-page-shell>main:first-child,.sf-mobile-page-shell>main,.sf-mobile-page-shell>footer:last-child{max-width:none!important;margin-left:0!important;margin-right:0!important;border-left:0!important;border-right:0!important}
  body>header,body>main,body>footer{width:100%!important;max-width:none!important;margin-left:0!important;margin-right:0!important;border-radius:0!important}
  body>.site-wrapper,body>.page-wrapper,body>.site-shell,body>.page-shell,body>.site-frame,body>.page-frame,body>.mockup,body>.preview,body>#app,body>#root{width:100%!important;max-width:none!important;margin:0!important;padding-left:0!important;padding-right:0!important;border:0!important;border-radius:0!important;box-shadow:none!important}
  header .sf-mobile-header-whatsapp{display:none!important}
}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}.sf-premium-button,.sf-premium-card,.sf-premium-icon,.sf-reveal{transition:none!important;animation:none!important;transform:none!important}.sf-reveal{opacity:1!important}}
/* SF_PREMIUM_POLISH_V5_11_15_END */


/* Site Fácil IA V5.7.7 — WhatsApp e ícones fiéis */
.sf-whatsapp-button{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:8px!important;
  min-height:44px!important;
  padding:11px 18px!important;
  border-radius:8px!important;
  background:#25D366!important;
  color:#fff!important;
  border:0!important;
  text-decoration:none!important;
  font-weight:800!important;
  line-height:1.1!important;
  box-shadow:none!important;
}
.sf-whatsapp-button:hover{filter:brightness(.96)}
.sf-whatsapp-floating{
  width:46px!important;
  height:46px!important;
  min-width:46px!important;
  min-height:46px!important;
  padding:0!important;
  border-radius:999px!important;
}
.sf-faithful-icon,.sf-wa-icon{
  display:inline-grid!important;
  place-items:center!important;
  flex:0 0 auto!important;
  width:20px!important;
  height:20px!important;
}
.sf-whatsapp-floating .sf-wa-icon{width:22px!important;height:22px!important}
.sf-faithful-icon svg,.sf-wa-icon svg,.sf-faithful-icon-host svg{
  width:100%!important;
  height:100%!important;
  display:block!important;
}
.sf-faithful-icon-host{
  display:grid!important;
  place-items:center!important;
  width:42px!important;
  height:42px!important;
  min-width:42px!important;
  min-height:42px!important;
  border-radius:999px!important;
  background:#0057c8!important;
  color:#fff!important;
}
.sf-faithful-icon-host svg{
  width:20px!important;
  height:20px!important;
  fill:none!important;
  stroke:currentColor!important;
  stroke-width:1.9!important;
  stroke-linecap:round!important;
  stroke-linejoin:round!important;
}
.sf-wa-icon svg{color:#fff!important}
@media(max-width:768px){
  .sf-whatsapp-button{min-height:42px!important;padding:10px 14px!important;font-size:13px!important}
  .sf-whatsapp-floating{width:44px!important;height:44px!important;padding:0!important}
}

/* Site Fácil IA: proteção de integridade visual */
html,body{max-width:100%;overflow-x:clip}main>section{position:relative;isolation:isolate;clear:both}img{max-width:100%;height:auto}img[src*="assets/"]{object-fit:contain}


/* AQUALEVE_ICON_RENDER_FIX */
.feature-icon img,
.service-icon img,
.process-icon img,
.heading-icon img,
.trust-icon img,
.inline-icon img,
.real-work-list li span img,
.footer-contact a span img,
.footer-contact p span img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.feature-icon,
.service-icon,
.process-icon,
.heading-icon,
.trust-icon,
.inline-icon,
.real-work-list li span,
.footer-contact a span,
.footer-contact p span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.inline-icon.inline-icon-pin { width: 18px; height: 18px; }
.real-work-list li span { width: 22px; height: 22px; }
.footer-contact a span,
.footer-contact p span { width: 16px; height: 16px; }
.footer-logo img { object-fit: contain; }
.hero-actions .button,
.final-action .button,
.area-panel .button { transition: transform .24s ease, box-shadow .24s ease, filter .24s ease; }
.hero-actions .button:hover,
.final-action .button:hover,
.area-panel .button:hover { transform: translateY(-2px); filter: saturate(1.03); }
.service-card > img,
.real-work-media img,
.area-photo { transition: transform .7s ease, filter .7s ease; }
.service-card:hover > img { transform: scale(1.045); }
.real-work:hover .real-work-media img { transform: scale(1.03); }
.service-area:hover .area-photo { transform: scale(1.02); }
.wave { animation: aqualeve-wave 9s ease-in-out infinite; transform-origin: center bottom; }
.wave:nth-child(2) { animation-duration: 11s; animation-delay: -1.8s; }
.wave:nth-child(3) { animation-duration: 13s; animation-delay: -2.6s; }
.hero-media img { animation: aqualeve-hero-float 12s ease-in-out infinite; }
@keyframes aqualeve-wave {
  0%,100% { transform: translateY(0) scaleX(1); }
  50% { transform: translateY(-4px) scaleX(1.01); }
}
@keyframes aqualeve-hero-float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@media (prefers-reduced-motion: reduce) {
  .wave, .hero-media img { animation: none !important; }
}



/* Site Fácil IA V5.7.8 — transições suaves entre seções */
html{scroll-behavior:smooth}
.sf-motion-ready main>section,
.sf-motion-ready body>section,
.sf-motion-ready .sf-animate-section{
    opacity:0;
    transform:translate3d(0,28px,0);
    transition:opacity .72s cubic-bezier(.22,.61,.36,1),transform .72s cubic-bezier(.22,.61,.36,1);
    will-change:opacity,transform;
}
.sf-motion-ready main>section.sf-in-view,
.sf-motion-ready body>section.sf-in-view,
.sf-motion-ready .sf-animate-section.sf-in-view{
    opacity:1;
    transform:translate3d(0,0,0);
}
img{max-width:100%;height:auto}
@media(prefers-reduced-motion:reduce){
    html{scroll-behavior:auto}
    .sf-motion-ready main>section,
    .sf-motion-ready body>section,
    .sf-motion-ready .sf-animate-section{
        opacity:1!important;
        transform:none!important;
        transition:none!important;
    }
}

/* Serviço em destaque: vinil para caixas d'água e cisternas */
.hero-vinyl-highlight{display:inline-flex;align-items:center;gap:10px;flex-wrap:wrap;margin:0 0 22px;padding:9px 12px;border:1px solid rgba(8,184,212,.32);border-radius:999px;background:rgba(255,255,255,.88);box-shadow:0 8px 22px rgba(6,43,99,.08)}
.hero-vinyl-highlight span{display:inline-flex;align-items:center;padding:5px 8px;border-radius:999px;background:var(--cyan);color:#fff;font-size:.7rem;font-weight:800;letter-spacing:.08em}
.hero-vinyl-highlight strong{color:var(--navy);font-size:.9rem}
.vinyl-feature{display:grid;grid-template-columns:minmax(300px,.92fr) minmax(0,1.08fr);align-items:stretch;gap:0;margin:0 0 28px;overflow:hidden;border:1px solid rgba(8,184,212,.28);border-radius:var(--radius);background:linear-gradient(135deg,#063c82 0%,#062b63 58%,#041f49 100%);box-shadow:0 20px 44px rgba(6,43,99,.18)}
.vinyl-feature-media{position:relative;min-height:285px;overflow:hidden}
.vinyl-feature-media img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0}
.vinyl-feature-media::after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(6,43,99,.05),rgba(6,43,99,.4));pointer-events:none}
.vinyl-feature-badge{position:absolute;left:18px;top:18px;z-index:2;padding:8px 11px;border-radius:999px;background:#ffd438;color:#062b63;font-size:.72rem;font-weight:900;letter-spacing:.07em;box-shadow:0 8px 20px rgba(0,0,0,.15)}
.vinyl-feature-copy{display:flex;flex-direction:column;justify-content:center;padding:34px 38px;color:#fff}
.vinyl-feature-copy .eyebrow{margin-bottom:8px;color:#7de8f4}
.vinyl-feature-copy h3{margin:0 0 12px;color:#fff;font-size:clamp(1.55rem,2.5vw,2.35rem);line-height:1.08}
.vinyl-feature-copy p:not(.eyebrow){margin:0 0 22px;color:rgba(255,255,255,.9);line-height:1.65}
.vinyl-feature-copy .button{align-self:flex-start}
@media(max-width:768px){.hero-vinyl-highlight{border-radius:14px;margin-bottom:16px;gap:7px}.hero-vinyl-highlight strong{font-size:.78rem}.vinyl-feature{grid-template-columns:1fr;margin-bottom:18px}.vinyl-feature-media{min-height:190px}.vinyl-feature-copy{padding:22px 18px}.vinyl-feature-copy h3{font-size:1.35rem}.vinyl-feature-copy p:not(.eyebrow){font-size:.9rem;margin-bottom:16px}.vinyl-feature-copy .button{width:100%}}
