:root {
  --white: #ffffff;
  --blue-50: #eef8ff;
  --blue-100: #dff2ff;
  --blue-600: #1266d6;
  --navy: #052c67;
  --navy-900: #031a3e;
  --green: #45b313;
  --green-700: #23850a;
  --gray-50: #f6f9fc;
  --gray-100: #e8eef5;
  --gray-300: #c7d3df;
  --text: #142033;
  --muted: #607086;
  --shadow: 0 18px 45px rgba(4, 39, 84, 0.12);
  --shadow-soft: 0 10px 24px rgba(4, 39, 84, 0.08);
  --radius: 8px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

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

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

.section {
  padding: 76px 0;
}

.section-band {
  background:
    linear-gradient(135deg, rgba(238, 248, 255, 0.96) 0%, rgba(255, 255, 255, 0.98) 58%, rgba(232, 248, 237, 0.9) 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid rgba(199, 211, 223, 0.7);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-soft);
  background: rgba(255, 255, 255, 0.98);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--navy);
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue-600) 58%, var(--green));
  font-size: 1.25rem;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.15;
}

.brand strong {
  font-size: 1.05rem;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.76rem;
}

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

.site-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: #26364e;
  font-size: 0.94rem;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--navy);
  background: var(--blue-50);
}

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

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 14px 28px rgba(5, 44, 103, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #073b86;
}

.btn-whatsapp {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 14px 28px rgba(69, 179, 19, 0.22);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  background: var(--green-700);
}

.btn-small {
  min-height: 42px;
  padding: 10px 14px;
  font-size: 0.9rem;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  border: 1px solid var(--gray-300);
  border-radius: 50%;
  color: var(--navy);
  background: var(--white);
}

.menu-toggle .icon-menu-close {
  display: none;
}

body.nav-open .menu-toggle .icon-menu-open {
  display: none;
}

body.nav-open .menu-toggle .icon-menu-close {
  display: block;
}

.hero {
  position: relative;
  padding: 72px 0 66px;
  border-bottom: 1px solid var(--gray-100);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 13px;
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--navy-900);
  font-size: 3.05rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 620px;
  margin: 18px 0 0;
  color: #37465b;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 570px;
  margin-top: 28px;
}

.trust-badges span {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 13px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  color: #30435d;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 18px rgba(5, 44, 103, 0.06);
  font-weight: 700;
}

.trust-badges strong {
  color: var(--navy);
  font-size: 1.05rem;
}

.hero-media {
  position: relative;
  min-width: 0;
}

.visual-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(18, 102, 214, 0.18);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.visual-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
}

.hero-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 310px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(5, 44, 103, 0.92);
  box-shadow: var(--shadow-soft);
  font-weight: 800;
  line-height: 1.35;
}

.hero-note .icon {
  color: #88df67;
}

.split-layout,
.contact-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.78fr);
  gap: 34px;
  align-items: start;
}

.section-copy h2,
.section-heading h2,
.contact-intro h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: 2.05rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.section-copy p,
.section-heading p,
.contact-intro p {
  color: var(--muted);
  font-size: 1rem;
}

.section-copy p:last-child,
.section-heading p:last-child,
.contact-intro p:last-child {
  margin-bottom: 0;
}

.info-panel,
.contact-card,
.service-card,
.why-card,
.process-step,
.faq-item {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.info-panel {
  padding: 18px;
}

.rating-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.rating-score {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-size: 1.45rem;
  font-weight: 900;
}

.rating-line strong,
.rating-line small {
  display: block;
}

.rating-line small {
  margin-top: 3px;
  color: var(--muted);
}

.info-panel p {
  margin: 14px 0 0;
  color: #40516a;
}

.services-section,
.faq-section {
  background: var(--gray-50);
}

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

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

.service-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(18, 102, 214, 0.32);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 15px;
  border-radius: var(--radius);
  color: var(--navy);
  background: linear-gradient(135deg, var(--blue-50), #ecf9ef);
}

.service-icon .icon {
  width: 1.35rem;
  height: 1.35rem;
}

.service-card h3,
.why-card h3,
.process-step h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.04rem;
  line-height: 1.28;
  letter-spacing: 0;
}

.service-card p,
.why-card p,
.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.why-card {
  min-height: 180px;
  padding: 22px;
}

.why-card > .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  padding: 8px;
  border-radius: var(--radius);
  color: var(--green);
  background: #eff9ec;
  stroke-width: 2.1;
}

.process-section {
  background:
    linear-gradient(180deg, var(--white), var(--blue-50));
}

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

.process-step {
  min-height: 230px;
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  font-weight: 900;
}

.process-step::after {
  content: "";
  position: absolute;
  right: -18px;
  top: -18px;
  width: 70px;
  height: 70px;
  border: 12px solid rgba(69, 179, 19, 0.12);
  border-radius: 50%;
}

.faq-layout {
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1fr);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 0;
  color: var(--navy);
  background: var(--white);
  font-weight: 850;
  text-align: left;
}

.faq-question span {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--blue-50);
}

