@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

:root {
  --navy: #06265c;
  --navy-2: #0b3b85;
  --blue: #0b6bff;
  --sky: #eaf4ff;
  --cyan: #35a8ff;
  --green: #16b86a;
  --gold: #ffb020;
  --ink: #17233c;
  --muted: #667085;
  --line: #dbe7f8;
  --soft: #f6fbff;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(11, 76, 160, 0.14);
  --radius: 14px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.72;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(229, 231, 235, 0.92);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 36px rgba(17, 24, 39, 0.07);
}

.top-bar {
  background: #f6f7f9;
  border-bottom: 1px solid var(--line);
  color: #4b5563;
  font-size: 12px;
  font-weight: 500;
}

.top-bar-wrap {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.top-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.top-contact a,
.top-whatsapp {
  text-decoration: none;
}

.top-contact a:hover,
.top-whatsapp:hover {
  color: var(--navy);
}

.top-whatsapp {
  color: var(--navy);
  font-weight: 700;
}

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

.brand img {
  width: 210px;
  height: 62px;
  object-fit: contain;
  object-position: left center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #26364a;
  font-size: 13px;
  font-weight: 600;
}

.nav-menu a {
  text-decoration: none;
}

.nav-menu > a:not(.nav-action),
.dropdown-link {
  position: relative;
  padding: 25px 0;
}

.nav-menu > a:not(.nav-action)::after,
.dropdown-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 17px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.nav-menu > a:not(.nav-action):hover::after,
.nav-dropdown:hover .dropdown-link::after {
  transform: scaleX(1);
}

.nav-menu a:hover,
.nav-dropdown:hover .dropdown-link {
  color: var(--blue);
}

.nav-dropdown {
  position: relative;
}

.dropdown-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dropdown-link::before {
  content: "";
  order: 2;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.dropdown-panel {
  position: absolute;
  left: 50%;
  top: calc(100% - 8px);
  width: 280px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 22px 54px rgba(17, 24, 39, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.dropdown-panel a {
  display: block;
  padding: 11px 12px;
  color: #26364a;
  border-radius: 10px;
  line-height: 1.35;
}

.dropdown-panel a:hover {
  color: var(--navy);
  background: #f4f6f8;
}

.nav-action,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 18px;
  border-radius: 12px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.1;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.nav-action,
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, #0b7cff, #063b9a);
  box-shadow: 0 12px 26px rgba(11, 107, 255, 0.2);
}

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

.btn-secondary:hover {
  border-color: #9ca3af;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
}

.btn-light {
  color: #171717;
  background: var(--white);
  border-color: #d1d5db;
  box-shadow: none;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 10px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--navy);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 86px);
  padding: 82px 0 72px;
  background:
    linear-gradient(125deg, rgba(248, 251, 255, 0.92) 0%, rgba(234, 244, 255, 0.84) 54%, rgba(255, 255, 255, 0.72) 100%),
    url("assets/images/hero-background.svg") center right / cover no-repeat;
}

.hero::before,
.hero::after,
.shape-mark {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0.9;
}

.hero::before {
  width: 280px;
  height: 280px;
  right: 8%;
  top: 110px;
  border: 34px solid rgba(11, 107, 255, 0.12);
  border-radius: 38% 62% 50% 50%;
}

.hero::after {
  right: 0;
  bottom: -1px;
  width: 48%;
  height: 180px;
  background: linear-gradient(135deg, rgba(11, 107, 255, 0.12), rgba(219, 234, 254, 0.4));
  clip-path: polygon(22% 0, 100% 18%, 100% 100%, 0 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 56px;
  align-items: center;
}

.hero-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(229, 231, 235, 0.94);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-logo {
  width: 300px;
  height: auto;
  margin-bottom: 22px;
}

.mini-card-grid {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.mini-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.icon-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: linear-gradient(135deg, #0b7cff, #063b9a);
  border-radius: 12px;
  font-weight: 900;
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #4b5563;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-kicker::before,
.eyebrow::before {
  content: "";
  width: 30px;
  height: 3px;
  background: var(--gold);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.18;
  letter-spacing: 0;
  font-weight: 700;
}

h1 {
  max-width: 780px;
  font-size: clamp(40px, 5.2vw, 64px);
}

h2 {
  font-size: clamp(28px, 3.4vw, 42px);
}

h3 {
  font-size: 20px;
  font-weight: 700;
}

p {
  margin: 0;
}

.lead {
  max-width: 720px;
  margin-top: 22px;
  color: #4b5563;
  font-size: 17px;
  line-height: 1.8;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 42px;
}

.metric {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 12px 34px rgba(17, 24, 39, 0.05);
}

.metric strong {
  display: block;
  color: var(--navy);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 92px 0;
}

.section-soft {
  background:
    radial-gradient(circle at 15% 20%, rgba(11,124,255,.08), transparent 28%),
    linear-gradient(180deg, #f6fbff, #ffffff);
}

.section-deep {
  color: var(--ink);
  background: linear-gradient(135deg, #f1f7ff, #ffffff);
}

.section-deep h2,
.section-deep h3 {
  color: var(--navy);
}

.section-deep p {
  color: var(--muted);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 40px;
}

.section-head p {
  max-width: 540px;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 12px 34px rgba(17, 24, 39, 0.04);
}

.card.feature-card {
  min-height: 250px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.card.feature-card:hover {
  transform: translateY(-4px);
  border-color: #c5cad3;
  box-shadow: var(--shadow);
}

.highlight {
  color: var(--ink);
  background: linear-gradient(135deg, #eef6ff, #ffffff);
  border-color: #cfe3ff;
}

.highlight h3,
.highlight h2 {
  color: var(--navy);
}

.highlight p,
.highlight .tag {
  color: var(--muted);
}

.tag {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.card p,
.feature-list li,
.contact-list li {
  color: var(--muted);
}

.card .btn {
  margin-top: 24px;
}

.split {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 58px;
  align-items: center;
}

.image-stack {
  position: relative;
  min-height: 470px;
}

.image-panel {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow);
  background: var(--white);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.logo-panel {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(78%, 430px);
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.logo-panel img {
  width: 100%;
  border-radius: 12px;
}

.feature-list,
.contact-list {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.feature-list li,
.contact-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
}

.feature-list li::before,
.contact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(107, 114, 128, 0.12);
}

.process {
  counter-reset: step;
}

.process .card {
  position: relative;
  padding-top: 62px;
}

.process .card::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 24px;
  left: 28px;
  color: #6b7280;
  font-weight: 700;
}

.page-hero {
  overflow: hidden;
  padding: 74px 0 64px;
  background:
    linear-gradient(135deg, rgba(248,251,255,.94), rgba(255,255,255,.78)),
    url("assets/images/hero-background.svg") center / cover no-repeat;
}

.page-hero .lead {
  max-width: 850px;
}

.service-hero {
  padding-bottom: 88px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--blue);
  text-decoration: none;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

.sticky-card {
  position: sticky;
  top: 112px;
}

.detail-block + .detail-block {
  margin-top: 24px;
}

.detail-block h2 {
  margin-bottom: 18px;
  font-size: clamp(26px, 3vw, 38px);
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 28px;
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
}

input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font: inherit;
  background: var(--white);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.post-list {
  display: grid;
  gap: 24px;
}

.post-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  align-items: center;
}

.post-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 14px;
}

.text-page {
  max-width: 900px;
}

.text-page h2,
.text-page h3 {
  margin-top: 32px;
}

.text-page p,
.text-page li {
  color: var(--muted);
}

.site-footer {
  color: #4b5563;
  background: #f3f4f6;
  border-top: 1px solid var(--line);
  padding: 0 0 28px;
}

.footer-cta {
  position: relative;
  top: -48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 42px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.footer-cta h2 {
  color: var(--navy);
}

.footer-cta p {
  max-width: 680px;
  margin-top: 12px;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.9fr 0.85fr;
  gap: 34px;
  margin-top: 8px;
}

.footer-brand img {
  width: 220px;
  height: 86px;
  object-fit: contain;
  object-position: left center;
  padding: 8px;
  margin-bottom: 18px;
  background: var(--white);
  border-radius: 12px;
}

.site-footer h3 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-footer a {
  display: block;
  margin: 0 0 10px;
  color: #4b5563;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--navy);
}

.footer-address {
  margin-top: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.local-seo-links {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.local-seo-links h3 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.local-seo-links div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.local-seo-links a {
  margin: 0;
  font-size: 13px;
}

.recognition-quotes {
  margin-top: 22px;
}

.recognition-quotes p {
  color: var(--ink);
  font-size: 16px;
}

.recognition-quotes strong {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin: 0 !important;
  color: var(--white) !important;
  background: #2f343a;
  border-radius: 50%;
  box-shadow: 0 12px 26px rgba(17, 24, 39, 0.22);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 1020px) {
  .hero-grid,
  .service-layout,
  .contact-panel,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .sticky-card {
    position: static;
  }

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

  .section-head,
  .footer-cta {
    display: block;
  }

  .footer-cta .btn {
    margin-top: 24px;
  }
}

@media (max-width: 900px) {
  .menu-button {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 106px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 22px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

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

  .nav-menu a {
    padding: 13px 0;
  }

  .nav-menu > a:not(.nav-action),
  .dropdown-link {
    padding: 13px 0;
  }

  .nav-menu > a:not(.nav-action)::after,
  .dropdown-link::after {
    display: none;
  }

  .nav-dropdown {
    border-top: 1px solid var(--line);
  }

  .dropdown-panel {
    position: static;
    width: 100%;
    padding: 0 0 8px 14px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
  }

  .dropdown-panel a {
    padding: 9px 0;
    color: var(--muted);
  }

  .nav-action {
    margin-top: 8px;
  }
}

@media (max-width: 680px) {
  .wrap {
    width: min(100% - 28px, var(--max));
  }

  .brand img {
    width: 172px;
    height: 56px;
  }

  .top-bar {
    display: none;
  }

  .nav-menu {
    top: 72px;
  }

  .hero,
  .section,
  .page-hero {
    padding: 58px 0;
  }

  .hero {
    min-height: auto;
  }

  .metrics,
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .post-card {
    grid-template-columns: 1fr;
  }

  .image-stack {
    min-height: auto;
  }

  .logo-panel {
    position: static;
    width: 100%;
    margin-top: 18px;
  }

  .footer-cta {
    top: -28px;
    padding: 28px;
  }
}
.hero-visual-card {
  margin: 0 0 20px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(219, 231, 248, .9);
  box-shadow: 0 20px 60px rgba(11, 76, 160, .12);
}
.hero-visual-card img, .service-visual {
  width: 100%;
  display: block;
}
.service-visual {
  margin-bottom: 24px;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(11, 76, 160, .11);
}
.card.visual-card {
  padding: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff, #f7fbff);
}
.card.visual-card img {
  border-radius: 14px;
}
@media (max-width: 980px) {
  .hero-visual-card { margin-top: 26px; }
}
