:root {
  --bg: #f5f8f9;
  --surface: #ffffff;
  --surface-soft: #eef7f8;
  --line: #d8e4e6;
  --text: #15313c;
  --muted: #5e7380;
  --primary: #0a7d88;
  --primary-dark: #0a5f6a;
  --accent: #1fb34a;
  --shadow: 0 18px 50px rgba(14, 51, 63, 0.08);
  --shadow-soft: 0 10px 28px rgba(14, 51, 63, 0.06);
  --radius: 8px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(10, 125, 136, 0.05), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

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

a {
  color: inherit;
}

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

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(216, 228, 230, 0.9);
}

.header-row {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--text);
}

.brand-copy strong span {
  color: var(--primary);
}

.brand-copy small {
  margin-top: 0.18rem;
  font-size: 0.72rem;
  color: var(--muted);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a,
.footer-links a,
.footer-bottom a {
  text-decoration: none;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  color: #1b3441;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.site-nav a.is-active {
  color: var(--primary);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 0 11px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.nav-toggle span + span {
  margin-top: 5px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn svg,
.btn--submit svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

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

.btn--whatsapp {
  color: #fff;
  background: linear-gradient(180deg, #1fbf4e, #17a742);
  box-shadow: 0 12px 24px rgba(31, 191, 78, 0.25);
}

.btn--primary {
  color: #fff;
  background: linear-gradient(180deg, #0d8893, #0a6f7a);
  box-shadow: 0 12px 24px rgba(10, 111, 122, 0.22);
}

.btn--outline {
  color: var(--primary);
  border-color: rgba(10, 125, 136, 0.55);
  background: rgba(255, 255, 255, 0.85);
}

.btn--light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
  background: transparent;
}

.btn--submit {
  width: 100%;
  color: #fff;
  background: linear-gradient(180deg, #0d8893, #0a6f7a);
  box-shadow: 0 12px 24px rgba(10, 111, 122, 0.22);
  border-radius: 8px;
  min-height: 48px;
}

.hero {
  padding: 42px 0 28px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 30px;
  align-items: center;
}

.hero-grid--reverse {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.hero-grid--reverse > :first-child {
  order: 2;
}

.hero-grid--reverse > :last-child {
  order: 1;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.9rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.6rem, 4vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: 0;
  color: #103341;
}

.hero h1 span {
  color: var(--primary);
}

.lead,
.section-head p,
.panel p,
.cta-banner__copy p,
.footer-brand p,
.area-card li,
.benefits-strip p,
.testimonial-card p {
  color: var(--muted);
  line-height: 1.65;
}

.lead {
  max-width: 56ch;
  margin: 18px 0 0;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.contact-chips {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.contact-chip {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.contact-chip__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #0d8893, #0a6f7a);
  color: #fff;
  box-shadow: 0 14px 24px rgba(10, 111, 122, 0.22);
}

.contact-chip__icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.contact-chip small {
  display: block;
  color: #203947;
  font-weight: 700;
  margin-bottom: 2px;
}

.contact-chip strong {
  font-size: 1.15rem;
  color: var(--primary);
}

.contact-chip a {
  color: inherit;
  text-decoration: none;
}

.hero-media {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 470px;
  border-radius: 0 36px 36px 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, #edf7f8, #d9f0f2);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 16px;
  background: linear-gradient(180deg, #0ed1cf, #0a6f7a);
}

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

.hero-grid > .hero-media {
  align-self: stretch;
}

.hero-media--home img {
  object-position: center center;
}

.hero-media--map {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

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

.hero-points {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 10px;
  max-width: 58ch;
}

.hero-points li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #314753;
  font-weight: 600;
  line-height: 1.45;
}

.hero-points__icon {
  flex: none;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--primary);
}

.hero-points__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.hero-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.home-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.home-highlight {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid rgba(216, 228, 230, 0.95);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.home-highlight__icon {
  width: 48px;
  height: 48px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(10, 125, 136, 0.2);
  color: var(--primary);
  background: rgba(255, 255, 255, 0.8);
}

.home-highlight__icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.home-highlight h3 {
  margin: 0 0 4px;
  font-size: 0.95rem;
  text-transform: uppercase;
  line-height: 1.2;
}

.home-highlight p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.service-mini-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.service-mini-card {
  padding: 20px 16px;
  text-align: center;
}

.service-mini-card__icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  color: var(--primary);
}

.service-mini-card__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.service-mini-card h3 {
  margin: 0 0 10px;
  font-size: 0.92rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.service-mini-card p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.service-mini-card a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
}

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

.process-step {
  padding: 20px;
  text-align: center;
}

.process-step__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(10, 125, 136, 0.2);
  color: var(--primary);
  background: #fff;
}

.process-step__icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.process-step h3 {
  margin: 0 0 8px;
  font-size: 0.95rem;
  text-transform: uppercase;
  line-height: 1.2;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.areas-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 16px;
  align-items: stretch;
}

.area-map {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(216, 228, 230, 0.95);
  box-shadow: var(--shadow-soft);
  background: var(--surface);
}

.area-map img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 300px;
  padding: 18px 20px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(180deg, rgba(10, 111, 122, 0.96), rgba(7, 85, 95, 0.96));
  box-shadow: var(--shadow-soft);
}

.hero-badge strong {
  display: block;
  margin-bottom: 4px;
}

.hero-badge span {
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.45;
}

.section {
  padding: 60px 0 0;
}

.section-head {
  text-align: center;
  margin-bottom: 28px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.7rem, 2.4vw, 2.7rem);
  line-height: 1.1;
}

.section-head p {
  max-width: 70ch;
  margin: 12px auto 0;
}

.panel-grid {
  display: grid;
  gap: 18px;
}

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

.panel,
.map-panel,
.faq-item,
.service-card,
.team-card,
.area-card,
.testimonial-card,
.value-card {
  background: var(--surface);
  border: 1px solid rgba(216, 228, 230, 0.95);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.panel {
  padding: 22px;
}

.panel h2,
.map-panel__copy h2,
.cta-banner__copy h2,
.thank-you-card h1 {
  margin: 0 0 8px;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.15;
}

.contact-form {
  margin-top: 18px;
}

.contact-form input:not([type="checkbox"]),
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin: 0 0 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  outline: none;
}

.contact-form input:not([type="checkbox"]):focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(10, 125, 136, 0.75);
  box-shadow: 0 0 0 3px rgba(10, 125, 136, 0.09);
}

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

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

.privacy {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin: 8px 0 14px;
  color: var(--muted);
  line-height: 1.5;
}

.privacy input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--primary);
  justify-self: center;
}

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

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.contact-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--surface-soft);
  text-decoration: none;
}

