:root {
  color-scheme: light;
  --ink: #13202b;
  --muted: #5f6d78;
  --line: #d9e2e8;
  --panel: #f4f8fb;
  --soft: #eef5f8;
  --navy: #0b3b5a;
  --blue: #1167a5;
  --cyan: #20a7c9;
  --green: #21a06d;
  --amber: #f0b429;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(10, 41, 63, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  line-height: 1.5;
}

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

.top-alert {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 8px 18px;
  background: #0f2738;
  color: var(--white);
  font-size: 14px;
}

.top-alert span {
  color: #a9dbe8;
  font-weight: 800;
}

.top-alert strong {
  font-weight: 750;
}

.top-alert a {
  color: #9be0bd;
  font-weight: 850;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 58px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
}

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(10, 41, 63, 0.14);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.header-call {
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  font-weight: 750;
}

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

.header-whatsapp {
  padding: 11px 14px;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
  gap: clamp(20px, 3vw, 42px);
  min-height: auto;
  padding: clamp(28px, 4vw, 48px) clamp(20px, 5vw, 72px) 22px;
  background:
    linear-gradient(120deg, rgba(33, 160, 109, 0.11), transparent 33%),
    linear-gradient(180deg, #ffffff, #f4f8fb);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  padding: 0;
}

.eyebrow {
  margin: 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 740px;
  margin-bottom: 0;
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 1.06;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 20px);
}

.hero-actions,
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 13px 18px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

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

.button.primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(33, 160, 109, 0.24);
}

.button.secondary {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
}

.button.compact {
  min-height: 42px;
  background: var(--navy);
  color: var(--white);
}

.hero-status,
.promise-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-status span {
  border-radius: 8px;
  padding: 8px 10px;
  background: #e8f6ef;
  color: var(--navy);
  font-size: 13px;
  font-weight: 850;
}

.promise-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 8px;
}

.promise-row div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(10, 41, 63, 0.06);
}

.promise-row strong,
.promise-row span {
  display: block;
}

.promise-row strong {
  color: var(--navy);
}

.promise-row span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 14px;
}

.service-panel {
  align-self: center;
  display: grid;
  gap: 14px;
}

.panel-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 16px 0;
}

.request-card,
.mini-photo {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.request-card {
  padding: 20px;
}

.request-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.request-head img {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  object-fit: cover;
}

.request-head strong,
.request-head span {
  display: block;
}

.request-head strong {
  color: var(--navy);
  font-size: 20px;
}

.request-head span {
  color: var(--muted);
  font-size: 14px;
}

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

.request-services a {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: var(--panel);
  color: var(--navy);
  font-weight: 800;
}

.request-note {
  margin-top: 14px;
  border-left: 4px solid var(--green);
  padding: 10px 12px;
  background: #f1fbf6;
}

.request-note strong,
.request-note span {
  display: block;
}

.request-note span {
  color: var(--muted);
  font-size: 14px;
}

.mini-photo {
  display: grid;
  grid-template-columns: 140px 1fr;
  overflow: hidden;
}

.mini-photo img {
  width: 100%;
  height: 100%;
  min-height: 110px;
  object-fit: cover;
  object-position: 68% center;
}

.mini-photo div {
  display: grid;
  align-content: center;
  padding: 16px;
}

.mini-photo strong,
.mini-photo span {
  display: block;
}

.mini-photo strong {
  color: var(--navy);
  font-size: 26px;
  line-height: 1.1;
}

.mini-photo span {
  margin-top: 4px;
  color: var(--muted);
}

.below-hero {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0 clamp(20px, 5vw, 72px) 36px;
  background: #f7fbfd;
}

.below-hero article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--white);
}

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

.below-hero strong {
  margin-bottom: 4px;
  color: var(--navy);
}

.below-hero span {
  color: var(--muted);
  font-size: 14px;
}

.priority-services {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1fr);
  gap: 24px;
  padding: clamp(34px, 5vw, 54px) clamp(20px, 5vw, 72px);
}

.priority-services h2 {
  font-size: clamp(28px, 3vw, 42px);
}

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

.priority-grid a {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(10, 41, 63, 0.05);
}

.priority-grid strong,
.priority-grid span {
  display: block;
}

.priority-grid strong {
  color: var(--navy);
}

.priority-grid span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.quick-contact,
.proof-band,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px clamp(20px, 5vw, 72px);
}

.quick-contact {
  background: var(--navy);
  color: var(--white);
}

.quick-contact span,
.proof-band p,
.site-footer p {
  display: block;
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.section {
  padding: clamp(56px, 7vw, 96px) clamp(20px, 5vw, 72px);
}

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

h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}

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

.service-grid article,
.process-step,
.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-grid article {
  min-height: 210px;
  padding: 22px;
}

.service-icon {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--cyan);
  font-weight: 900;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  letter-spacing: 0;
}

.service-grid p,
.process-step p,
.faq p {
  margin-bottom: 0;
  color: var(--muted);
}

.secondary-services {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 16px;
  border: 1px dashed #bfd0da;
  border-radius: 8px;
  padding: 18px 20px;
  background: var(--panel);
}

.secondary-services strong {
  color: var(--navy);
  white-space: nowrap;
}

.secondary-services span {
  color: var(--muted);
}

.process-section {
  background: var(--panel);
}

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

.process-step {
  padding: 22px;
}

.process-step span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-weight: 850;
}

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

.faq {
  max-width: 960px;
}

.faq details {
  margin-bottom: 12px;
  padding: 18px 20px;
}

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

.faq p {
  padding-top: 12px;
}

.site-footer {
  padding-bottom: 92px;
  border-top: 1px solid var(--line);
  background: #0f2738;
  color: var(--white);
}

.footer-actions a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
  font-weight: 750;
}

.sticky-bar {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: none;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.sticky-bar a {
  min-width: 124px;
  padding: 15px 18px;
  background: var(--navy);
  color: var(--white);
  text-align: center;
  font-weight: 850;
}

.sticky-bar a + a {
  background: var(--green);
}

@media (max-width: 960px) {
  nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 28px;
  }

  .hero-content {
    min-height: auto;
  }

  .below-hero,
  .priority-services {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 680px) {
  .site-header {
    align-items: center;
  }

  .header-call {
    display: none;
  }

  .header-whatsapp {
    padding: 10px 12px;
  }

  .top-alert {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 8px 16px;
  }

  h1 {
    font-size: 34px;
  }

  .hero {
    gap: 18px;
    padding: 22px 16px 22px;
  }

  .hero-copy {
    font-size: 16px;
  }

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

  .hero-actions {
    display: grid;
  }

  .promise-row,
  .below-hero,
  .priority-grid,
  .request-services {
    grid-template-columns: 1fr;
  }

  .mini-photo {
    grid-template-columns: 1fr;
  }

  .mini-photo img {
    height: 150px;
  }

  .below-hero {
    padding: 0 16px 26px;
  }

  .priority-services,
  .section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .quick-contact,
  .proof-band,
  .site-footer,
  .secondary-services {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .sticky-bar {
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: flex;
  }

  .sticky-bar a {
    flex: 1;
  }
}
