:root {
  color-scheme: light;
  --black: #050608;
  --ink: #15171b;
  --muted: #68717d;
  --line: #e2e6ec;
  --white: #ffffff;
  --soft: #f5f7fa;
  --silver: #cfd5de;
  --blue: #126ee2;
  --green: #0a8b5c;
  --shadow: 0 18px 48px rgba(5, 6, 8, 0.12);
}

* { 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: var(--white);
  line-height: 1.62;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 6, 8, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1120px, calc(100% - 40px));
  min-height: 72px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 9px 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.93rem;
  font-weight: 800;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px;
  background: var(--white);
}

.hero {
  position: relative;
  width: 100%;
  min-height: 78vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.9), rgba(5, 6, 8, 0.48) 52%, rgba(5, 6, 8, 0.18)),
    linear-gradient(0deg, rgba(5, 6, 8, 0.6), rgba(5, 6, 8, 0.05));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
  padding: 92px 0;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
}

.status-card {
  position: absolute;
  right: max(20px, calc((100vw - 1120px) / 2));
  bottom: 32px;
  z-index: 2;
  width: min(320px, calc(100% - 40px));
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--white);
  background: rgba(5, 6, 8, 0.68);
  backdrop-filter: blur(12px);
}

.status-card strong,
.status-card span {
  display: block;
}

.hero h1,
.page-hero h1,
.booking-copy h1,
.contact-hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2.45rem, 7vw, 5.3rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero-subtitle,
.page-hero p,
.booking-copy p,
.contact-hero p,
.split-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero .hero-subtitle {
  color: rgba(255, 255, 255, 0.82);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #8bbcff;
}

.hero-actions,
.payment-badges,
.trust-row,
.trust-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-actions {
  margin: 30px 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(5, 6, 8, 0.16);
}

.btn.primary {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.btn.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
}

.page-hero .btn.secondary,
.booking-section .btn.secondary,
.contact-hero .btn.secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.trust-row span,
.trust-stack span,
.payment-badges span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--soft);
  font-size: 0.88rem;
  font-weight: 850;
}

.hero .trust-row span {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.section-heading,
.split-section,
.service-grid,
.pricing-layout,
.booking-section,
.contact-hero,
.contact-grid,
.faq-list,
.legal-note,
.badge-grid,
.testimonial-grid,
.page-hero {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.band,
.testimonials,
.faq-section {
  padding: 82px 0;
  background: var(--soft);
}

.section-heading {
  margin-bottom: 30px;
}

.section-heading h2,
.split-copy h2,
.legal-note h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(1.9rem, 4.5vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.badge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.badge-card {
  min-height: 230px;
  padding: 28px;
  background: var(--white);
}

.badge-card h3,
.badge-card p {
  margin-bottom: 0;
}

.badge-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
}

.split-section {
  padding: 88px 0;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 58px;
  align-items: start;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  border-top: 1px solid var(--line);
}

.process-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 64px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 900;
}

.process-list span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border-radius: 8px;
  color: var(--white);
  background: var(--black);
}

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

.testimonial {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(5, 6, 8, 0.04);
}

.testimonial img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 14px;
}

.testimonial p {
  margin-top: 0;
}

.testimonial strong,
.testimonial span {
  display: block;
}

.testimonial span,
.service-card p,
.service-card small,
.contact-options p,
.social-card small,
.contact-card p,
.faq-list p,
.price-panel p,
.payment-panel p {
  color: var(--muted);
}

.legal-note {
  margin-top: 76px;
  margin-bottom: 76px;
  padding: 30px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--blue);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.page-hero {
  padding: 78px 0 34px;
}

.service-grid,
.pricing-layout,
.contact-grid {
  padding: 24px 0 88px;
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: 1fr;
}

.service-card {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) auto;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(5, 6, 8, 0.04);
}

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

.service-card h2,
.service-card p,
.service-card small {
  margin-left: 24px;
  margin-right: 24px;
}

.service-card h2 {
  margin-top: 24px;
  margin-bottom: 0;
}

.service-card p {
  margin-top: 8px;
}

