:root {
  --navy: #072c59;
  --navy-deep: #041d3a;
  --blue: #124a83;
  --silver: #a7adb5;
  --mist: #f5f7f9;
  --white: #ffffff;
  --ink: #182434;
  --muted: #5f6c7b;
  --line: #dfe5eb;
  --whatsapp: #1f9d55;
  --shadow-sm: 0 10px 30px rgba(4, 29, 58, 0.07);
  --shadow-md: 0 24px 60px rgba(4, 29, 58, 0.13);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --header-height: 84px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

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

body.menu-open {
  overflow: hidden;
}

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

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

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

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

:focus-visible {
  outline: 3px solid rgba(18, 74, 131, 0.3);
  outline-offset: 3px;
}

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

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

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

.section {
  padding: 104px 0;
}

.section-soft {
  background: var(--mist);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: var(--blue);
}

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

h1,
h2,
h3 {
  color: var(--navy-deep);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 6.4vw, 5.8rem);
  font-weight: 800;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  font-weight: 800;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
  font-weight: 800;
}

.lead {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.6vw, 1.18rem);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 50px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(223, 229, 235, 0.8);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 100%;
  gap: 32px;
}

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

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

.main-nav {
  justify-self: center;
}

.nav-list,
.header-actions,
.footer-list,
.trust-list,
.benefit-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  position: relative;
  padding: 10px 0;
  color: #334359;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-contact {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 15px;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.header-contact:hover {
  background: var(--mist);
  border-color: #c7d1db;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle svg {
  width: 23px;
  height: 23px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 68px 0 72px;
  background: linear-gradient(135deg, #fff 0%, #fff 57%, #f1f5f8 57%, #f1f5f8 100%);
}

.hero::before {
  position: absolute;
  top: -180px;
  left: -170px;
  width: 420px;
  height: 420px;
  content: "";
  border: 1px solid rgba(18, 74, 131, 0.09);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  align-items: center;
  gap: clamp(48px, 6vw, 86px);
}

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

.hero-accent {
  color: var(--blue);
}

.hero-copy .lead {
  max-width: 580px;
  margin-bottom: 32px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  color: var(--white);
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  box-shadow: 0 10px 24px rgba(4, 29, 58, 0.17);
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: #cdd6df;
}

.button-secondary:hover {
  color: var(--navy);
  background: var(--mist);
  border-color: var(--silver);
}

.button svg,
.contact-card svg,
.mobile-contact-bar svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-right: 9px;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 34px;
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.trust-list strong {
  display: block;
  color: var(--navy-deep);
  font-size: 0.95rem;
}

.trust-list span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

.hero-visual {
  position: relative;
}

.hero-image-wrap {
  overflow: hidden;
  min-height: 590px;
  border-radius: 12px 12px var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.hero-image-wrap img {
  width: 100%;
  height: 590px;
  object-fit: cover;
  object-position: 54% center;
}

.hero-image-tag {
  position: absolute;
  right: -18px;
  bottom: 28px;
  max-width: 240px;
  padding: 18px 20px;
  color: var(--white);
  background: var(--navy);
  border-left: 5px solid var(--silver);
  box-shadow: var(--shadow-md);
}

.hero-image-tag strong,
.hero-image-tag span {
  display: block;
}

.hero-image-tag strong {
  font-size: 0.96rem;
}

.hero-image-tag span {
  color: #d8e1eb;
  font-size: 0.82rem;
}

.local-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.local-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 104px;
  text-align: left;
}

.local-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--navy);
  background: var(--mist);
  border-radius: 50%;
}

.local-icon svg {
  width: 23px;
  height: 23px;
}

.local-inner strong,
.local-inner span {
  display: block;
}

