:root {
  --blue: #073b5a;
  --blue-deep: #052c46;
  --blue-mid: #0b5f8a;
  --green: #1f7a3a;
  --green-dark: #145c2e;
  --yellow: #f2c200;
  --yellow-dark: #d9a800;
  --whatsapp: #25d366;
  --white: #ffffff;
  --gray-light: #f4f6f7;
  --gray: #5b6770;
  --graphite: #1f2933;
  --line: #dce3e7;
  --shadow: 0 18px 50px rgba(5, 44, 70, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--graphite);
  background: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.menu-open {
  overflow: hidden;
}

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

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

img,
svg {
  display: block;
}

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

h1,
h2,
h3 {
  font-family: Manrope, Inter, sans-serif;
  letter-spacing: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(220, 227, 231, 0.9);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  width: min(100% - 2rem, 1240px);
  min-height: 76px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: block;
  width: 260px;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 68px;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.8rem);
  margin-left: auto;
}

.desktop-nav a {
  color: var(--gray);
  font-size: 0.91rem;
  font-weight: 700;
}

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

.header-cta,
.mobile-menu-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 1.05rem;
  border-radius: 6px;
  color: var(--white);
  background: var(--blue);
  font-size: 0.9rem;
  font-weight: 800;
}

.header-cta:hover {
  background: var(--blue-deep);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 44, 70, 0.98), rgba(7, 59, 90, 0.96)),
    var(--blue-deep);
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero::before {
  top: -180px;
  right: -100px;
  width: 520px;
  height: 520px;
  border: 80px solid rgba(242, 194, 0, 0.1);
  border-radius: 50%;
}

.hero::after {
  bottom: -190px;
  left: 42%;
  width: 430px;
  height: 430px;
  border: 70px solid rgba(31, 122, 58, 0.14);
  transform: rotate(20deg);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100% - 2rem, 1240px);
  min-height: 680px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.1fr) minmax(390px, 0.8fr);
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
  padding: 5rem 0;
}

.eyebrow,
.section-kicker {
  margin-bottom: 0.85rem;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #cde8d4;
}

.eyebrow span {
  width: 2rem;
  height: 3px;
  background: var(--yellow);
}

.hero h1 {
  max-width: 11.5ch;
  margin-bottom: 1.35rem;
  font-size: clamp(3.25rem, 5.8vw, 5.5rem);
  line-height: 1;
}

.hero h1 em {
  color: var(--yellow);
  font-style: normal;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 0;
  color: #d8e2e8;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 2rem 0 1.5rem;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.2rem;
  border-radius: 6px;
  font-weight: 800;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.btn svg,
.floating-whatsapp svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.btn-whatsapp:hover {
  background: var(--green);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.06);
}

.btn-secondary:hover {
  border-color: var(--yellow);
  background: rgba(255, 255, 255, 0.1);
}

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

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

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-trust li {
  position: relative;
  padding-left: 1.15rem;
  color: #d8e2e8;
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-trust li::before {
  position: absolute;
  top: 0.4rem;
  left: 0;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--yellow);
  content: "";
}

.hero-showcase {
  padding: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.showcase-logo {
  display: flex;
  min-height: 230px;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(11, 95, 138, 0.4), rgba(5, 44, 70, 0.2)),
    var(--blue-deep);
}

.showcase-logo img {
  width: 128px;
  height: 128px;
  object-fit: contain;
}

.showcase-logo div {
  display: grid;
  gap: 0.3rem;
}

.showcase-logo strong {
  color: var(--yellow);
  font-family: Manrope, sans-serif;
  font-size: 1.55rem;
}

.showcase-logo span {
  max-width: 18ch;
  color: #b9cbd6;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.7rem;
}

.showcase-grid article {
  display: grid;
  min-height: 105px;
  align-content: end;
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
}

.showcase-grid article > span {
  margin-bottom: auto;
  color: var(--yellow);
  font-size: 0.7rem;
  font-weight: 800;
}

