:root {
  --ink: #101827;
  --muted: #5d6678;
  --line: #e8ebf0;
  --gold: #ffc400;
  --pink: #eb1d55;
  --teal: #00a98f;
  --blue: #1777e6;
  --navy: #07111f;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(18, 26, 42, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #f8f9fb;
}

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

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 28px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0;
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand-logo {
  width: 58px;
  height: 52px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 28px;
  border: 2px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.brand strong {
  display: block;
  font-size: 21px;
  line-height: 0.9;
}

.brand small {
  display: block;
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 4px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex: 1;
  font-size: 13px;
  font-weight: 700;
}

.main-nav a {
  opacity: 0.9;
}

.main-nav .active,
.main-nav a:hover {
  color: var(--gold);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.header-cta,
.btn-primary {
  background: var(--gold);
  color: #121212;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 720px;
  overflow: hidden;
  background: #000;
}

.hero-slideshow,
.slide,
.hero-overlay {
  position: absolute;
  inset: -1px;
}

.hero-slideshow {
  z-index: 0;
  overflow: hidden;
  background: #000;
}

.slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1100ms ease, transform 6000ms ease;
}

.slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.58) 52%, rgba(0, 0, 0, 0.76)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 64px;
  align-items: center;
  width: min(1120px, calc(100% - 40px));
  min-height: 720px;
  margin: 0 auto;
  padding-top: 90px;
}

.hero-copy {
  max-width: 720px;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 4px;
  background: var(--gold);
  color: #151515;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 24px 0 16px;
  font-size: clamp(40px, 6vw, 70px);
  line-height: 1.04;
  text-transform: uppercase;
}

.hero p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 700;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 36px 0;
}

.hero-stats span,
.why-stats span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  line-height: 1.35;
}

.hero-stats strong,
.why-stats strong {
  display: block;
  color: var(--gold);
  font-size: 24px;
  line-height: 1.1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.82);
  color: var(--white);
}

.quote-card {
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.quote-card h2 {
  margin: 0 0 20px;
  text-align: center;
  font-size: 18px;
  text-transform: uppercase;
}

.quote-card h2 span {
  color: var(--pink);
}

.quote-card label {
  display: block;
  margin-bottom: 12px;
}

.quote-card label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.quote-card input,
.quote-card select,
.quote-card textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #dce1e8;
  border-radius: 4px;
  padding: 0 14px;
  color: var(--ink);
  font: inherit;
  background: #fff;
}

.quote-card textarea {
  min-height: 74px;
  padding-top: 12px;
  resize: vertical;
}

.quote-card button {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 4px;
  background: var(--pink);
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.safe-note {
  margin: 14px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 12px;
}

.logo-strip {
  padding: 34px 20px 40px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  text-align: center;
}

.logo-strip p {
  margin: 0 0 28px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(96px, 1fr));
  gap: 26px 34px;
  align-items: center;
  width: min(1080px, 100%);
  margin: 0 auto;
}

.client-logo {
  justify-self: center;
  max-width: 150px;
  max-height: 54px;
  width: 100%;
  height: 54px;
  object-fit: contain;
}

.client-logo-wide {
  max-width: 185px;
}

.client-logo-square {
  max-width: 74px;
}

.client-logo-tall {
  max-height: 68px;
  height: 68px;
}

.section {
  width: min(1060px, calc(100% - 40px));
  margin: 0 auto;
  padding: 68px 0;
  text-align: center;
}

.section-kicker {
  background: transparent;
  color: var(--pink);
  padding: 0;
}

.section h2,
.why h2 {
  margin: 8px 0 34px;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.15;
  text-transform: uppercase;
}

.section h2::after,
.why h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin: 16px auto 0;
  background: var(--pink);
}

.services h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 4vw, 38px);
  text-transform: uppercase;
}

.section-intro {
  max-width: 720px;
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

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

.service-card {
  display: block;
  min-height: 188px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(28, 39, 57, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  border-color: rgba(235, 29, 85, 0.28);
  box-shadow: 0 16px 38px rgba(28, 39, 57, 0.13);
  transform: translateY(-3px);
}

.service-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
  text-transform: uppercase;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.service-detail-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 460px;
  overflow: hidden;
  background: #000;
  color: var(--white);
}

.service-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.58)),
    var(--service-image) center / cover;
}

.service-detail-inner {
  position: relative;
  z-index: 1;
  width: min(1060px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 80px;
}

.service-detail-inner h1 {
  max-width: 760px;
  margin: 18px 0 16px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  text-transform: uppercase;
}

.service-detail-inner p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.7;
  font-weight: 700;
}

.service-detail-content {
  width: min(1060px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 44px;
  align-items: start;
}

.service-copy h2,
.service-aside h2 {
  margin: 0 0 18px;
  font-size: 28px;
  line-height: 1.2;
  text-transform: uppercase;
}

.service-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.service-list,
.service-aside ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list li,
.service-aside li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.55;
}

.service-list li::before,
.service-aside li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--pink);
  font-weight: 900;
}

.service-aside {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(28, 39, 57, 0.08);
}

