:root {
  --blue: #0a5ca8;
  --blue-dark: #073d72;
  --blue-soft: #e8f3ff;
  --black: #101214;
  --gray: #5d6670;
  --line: #d8e4f0;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(7, 61, 114, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

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

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 150px;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0;
  color: var(--black);
}

.brand img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border: 2px solid var(--blue);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav a {
  padding: 8px 0;
}

.nav a:hover {
  color: var(--blue);
}

.nav-cta {
  padding: 9px 16px !important;
  color: var(--white);
  background: var(--blue);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  min-height: calc(100vh - 73px);
  padding: clamp(38px, 6vw, 82px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(135deg, var(--white) 0 58%, var(--blue-soft) 58% 100%);
}

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

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

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 5vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3.5vw, 3.45rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.16rem;
  line-height: 1.15;
}

.hero-copy > p:not(.eyebrow),
.section-heading p,
.about-copy p,
.contact p {
  color: var(--gray);
  font-size: 1.07rem;
}

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

.hero-points {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: var(--black);
  font-weight: 700;
}

.hero-points li {
  position: relative;
  padding-left: 22px;
}

.hero-points li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--blue);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 2px solid var(--blue);
  font-weight: 800;
}

.button.primary {
  color: var(--white);
  background: var(--blue);
}

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

.hero-media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10, 92, 168, 0.06), rgba(10, 92, 168, 0.22));
  pointer-events: none;
}

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

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats article {
  padding: 26px clamp(18px, 4vw, 52px);
  background: var(--white);
}

.stats strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 1.32rem;
}

.stats span {
  color: var(--black);
}

.section {
  padding: clamp(52px, 7vw, 95px) clamp(18px, 5vw, 72px);
}

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

.page-hero {
  padding: clamp(50px, 8vw, 110px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
}

.page-hero .eyebrow,
.page-hero h1,
.page-hero p {
  color: var(--white);
}

.page-hero h1 {
  max-width: 920px;
}

.page-hero p {
  max-width: 760px;
  font-size: 1.12rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  font-weight: 800;
}

.breadcrumb a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
  max-width: 1180px;
  margin-inline: auto;
}

.hub-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 12px;
  padding: 24px;
  min-height: 220px;
  border: 1px solid var(--line);
  background: var(--white);
}

.hub-card h2 {
  margin-bottom: 0;
  font-size: clamp(1.22rem, 1.6vw, 1.55rem);
  line-height: 1.15;
}

.hub-card p {
  margin-bottom: 0;
  color: var(--gray);
}

.hub-card .text-link {
  align-self: end;
}

.content-band {
  background: var(--blue-soft);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  max-width: 1180px;
  margin-inline: auto;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 16px;
  border-left: 5px solid var(--blue);
  background: var(--white);
  font-weight: 800;
}

.cta-strip {
  padding: clamp(38px, 6vw, 70px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--blue-dark);
}

.cta-strip h2,
.cta-strip p {
  color: var(--white);
}

.cta-strip h2,
.cta-strip p,
.cta-strip .hero-actions {
  max-width: 920px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(160px, 1fr));
  gap: clamp(24px, 4vw, 54px);
  padding: clamp(42px, 6vw, 72px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--black);
}

.site-footer h2,
.site-footer h3,
.site-footer p {
  color: var(--white);
}

.site-footer h2 {
  margin-bottom: 10px;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.1;
}

.site-footer h3 {
  margin-bottom: 12px;
  font-size: 1rem;
}

.site-footer p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 9px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

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

.service-card {
  display: grid;
  grid-template-rows: 210px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.service-card.featured {
  grid-column: span 2;
}

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

.service-card div {
  padding: 22px;
}

.service-card h3 a:hover,
.service-card h3 a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.service-card p {
  margin-bottom: 0;
  color: var(--gray);
}

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

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

.compact {
  margin-bottom: 24px;
}

.segments {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.segments span {
  padding: 10px 14px;
  color: var(--black);
  background: var(--white);
  border-left: 4px solid #7bbcff;
  font-weight: 800;
}

.service-details {
  background: linear-gradient(180deg, var(--white), var(--blue-soft));
}

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

.detail-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
}

.detail-grid p {
  margin-bottom: 14px;
  color: var(--gray);
}

.text-link {
  color: var(--blue-dark);
  font-weight: 900;
}

.process {
  background: var(--white);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
}

.process-list li {
  display: grid;
  gap: 8px;
  padding: 24px;
  background: var(--white);
}

.process-list strong {
  color: var(--blue-dark);
  font-size: 1.08rem;
}

.process-list span {
  color: var(--gray);
}

.about {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  background: var(--blue-soft);
}

.about-image {
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  min-height: 410px;
  object-fit: cover;
}

.faq {
  background: var(--white);
}

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

.faq-list article {
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
}

.faq-list p {
  margin-bottom: 0;
  color: var(--gray);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1fr);
  gap: clamp(28px, 5vw, 60px);
  padding: clamp(52px, 7vw, 90px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--blue);
}

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

.contact-list {
  display: grid;
  gap: 10px;
  font-style: normal;
}

.contact-list a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 10px 16px;
  color: var(--black);
  background: var(--white);
  border-left: 5px solid var(--blue-dark);
  font-weight: 900;
  word-break: break-word;
}

.whatsapp-float {
  position: fixed;
  right: clamp(14px, 3vw, 34px);
  bottom: clamp(16px, 4vw, 34px);
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #6a6f76;
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.whatsapp-float.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.whatsapp-float span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 16px;
  background: var(--white);
  border-radius: 999px;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.whatsapp-float svg {
  width: 62px;
  height: 62px;
  padding: 9px;
  color: var(--white);
  fill: currentColor;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 9px 24px rgba(37, 211, 102, 0.36);
}

.whatsapp-float:hover svg,
.whatsapp-float:focus-visible svg {
  background: #1ebe5d;
}

@media (max-width: 980px) {
  .hero,
  .about,
  .contact,
  .two-column {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

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

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

  .detail-grid {
    grid-template-columns: 1fr;
  }

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

  .site-footer {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card.featured {
    grid-column: span 1;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .brand img {
    width: 58px;
    height: 58px;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-media,
  .hero-media img {
    min-height: 300px;
  }

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

  .service-card {
    grid-template-rows: 190px 1fr;
  }

  .button {
    width: 100%;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    gap: 8px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .whatsapp-float span {
    max-width: calc(100vw - 92px);
    min-height: 32px;
    padding: 0 12px;
    overflow: hidden;
    font-size: 0.85rem;
    text-overflow: ellipsis;
  }

  .whatsapp-float svg {
    width: 56px;
    height: 56px;
  }
}
