:root {
  --blue: #005ca9;
  --blue-deep: #003d70;
  --blue-soft: #e9f3fb;
  --gold: #f7931e;
  --gold-soft: #fff3e5;
  --ink: #102033;
  --text: #294056;
  --muted: #6b7b8c;
  --line: rgba(0, 92, 169, 0.12);
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: #ffffff;
  --shadow: 0 24px 80px rgba(9, 37, 69, 0.12);
  --radius: 28px;
  --radius-sm: 20px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, #f6fbff 0%, #fdfdfc 54%, #f7fbff 100%);
  line-height: 1.6;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

.bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.65;
}

.orb-a {
  top: -10rem;
  left: -6rem;
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(247, 147, 30, 0.26), rgba(247, 147, 30, 0));
}

.orb-b {
  right: -8rem;
  top: 8rem;
  width: 34rem;
  height: 34rem;
  background: radial-gradient(circle, rgba(0, 92, 169, 0.22), rgba(0, 92, 169, 0));
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 92, 169, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 92, 169, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 82%);
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(16, 32, 51, 0.06);
}

.nav-row,
.footer-row,
.logo-strip-inner,
.statement,
.cta-panel {
  display: flex;
  align-items: center;
}

.nav-row {
  justify-content: space-between;
  gap: 1rem;
  min-height: 88px;
}

.brand-logo,
.footer-logo {
  width: auto;
  height: 38px;
}

.nav {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--muted);
  font-weight: 600;
}

.nav a,
.mobile-menu a {
  position: relative;
}

.nav a::after,
.mobile-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  transition: transform 0.22s ease;
}

.nav a:hover::after,
.mobile-menu a:hover::after {
  transform: scaleX(1);
}

.nav-actions,
.hero-actions,
.hero-points,
.cta-actions,
.footer-links,
.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--ink);
}

.mobile-menu {
  display: none;
  padding: 0 1rem 1rem;
  border-top: 1px solid rgba(16, 32, 51, 0.06);
}

.mobile-menu.is-open {
  display: grid;
  gap: 0.9rem;
}

.hero {
  padding: 5.5rem 0 4rem;
}

.hero-grid,
.split-layout {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
  align-items: center;
}

.eyebrow,
.section-tag,
.card-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}

.hero h1,
.section h2,
.showcase-content h2,
.contact-card h3,
.cta-panel h2 {
  margin: 0.7rem 0 0;
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: var(--ink);
}

.hero h1 {
  font-size: clamp(2.9rem, 6vw, 5.4rem);
  max-width: 11ch;
}

.hero-text,
.section-heading p,
.split-copy p,
.showcase-content p,
.contact-card p,
.statement p,
.faq-list p,
.footer p,
.gallery-card figcaption,
.pain-list li,
.coverage-card p {
  color: var(--muted);
}

.hero-text {
  max-width: 60ch;
  margin: 1.3rem 0 0;
  font-size: 1.08rem;
}

.hero-actions {
  margin-top: 2rem;
}

.hero-points {
  margin-top: 1.4rem;
}

.pain-list {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.pain-list li {
  position: relative;
  padding-left: 1.15rem;
}

.pain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(247, 147, 30, 0.12);
}

.hero-points span {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 92, 169, 0.08);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(9, 37, 69, 0.05);
}

.hero-panel {
  display: grid;
  gap: 1rem;
}

.showcase-card,
.contact-card,
.service-card,
.gallery-card,
.process-list article,
.faq-list details,
.cta-panel {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.showcase-card,
.contact-card,
.cta-panel {
  border-radius: var(--radius);
}

.showcase-card {
  overflow: hidden;
}

.showcase-media img {
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
}

.showcase-content {
  padding: 1.4rem 1.4rem 1.6rem;
}

.showcase-content h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.contact-card {
  padding: 1.4rem;
}

.contact-card h3 {
  font-size: 1.45rem;
}

.contact-list {
  margin-top: 1.25rem;
  display: grid;
}

.contact-list a {
  display: block;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(0, 92, 169, 0.08);
}

.contact-list strong,
.process-list strong {
  display: block;
  color: var(--ink);
}

.contact-list span {
  color: var(--blue);
  font-weight: 700;
}

.logo-strip {
  padding: 0 0 1rem;
}

.logo-strip-inner {
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.3rem;
  border-radius: 22px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.76), rgba(233, 243, 251, 0.9));
  border: 1px solid rgba(0, 92, 169, 0.08);
}

.logo-strip-inner p {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
}

.strip-logo {
  height: 42px;
  width: auto;
}

.section,
.cta-band {
  padding: 4.8rem 0;
}

.section-contrast {
  background:
    linear-gradient(180deg, rgba(233, 243, 251, 0.62), rgba(255, 255, 255, 0));
}

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

.section-heading.center {
  text-align: center;
  margin-inline: auto;
}

.section h2,
.cta-panel h2 {
  font-size: clamp(2rem, 3.4vw, 3.4rem);
}

.service-grid,
.gallery-grid,
.faq-list,
.coverage-grid {
  display: grid;
  gap: 1rem;
}

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

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