.service-detail-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
  padding: 28px;
  border-radius: 8px;
  background: #081323;
  color: var(--white);
}

.service-detail-cta strong {
  display: block;
  margin-bottom: 6px;
  font-size: 24px;
}

.service-detail-cta span {
  color: rgba(255, 255, 255, 0.74);
}

.why {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  padding: 52px max(20px, calc((100vw - 1060px) / 2));
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.93), rgba(0, 0, 0, 0.72)),
    url("assets/hero.jpg") center / cover;
  color: var(--white);
}

.why h2 {
  margin-bottom: 24px;
  text-align: left;
}

.why h2::after {
  margin-left: 0;
}

.why ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.why li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--gold);
  font-weight: 900;
}

.why-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.why-stats span {
  min-width: 0;
}

.why-stats strong {
  font-size: clamp(32px, 4vw, 42px);
}

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

.gallery figure {
  margin: 0;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1.6;
  border-radius: 6px;
  object-fit: cover;
}

.gallery figcaption {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.full-gallery {
  padding-top: 0;
}

.gallery-carousel {
  max-width: 960px;
  margin: 0 auto;
}

.gallery-viewport {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: 8px;
  background: #05070b;
  box-shadow: 0 18px 45px rgba(18, 26, 42, 0.14);
}

.gallery-track,
.gallery-slide {
  position: absolute;
  inset: 0;
}

.gallery-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 500ms ease, transform 1600ms ease;
}

.gallery-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.gallery-control,
.lightbox-control,
.lightbox-close {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.gallery-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 64px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.58);
  color: #fff;
  font-size: 42px;
  line-height: 1;
  transform: translateY(-50%);
}

.gallery-prev {
  left: 18px;
}

.gallery-next {
  right: 18px;
}

.gallery-open {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 4px;
  background: var(--gold);
  color: #121212;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) 80px;
  align-items: center;
  gap: 18px;
  padding: 74px 28px 42px;
  background: rgba(0, 0, 0, 0.94);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-image {
  justify-self: center;
  max-width: 100%;
  max-height: calc(100vh - 140px);
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
  position: fixed;
  top: 22px;
  right: 24px;
  z-index: 101;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 34px;
  line-height: 1;
}

.lightbox-control {
  display: grid;
  place-items: center;
  width: 62px;
  height: 78px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 54px;
  line-height: 1;
}

.lightbox-next {
  justify-self: end;
}

body.gallery-opened {
  overflow: hidden;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  text-align: left;
}

blockquote {
  margin: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(28, 39, 57, 0.08);
}

blockquote p {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.6;
}

blockquote cite {
  color: var(--ink);
  font-style: normal;
  font-weight: 900;
}

.final-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 34px max(20px, calc((100vw - 1060px) / 2));
  background: linear-gradient(90deg, #ff263f, #e81865);
  color: var(--white);
}

.final-cta strong,
.final-cta span {
  display: block;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
}

.btn-light {
  background: var(--white);
  color: var(--ink);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 36px;
  padding: 52px max(20px, calc((100vw - 1060px) / 2)) 28px;
  background: #081323;
  color: rgba(255, 255, 255, 0.82);
}

.footer-brand {
  color: var(--white);
  margin-bottom: 18px;
}

.site-footer h3 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.74);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.site-footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.88);
}

.site-footer .social-links svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer .social-links a:nth-child(n + 2) svg {
  fill: currentColor;
  stroke: none;
}

.site-footer .social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.copyright {
  grid-column: 1 / -1;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.35);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

@media (max-width: 960px) {
  .site-header {
    position: fixed;
    padding: 14px 16px;
    width: 100%;
    background: rgba(7, 17, 31, 0.92);
  }

  .main-nav {
    display: none;
  }

  .header-cta {
    margin-left: auto;
    min-height: 40px;
    padding: 0 14px;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 118px 0 54px;
  }

  .hero-stats,
  .why-stats,
  .service-grid,
  .testimonial-grid,
  .site-footer {
    grid-template-columns: repeat(2, 1fr);
  }

  .client-logo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 30px;
  }

  .quote-card {
    max-width: 540px;
  }

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

  .gallery-viewport {
    min-height: 430px;
  }

  .why,
  .final-cta,
  .service-detail-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .service-detail-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .brand strong {
    font-size: 17px;
  }

  .header-cta {
    font-size: 11px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero-stats,
  .why-stats,
  .service-grid,
  .testimonial-grid,
  .gallery,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .gallery-viewport {
    min-height: 320px;
  }

  .client-logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .client-logo {
    max-width: 135px;
    height: 48px;
  }

  .client-logo-square {
    max-width: 68px;
  }

  .gallery-lightbox {
    grid-template-columns: 54px minmax(0, 1fr) 54px;
    gap: 8px;
    padding: 72px 12px 42px;
  }

  .lightbox-control {
    width: 48px;
    height: 62px;
    font-size: 42px;
  }

  .lightbox-close {
    top: 14px;
    right: 14px;
  }

  .quote-card {
    padding: 22px;
  }

  .final-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-detail-inner h1 {
    font-size: 38px;
  }

  .service-detail-content {
    padding: 46px 0;
  }
}