.showcase-grid strong {
  font-size: 0.95rem;
}

.showcase-grid small {
  margin-top: 0.2rem;
  color: #aebfc9;
  font-size: 0.72rem;
}

.quick-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100% - 2rem, 1240px);
  margin: -1px auto 0;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--white);
}

.quick-proof div {
  display: grid;
  gap: 0.25rem;
  padding: 1.5rem 1.75rem;
  border-right: 1px solid var(--line);
}

.quick-proof div:last-child {
  border-right: 0;
}

.quick-proof strong {
  color: var(--blue);
  font-size: 0.9rem;
}

.quick-proof span {
  color: var(--gray);
  font-size: 0.82rem;
}

.section {
  width: min(100% - 2rem, 1240px);
  margin: 0 auto;
  padding: clamp(5rem, 8vw, 8rem) 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 2.25rem;
}

.section-heading h2,
.trust-copy h2,
.about-copy h2,
.process-heading h2,
.final-cta h2 {
  max-width: 14ch;
  margin-bottom: 0;
  color: var(--blue);
  font-size: clamp(2.25rem, 4.3vw, 4rem);
  line-height: 1.05;
}

.section-heading > p {
  max-width: 31rem;
  margin-bottom: 0;
  color: var(--gray);
  font-size: 1.02rem;
  line-height: 1.7;
}

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

.service-card {
  --accent: var(--blue);
  --accent-soft: rgba(7, 59, 90, 0.08);
  --icon-color: var(--accent);
  --text-accent: var(--accent);
  display: flex;
  min-height: 340px;
  flex-direction: column;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-left: 5px solid var(--accent);
  border-radius: 8px;
  background: var(--white);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  border-color: var(--line);
  border-left-color: var(--accent);
  box-shadow: 0 16px 42px rgba(5, 44, 70, 0.13);
  transform: translateY(-5px);
}

.service-paint {
  --accent: var(--yellow);
  --accent-soft: rgba(242, 194, 0, 0.16);
  --icon-color: var(--blue);
  --text-accent: var(--blue);
}

.service-pladur {
  --accent: var(--blue-mid);
  --accent-soft: rgba(11, 95, 138, 0.09);
}

.service-tiles {
  --accent: var(--green);
  --accent-soft: rgba(31, 122, 58, 0.09);
}

.service-masonry {
  --accent: var(--yellow-dark);
  --accent-soft: rgba(217, 168, 0, 0.14);
  --icon-color: var(--graphite);
  --text-accent: var(--graphite);
}

.service-renovation {
  --accent: var(--blue);
  --accent-soft: rgba(5, 44, 70, 0.08);
}

.service-repairs {
  --accent: var(--green-dark);
  --accent-soft: rgba(20, 92, 46, 0.09);
}

.service-icon {
  display: grid;
  width: 3.65rem;
  height: 3.65rem;
  margin-bottom: 3.8rem;
  place-items: center;
  border-radius: 6px;
  color: var(--icon-color);
  background: var(--accent-soft);
}