.contact-item__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--primary);
  border: 1px solid rgba(10, 125, 136, 0.2);
  background: rgba(255, 255, 255, 0.75);
}

.contact-item__icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.contact-item__content {
  min-width: 0;
}

.contact-item__content strong {
  display: block;
  margin-bottom: 3px;
}

.contact-item__content span {
  color: var(--muted);
  line-height: 1.45;
}

.contact-item__value {
  color: var(--primary);
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.contact-item__value a {
  text-decoration: none;
}

.contact-item--stacked {
  grid-template-columns: 44px minmax(0, 1fr);
}

.contact-item--stacked .contact-item__value {
  display: none;
}

.map-panel {
  min-height: 420px;
  display: flex;
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
  overflow: hidden;
  position: relative;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.96) 31%, rgba(255, 255, 255, 0.76) 46%, rgba(255, 255, 255, 0.2) 70%, rgba(255, 255, 255, 0) 100%),
    url("assets/home-map.jpg");
  background-position: center, right center;
  background-repeat: no-repeat;
  background-size: cover, auto 90%;
}

.map-panel--blend {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  align-items: stretch;
  padding: 0;
  min-height: 320px;
  background: #fff;
  position: relative;
  isolation: isolate;
}

.map-panel--blend::before {
  content: "";
  grid-column: 1 / -1;
  grid-row: 1;
  position: relative;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.96) 24%,
    rgba(255, 255, 255, 0.72) 41%,
    rgba(255, 255, 255, 0.18) 63%,
    rgba(255, 255, 255, 0) 100%
  );
}

.map-panel--blend .map-panel__copy {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  width: min(100%, 420px);
  padding: clamp(28px, 4.5vw, 52px);
  z-index: 2;
}

.map-panel--blend .map-panel__copy p {
  max-width: 23ch;
}

.map-panel__art {
  grid-column: 1 / -1;
  grid-row: 1;
  position: relative;
  z-index: 0;
  min-height: 320px;
}

.map-panel__art img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.map-panel__copy {
  width: min(100%, 430px);
  position: relative;
  z-index: 1;
}

.map-panel__copy p {
  margin: 0 0 20px;
  font-weight: 600;
}

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