.service-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 24px;
  overflow: hidden;
}

.coverage-card {
  padding: 1.4rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
}

.accent-blue::before {
  background: linear-gradient(90deg, var(--blue), #47a9f0);
}

.accent-gold::before {
  background: linear-gradient(90deg, var(--gold), #ffb24d);
}

.service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 32px;
  padding: 0 0.9rem;
  border-radius: 999px;
  background: rgba(0, 92, 169, 0.08);
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.service-card h3,
.coverage-card h3,
.gallery-card figcaption,
.faq-list summary {
  margin: 1rem 0 0.45rem;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 800;
}

.coverage-card h3 {
  margin-top: 0;
}

.split-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

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

.process-list article {
  padding: 1.4rem;
  border-radius: 24px;
}

.process-list p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.gallery-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.gallery-card {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.gallery-card.large img {
  min-height: 100%;
}

.gallery-card figcaption {
  padding: 1rem 1.1rem 1.2rem;
}

.statement {
  justify-content: space-between;
  gap: 2rem;
}

.statement > * {
  flex: 1 1 0;
}

.faq-wrap {
  max-width: 860px;
}

.faq-list details {
  padding: 1.2rem 1.3rem;
  border-radius: 22px;
}

.faq-list summary {
  margin: 0;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 0.7rem 0 0;
}

.cta-band {
  padding-top: 1rem;
  padding-bottom: 6rem;
}

.cta-panel {
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.6rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(233, 243, 251, 0.94));
}

.footer {
  padding: 0 0 6.5rem;
}

.footer-row {
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(16, 32, 51, 0.08);
}

.footer-links {
  justify-content: flex-end;
}

.footer-links a {
  color: var(--ink);
  font-weight: 700;
}

.footer-copy {
  margin: 1rem auto 0;
  width: min(calc(100% - 2rem), var(--max));
  color: var(--muted);
}

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.4rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  width: auto;
  max-width: 260px;
  padding: 0.9rem 1.15rem 0.9rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #1fcf68, #10b958);
  color: #ffffff;
  box-shadow: 0 18px 44px rgba(16, 185, 88, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  opacity: 1;
  visibility: visible;
  white-space: nowrap;
  overflow: hidden;
  animation: whatsapp-pulse 1.9s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.01);
}

.whatsapp-float-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  overflow: hidden;
}

.whatsapp-float-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.whatsapp-float-copy {
  display: grid;
  line-height: 1.1;
  color: #ffffff;
}

.whatsapp-float-copy strong {
  font-size: 0.96rem;
  color: #ffffff;
}

.whatsapp-float-copy span {
  font-size: 0.78rem;
  opacity: 0.92;
  color: rgba(255, 255, 255, 0.92);
}

.sticky-mobile {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  gap: 0.75rem;
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(16, 32, 51, 0.08);
  backdrop-filter: blur(16px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

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

.btn-large {
  min-height: 56px;
  padding-inline: 1.45rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #ffae45);
  color: #3b2306;
  box-shadow: 0 18px 38px rgba(247, 147, 30, 0.26);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--blue), #247ccb);
  color: #f4fbff;
  box-shadow: 0 18px 38px rgba(0, 92, 169, 0.22);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #1fcf68, #10b958);
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(16, 185, 88, 0.28);
}

.sticky-mobile .btn-whatsapp {
  background: linear-gradient(135deg, #1fcf68, #10b958) !important;
  color: #ffffff !important;
  border-color: transparent !important;
  box-shadow: 0 18px 38px rgba(16, 185, 88, 0.28) !important;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.64);
  border-color: rgba(0, 92, 169, 0.12);
  color: var(--ink);
}

@media (min-width: 721px) {
  .whatsapp-float {
    display: flex !important;
  }
}

@media (max-width: 1040px) {
  .nav,
  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .hero-grid,
  .split-layout,
  .statement,
  .cta-panel,
  .footer-row,
  .logo-strip-inner {
    display: block;
  }

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

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

  .contact-card,
  .process-list,
  .cta-actions,
  .footer-links {
    margin-top: 1.25rem;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 4.2rem;
  }

  .service-grid,
  .coverage-grid,
  .gallery-grid,
  .process-list,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .hero-points,
  .cta-actions,
  .sticky-mobile {
    display: grid;
  }

  .sticky-mobile {
    grid-template-columns: 1fr 1fr;
  }

  .sticky-mobile .btn {
    width: 100%;
  }

  .footer {
    padding-bottom: 7rem;
  }

  .whatsapp-float {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .whatsapp-float-copy span {
    display: none;
  }

  .sticky-mobile {
    display: grid;
  }
}

@keyframes whatsapp-pulse {
  0%,
  100% {
    box-shadow: 0 18px 44px rgba(16, 185, 88, 0.34);
  }

  50% {
    box-shadow: 0 18px 44px rgba(16, 185, 88, 0.5), 0 0 0 10px rgba(31, 207, 104, 0.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .whatsapp-float,
  .nav a::after,
  .mobile-menu a::after {
    transition: none;
  }

  .whatsapp-float {
    animation: none;
  }
}