.faq-question span::before,
.faq-question span::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  background: var(--navy);
  transition: transform 0.2s ease;
}

.faq-question span::after {
  transform: rotate(90deg);
}

.faq-question[aria-expanded="true"] span::after {
  transform: rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.24s ease;
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  padding: 0 20px;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 18px;
}

.contact-section {
  background: linear-gradient(135deg, var(--navy-900), var(--navy) 58%, #0b6f44);
  color: var(--white);
}

.contact-section .eyebrow {
  color: #9bef7a;
}

.contact-intro h2,
.contact-intro p {
  color: var(--white);
}

.contact-intro p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-card {
  padding: 22px;
  color: var(--text);
  font-style: normal;
}

.contact-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}

.contact-row:first-child {
  padding-top: 0;
}

.contact-row > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--blue-50);
}

.contact-row strong,
.contact-row a {
  display: block;
}

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

.contact-row a {
  color: #31425a;
  word-break: break-word;
}

.contact-row a:hover,
.contact-row a:focus-visible {
  color: var(--blue-600);
}

.business-note {
  display: grid;
  gap: 2px;
  margin-top: 16px;
  padding: 16px;
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--blue-50);
}

.business-note span {
  color: #40516a;
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: #031226;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr;
  gap: 34px;
  padding: 46px 0 30px;
}

.footer-brand {
  color: var(--white);
}

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

.site-footer p {
  max-width: 430px;
  margin: 18px 0 0;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer a,
.site-footer span {
  display: block;
}

.site-footer a {
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #9bef7a;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
}

.footer-bottom a {
  display: inline;
  margin: 0;
  color: var(--white);
  font-weight: 800;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: grid;
  gap: 10px;
}

.floating-btn {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  box-shadow: 0 14px 28px rgba(3, 18, 38, 0.25);
  transition: transform 0.2s ease;
}

.floating-btn:hover,
.floating-btn:focus-visible {
  transform: translateY(-2px);
}

.floating-phone {
  background: var(--navy);
}

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

.floating-btn .icon {
  width: 1.45rem;
  height: 1.45rem;
}

@media (max-width: 1040px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-media {
    max-width: 760px;
  }

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

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

@media (max-width: 860px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(100% - 28px, 1160px);
  }

  .section {
    padding: 58px 0;
  }

  .site-nav {
    position: fixed;
    top: calc(var(--header-height) + 10px);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  body.nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav a {
    border-radius: var(--radius);
    padding: 13px 14px;
  }

  .menu-toggle {
    display: grid;
  }

  .header-actions .btn-small {
    display: none;
  }

  .hero {
    padding: 52px 0 54px;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .split-layout,
  .contact-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .section-copy h2,
  .section-heading h2,
  .contact-intro h2 {
    font-size: 1.72rem;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .brand strong {
    font-size: 0.98rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

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

  .hero-grid {
    gap: 28px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-actions,
  .contact-intro .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

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

  .trust-badges span,
  .service-card,
  .why-card,
  .process-step {
    min-height: auto;
  }

  .hero-note {
    position: static;
    max-width: none;
    margin-top: 12px;
  }

  .faq-question {
    align-items: flex-start;
    padding: 16px;
  }

  .faq-answer p {
    padding-inline: 16px;
  }

  .contact-row {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .contact-row > span {
    width: 40px;
    height: 40px;
  }

  .floating-actions {
    right: 14px;
    bottom: 14px;
  }

  .floating-btn {
    width: 52px;
    height: 52px;
  }
}

@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;
  }
}


/* Final delivery fixes: fixed menu, official WhatsApp icon, Google map, footer logo */
body {
  padding-top: var(--header-height);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}

.btn-whatsapp .icon,
.floating-whatsapp .icon {
  fill: currentColor;
  stroke: none;
}

.map-card {
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.map-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
}

.map-card-header h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: 1.35rem;
  line-height: 1.2;
}

.map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
  font-weight: 800;
  white-space: nowrap;
}

.map-link:hover,
.map-link:focus-visible {
  background: #073b86;
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
}

.site-footer .brand,
.site-footer .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  overflow: visible;
}

.site-footer .brand-mark {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}

.site-footer .brand > span:not(.brand-mark) {
  display: block;
  min-width: 0;
}

.site-footer .brand strong,
.site-footer .brand small {
  display: block;
  overflow-wrap: anywhere;
}

.site-footer .footer-bottom span,
.site-footer .footer-bottom a {
  display: inline;
}

@media (max-width: 860px) {
  body {
    padding-top: var(--header-height);
  }

  .site-nav {
    top: calc(var(--header-height) + 8px);
  }

  .map-card-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .map-link {
    width: 100%;
  }

  .map-card iframe {
    min-height: 300px;
  }
}


.map-card iframe {
  background: #f3f6fb;
}

@media (max-width: 640px) {
  .map-card-header {
    padding: 18px 16px;
  }

  .map-card-header h3 {
    font-size: 1.15rem;
  }

  .map-card iframe {
    min-height: 260px;
  }
}