.map-illustration svg,
.map-panel__map svg {
  width: 100%;
  height: auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  padding: 16px 18px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.faq-item summary::after {
  content: "+";
  color: var(--primary);
  font-size: 1.3rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  line-height: 1.6;
}

.section--cta {
  padding-top: 26px;
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 28px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0c7f89, #0a5f6a);
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-banner__copy {
  max-width: 60ch;
}

.cta-banner__copy .eyebrow,
.cta-banner__copy p {
  color: rgba(255, 255, 255, 0.9);
}

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

.cards-grid {
  display: grid;
  gap: 16px;
}

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

@media (min-width: 1081px) {
  .cards-grid--three {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .cards-grid--three > * {
    grid-column: span 2;
  }

  .cards-grid--three > :nth-child(4) {
    grid-column: 2 / span 2;
  }

  .cards-grid--three > :nth-child(5) {
    grid-column: 4 / span 2;
  }
}

.service-card {
  overflow: hidden;
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 2.55;
  object-fit: cover;
  object-position: center top;
}

.service-card__body {
  padding: 16px;
}

.service-card__body h3,
.team-card h3,
.area-card h3,
.value-card h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  line-height: 1.2;
}

.service-card__body a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

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

.team-card {
  overflow: hidden;
}

.team-card img {
  width: 100%;
  aspect-ratio: 0.94;
  object-fit: cover;
}

.team-card div {
  padding: 16px;
}

.team-card p,
.value-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.value-card {
  padding: 20px;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.area-card {
  padding: 22px;
}

.area-card ul {
  margin: 0;
  padding-left: 18px;
  columns: 2;
  column-gap: 26px;
}

.area-card li {
  margin: 0 0 10px;
}

.area-card__note {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--surface-soft);
  color: var(--primary);
  font-weight: 700;
}

.benefits-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.benefits-strip article {
  padding: 18px;
  border: 1px solid rgba(216, 228, 230, 0.95);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.benefits-strip h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

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

.testimonial-card {
  padding: 18px;
}

.stars {
  color: #ffbf00;
  letter-spacing: 0.18em;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.testimonial-card p {
  margin: 0 0 18px;
  font-size: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author strong,
.footer-list a {
  color: var(--text);
}

.testimonial-author span {
  display: block;
  color: var(--muted);
  margin-top: 2px;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
  padding: 20px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(10, 125, 136, 0.08), rgba(10, 125, 136, 0.03));
  border: 1px solid rgba(216, 228, 230, 0.9);
}

.stats-strip article {
  text-align: center;
  padding: 8px 0;
}

.stats-strip strong {
  display: block;
  color: var(--primary);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
}

.stats-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.split-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(10, 125, 136, 0.08), rgba(10, 125, 136, 0.02));
  border: 1px solid rgba(216, 228, 230, 0.95);
}

.split-cta h2 {
  margin: 4px 0 0;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.12;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
}

.footer-list a {
  color: inherit;
  text-decoration: none;
}

.site-footer {
  margin-top: 28px;
  background: linear-gradient(180deg, #0f3240, #072635);
  color: #fff;
  padding: 32px 0 18px;
}

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

.footer-grid h3 {
  margin: 0;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.footer-brand p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.brand--footer .brand-copy strong {
  color: #fff;
}

.brand--footer .brand-copy small {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.footer-links a,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.84);
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, 0.74);
}

.footer-bottom div {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(180deg, #1fbf4e, #17a742);
  box-shadow: 0 18px 30px rgba(31, 191, 78, 0.28);
  z-index: 45;
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.thank-you {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.thank-you-wrap {
  width: min(720px, calc(100% - 32px));
}

.thank-you-card {
  padding: 36px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  text-align: center;
}

.thank-you-card .hero-actions {
  justify-content: center;
}

@media (max-width: 1080px) {
  .hero-grid,
  .panel-grid--two,
  .footer-grid,
  .team-grid,
  .cards-grid--three {
    grid-template-columns: 1fr;
  }

  .testimonials-grid,
  .stats-strip,
  .areas-grid,
  .benefits-strip,
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .areas-showcase {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 20px;
  }

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .header-row {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .header-actions {
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
    align-items: flex-start;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 0 4px;
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 6px 0;
  }

  .hero {
    padding-top: 26px;
  }

  .hero-grid,
  .hero-grid--reverse,
  .panel-grid--two,
  .footer-grid,
  .team-grid,
  .testimonials-grid,
  .stats-strip,
  .areas-grid,
  .benefits-strip,
  .values-grid,
  .home-highlights,
  .service-mini-grid,
  .process-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .map-panel {
    min-height: 360px;
    align-items: flex-start;
    background-image:
      linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.96) 43%, rgba(255, 255, 255, 0.62) 64%, rgba(255, 255, 255, 0.16) 100%),
      url("assets/home-map.jpg");
    background-position: center, center bottom;
    background-size: cover, 120% auto;
  }

  .map-panel--blend {
    min-height: 300px;
    background: #fff;
  }

  .map-panel--blend::before {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.94) 38%,
      rgba(255, 255, 255, 0.54) 72%,
      rgba(255, 255, 255, 0.08) 100%
    );
  }

  .map-panel--blend .map-panel__copy {
    max-width: none;
    padding: 22px;
  }

  .map-panel__art {
    min-height: 300px;
  }

  .hero-grid--reverse > :first-child,
  .hero-grid--reverse > :last-child {
    order: initial;
  }

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

  .hero-badge {
    left: 18px;
    right: 18px;
    max-width: none;
  }

  .contact-item,
  .contact-item--stacked {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .contact-item__value {
    display: none;
  }

  .cta-banner,
  .split-cta,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .area-card ul {
    columns: 1;
  }

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

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

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand-copy strong {
    font-size: 1.45rem;
  }

  .btn {
    width: 100%;
  }

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

  .panel,
  .area-card,
  .value-card,
  .testimonial-card,
  .thank-you-card {
    padding: 18px;
  }

  .service-card__body,
  .team-card div {
    padding: 14px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 13px 14px;
  }
}
