:root {
  --ink: #f7f9ff;
  --dark-ink: #101933;
  --muted: #b7c2d6;
  --muted-dark: #66748a;
  --line: rgba(255, 255, 255, .12);
  --surface: #07174f;
  --soft: #0b1d5f;
  --navy: #061650;
  --navy-2: #0b1f67;
  --panel: #0b1a55;
  --blue: #2b76c7;
  --cyan: #2fc4df;
  --green: #18a860;
  --yellow: #ffd447;
  --shadow: 0 18px 50px rgba(0, 0, 0, .24);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--surface);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 100px;
  padding: 16px clamp(18px, 5vw, 72px);
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 212, 71, .2);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .16);
}
.brand img {
  width: 230px;
  height: auto;
}
.main-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
}
.main-nav a:nth-child(2),
.main-nav a:nth-child(3),
.main-nav a:nth-child(4),
.main-nav a:nth-child(5),
.main-nav a:hover {
  color: var(--yellow);
}
.header-cta {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: var(--navy);
  font-weight: 800;
  background: var(--yellow);
  border-radius: 6px;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 6px;
  background: rgba(255,255,255,.08);
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 42px;
  align-items: center;
  padding: 108px clamp(18px, 6vw, 86px) 88px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 212, 71, .16), transparent 28%),
    linear-gradient(135deg, #061650 0%, #091a5a 58%, #050f3c 100%);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .22;
  filter: saturate(.85) contrast(1.08);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 22, 80, .98), rgba(6, 22, 80, .86) 58%, rgba(6, 22, 80, .54)),
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: auto, 54px 54px, 54px 54px;
}
.hero-content, .hero-panel { position: relative; z-index: 2; }
.hero-content { max-width: 760px; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: 58px;
  line-height: 1.02;
  letter-spacing: 0;
}
.hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: 20px;
}
.hero-actions, .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 6px;
  font-weight: 900;
}
.btn.primary { color: var(--navy); background: var(--yellow); }
.btn.secondary { color: #fff; background: transparent; border: 1px solid rgba(255, 255, 255, .26); }
.hero .btn.secondary { color: #fff; background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .28); }
.hero-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: rgba(4, 16, 58, .72);
  border: 1px solid rgba(255, 212, 71, .28);
  border-radius: 8px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, .25);
  backdrop-filter: blur(10px);
}
.hero-panel div {
  padding: 18px;
  background: rgba(255, 255, 255, .96);
  border-radius: 6px;
}
.hero-panel strong {
  display: block;
  color: var(--navy);
  font-size: 30px;
  line-height: 1;
}
.hero-panel span { color: var(--muted-dark); font-size: 14px; font-weight: 700; }

.intro, .contact {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, 1fr);
  gap: 38px;
  align-items: center;
  padding: 76px clamp(18px, 6vw, 86px);
  background: var(--surface);
}
.intro h2, .section-heading h2, .about h2, .cta-band h2, .contact h2 {
  margin: 0;
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: 0;
}
.intro > p, .section-heading p, .contact p, .about-copy p, .process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0 clamp(18px, 6vw, 86px) 86px;
  background: var(--surface);
}
.service-card {
  overflow: hidden;
  min-height: 100%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(0, 0, 0, .16);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.service-card.featured { border-top: 4px solid var(--yellow); }
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 212, 71, .34);
  box-shadow: 0 22px 48px rgba(0, 0, 0, .22);
}
.service-card img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
  opacity: .9;
}
.service-card div { padding: 24px; }
.service-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
}
.service-card h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 23px;
  line-height: 1.18;
  letter-spacing: 0;
}
.service-card p { margin: 0; color: var(--muted); }
.service-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--yellow);
  font-size: 14px;
  font-weight: 900;
}

.process {
  padding: 84px clamp(18px, 6vw, 86px);
  background: var(--soft);
}
.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}
.section-heading p { margin-top: 14px; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  counter-reset: steps;
}
.process-grid article {
  position: relative;
  min-height: 230px;
  padding: 24px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
}
.process-grid article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 38px;
  right: -17px;
  width: 18px;
  height: 2px;
  background: rgba(255, 212, 71, .42);
}
.process-grid span {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
}
.process-grid h3 {
  margin: 16px 0 10px;
  color: #fff;
  font-size: 22px;
}