.local-inner strong {
  color: var(--navy);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.local-inner span {
  color: var(--ink);
  font-weight: 700;
}

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

.service-card {
  position: relative;
  min-height: 265px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover {
  border-color: #c7d3df;
  box-shadow: 0 18px 42px rgba(4, 29, 58, 0.11);
  transform: translateY(-6px);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  color: var(--navy);
  background: #edf3f8;
  border-radius: 14px;
}

.service-icon svg {
  width: 27px;
  height: 27px;
}

.service-card h3 {
  font-size: 1.08rem;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.service-badge {
  position: absolute;
  top: 26px;
  right: 26px;
  padding: 5px 10px;
  color: var(--blue);
  background: #edf3f8;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.services-note {
  margin: 30px 0 0;
  color: var(--muted);
  text-align: center;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.about-gallery {
  position: relative;
  min-height: 560px;
}

.about-image-main {
  width: 82%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.about-image-detail {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 220px;
  object-fit: cover;
  border: 8px solid var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.about-copy .lead {
  margin-bottom: 30px;
}

.benefit-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}

.benefit-list li {
  position: relative;
  padding-left: 28px;
  color: #38495e;
  font-weight: 700;
}

.benefit-list li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 15px;
  height: 8px;
  content: "";
  border-bottom: 2px solid var(--blue);
  border-left: 2px solid var(--blue);
  transform: rotate(-45deg);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.why-item {
  padding: 40px 30px;
  border-right: 1px solid var(--line);
}

.why-item:last-child {
  border-right: 0;
}

.why-number {
  display: block;
  margin-bottom: 26px;
  color: var(--silver);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.why-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-deep);
}

.contact-section::after {
  position: absolute;
  top: -180px;
  right: -100px;
  width: 520px;
  height: 520px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.contact-section .eyebrow,
.contact-section h2 {
  color: var(--white);
}

.contact-section .eyebrow::before {
  background: var(--silver);
}

.contact-intro {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin-bottom: 44px;
}

.contact-intro .lead {
  color: #c9d3de;
}

.contact-options {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 780px;
  margin-bottom: 26px;
}

.contact-card {
  padding: 28px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
}

.contact-card-label {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card-label svg {
  margin-right: 9px;
}

.contact-card strong {
  display: block;
  margin-bottom: 22px;
  color: var(--navy-deep);
  font-size: 1.2rem;
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(30px, 5vw, 72px);
}

.contact-aside {
  padding-top: 18px;
}

.contact-aside h3 {
  color: var(--white);
  font-size: 1.5rem;
}

.contact-aside p {
  color: #b8c5d3;
}

.contact-details {
  padding-top: 22px;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-details p {
  margin-bottom: 14px;
}

.contact-details a:hover {
  color: var(--white);
  text-decoration: underline;
}

.contact-form {
  padding: clamp(28px, 4vw, 48px);
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.2);
}

.contact-form h3 {
  margin-bottom: 26px;
  font-size: 1.55rem;
}

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

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

.form-field label,
.form-field legend {
  display: block;
  margin-bottom: 7px;
  color: #27374b;
  font-size: 0.88rem;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fbfcfd;
  border: 1px solid #cad4de;
  border-radius: 9px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(18, 74, 131, 0.09);
  outline: 0;
}

.checkbox-label {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 11px;
  color: #4e5c6c;
  font-size: 0.82rem;
  line-height: 1.55;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin-top: 2px;
  accent-color: var(--navy);
}

.checkbox-label a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
}

.form-submit {
  width: 100%;
  margin-top: 6px;
}

.site-footer {
  padding: 70px 0 30px;
  color: #c2cddd;
  background: #03162c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 0.7fr;
  gap: 54px;
}

.footer-brand img {
  width: 142px;
  height: 98px;
  margin-bottom: 18px;
  object-fit: contain;
  background: var(--white);
  border-radius: 8px;
}

.footer-brand p {
  max-width: 330px;
  font-size: 0.9rem;
}

.footer-title {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-list li {
  margin-bottom: 9px;
}

.footer-list a {
  font-size: 0.86rem;
  transition: color 180ms ease;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  margin-top: 54px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
}

.mobile-contact-bar {
  display: none;
}

.legal-hero {
  padding: 72px 0 62px;
  background: var(--mist);
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  margin-bottom: 12px;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.legal-hero p {
  margin-bottom: 0;
  color: var(--muted);
}

.legal-content {
  max-width: 840px;
  padding: 72px 0 100px;
}

.legal-content h2 {
  margin-top: 46px;
  margin-bottom: 14px;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
}

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

.legal-content h3 {
  margin-top: 26px;
  font-size: 1.06rem;
}

.legal-content p,
.legal-content li {
  color: #465568;
}

.legal-content a {
  color: var(--blue);
  text-decoration: underline;
}

.success-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 40px 20px;
  background: var(--mist);
}

.success-card {
  width: min(100%, 700px);
  padding: clamp(34px, 7vw, 70px);
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.success-mark {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 28px;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
}

.success-mark svg {
  width: 32px;
  height: 32px;
}

.success-card h1 {
  font-size: clamp(2rem, 5vw, 3.3rem);
}

.success-card .lead {
  margin-inline: auto;
}

.success-card .cta-row {
  justify-content: center;
  margin-top: 30px;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

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

  .fade-in {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .header-actions {
    display: none;
  }

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

  .main-nav {
    justify-self: end;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
  }

  .hero-image-wrap,
  .hero-image-wrap img {
    height: 540px;
    min-height: 540px;
  }

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

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

  .footer-grid > :last-child {
    grid-column: 2;
  }
}

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

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

  .section {
    padding: 78px 0;
  }

  .brand {
    width: 112px;
    height: 58px;
  }

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

  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    padding: 28px 24px 110px;
    overflow-y: auto;
    background: var(--white);
  }

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

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-link {
    display: block;
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }

  .nav-mobile-contact {
    display: block;
  }

  .hero {
    padding: 34px 0 58px;
    background: linear-gradient(180deg, var(--white) 0%, var(--white) 61%, var(--mist) 61%, var(--mist) 100%);
  }

  .hero-grid,
  .about-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    margin-top: 8px;
  }

  .hero-image-wrap,
  .hero-image-wrap img {
    height: min(64vw, 520px);
    min-height: 390px;
  }

  .hero-image-tag {
    right: 14px;
  }

  .about-grid {
    gap: 48px;
  }

  .about-gallery {
    order: 2;
    min-height: 510px;
  }

  .about-image-main {
    height: 450px;
  }

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

  .why-item:nth-child(2) {
    border-right: 0;
  }

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

  .contact-options {
    max-width: none;
  }

  .contact-aside {
    padding-top: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-grid > :last-child {
    grid-column: auto;
  }

  body.home-page {
    padding-bottom: 62px;
  }

  .mobile-contact-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 62px;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 24px rgba(4, 29, 58, 0.09);
  }

  .mobile-contact-bar a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    border-right: 1px solid var(--line);
    font-size: 0.68rem;
    font-weight: 800;
  }

  .mobile-contact-bar a:last-child {
    border-right: 0;
  }

  .mobile-contact-bar svg {
    width: 19px;
    height: 19px;
    margin: 0 0 3px;
  }
}

@media (min-width: 821px) {
  .nav-mobile-contact {
    display: none;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  h1 {
    font-size: clamp(2.75rem, 15vw, 4.25rem);
  }

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

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

  .button {
    width: 100%;
  }

  .trust-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .trust-list li {
    display: grid;
    grid-template-columns: 88px 1fr;
    align-items: baseline;
  }

  .hero-image-wrap,
  .hero-image-wrap img {
    height: 420px;
    min-height: 420px;
  }

  .hero-image-wrap img {
    object-position: 59% center;
  }

  .hero-image-tag {
    right: 12px;
    bottom: 16px;
    left: 12px;
    max-width: none;
  }

  .local-inner {
    justify-content: flex-start;
    min-height: 92px;
  }

  .services-grid,
  .contact-options,
  .form-grid,
  .benefit-list,
  .why-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
    padding: 26px;
  }

  .service-icon {
    margin-bottom: 22px;
  }

  .about-gallery {
    min-height: 400px;
  }

  .about-image-main {
    width: 88%;
    height: 360px;
  }

  .about-image-detail {
    width: 52%;
    height: 165px;
    border-width: 6px;
  }

  .why-item,
  .why-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .why-item:last-child {
    border-bottom: 0;
  }

  .contact-form {
    padding: 24px 18px;
    border-radius: var(--radius-md);
  }

  .footer-grid > :last-child {
    grid-column: auto;
  }

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