:root {
  --navy: #071b44;
  --navy-2: #0b2252;
  --navy-3: #102f67;
  --ink: #101828;
  --muted: #58667b;
  --line: #dce4ef;
  --paper: #f6f8fc;
  --white: #ffffff;
  --yellow: #ffcf08;
  --yellow-2: #ffe27a;
  --teal: #1aa89c;
  --green: #2e9d69;
  --shadow: 0 18px 45px rgba(5, 18, 44, 0.12);
  color-scheme: light;
  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;
  color: var(--ink);
  background: var(--white);
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-150%);
  background: var(--yellow);
  color: var(--navy);
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-weight: 800;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(220, 228, 239, 0.8);
  backdrop-filter: blur(18px);
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  min-height: 2.65rem;
  padding: 0.45rem clamp(1rem, 4vw, 4.5rem);
  background: var(--navy);
  color: var(--white);
  font-size: 0.9rem;
}

.topbar p {
  margin: 0;
  font-weight: 700;
}

.topbar-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.topbar a {
  color: var(--white);
  opacity: 0.9;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 5rem;
  padding: 0.75rem clamp(1rem, 4vw, 4.5rem);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(18rem, 62vw);
}

.brand img {
  height: 3.6rem;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  color: var(--navy);
  font-weight: 750;
  font-size: 0.95rem;
}

.nav-menu a {
  padding: 0.65rem 0;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--teal);
}

.nav-cta {
  background: var(--yellow);
  color: var(--navy);
  border-radius: 6px;
  padding: 0.8rem 1rem !important;
  box-shadow: 0 10px 24px rgba(255, 207, 8, 0.28);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: var(--navy) !important;
  background: var(--yellow-2);
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
}

.nav-toggle-bar {
  display: block;
  width: 1.2rem;
  height: 2px;
  background: var(--navy);
}

.hero {
  min-height: clamp(620px, 76vh, 780px);
  display: grid;
  align-items: center;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--navy);
  background-size: 42px 42px;
  color: var(--white);
  padding: clamp(3rem, 6vw, 6.5rem) clamp(1rem, 4vw, 4.5rem);
}

.hero-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero-copy {
  max-width: 45rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--yellow);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(2.55rem, 6vw, 5.6rem);
  line-height: 0.98;
  font-weight: 850;
  max-width: 11ch;
}

.hero-copy > p {
  margin: 1.35rem 0 0;
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.65;
}

.hero-actions,
.quote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.hero-actions {
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border-radius: 6px;
  border: 1px solid transparent;
  padding: 0.85rem 1.1rem;
  font-weight: 850;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 14px 28px rgba(255, 207, 8, 0.24);
}

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

.button-secondary.dark {
  background: transparent;
  color: var(--white);
}

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

.hero-metrics {
  margin: 2.2rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 0;
}

.hero-metrics div {
  border-left: 3px solid var(--yellow);
  padding-left: 0.9rem;
}

.hero-metrics dt {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 900;
}

.hero-metrics dd {
  margin: 0.25rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.93rem;
  line-height: 1.4;
}

.quote-panel {
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
  padding: clamp(1rem, 3vw, 1.35rem);
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.95rem;
}

.quote-heading {
  display: grid;
  grid-template-columns: 4.1rem 1fr;
  align-items: center;
  gap: 0.9rem;
  padding-bottom: 0.35rem;
}

.quote-heading img {
  border-radius: 8px;
}

.quote-kicker {
  margin: 0;
  color: var(--teal);
  font-weight: 850;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.quote-heading h2 {
  margin: 0.2rem 0 0;
  color: var(--navy);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.08;
}

.quote-panel label,
.search-field {
  display: grid;
  gap: 0.45rem;
  color: var(--navy);
  font-weight: 780;
  font-size: 0.9rem;
}

.quote-panel input,
.quote-panel select,
.quote-panel textarea,
.search-field input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  padding: 0.85rem 0.9rem;
  min-height: 3rem;
}

.quote-panel textarea {
  min-height: 7rem;
  resize: vertical;
}

.quote-panel input:focus,
.quote-panel select:focus,
.quote-panel textarea:focus,
.search-field input:focus {
  outline: 3px solid rgba(26, 168, 156, 0.18);
  border-color: var(--teal);
}

.quote-actions .button {
  flex: 1 1 9rem;
}

.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  min-height: 1.3rem;
}

.trust-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 1rem clamp(1rem, 4vw, 4.5rem);
  background: var(--yellow);
  color: var(--navy);
  font-weight: 850;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 2.15rem;
  border: 1px solid rgba(7, 27, 68, 0.16);
  border-radius: 6px;
  padding: 0.4rem 0.75rem;
  background: rgba(255, 255, 255, 0.36);
}

.section {
  padding: clamp(3.8rem, 8vw, 6.5rem) clamp(1rem, 4vw, 4.5rem);
}

.section-alt {
  background: var(--paper);
}

.section-heading {
  width: min(780px, 100%);
  margin: 0 auto 2.1rem;
  text-align: center;
}

.section-heading.wide {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: 2rem;
  align-items: end;
  text-align: left;
}

.section-heading h2,
.process-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.03;
  font-weight: 880;
}

