:root {
  --navy: #07365f;
  --blue: #075fd4;
  --blue-dark: #064a9f;
  --green: #28a914;
  --red: #d81921;
  --ink: #102033;
  --muted: #66778a;
  --line: #dce7f1;
  --soft: #f2f7fb;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(7, 54, 95, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

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

.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: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 231, 241, 0.9);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo {
  width: 98px;
  height: auto;
  display: block;
  border-radius: 6px;
  background: var(--white);
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: var(--white);
  font-weight: 800;
}

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

.brand strong {
  color: var(--navy);
  font-size: 1rem;
  letter-spacing: 0;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 8px;
  color: #25384d;
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue-dark);
  background: #eaf5ff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: min(820px, calc(100svh - 140px));
  overflow: hidden;
  display: grid;
  align-items: center;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center right;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 36%, rgba(255, 255, 255, 0.22) 68%, rgba(255, 255, 255, 0) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 72px 0;
}

.hero-content h1,
.page-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.25rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero-content p:not(.eyebrow),
.page-hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px 0 0;
  color: #344a62;
  font-size: 1.1rem;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(11, 116, 200, 0.22);
}

.btn-primary:hover {
  background: var(--blue-dark);
}

.btn-secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--navy);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
}

.section {
  padding: 88px 0;
}

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 52px;
  align-items: center;
}

.align-start {
  align-items: start;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.2;
}

p {
  color: var(--muted);
}

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

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

.service-card,
.value-card {
  min-height: 240px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.service-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.service-card .card-icon,
.service-card h3,
.service-card p {
  margin-left: 24px;
  margin-right: 24px;
}

.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-top: -24px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--white);
  color: var(--red);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(7, 54, 95, 0.16);
}

.service-card p {
  margin-bottom: 24px;
}

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

.feature-item {
  padding-top: 22px;
  border-top: 3px solid var(--green);
}

.feature-item:nth-child(2) {
  border-color: var(--blue);
}

.feature-item:nth-child(3) {
  border-color: var(--red);
}

.cta-band {
  padding: 70px 0;
  background: var(--navy);
}

.cta-band h2,
.cta-band .eyebrow {
  color: var(--white);
}

.cta-band .eyebrow {
  opacity: 0.82;
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-content h2 {
  max-width: 760px;
  font-size: clamp(1.7rem, 4vw, 3rem);
}

.page-hero {
  padding: 104px 0 78px;
  background: linear-gradient(135deg, #eef8ff 0%, #ffffff 64%, #eaf8f1 100%);
}

.services-hero,
.contact-hero {
  background: linear-gradient(135deg, #eaf5ff 0%, #ffffff 58%, #edf9f3 100%);
}

.copy-stack p:first-child {
  margin-top: 0;
}

.image-copy img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-bottom: 22px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.process-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.process-strip div {
  padding: 30px;
  background: var(--white);
}

.process-strip span,
.service-number {
  color: var(--green);
  font-weight: 800;
}

.services-list {
  display: grid;
  gap: 18px;
}

.services-list article {
  display: grid;
  grid-template-columns: 230px 72px minmax(0, 1fr);
  gap: 26px;
  padding: 18px 30px 18px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  align-items: center;
  overflow: hidden;
}

.services-list article > img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 8px;
}

.services-list p {
  max-width: 820px;
}

.services-list a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--blue-dark);
  font-weight: 800;
}

.service-number {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #eaf8f1;
}

.services-list article:nth-child(3n + 2) .service-number {
  color: var(--blue-dark);
  background: #eaf5ff;
}

.services-list article:nth-child(3n) .service-number {
  color: var(--red);
  background: #fff0f1;
}

.form-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 34px;
  align-items: start;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 780px);
  gap: 34px;
  justify-content: center;
  align-items: start;
}

.form-aside,
.contact-details {
  position: sticky;
  top: 104px;
  padding: 28px;
  border-radius: 8px;
  background: var(--navy);
}

.form-aside > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin-bottom: 22px;
  border-radius: 8px;
}

.form-aside h2,
.form-aside p,
.contact-details strong,
.contact-details span {
  color: var(--white);
}

.aside-box {
  display: grid;
  gap: 6px;
  margin-top: 24px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.aside-box span {
  color: rgba(255, 255, 255, 0.72);
}

.service-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--navy);
  font-weight: 800;
  font-size: 0.92rem;
}

.field label span {
  color: var(--muted);
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid #cbdbe9;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid rgba(11, 116, 200, 0.18);
  border-color: var(--blue);
}

.full-col {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 700;
}

.contact-details {
  display: grid;
  gap: 16px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.whatsapp-contact-copy h2 {
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}

.whatsapp-contact-copy p {
  margin: 10px 0 0;
}

.contact-logo {
  width: 190px;
  max-width: 100%;
  height: auto;
  margin-bottom: 6px;
  border-radius: 8px;
  background: var(--white);
}

.contact-details article {
  display: grid;
  gap: 6px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.contact-details span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.map-placeholder {
  min-height: 230px;
  display: grid;
  place-items: center;
  padding: 24px;
  border: 1px dashed #aac2d8;
  border-radius: 8px;
  background: #ffffff;
  text-align: center;
}

.map-placeholder span {
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 15px 30px rgba(33, 166, 107, 0.28);
}

.contact-page .whatsapp-float {
  display: none;
}

.site-footer {
  padding: 54px 0 24px;
  background: #071d33;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.8fr;
  gap: 32px;
}

.footer-brand strong,
.footer-brand small,
.site-footer h3 {
  color: var(--white);
}

.footer-brand .brand-logo {
  width: 170px;
  height: auto;
  padding: 2px;
}

.site-footer p,
.site-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  margin-top: 7px;
}

.footer-bottom {
  width: min(1120px, calc(100% - 40px));
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    min-height: min(760px, calc(100svh - 118px));
    align-items: end;
  }

  .hero-image {
    object-position: 63% center;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.94) 52%, #ffffff 100%);
  }

  .hero-content {
    padding: 330px 0 90px;
  }

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

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

  .form-aside,
  .contact-details {
    position: static;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .nav {
    min-height: 70px;
  }

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

  .brand-logo {
    width: 82px;
    height: auto;
  }

  .nav-links {
    top: 70px;
    left: 14px;
    right: 14px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 210px 0 74px;
  }

  .hero-content h1,
  .page-hero h1 {
    font-size: clamp(2rem, 9vw, 2.38rem);
    line-height: 1.04;
  }

  .hero-content p:not(.eyebrow),
  .page-hero p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-actions,
  .cta-content {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 60px 0;
  }

  .page-hero {
    padding: 78px 0 56px;
  }

  .service-grid,
  .value-grid,
  .feature-row,
  .process-strip,
  .service-form {
    grid-template-columns: 1fr;
  }

  .services-list article {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }

  .services-list article > img {
    height: 190px;
  }

  .service-card,
  .value-card,
  .service-form,
  .form-aside,
  .contact-details {
    padding: 22px;
  }

  .service-card {
    padding: 0;
  }

  .service-card img {
    height: 180px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 8px;
    top: auto;
    width: 46px;
    height: 46px;
    min-height: 46px;
    padding: 0;
    border-radius: 50%;
    font-size: 0;
    transform: none;
  }

  .whatsapp-float::before {
    content: "WA";
    font-size: 0.82rem;
  }
}
