:root {
  --navy: #1c3044;
  --navy-deep: #132233;
  --navy-mid: #2a445c;
  --steel: #7ea0b8;
  --orange: #e8892a;
  --orange-dark: #c96e16;
  --paper: #eef2f6;
  --white: #ffffff;
  --ink: #1a2430;
  --muted: #5c6b7a;
  --line: #dce3ea;
  --shadow: 0 18px 50px rgba(19, 34, 51, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Manrope, system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  color: var(--orange);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

h1,
h2,
h3 {
  line-height: 1.15;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  max-width: 14ch;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn-accent {
  background: var(--orange);
  color: var(--white);
}

.btn-accent:hover {
  background: var(--orange-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #fff;
  display: grid;
  place-items: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.intro.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-skip {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: 1px solid var(--line);
  color: var(--navy);
  border-radius: 999px;
  padding: 10px 16px;
  min-height: 44px;
  font: inherit;
  cursor: pointer;
}

.logo-stage {
  text-align: center;
}

.logo-assemble {
  position: relative;
  width: min(380px, 84vw);
  aspect-ratio: 1 / 1.1;
  margin: 0 auto 18px;
  overflow: visible;
}

.logo-part {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center 46%;
  transition: transform 1.05s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.7s ease;
}

.part-top {
  clip-path: inset(0 0 45% 0);
  transform: translateY(-88px) scaleY(1.16);
  opacity: 0;
}

.part-mid {
  clip-path: inset(36% 0 36% 0);
  transform: scaleX(0.4) scaleY(1.16);
  opacity: 0;
}

.part-bot {
  clip-path: inset(52% 0 0 0);
  transform: translateY(88px) scaleY(1.16);
  opacity: 0;
}

.logo-assemble.is-in .part-top,
.logo-assemble.is-in .part-mid,
.logo-assemble.is-in .part-bot {
  transform: scaleY(1.16);
  opacity: 1;
}

.intro-slogan {
  opacity: 0;
  transform: translateY(10px);
  transition: 0.5s ease 0.35s;
  font-weight: 800;
  color: var(--navy);
  font-size: clamp(1rem, 2.4vw, 1.35rem);
  margin-bottom: 8px;
}

.intro-url {
  opacity: 0;
  transform: translateY(10px);
  transition: 0.5s ease 0.5s;
  font-weight: 600;
  color: var(--muted);
}

.logo-assemble.is-in + .intro-slogan,
.logo-assemble.is-in + .intro-slogan + .intro-url {
  opacity: 1;
  transform: none;
}

.page {
  opacity: 0;
}

.page.is-visible {
  opacity: 1;
  transition: opacity 0.6s ease;
}

.topbar {
  background: var(--navy-deep);
  color: #c9d6e2;
  font-size: 0.86rem;
}

.topbar-inner,
.topbar-links {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  min-height: 42px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 96px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
}

.brand img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  background: #fff;
  border-radius: 12px;
}

.brand strong {
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.brand small {
  display: block;
  font-weight: 600;
  color: var(--muted);
  font-size: 0.86rem;
}

.nav {
  margin-left: auto;
  display: flex;
  gap: 22px;
  font-weight: 700;
  color: var(--navy);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--paper);
  border-radius: 10px;
}

.menu-btn span {
  display: block;
  height: 2px;
  margin: 6px 10px;
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: 72vh;
  color: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-slides,
.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide {
  background-color: var(--navy);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.08) translateX(18px);
  transition: opacity 1.1s ease, transform 8s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1) translateX(0);
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(16, 28, 41, 0.82) 0%, rgba(16, 28, 41, 0.42) 58%, rgba(16, 28, 41, 0.18) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 56px 0 28px;
}

.hero-lead {
  max-width: 58ch;
  margin: 18px 0 28px;
  color: #d7e2eb;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-facts {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 36px;
  background: var(--white);
  color: var(--ink);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-facts article {
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}

.hero-facts article:last-child {
  border: 0;
}

.hero-facts strong {
  display: block;
  color: var(--navy);
}

.services,
.brands,
.reviews,
.contact {
  padding: 88px 0;
}

.section-head {
  margin-bottom: 36px;
}

.services {
  background: #f4f1ea;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  background: var(--white);
  padding: 0 0 22px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #eadfd0;
  transition: 0.25s ease;
}

.service-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.service-card h3,
.service-card p,
.service-card .icon {
  margin-left: 20px;
  margin-right: 20px;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: #f0d2b0;
  box-shadow: var(--shadow);
}

.service-card .icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--orange);
  font-weight: 800;
  margin: -22px 0 12px 20px;
  position: relative;
}

.about {
  padding: 20px 0 88px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 440px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, #2a3d52 0%, #152232 55%, #101820 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo-glow {
  position: absolute;
  width: 72%;
  height: 58%;
  left: 14%;
  top: 16%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 210, 120, 0.9) 0%, rgba(232, 137, 42, 0.5) 42%, transparent 72%);
  filter: blur(18px);
  animation: glowPulse 2.6s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

.about-logo-wrap {
  width: min(360px, 82%);
  aspect-ratio: 1.55 / 1;
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  box-shadow:
    0 0 0 6px #fff,
    0 0 0 7px rgba(90, 110, 128, 0.35),
    0 0 48px rgba(232, 137, 42, 0.55);
}

.about-logo {
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  object-fit: contain !important;
  transform: none;
  border-radius: 0;
  filter: none;
}

.bolt {
  position: absolute;
  width: 22px;
  height: 210px;
  background: linear-gradient(#fffbe6, #ffe08a, var(--orange));
  clip-path: polygon(40% 0, 72% 0, 48% 40%, 82% 40%, 16% 100%, 38% 50%, 8% 50%);
  filter: drop-shadow(0 0 16px #ffe08a);
  opacity: 0;
  z-index: 3;
}

.bolt-a {
  top: 0;
  left: 16%;
  animation: strike 2.4s 0.2s infinite;
}

.bolt-b {
  top: 12px;
  right: 14%;
  height: 230px;
  transform: scaleX(-1);
  animation: strike 2.8s 0.9s infinite;
}

.bolt-c {
  bottom: 42px;
  left: 44%;
  height: 150px;
  animation: strike 3.1s 1.5s infinite;
}

.bolt-d {
  top: 36px;
  left: 58%;
  height: 190px;
  transform: rotate(12deg);
  animation: strike 2.6s 0.5s infinite;
}

@keyframes strike {
  0%,
  84%,
  100% {
    opacity: 0;
  }
  87%,
  93% {
    opacity: 1;
  }
  90% {
    opacity: 0.4;
  }
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.96);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes logoPulse {
  0%,
  100% {
    filter: drop-shadow(0 0 14px rgba(255, 190, 80, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 28px rgba(255, 190, 80, 0.8));
  }
}

.about-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 5;
  background: var(--navy);
  color: var(--white);
  padding: 16px 18px;
  border-radius: 14px;
}

.about-badge strong {
  display: block;
  color: var(--orange);
}

.checks {
  margin-top: 18px;
  list-style: none;
}

.checks li {
  padding-left: 22px;
  position: relative;
  margin: 8px 0;
}

.checks li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  position: absolute;
  left: 0;
  top: 10px;
}

.process {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0;
}

.slogan {
  color: var(--orange);
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.process-lead {
  max-width: 52ch;
  color: #c9d6e2;
  margin: -8px 0 28px;
}

.section-head.light .eyebrow {
  color: var(--steel);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.process-grid article {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px;
  border-radius: 18px;
}

.process-grid span {
  color: var(--orange);
  font-size: 1.6rem;
  font-weight: 800;
}

.marquee {
  overflow: hidden;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0;
  background: linear-gradient(180deg, #2a3d52 0%, #152232 100%);
  border-radius: 28px;
}

.marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: slide 36s linear infinite;
  align-items: center;
}

.brands-head {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brands-emblem {
  width: 86px;
  height: 86px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-cap-top,
.brand-cap-bot {
  display: none;
}

.brand-frame {
  position: relative;
  flex: 0 0 168px;
  width: 168px;
  height: 96px;
  margin: 0;
  border-radius: 48px;
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 0 0 4px #fff,
    0 0 22px rgba(232, 137, 42, 0.35);
  display: grid;
  place-items: center;
}

.brand-window {
  height: 100%;
  width: 100%;
  display: grid;
  place-items: center;
  background: #fff;
  border: 0;
  padding: 12px 16px;
}

.brand-frame img {
  max-width: 88%;
  max-height: 42px;
  width: auto;
  height: auto;
  object-fit: contain;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.333%);
  }
}

.reviews {
  background: var(--paper);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  align-items: stretch;
}

.map-wrap {
  height: 100%;
  min-height: 100%;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  border-radius: 18px;
}

.google-score {
  display: flex;
  gap: 14px;
  background: var(--white);
  padding: 16px;
  border-radius: 16px;
  margin: 18px 0;
}

.google-score img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
}

.stars em {
  font-style: normal;
  color: var(--ink);
  letter-spacing: 0;
  margin-left: 6px;
  font-weight: 800;
}

.review-slider {
  position: relative;
  min-height: 180px;
  margin-bottom: 12px;
}

.review-card {
  background: var(--white);
  padding: 22px;
  border-radius: 16px;
  margin-bottom: 0;
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.review-card.is-active {
  position: relative;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.review-dots {
  display: flex;
  gap: 8px;
  margin: 0 0 18px;
}

.review-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #cfd8e1;
  cursor: pointer;
}

.review-dots button.is-active {
  background: var(--orange);
  width: 22px;
  border-radius: 999px;
}

.stars {
  color: #f4b400;
  letter-spacing: 2px;
}

.review-card cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-weight: 700;
  color: var(--navy);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-list {
  list-style: none;
  margin-top: 18px;
}

.contact-list li {
  margin-bottom: 14px;
}

.contact-list strong {
  display: block;
  color: var(--navy);
}

.contact-form {
  display: grid;
  gap: 12px;
  background: var(--paper);
  padding: 24px;
  border-radius: 20px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 700;
  font-size: 0.92rem;
}

.contact-form input,
.contact-form textarea {
  font: inherit;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
}

.footer {
  background: var(--navy-deep);
  color: #c9d6e2;
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer .brand {
  color: var(--white);
}

.footer .brand img {
  width: 52px;
  height: 52px;
}

.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  background: #25d366;
  color: #fff;
  font-weight: 800;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

@media (max-width: 1100px) {
  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    background: #fff;
    flex-direction: column;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .menu-btn {
    display: block;
    margin-left: auto;
  }

  .header-cta {
    display: none;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .container {
    width: min(1180px, calc(100% - 28px));
  }

  .hero-content {
    padding: 48px 0 20px;
  }

  .process-grid,
  .about-grid,
  .reviews-grid,
  .contact-grid,
  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-visual {
    min-height: 430px;
    height: 430px;
    padding: 0 12px 96px;
    justify-content: center;
    gap: 0;
  }

  .about-logo-wrap {
    width: min(268px, 74%);
    margin: 0 auto;
  }

  .logo-glow {
    width: 86%;
    height: 58%;
    top: 12%;
    left: 7%;
  }

  .about-badge {
    position: absolute;
    left: 14px;
    bottom: 14px;
    right: auto;
    width: max-content;
    max-width: calc(100% - 28px);
    margin: 0;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .map-wrap iframe {
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  .topbar {
    font-size: 0.78rem;
  }

  .topbar-inner,
  .topbar-links {
    justify-content: center;
    text-align: center;
    gap: 8px;
    padding: 8px 0;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 56px 0 24px;
  }

  h1 {
    max-width: 100%;
  }

  .whatsapp {
    right: 12px;
    bottom: 12px;
  }

  .brand-frame {
    flex-basis: 140px;
    width: 140px;
    height: 84px;
    border-radius: 42px;
  }

  .about-visual {
    min-height: 400px;
    height: 400px;
    padding: 0 10px 90px;
  }

  .about-logo-wrap {
    width: min(240px, 72%);
  }

  .logo-glow {
    width: 88%;
    height: 56%;
    top: 10%;
    left: 6%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-part,
  .marquee-track,
  .hero-slide,
  .intro,
  .bolt,
  .about-logo,
  .logo-glow {
    animation: none !important;
    transition: none !important;
  }

  .bolt {
    opacity: 0.55;
  }

  .logo-glow {
    opacity: 0.85;
  }
}


/* Optional dark appearance. Brand logos and photographs keep their colors. */
:root { color-scheme: light; }
.theme-toggle {
  flex-shrink: 0; min-height: 44px; padding: 9px 12px;
  border: 1px solid var(--line); border-radius: 999px;
  background: var(--paper); color: var(--ink); font: inherit;
  font-size: .8rem; font-weight: 700; cursor: pointer;
}
.theme-toggle:focus-visible, .menu-btn:focus-visible {
  outline: 3px solid var(--orange); outline-offset: 3px;
}
html[data-theme="dark"] {
  color-scheme: dark;
  --ink: #e6edf5; --muted: #b3c2d1; --line: #3b4b5e; --paper: #182536;
}
html[data-theme="dark"] body { background: #101a27; }
html[data-theme="dark"] .header { background: rgba(16,26,39,.97); }
html[data-theme="dark"] .nav,
html[data-theme="dark"] .hero-facts strong,
html[data-theme="dark"] .review-card cite,
html[data-theme="dark"] .contact-list strong { color: #e6edf5; }
html[data-theme="dark"] .services { background: #142030; }
html[data-theme="dark"] .service-card,
html[data-theme="dark"] .hero-facts,
html[data-theme="dark"] .google-score,
html[data-theme="dark"] .review-card { background: #1c2b3d; border-color: var(--line); }
html[data-theme="dark"] .contact-form input,
html[data-theme="dark"] .contact-form textarea { background: #101a27; color: var(--ink); }
html[data-theme="dark"] .contact-form input::placeholder,
html[data-theme="dark"] .contact-form textarea::placeholder { color: var(--muted); opacity: 1; }
html[data-theme="dark"] .menu-btn span { background: var(--ink); }
html[data-theme="dark"] .intro { background: #101a27; }
html[data-theme="dark"] .intro-slogan,
html[data-theme="dark"] .intro-skip { color: var(--ink); }
@media (max-width: 1100px) {
  html[data-theme="dark"] .nav { background: #182536; }
  .theme-toggle { margin-left: auto; }
  .menu-btn { margin-left: 0; flex-shrink: 0; }
}
@media (min-width: 1101px) and (max-width: 1280px) {
  .header-inner { gap: 12px; }
  .nav { gap: 14px; }
  .header-cta { padding: 12px 14px; }
}
@media (max-width: 640px) {
  .header-inner { gap: 8px; }
  .header .brand { gap: 8px; }
  .header .brand img { width: 52px; height: 60px; }
  .header .brand strong { font-size: 1rem; }
  .header .brand small { font-size: .65rem; }
  .theme-toggle { padding: 8px; font-size: .72rem; }
}
@media (max-width: 359px) {
  .header .brand img { width: 40px; }
  .header .brand strong { font-size: .88rem; }
}


/* Quiet icon-only theme control; retain a comfortable touch target. */
.theme-toggle {
  display: inline-grid; place-items: center; width: 44px; height: 44px;
  padding: 0; border: 0; border-radius: 50%;
  background: transparent; color: var(--muted);
  transition: background-color .15s ease, color .15s ease;
}
.theme-toggle:hover { background: var(--paper); color: var(--ink); }
.theme-toggle svg {
  width: 19px; height: 19px; fill: none; stroke: currentColor;
  stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
}
.theme-toggle .theme-sun { display: none; }
html[data-theme="dark"] .theme-toggle .theme-moon { display: none; }
html[data-theme="dark"] .theme-toggle .theme-sun { display: block; }
