:root {
  --bg: #0b0d12;
  --bg-soft: #12151c;
  --card: #181c26;
  --line: #2a3140;
  --text: #f2f4f8;
  --muted: #9aa3b2;
  --amber: #f5b301;
  --amber-2: #ffcc33;
  --amber-ink: #1a1403;
  --red: #e11d2e;
  --whatsapp: #25d366;
  --shadow: 0 16px 40px rgba(0, 0, 0, .35);
  --radius: 18px;
  --header: 76px;
  --max: 1160px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  padding-bottom: 76px;
}

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

a {
  color: var(--amber);
  text-decoration: none;
}

a:hover {
  color: var(--amber-2);
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--amber);
  color: var(--amber-ink);
  padding: 8px 12px;
  z-index: 100;
  border-radius: 8px;
}

.skip-link:focus {
  top: 12px;
}

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

.topbar {
  background: #08090d;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-height: 36px;
}

.topbar a {
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 13, 18, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header);
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.brand img {
  width: 188px;
  height: auto;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 6px;
}

.nav-desktop a,
.drop-btn {
  color: var(--text);
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14.5px;
  background: none;
  border: 0;
  cursor: pointer;
}

.nav-desktop a:hover,
.drop-btn:hover,
.nav-desktop a.is-active {
  color: var(--amber);
  background: rgba(245, 179, 1, .08);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  background: #151922;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 8px;
  box-shadow: var(--shadow);
  z-index: 60;
}

.dropdown.is-open .dropdown-menu {
  display: grid;
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--text);
}

.header-cta,
.btn.header-cta {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  transition: .2s ease;
}

.btn:focus-visible,
.nav-desktop a:focus-visible,
.drop-btn:focus-visible,
.nav-toggle:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
}

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

.btn-amber:hover {
  background: var(--amber-2);
  color: var(--amber-ink);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #06210f;
}

.btn-red {
  background: var(--red);
  color: #fff;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--text);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.mobile-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #10131a;
  border-top: 1px solid var(--line);
  padding: 12px 0 20px;
  max-height: min(70vh, 560px);
  overflow-y: auto;
  box-shadow: var(--shadow);
  z-index: 55;
}

.mobile-panel a,
.mobile-panel .drop-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 0;
  color: var(--text);
  font-weight: 600;
  background: none;
  border: 0;
}

.mobile-sub {
  display: none;
  padding-left: 10px;
  border-left: 2px solid var(--amber);
  margin: 0 0 8px 6px;
}

.dropdown.is-open .mobile-sub {
  display: block;
}

.mobile-sub a {
  font-weight: 500;
  color: var(--muted);
  font-size: 14px;
}

body.nav-open,
body.lb-open {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: clamp(560px, 86vh, 720px);
  display: grid;
  place-items: end start;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 9, 13, .86) 0%, rgba(8, 9, 13, .55) 48%, rgba(8, 9, 13, .28) 100%),
    linear-gradient(180deg, rgba(8, 9, 13, .25) 0%, rgba(8, 9, 13, .15) 50%, rgba(8, 9, 13, .7) 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 48px 0 56px;
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--amber);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 12px;
}

.hero h1,
.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -.03em;
}

.hero p {
  color: #d5dbe6;
  font-size: 17px;
  margin: 0 0 22px;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-dots {
  position: absolute;
  right: 20px;
  bottom: 22px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, .35);
  cursor: pointer;
}

.hero-dots button.is-active {
  background: var(--amber);
}

.page-hero {
  position: relative;
  min-height: 320px;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero .hero-overlay {
  background: linear-gradient(180deg, rgba(8, 9, 13, .25), rgba(8, 9, 13, .82));
}

.page-hero .container {
  position: relative;
  z-index: 2;
  padding: 48px 16px 36px;
}

.trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: -36px;
  position: relative;
  z-index: 4;
}

.trust-item,
.card,
.region-card,
.service-card,
.contact-card,
.seo-block {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.trust-item {
  padding: 18px;
}

.trust-item strong {
  display: block;
  font-size: 18px;
}

.trust-item span {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 64px 0;
}

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

.section-head h2,
.seo-block h2,
.contact-card h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -.02em;
}

.section-head p,
.lead {
  color: var(--muted);
  margin: 0;
}

.grid-3,
.grid-4,
.gallery-grid,
.region-grid {
  display: grid;
  gap: 16px;
}

.grid-3,
.gallery-grid,
.region-grid {
  grid-template-columns: 1fr;
}

.service-card,
.region-card {
  padding: 22px;
  transition: .2s ease;
}

.service-card:hover,
.region-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 179, 1, .45);
}

.icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(245, 179, 1, .12);
  color: var(--amber);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

.service-card h3,
.region-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.service-card p,
.region-card p {
  margin: 0;
  color: var(--muted);
}

.gallery-grid a {
  display: block;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform .4s ease;
}

.gallery-grid a:hover img {
  transform: scale(1.04);
}

.seo-wrap {
  display: grid;
  gap: 18px;
}

.seo-block {
  padding: 28px 22px;
}

.seo-block h2 {
  color: var(--amber);
  font-size: 26px;
}

.seo-block p,
.seo-block .lead {
  color: #dce2ec;
  font-size: 16.5px;
}

.seo-block b {
  color: #fff;
  font-weight: 700;
}

.map-wrap {
  border-radius: 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

.site-footer {
  background: #08090d;
  border-top: 1px solid var(--line);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  gap: 28px;
}

.site-footer h3 {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 16px;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 8px;
}

.site-footer a {
  color: #c9d0dc;
}

.legal {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.float-cta {
  position: fixed;
  right: 14px;
  bottom: 86px;
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 40;
}

.float-cta a {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  color: #fff;
}

.float-cta .wa {
  background: var(--whatsapp);
}

.float-cta .call {
  background: var(--red);
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(11, 13, 18, .96);
  border-top: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  gap: 16px;
}

.contact-card {
  padding: 24px;
}

.contact-card p {
  color: var(--muted);
}

.faq details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 10px;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.faq p {
  color: var(--muted);
  margin: 10px 0 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .86);
  display: grid;
  place-items: center;
  z-index: 80;
  padding: 20px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 86vh;
  border-radius: 12px;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 22px;
  cursor: pointer;
}

@media (min-width: 700px) {
  .trust {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

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

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }

  .nav-desktop,
  .header-cta,
  .btn.header-cta,
  .float-cta {
    display: flex;
  }

  .nav-toggle,
  .mobile-panel,
  .mobile-cta {
    display: none;
  }

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

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

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  }

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

  .seo-block {
    padding: 36px 40px;
  }
}