.service-icon svg {
  width: 1.9rem;
  height: 1.9rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-order {
  margin-bottom: 0.55rem;
  color: var(--text-accent);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card h3 {
  margin-bottom: 0.7rem;
  color: var(--blue);
  font-size: 1.55rem;
}

.service-card p {
  margin-bottom: 1.25rem;
  color: var(--gray);
  line-height: 1.65;
}

.service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1rem;
  color: var(--text-accent);
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
  font-weight: 800;
}

.service-link span {
  font-size: 1.2rem;
}

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

.trust-inner {
  display: grid;
  width: min(100% - 2rem, 1240px);
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
  padding: clamp(5rem, 8vw, 7rem) 0;
}

.light-kicker {
  color: var(--yellow);
}

.trust-copy h2,
.final-cta h2 {
  color: var(--white);
}

.trust-copy > p:not(.section-kicker) {
  margin: 1.25rem 0 1.8rem;
  color: #cbd8df;
  line-height: 1.7;
}

.benefit-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.benefit-list li > span {
  color: var(--yellow);
  font-family: Manrope, sans-serif;
  font-weight: 800;
}

.benefit-list strong {
  display: block;
  margin-bottom: 0.3rem;
}

.benefit-list p {
  margin-bottom: 0;
  color: #aebfca;
  font-size: 0.9rem;
  line-height: 1.55;
}

.gallery-section {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-template-rows: repeat(2, 260px);
  gap: 1rem;
}

.gallery-placeholder {
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.gallery-large {
  grid-row: span 2;
}

.gallery-placeholder:nth-child(4) {
  grid-column: 2 / span 2;
}

.gallery-visual {
  display: grid;
  min-height: 0;
  place-items: center;
  color: var(--blue-mid);
  background:
    linear-gradient(135deg, transparent 48%, rgba(11, 95, 138, 0.08) 48% 52%, transparent 52%),
    linear-gradient(45deg, transparent 48%, rgba(31, 122, 58, 0.07) 48% 52%, transparent 52%),
    var(--gray-light);
  background-size: 30px 30px;
}

.gallery-visual span {
  padding: 0.55rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  font-weight: 800;
}

.gallery-caption {
  padding: 1rem 1.1rem;
}

.gallery-caption span {
  color: var(--blue);
  font-weight: 800;
}

.gallery-caption p {
  margin: 0.2rem 0 0;
  color: var(--gray);
  font-size: 0.78rem;
}

.gallery-note {
  margin: 1rem 0 0;
  color: var(--gray);
  font-size: 0.78rem;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.about-mark {
  position: relative;
  display: grid;
  min-height: 470px;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: var(--blue-deep);
}

.about-mark::before {
  position: absolute;
  inset: -20% auto auto -10%;
  width: 300px;
  height: 300px;
  border: 55px solid rgba(242, 194, 0, 0.14);
  border-radius: 50%;
  content: "";
}

.about-mark img {
  position: relative;
  z-index: 1;
  width: min(70%, 310px);
}

.about-mark span {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 1;
  padding: 0.8rem;
  color: var(--blue-deep);
  border-radius: 6px;
  background: var(--yellow);
  font-size: 0.83rem;
  font-weight: 800;
  text-align: center;
}

.about-copy > p:not(.section-kicker) {
  color: var(--gray);
  line-height: 1.75;
}

.about-copy h2 {
  margin-bottom: 1.35rem;
}

.about-copy ul {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.about-copy li {
  position: relative;
  padding-left: 1.5rem;
  font-weight: 700;
}

.about-copy li::before {
  position: absolute;
  top: 0.45rem;
  left: 0;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 2px;
  background: var(--green);
  content: "";
}

.process-section {
  border-top: 1px solid var(--line);
}

.process-heading {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 1rem 3rem;
  align-items: end;
  margin-bottom: 2.5rem;
}

.process-heading .section-kicker {
  grid-column: 1 / -1;
}

.process-heading > p:last-child {
  margin-bottom: 0;
  color: var(--gray);
  line-height: 1.7;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-grid li {
  min-height: 260px;
  padding: 1.5rem;
  border-right: 1px solid var(--line);
}

.process-grid li:last-child {
  border-right: 0;
}

.process-grid span {
  display: block;
  margin-bottom: 4.5rem;
  color: var(--green);
  font-weight: 800;
}

.process-grid h3 {
  margin-bottom: 0.55rem;
  color: var(--blue);
  font-size: 1.15rem;
}

.process-grid p {
  margin-bottom: 0;
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

.final-cta {
  padding: 0 1rem 5rem;
}

.final-cta-inner {
  position: relative;
  display: grid;
  width: min(100%, 1240px);
  margin: 0 auto;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: end;
  overflow: hidden;
  padding: clamp(2.5rem, 5vw, 4.5rem);
  border-radius: 8px;
  color: var(--white);
  background: var(--blue-deep);
}

.final-cta-inner::after {
  position: absolute;
  top: -80px;
  right: -70px;
  width: 260px;
  height: 260px;
  border: 48px solid rgba(242, 194, 0, 0.12);
  border-radius: 50%;
  content: "";
}

.final-cta h2 {
  position: relative;
  z-index: 1;
  max-width: 16ch;
}

.final-cta p:not(.section-kicker) {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  margin: 1rem 0 0;
  color: #c6d4dc;
  line-height: 1.7;
}

.final-cta-action {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: start;
  gap: 1rem;
}

.phone-link {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 800;
}

.site-footer {
  color: #c5d0d7;
  background: var(--blue-deep);
}

.footer-inner {
  display: grid;
  width: min(100% - 2rem, 1240px);
  margin: 0 auto;
  grid-template-columns: 1.5fr 0.65fr 0.65fr;
  gap: 4rem;
  padding: 4rem 0;
}

.footer-brand img {
  width: min(100%, 310px);
  height: 118px;
  padding: 0.5rem 0.7rem;
  object-fit: contain;
  object-position: left center;
  border-radius: 6px;
  background: var(--white);
}

.footer-brand p {
  max-width: 34rem;
  margin: 1rem 0 0;
  font-size: 0.88rem;
  line-height: 1.65;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 0.7rem;
  font-size: 0.86rem;
}

.footer-column strong {
  margin-bottom: 0.35rem;
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.footer-bottom {
  display: flex;
  width: min(100% - 2rem, 1240px);
  min-height: 66px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #96aab5;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.78rem;
}

.floating-whatsapp {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 40;
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 0.55rem;
  padding: 0 1rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--whatsapp);
  box-shadow: 0 12px 35px rgba(20, 92, 46, 0.3);
  font-size: 0.83rem;
  font-weight: 800;
}

.floating-whatsapp:hover {
  background: var(--green);
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--blue);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .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);
  }

  .mobile-menu {
    position: fixed;
    top: 76px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 49;
    display: none;
    align-content: start;
    gap: 0;
    padding: 1rem;
    background: var(--white);
  }

  .mobile-menu.is-open {
    display: grid;
  }

  .mobile-menu a {
    padding: 1rem 0.5rem;
    color: var(--blue);
    border-bottom: 1px solid var(--line);
    font-weight: 800;
  }

  .mobile-menu .mobile-menu-cta {
    margin-top: 1rem;
    color: var(--white);
    border: 0;
  }

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

  .hero-copy {
    max-width: 780px;
  }

  .hero-showcase {
    max-width: 660px;
  }

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

  .trust-inner,
  .about-section,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, 320px);
  }

  .gallery-large {
    grid-row: auto;
  }

  .gallery-placeholder:nth-child(4) {
    grid-column: auto;
  }

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

  .process-grid li:nth-child(2) {
    border-right: 0;
  }

  .process-grid li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .header-inner {
    min-height: 76px;
  }

  .brand {
    width: 220px;
  }

  .brand img {
    height: 66px;
  }

  .mobile-menu {
    top: 76px;
  }

  .hero-inner {
    min-height: auto;
    padding: 3.5rem 0;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 11.5vw, 3.55rem);
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

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

  .showcase-logo {
    min-height: 190px;
    flex-direction: column;
    text-align: center;
  }

  .showcase-logo img {
    width: 104px;
    height: 104px;
  }

  .showcase-logo span {
    max-width: none;
  }

  .quick-proof {
    grid-template-columns: 1fr;
  }

  .quick-proof div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-proof div:last-child {
    border-bottom: 0;
  }

  .section-heading,
  .process-heading {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .services-grid,
  .gallery-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 310px;
  }

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

  .process-grid li {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-grid li:last-child {
    border-bottom: 0;
  }

  .about-mark {
    min-height: 380px;
  }

  .final-cta-action,
  .final-cta-action .btn {
    width: 100%;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    min-height: 88px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 0.75rem;
    bottom: 0.75rem;
    left: auto;
    min-width: 180px;
    justify-content: center;
    border-radius: 999px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