.reviews {
  padding: 84px clamp(18px, 6vw, 86px);
  color: #202124;
  background: #fff;
}
.reviews .eyebrow { color: #5f6368; }
.reviews-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 22px;
}
.reviews-heading h2 {
  max-width: 760px;
  margin: 0;
  color: #202124;
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: 0;
}
.google-summary {
  display: grid;
  grid-template-columns: auto auto;
  gap: 4px 10px;
  align-items: center;
  min-width: 220px;
  padding: 18px;
  border: 1px solid #dadce0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(60, 64, 67, .12), 0 1px 3px rgba(60, 64, 67, .16);
}
.google-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #fff;
  font-weight: 900;
  background: #4285f4;
  border-radius: 50%;
}
.google-summary strong {
  color: #202124;
  font-size: 26px;
  line-height: 1;
}
.google-summary .stars { grid-column: 1 / -1; color: #fbbc04; letter-spacing: 0; }
.google-summary small { grid-column: 1 / -1; color: #5f6368; }
.review-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.review-filters span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  color: #3c4043;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid #dadce0;
  border-radius: 18px;
  background: #fff;
}
.review-filters span:first-child {
  color: #174ea6;
  border-color: #d2e3fc;
  background: #e8f0fe;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.review-card {
  min-height: 260px;
  padding: 18px;
  color: #3c4043;
  background: #fff;
  border: 1px solid #dadce0;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(60, 64, 67, .12), 0 1px 3px rgba(60, 64, 67, .16);
}
.review-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}
.review-avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  background: #1a73e8;
  border-radius: 50%;
}
.review-card:nth-child(2n) .review-avatar { background: #188038; }
.review-card:nth-child(3n) .review-avatar { background: #a142f4; }
.review-card:nth-child(4n) .review-avatar { background: #d93025; }
.review-top h3 {
  margin: 0;
  color: #202124;
  font-size: 16px;
  line-height: 1.2;
}
.review-top p {
  margin: 3px 0 0;
  color: #5f6368;
  font-size: 13px;
  line-height: 1.25;
}
.review-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 10px;
}
.review-rating span {
  color: #fbbc04;
  font-size: 15px;
  letter-spacing: 0;
}
.review-rating small {
  color: #5f6368;
  font-size: 13px;
}
.review-card > p {
  margin: 0;
  color: #3c4043;
  font-size: 14px;
  line-height: 1.5;
}

.about {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(0, 1fr);
  gap: 52px;
  align-items: center;
  padding: 86px clamp(18px, 6vw, 86px);
  background: var(--surface);
}
.about-image img {
  width: 100%;
  aspect-ratio: .78;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.about-copy p { margin-top: 18px; }
.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--yellow);
  font-weight: 900;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  margin: 0 clamp(18px, 6vw, 86px) 18px;
  padding: 48px;
  color: #fff;
  background: linear-gradient(120deg, #050f3c, var(--navy-2));
  border: 1px solid rgba(255, 212, 71, .18);
  border-radius: 8px;
  overflow: hidden;
}
.cta-band .eyebrow { color: var(--yellow); }
.cta-band .btn { white-space: nowrap; }

.contact {
  align-items: start;
  background: var(--surface);
}
address {
  display: grid;
  gap: 6px;
  padding: 28px;
  font-style: normal;
  color: var(--muted);
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(19, 32, 51, .08);
}
address span {
  margin-top: 14px;
  color: #fff;
  font-weight: 900;
}
address span:first-child { margin-top: 0; }
address a { color: var(--yellow); font-weight: 800; overflow-wrap: anywhere; }

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 34px clamp(18px, 6vw, 86px);
  color: #dce8f5;
  background: var(--navy);
  border-top: 1px solid rgba(255, 212, 71, .2);
}
.site-footer img { width: 150px; opacity: .95; }
.site-footer p { margin: 0; }
.site-footer div { display: flex; gap: 18px; font-weight: 800; }

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #fff;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(37, 211, 102, .38);
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

@media (max-width: 980px) {
  .site-header { grid-template-columns: auto auto; }
  .header-cta { display: none; }
  .nav-toggle { display: block; justify-self: end; }
  .main-nav {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 8px;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 14px 0; border-top: 1px solid var(--line); }
  .hero, .intro, .about, .contact, .cta-band { grid-template-columns: 1fr; }
  .hero h1 { font-size: 50px; }
  .intro h2, .section-heading h2, .about h2, .cta-band h2, .contact h2 { font-size: 38px; }
  .hero-panel { max-width: 520px; }
  .services { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid article:not(:last-child)::after { display: none; }
  .reviews-heading { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-band .btn { justify-self: start; }
}

@media (max-width: 620px) {
  .brand img { width: 148px; }
  .hero { min-height: auto; padding-top: 78px; }
  .hero h1 { font-size: 38px; }
  .hero p:not(.eyebrow), .intro > p, .section-heading p, .contact p, .about-copy p, .process-grid p { font-size: 16px; }
  .intro h2, .section-heading h2, .about h2, .cta-band h2, .contact h2 { font-size: 32px; }
  .hero-actions, .contact-actions { display: grid; }
  .btn { width: 100%; }
  .services, .process-grid { grid-template-columns: 1fr; }
  .reviews-heading h2 { font-size: 32px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 28px; }
  .site-footer { display: grid; }
  .site-footer div { flex-wrap: wrap; }
}