.section-heading p:not(.eyebrow),
.process-copy p {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

.feature-grid,
.package-grid,
.faq-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

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

.feature-card,
.service-card,
.package-card,
.faq-grid details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-card {
  padding: 1.2rem;
}

.feature-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 6px;
  background: rgba(255, 207, 8, 0.22);
  color: var(--navy);
  font-weight: 900;
  font-size: 0.82rem;
}

.feature-card h3,
.service-card h3,
.package-card h3,
.process-list h3 {
  margin: 1rem 0 0.45rem;
  color: var(--navy);
  font-size: 1.15rem;
  line-height: 1.2;
}

.feature-card p,
.service-card p,
.package-card p,
.process-list p,
.faq-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.service-tools {
  width: min(1180px, 100%);
  margin: 0 auto 1.2rem;
  display: grid;
  gap: 1rem;
}

.category-pills {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: thin;
}

.category-pills button {
  min-height: 2.55rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--navy);
  padding: 0.45rem 0.8rem;
  font-weight: 820;
  white-space: nowrap;
  cursor: pointer;
}

.category-pills button[aria-pressed="true"] {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.service-summary {
  width: min(1180px, 100%);
  margin: 0 auto 1rem;
  color: var(--muted);
  font-weight: 750;
}

.services-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 0.8rem;
  padding: 1rem;
  min-height: 13rem;
}

.service-card-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.service-card .category {
  color: var(--teal);
  font-weight: 850;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.price {
  align-self: start;
  border-radius: 6px;
  background: rgba(255, 207, 8, 0.22);
  color: var(--navy);
  padding: 0.35rem 0.5rem;
  font-weight: 900;
  text-align: right;
  white-space: nowrap;
}

.service-card h3 {
  margin-top: 0;
}

.service-card a {
  color: var(--navy);
  font-weight: 900;
  display: inline-flex;
  align-self: end;
}

.service-card a:hover,
.service-card a:focus-visible {
  color: var(--teal);
}

.empty-state {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 2rem;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: var(--white);
  text-align: center;
}

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

.package-card {
  padding: 1.2rem;
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.package-card.highlighted {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.package-label {
  margin: 0;
  color: var(--teal);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 900;
}

.package-card.highlighted .package-label {
  color: var(--yellow);
}

.package-card.highlighted h3,
.package-card.highlighted p,
.package-card.highlighted a {
  color: var(--white);
}

.package-card strong {
  color: var(--navy);
  font-size: 1.35rem;
}

.package-card.highlighted strong {
  color: var(--yellow);
}

.package-card a {
  color: var(--navy);
  font-weight: 900;
  margin-top: 0.25rem;
}

.process-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(3.8rem, 8vw, 6.5rem) clamp(1rem, 4vw, 4.5rem);
  background: var(--navy);
  color: var(--white);
}

.process-copy {
  max-width: 35rem;
}

.process-copy h2 {
  color: var(--white);
}

.process-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.process-copy .button {
  margin-top: 1.6rem;
}

.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.process-list li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.06);
}

.process-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 6px;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 900;
}

.process-list h3 {
  margin: 0 0 0.35rem;
  color: var(--white);
}

.process-list p {
  color: rgba(255, 255, 255, 0.72);
}

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

.faq-grid details {
  padding: 1rem;
}

.faq-grid summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 880;
  line-height: 1.35;
}

.faq-grid p {
  margin-top: 0.8rem;
}

.site-footer {
  background: #061638;
  color: var(--white);
  padding: clamp(2.4rem, 6vw, 4rem) clamp(1rem, 4vw, 4.5rem) 1.3rem;
}

.footer-brand,
.footer-columns,
.footer-bottom {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-brand img {
  width: 15rem;
  border-radius: 8px;
}

.footer-brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 750;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  padding: 2rem 0;
}

.footer-columns h2 {
  margin: 0 0 0.9rem;
  font-size: 1rem;
  color: var(--yellow);
}

.footer-columns a {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  margin: 0.55rem 0;
}

.footer-columns a:hover,
.footer-columns a:focus-visible {
  color: var(--yellow);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 1.2rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 980px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .nav-menu {
    position: absolute;
    inset: calc(100% + 0.5rem) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .nav-menu a {
    padding: 0.9rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner,
  .section-heading.wide,
  .process-section {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 12ch;
  }

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

@media (max-width: 720px) {
  .hero {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .hero-inner {
    gap: 1.25rem;
  }

  h1 {
    font-size: clamp(2.1rem, 11vw, 2.8rem);
  }

  .hero-copy > p {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 1.25rem;
  }

  .hero-metrics {
    display: none;
  }

  .quote-panel textarea {
    min-height: 5.5rem;
  }

  .brand {
    width: min(13.5rem, 65vw);
  }

  .brand img {
    height: 3rem;
  }

  .topbar-links {
    justify-content: flex-start;
  }

  .hero-metrics,
  .feature-grid,
  .services-grid,
  .package-grid,
  .faq-grid,
  .footer-columns {
    grid-template-columns: 1fr;
  }

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

  .service-card {
    min-height: auto;
  }

  .service-card-top {
    flex-direction: column;
  }

  .price {
    align-self: start;
    text-align: left;
    white-space: normal;
  }

  .process-list li {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