.service-card strong,
.service-card span {
  display: block;
  margin-right: 24px;
  margin-left: 0;
}

.service-card strong {
  align-self: center;
  min-width: 145px;
  padding-top: 24px;
  color: var(--blue);
  font-size: 1.15rem;
  white-space: nowrap;
}

.service-card span {
  margin-top: 10px;
  font-weight: 850;
}

.service-card small {
  display: block;
  margin-top: 10px;
  margin-bottom: 24px;
}

.pricing-layout {
  grid-template-columns: 1fr;
}

.price-panel,
.payment-panel,
.contact-card,
.contact-options,
.faq-list details {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(5, 6, 8, 0.04);
}

.price-panel {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.price-panel h2,
.payment-panel h2,
.contact-card h2,
.contact-options h2 {
  margin-top: 0;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.price-row strong {
  color: var(--blue);
  white-space: nowrap;
}

.note,
.form-reassurance {
  color: var(--muted);
  font-weight: 850;
}

.booking-section {
  padding: 78px 0 88px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.contact-options {
  display: grid;
  gap: 18px;
}

.contact-options h2,
.contact-options p {
  margin-bottom: 0;
}

.social-grid {
  display: grid;
  gap: 12px;
}

.social-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 4px 18px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.social-card:last-child {
  border-bottom: 0;
}

.social-card span {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.social-card strong {
  font-size: 1.05rem;
}

.social-card small {
  grid-column: 2;
}

.social-card.whatsapp span { color: #0b8f5a; }
.social-card.facebook span { color: #1877f2; }
.social-card.instagram span { color: #c13584; }
.social-card.tiktok span { color: #111111; }
.social-card.email span { color: var(--blue); }

.contact-hero {
  padding: 78px 0 34px;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 52px;
  align-items: center;
}

.contact-image {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.faq-list {
  display: grid;
  gap: 12px;
}

summary {
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 900;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 28px rgba(10, 139, 92, 0.25);
  font-weight: 950;
}

.chat-pop {
  position: fixed;
  right: 18px;
  bottom: 78px;
  z-index: 59;
  width: min(300px, calc(100vw - 36px));
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease, transform 250ms ease;
}

.chat-pop.visible {
  opacity: 1;
  transform: translateY(0);
}

.footer {
  padding: 34px 16px 86px;
  text-align: center;
  background: var(--black);
}

.footer p {
  margin: 6px 0;
  color: #eef2f7;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 20px;
    right: 20px;
    display: none;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: var(--black);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: grid;
  }

  .hero {
    min-height: 70vh;
  }

  .badge-grid,
  .testimonial-grid,
  .split-section,
  .booking-section,
  .contact-hero,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .price-panel {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .service-card strong,
  .service-card span {
    margin-left: 24px;
  }
}

@media (max-width: 640px) {
  .nav,
  .hero-content,
  .section-heading,
  .split-section,
  .service-grid,
  .pricing-layout,
  .booking-section,
  .contact-hero,
  .contact-grid,
  .faq-list,
  .legal-note,
  .badge-grid,
  .testimonial-grid,
  .page-hero {
    width: min(100% - 28px, 1120px);
  }

  .brand span:last-child {
    max-width: 170px;
    white-space: normal;
  }

  .hero {
    min-height: 0;
  }

  .hero-content {
    padding: 70px 0 110px;
  }

  .hero h1,
  .page-hero h1,
  .booking-copy h1,
  .contact-hero h1 {
    font-size: clamp(2.1rem, 12vw, 3.4rem);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .status-card {
    left: 14px;
    right: 14px;
    bottom: 18px;
    width: auto;
  }

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

  .service-card img {
    height: 180px;
  }

  .service-card strong {
    padding-top: 0;
  }

  .service-card h2,
  .service-card p,
  .service-card strong,
  .service-card span,
  .service-card small {
    margin-left: 18px;
    margin-right: 18px;
  }

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

  .social-card small {
    grid-column: auto;
  }

  .band,
  .testimonials,
  .faq-section {
    padding: 58px 0;
  }
}
