:root {
  --bg: #080b12;
  --surface: #0f1522;
  --surface2: #151d2e;
  --text: #f7f8fb;
  --muted: #9ba7bb;
  --line: rgba(255, 255, 255, .12);
  --primary: #4ade80;
  --primary2: #22c55e;
  --gold: #f8d477;
  --radius: 28px;
  --shadow: 0 18px 42px rgba(0, 0, 0, .28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, .18), transparent 34%),
    radial-gradient(circle at 80% 10%, rgba(248, 212, 119, .12), transparent 32%),
    var(--bg);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
p { color: var(--muted); line-height: 1.7; }

.topbar {
  display: flex;
  justify-content: center;
  gap: 18px;
  align-items: center;
  padding: 10px 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 11, 18, .72);
  backdrop-filter: blur(16px);
  font-size: 14px;
}

.topbar p { margin: 0; }
.topbar a { color: var(--primary); font-weight: 800; }
.wa-link,
.header-cta,
.btn-primary,
.floating-wa {
  gap: 8px;
}

.wa-link .fa-whatsapp,
.header-cta .fa-whatsapp,
.btn-primary .fa-whatsapp,
.floating-wa .fa-whatsapp {
  font-size: 1.15em;
  line-height: 1;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1080px, calc(100% - 36px));
  margin: 14px auto 0;
  padding: 12px 18px;
  background: rgba(35, 54, 83, .92);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(180, 206, 244, .28);
  border-radius: 8px;
  box-shadow:
    0 0 0 1px rgba(8, 11, 18, .36),
    inset 0 1px 0 rgba(255, 255, 255, .14),
    inset 0 -1px 0 rgba(8, 11, 18, .42),
    0 16px 34px rgba(0, 0, 0, .28);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding-right: 28px;
  margin-right: 18px;
  border-right: 1px solid rgba(255, 255, 255, .22);
}
.brand-logo {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .28);
}

.brand strong,
.brand small { display: block; }
.brand strong {
  font-size: 20px;
  line-height: 1.05;
  letter-spacing: -.02em;
}
.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.nav { display: flex; gap: 10px; color: #fff; font-size: 14px; align-items: center; }
.nav a,
.nav-explore summary {
  padding: 9px 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: .2s ease;
}
.nav a:hover,
.nav-explore summary:hover,
.nav-explore[open] summary {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .22);
  color: #fff;
  transform: translateY(-1px);
}
.nav-explore {
  position: relative;
}
.nav-explore summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  cursor: pointer;
}
.nav-explore summary::-webkit-details-marker { display: none; }
.nav-explore summary:after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: .2s ease;
}
.nav-explore[open] summary:after {
  transform: translateY(1px) rotate(225deg);
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 40;
  display: grid;
  min-width: 210px;
  padding: 8px;
  background: rgba(35, 54, 83, .98);
  border: 1px solid rgba(180, 206, 244, .28);
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, .32);
}
.nav-dropdown a {
  display: block;
  border-radius: 8px;
  white-space: nowrap;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition: .2s ease;
}

.header-cta {
  width: 48px;
  height: 48px;
  padding: 0;
  background: #fff;
  color: #07100b;
  font-size: 22px;
}
.btn { padding: 15px 22px; border: 1px solid var(--line); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #07100b;
  border: 0;
  box-shadow: 0 16px 34px rgba(34, 197, 94, .22);
}
.btn-secondary { background: rgba(255, 255, 255, .06); color: #fff; }
.btn:hover { transform: translateY(-2px); }
.btn-primary:hover,
.header-cta:hover,
.floating-wa:hover,
.footer-btn.primary:hover {
  background: linear-gradient(135deg, #86efac, var(--primary));
  color: #051008;
  box-shadow: 0 20px 42px rgba(34, 197, 94, .34);
}
.header-cta:hover,
.floating-wa:hover,
.footer-btn.primary:hover {
  transform: translateY(-2px);
}
.header-cta:hover .fa-whatsapp,
.floating-wa:hover .fa-whatsapp,
.footer-btn.primary:hover .fa-whatsapp,
.btn-primary:hover .fa-whatsapp {
  transform: scale(1.08);
}

.menu-toggle {
  display: none;
  background: transparent;
  color: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 13px;
  font-size: 20px;
}

.section { padding: 86px clamp(18px, 5vw, 72px); }

.section:not(.hero) {
  content-visibility: auto;
  contain-intrinsic-size: 1px 680px;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 34px;
  align-items: start;
  min-height: 760px;
}
.hero-copy {
  animation: hero-slide-left 1.6s cubic-bezier(.22, 1, .36, 1) both;
}
.hero-panel,
.hero-gallery {
  animation: hero-slide-right 1.6s cubic-bezier(.22, 1, .36, 1) .12s both;
}
@keyframes hero-slide-left {
  0% {
    opacity: 0;
    filter: blur(4px);
    transform: translateX(-86px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
  }
}
@keyframes hero-slide-right {
  0% {
    opacity: 0;
    filter: blur(4px);
    transform: translateX(86px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
  }
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.hero h1,
.section h2 { margin: 0; color: #fff; letter-spacing: -.055em; }
.hero h1 { font-size: clamp(44px, 7vw, 84px); line-height: .96; max-width: 940px; }
.section h2 { font-size: clamp(32px, 4vw, 56px); line-height: 1.04; }
.hero-text { max-width: 720px; font-size: 18px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 34px 0; }

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 760px;
}

.hero-proof div,
.card,
.glass-box,
.service-card,
.rental-card,
.hero-panel,
.price-table,
.faq-list details {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .035));
  box-shadow: var(--shadow);
}

.hero-proof div {
  border-radius: 20px;
  padding: 18px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.hero-proof div:hover {
  transform: translateY(-3px);
  border-color: rgba(74, 222, 128, .5);
}
.hero-proof strong,
.hero-proof span { display: block; }
.hero-proof span { color: var(--muted); font-size: 13px; margin-top: 5px; }
.hero-proof .coverage-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(74, 222, 128, .75);
  background:
    radial-gradient(circle at 18% 18%, rgba(74, 222, 128, .34), transparent 34%),
    linear-gradient(135deg, rgba(74, 222, 128, .28), rgba(248, 212, 119, .16)),
    linear-gradient(180deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .045));
  box-shadow:
    0 0 0 1px rgba(74, 222, 128, .18) inset,
    0 18px 46px rgba(34, 197, 94, .28),
    0 0 34px rgba(74, 222, 128, .16);
}
.hero-proof .coverage-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, .2) 46%, transparent 62%);
  animation: coverage-shine 3.8s ease-in-out infinite;
  transform: translateX(-120%);
}
.hero-proof .coverage-card:hover:before { transform: translateX(120%); }
@keyframes coverage-shine {
  0%, 42% { transform: translateX(-120%); }
  72%, 100% { transform: translateX(120%); }
}
.coverage-card strong {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}
.coverage-card strong i { color: var(--primary); }
.coverage-priority {
  position: relative;
  z-index: 1;
  display: flex !important;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px !important;
}
.coverage-priority b {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--primary);
  color: #07100b;
  font-size: 12px;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(34, 197, 94, .22);
}
.hero-proof .coverage-more {
  position: relative;
  z-index: 1;
  color: #dce3ef;
  font-weight: 700;
}

.hero-panel {
  border-radius: var(--radius);
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.hero-panel:before {
  content: "";
  position: absolute;
  inset: -120px -90px auto auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(74, 222, 128, .18);
}

.status-pill {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(74, 222, 128, .12);
  color: var(--primary);
  font-weight: 800;
  font-size: 13px;
}

.status-pill span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 7px rgba(74, 222, 128, .12);
}

.hero-panel h2 { font-size: 30px; letter-spacing: -.04em; }

.hero-gallery {
  display: grid;
  gap: 34px;
  margin-top: 0;
}

.hero-photo-stage {
  position: relative;
  min-height: 410px;
}

.hero-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  box-shadow:
    0 20px 42px rgba(0, 0, 0, .34),
    inset 0 1px 0 rgba(255, 255, 255, .22);
}

.hero-photo:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(8, 11, 18, .16)),
    linear-gradient(135deg, rgba(74, 222, 128, .10), rgba(248, 212, 119, .06));
  pointer-events: none;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-tech-carousel img,
.hero-assistant-carousel img,
.hero-support-carousel img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .7s ease;
}

.hero-tech-carousel img.active,
.hero-assistant-carousel img.active,
.hero-support-carousel img.active {
  opacity: 1;
}

.hero-photo-tall {
  top: 0;
  left: 0;
  width: 38%;
  height: 100%;
}

.hero-photo-wide {
  top: 0;
  right: 0;
  width: 55%;
  height: 48%;
}

.hero-photo-bottom {
  right: 0;
  left: auto;
  bottom: 0;
  width: 55%;
  height: 48%;
}

.hero-panel-compact {
  animation: none;
  border-radius: 22px;
  margin-top: 22px;
  padding: 18px;
}

.hero-panel-compact:before {
  inset: -160px -80px auto auto;
  width: 220px;
  height: 220px;
}

.hero-panel-compact h2 {
  max-width: 420px;
  font-size: 22px;
  line-height: 1.05;
}

.hero-panel-compact .check-list {
  margin: 14px 0;
}

.hero-panel-compact .check-list li {
  margin: 10px 0;
}

.hero-panel-compact .panel-card {
  padding: 14px;
  border-radius: 18px;
}

.glass-box {
  border-radius: var(--radius);
  padding: 32px;
}

.glass-box h3 { margin: 0; }

.customer-proof-box {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(170px, .58fr);
  gap: 0;
  align-items: center;
  min-height: 410px;
  padding: 0;
  isolation: isolate;
  border: 0;
  background:
    linear-gradient(90deg, rgba(15, 21, 34, .98) 0%, rgba(15, 21, 34, .88) 45%, rgba(15, 21, 34, .18) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .035));
}

.customer-proof-box:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 88% 16%, rgba(74, 222, 128, .18), transparent 32%),
    linear-gradient(90deg, rgba(15, 21, 34, .98) 0%, rgba(15, 21, 34, .92) 42%, rgba(15, 21, 34, .54) 57%, rgba(15, 21, 34, .12) 100%),
    linear-gradient(0deg, rgba(8, 11, 18, .34), rgba(8, 11, 18, 0) 46%);
  pointer-events: none;
}

.customer-proof-copy {
  position: relative;
  z-index: 2;
  max-width: 390px;
  padding: 38px 0 38px 38px;
}

.customer-proof-photo {
  position: absolute;
  z-index: 0;
  inset: 0 0 0 40%;
  min-height: 100%;
  margin: 0;
  border-radius: inherit;
  overflow: hidden;
  box-shadow: none;
}

.customer-proof-photo:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(15, 21, 34, .96) 0%, rgba(15, 21, 34, .52) 34%, rgba(15, 21, 34, 0) 68%),
    linear-gradient(0deg, rgba(8, 11, 18, .35), transparent 44%);
  pointer-events: none;
}

.customer-proof-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}

.check-list {
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  column-gap: 10px;
  align-items: start;
  margin: 14px 0;
  color: #dce3ef;
}

.check-list li:before {
  content: "\2713";
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-right: 0;
  line-height: 1;
  color: var(--primary);
  font-weight: 900;
}
.check-list li.x-mark:before {
  content: "\00d7";
  color: #f87171;
  font-size: 24px;
}
.check-list li.money-mark:before {
  content: "\f0d6";
  font-family: "Font Awesome 6 Free";
  color: var(--gold);
  font-size: 16px;
}
.check-list li.search-mark:before {
  content: "\f002";
  font-family: "Font Awesome 6 Free";
  color: #60a5fa;
  font-size: 16px;
}
.check-list li.urgent-mark:before {
  content: "\f071";
  font-family: "Font Awesome 6 Free";
  color: #fb923c;
  font-size: 16px;
}

.glass-box .check-list { margin-bottom: 0; }

.panel-card {
  padding: 20px;
  border-radius: 22px;
  background: #fff;
  color: #0b1020;
}
.panel-card span { font-weight: 900; color: #647084; font-size: 12px; text-transform: uppercase; }
.panel-card p { color: #111827; margin-bottom: 0; }

.section-heading { max-width: 820px; margin: 0 auto 36px; text-align: center; }
.section-heading.compact { max-width: 680px; }
.cards { display: grid; gap: 18px; }
.cards.four { grid-template-columns: repeat(4, 1fr); }

.card { border-radius: var(--radius); padding: 26px; }
.service-photo-card {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #0f1522;
}
.service-photo-card:before,
.service-photo-card:after {
  content: "";
  position: absolute;
  inset: 0;
}
.service-photo-card:before {
  background: url("service-optimized.jpg") center / cover;
  transform: scale(1.08);
}
.service-photo-card:after {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 11, 18, .18), rgba(8, 11, 18, .92)),
    linear-gradient(135deg, rgba(74, 222, 128, .30), rgba(248, 212, 119, .14));
}
.service-photo-card > img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}
.service-photo-card > :not(img) {
  position: relative;
  z-index: 2;
}
.card span { color: var(--gold); font-weight: 900; }
.card h3,
.glass-box h3,
.service-card b,
.rental-card h3 { font-size: 22px; letter-spacing: -.03em; }
.card.highlight:not(.service-photo-card) { background: linear-gradient(135deg, rgba(74, 222, 128, .18), rgba(255, 255, 255, .05)); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}
.reverse { grid-template-columns: .9fr 1.1fr; }

.area-tags,
.filter-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.area-tags span,
.filter-tabs button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .06);
  color: #dce3ef;
  border-radius: 999px;
  padding: 10px 14px;
  transition: .2s ease;
}
.area-tags span:hover {
  border-color: rgba(74, 222, 128, .78);
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #07100b;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(34, 197, 94, .22);
  transform: translateY(-2px);
}
.filter-tabs { justify-content: center; margin-bottom: 28px; }
.filter-tabs button { cursor: pointer; font-weight: 800; }
.filter-tabs button.active { background: var(--primary); color: #07100b; border-color: transparent; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { border-radius: 24px; padding: 24px; position: relative; overflow: hidden; }
.service-card:before {
  content: "";
  position: absolute;
  inset: 0 0 auto auto;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(248, 212, 119, .11), transparent 68%);
  pointer-events: none;
}
.photo-service-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #101827;
}

.photo-service-card:before {
  z-index: 1;
  inset: 0;
  width: auto;
  height: auto;
  background:
    linear-gradient(180deg, rgba(8, 11, 18, .08) 0%, rgba(8, 11, 18, .46) 54%, rgba(8, 11, 18, .78) 100%),
    linear-gradient(125deg, rgba(74, 222, 128, .16) 0%, rgba(8, 11, 18, .16) 46%, rgba(248, 212, 119, .14) 100%);
}

.photo-service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .9;
  transform: scale(1.04);
}

.photo-service-card > :not(img) {
  position: relative;
  z-index: 2;
}

.photo-service-card .service-icon {
  background: rgba(8, 11, 18, .46);
  backdrop-filter: blur(10px);
  border-color: rgba(255, 255, 255, .18);
}

.photo-service-card b { color: #fff; }

.photo-service-card p { color: #edf2fa; }

.photo-service-card strong {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(8, 11, 18, .46);
  backdrop-filter: blur(10px);
  color: var(--primary);
}
.service-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(74, 222, 128, .18), rgba(248, 212, 119, .12));
  border: 1px solid rgba(255, 255, 255, .14);
}
.service-icon:before,
.service-icon:after { content: ""; position: absolute; box-sizing: border-box; }
.icon-screen:before {
  width: 22px;
  height: 30px;
  border: 3px solid var(--primary);
  border-radius: 7px;
}
.icon-screen:after {
  bottom: 11px;
  width: 6px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
}
.icon-battery:before {
  width: 28px;
  height: 15px;
  border: 3px solid var(--primary);
  border-radius: 5px;
}
.icon-battery:after {
  right: 8px;
  width: 4px;
  height: 8px;
  border-radius: 0 3px 3px 0;
  background: var(--primary);
}
.icon-charge:before {
  width: 13px;
  height: 25px;
  border-left: 4px solid var(--gold);
  border-bottom: 4px solid var(--gold);
  transform: rotate(35deg);
}
.icon-charge:after {
  width: 18px;
  height: 12px;
  border: 3px solid var(--primary);
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
  transform: translateY(11px);
}
.icon-water:before {
  width: 20px;
  height: 27px;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  border-radius: 18px 18px 18px 4px;
  transform: rotate(-45deg);
}
.icon-keyboard:before {
  width: 30px;
  height: 22px;
  border: 3px solid var(--primary);
  border-radius: 6px;
}
.icon-keyboard:after {
  width: 18px;
  height: 10px;
  background:
    linear-gradient(var(--gold), var(--gold)) 0 0 / 4px 3px no-repeat,
    linear-gradient(var(--gold), var(--gold)) 7px 0 / 4px 3px no-repeat,
    linear-gradient(var(--gold), var(--gold)) 14px 0 / 4px 3px no-repeat,
    linear-gradient(var(--gold), var(--gold)) 3px 7px / 12px 3px no-repeat;
}
.icon-software:before {
  width: 28px;
  height: 22px;
  border: 3px solid var(--primary);
  border-radius: 7px;
}
.icon-software:after {
  width: 16px;
  height: 3px;
  background: var(--gold);
  box-shadow: 0 7px 0 var(--gold);
  transform: translateY(-3px);
}
.service-card strong { display: inline-block; margin-top: 12px; color: var(--primary); }

.device-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.device-card {
  min-height: 200px;
  border-radius: 28px;
  background: linear-gradient(135deg, #1c2437, #101827);
  border: 1px solid var(--line);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.device-card.big {
  grid-row: span 2;
  min-height: 418px;
  background: linear-gradient(135deg, rgba(74, 222, 128, .25), rgba(248, 212, 119, .14));
}
.device-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 11, 18, .18), rgba(8, 11, 18, .78));
  pointer-events: none;
}
.device-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .9;
}
.device-card span,
.device-card strong {
  position: relative;
  z-index: 1;
}
.device-card span { color: #dce3ef; font-weight: 800; }
.device-card strong { font-size: 28px; text-shadow: 0 2px 16px rgba(0, 0, 0, .45); }

.rental-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.rental-card {
  position: relative;
  border-radius: var(--radius);
  padding: 0 18px 22px;
  overflow: hidden;
}
.rental-card:before {
  content: "";
  position: absolute;
  inset: 34% 0 auto;
  height: 150px;
  z-index: 1;
  background: linear-gradient(180deg, rgba(15, 21, 34, 0), rgba(15, 21, 34, .98) 66%, rgba(15, 21, 34, 0));
  pointer-events: none;
}
.rental-card.featured { background: linear-gradient(135deg, rgba(74, 222, 128, .16), rgba(255, 255, 255, .05)); }
.rental-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 0 -18px -44px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  background: #0b1020;
  border: 0;
}
.rental-card-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .06) 0%, rgba(8, 11, 18, 0) 28%, rgba(8, 11, 18, .46) 68%, rgba(15, 21, 34, .98) 100%),
    linear-gradient(135deg, rgba(74, 222, 128, .10), rgba(248, 212, 119, .08));
  pointer-events: none;
}
.rental-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.rental-card-carousel img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .7s ease;
}
.rental-card-carousel img.active { opacity: 1; }
.rental-card > :not(.rental-card-media) {
  position: relative;
  z-index: 2;
}
.rental-card > span {
  margin-top: 0;
}
.rental-card span { color: var(--gold); font-weight: 900; font-size: 13px; text-transform: uppercase; }
.rental-card ul { padding-left: 20px; margin-bottom: 0; color: #dce3ef; line-height: 1.9; }

.process {
  position: relative;
  overflow: hidden;
}
.process:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  width: min(880px, 72vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74, 222, 128, .55), rgba(248, 212, 119, .42), transparent);
  transform: translateX(-50%);
  pointer-events: none;
}
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.timeline-step {
  position: relative;
  isolation: isolate;
  min-height: 250px;
  padding: 30px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035)),
    #111722;
  border: 1px solid rgba(255, 255, 255, .13);
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.timeline-step:before {
  content: none;
}
.timeline-step:after {
  content: "";
  position: absolute;
  right: -46px;
  top: -44px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(74, 222, 128, .11);
  z-index: -1;
}
.timeline-step:hover {
  transform: translateY(-6px);
  border-color: rgba(74, 222, 128, .48);
  box-shadow: 0 24px 52px rgba(0, 0, 0, .34);
}
.timeline-step span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: #07100b;
  font-weight: 900;
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(34, 197, 94, .28);
}
.timeline-step > i {
  position: absolute;
  right: 28px;
  top: 30px;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .08);
  color: var(--gold);
  font-size: 22px;
}
.timeline-step h3 {
  max-width: 260px;
  margin: 28px 0 12px;
  font-size: 25px;
  line-height: 1.1;
  letter-spacing: -.035em;
}
.timeline-step p {
  max-width: 330px;
  margin-bottom: 0;
}

.price-table {
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 1120px;
  margin: 0 auto;
}
.price-row {
  display: grid;
  grid-template-columns: 1.45fr .85fr .9fr;
  gap: 22px;
  padding: 20px 28px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.price-row.head {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-weight: 900;
}
.price-row.head span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.price-row.head i {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: rgba(74, 222, 128, .16);
  color: var(--primary);
  font-size: 14px;
}
.price-row strong { color: var(--primary); }

.faq {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(30px, 6vw, 78px);
  align-items: start;
  background:
    radial-gradient(circle at 18% 8%, rgba(74, 222, 128, .13), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(248, 212, 119, .08), transparent 26%),
    var(--bg);
  color: var(--text);
}
.faq .eyebrow { color: var(--primary2); }
.faq-intro {
  order: 2;
  position: sticky;
  top: 128px;
}
.faq-intro h2 {
  color: #fff;
  max-width: 340px;
}
.faq-intro p {
  max-width: none;
  color: var(--muted);
}
.faq-mini-cta {
  margin-top: 22px;
  padding: 20px;
  border: 1px solid rgba(74, 222, 128, .28);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(74, 222, 128, .15), rgba(248, 212, 119, .06)),
    rgba(255, 255, 255, .035);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
}
.faq-mini-cta strong {
  display: block;
  color: #fff;
  font-size: 20px;
  letter-spacing: -.025em;
}
.faq-mini-cta p {
  margin: 8px 0 16px;
  font-size: 14px;
}
.faq-mini-cta .btn {
  min-height: 46px;
  padding: 12px 16px;
  font-size: 14px;
  width: 100%;
}
.faq-list {
  order: 1;
  display: grid;
  gap: 16px;
  max-width: none;
  margin: 0;
}
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-list summary {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 38px;
  gap: 20px;
  align-items: center;
  min-height: 72px;
  padding: 18px 32px;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:after {
  content: "\f078";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1.5px solid rgba(255, 255, 255, .76);
  border-radius: 50%;
  color: #fff;
  font-family: "Font Awesome 6 Free";
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  padding-top: 1px;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.faq-list details[open] summary:after {
  transform: rotate(180deg);
  background: rgba(74, 222, 128, .16);
  border-color: rgba(74, 222, 128, .7);
}
.faq-list details p {
  margin: -4px 32px 20px;
  max-width: 680px;
  color: var(--muted);
}

.testimonials {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 6vw, 70px);
  align-items: center;
  background:
    radial-gradient(circle at 80% 12%, rgba(74, 222, 128, .12), transparent 28%),
    #070809;
}
.testimonial-copy h2 {
  max-width: 390px;
  color: #fff;
}
.testimonial-copy > p:not(.eyebrow) {
  max-width: 440px;
}
.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 34px 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}
.google-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  color: #2563eb;
  font-weight: 900;
  font-size: 24px;
}
.testimonial-rating strong,
.testimonial-rating span {
  display: block;
}
.testimonial-rating strong {
  color: #fff;
  font-size: 13px;
}
.testimonial-rating span {
  color: #fff;
  font-weight: 900;
}
.testimonial-rating i { color: var(--gold); font-size: 12px; }
.testimonial-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.testimonial-cards {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .86fr);
  gap: 28px;
  align-items: center;
}
.testimonial-card {
  min-height: 250px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .025));
  box-shadow: var(--shadow);
}
.testimonial-card.featured {
  min-height: 300px;
}
.quote-icon {
  color: var(--primary);
  font-size: 28px;
}
.testimonial-card p {
  color: #cbd5e1;
  font-weight: 700;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
.testimonial-author span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(74, 222, 128, .16);
  color: var(--primary);
  font-weight: 900;
}
.testimonial-author strong {
  color: #fff;
}
.testimonial-arrow {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--primary);
  color: #07100b;
  cursor: pointer;
}
.testimonial-arrow-prev {
  left: -23px;
}
.testimonial-arrow-next {
  right: -23px;
}

.footer {
  padding: 72px clamp(18px, 5vw, 72px) 28px;
  border-top: 1px solid var(--line);
  background: #070809;
}
.footer-main {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(330px, .92fr) minmax(0, 1.85fr);
  gap: clamp(28px, 4vw, 46px);
  align-items: start;
}
.footer-brand {
  padding-right: clamp(24px, 3.4vw, 42px);
  border-right: 1px solid rgba(255, 255, 255, .18);
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.footer-logo img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
}
.footer-logo strong {
  color: #fff;
  font-size: 25px;
  line-height: 1;
  letter-spacing: -.035em;
}
.footer-brand p {
  max-width: 380px;
  margin: 18px 0;
  color: #fff;
}
.footer-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin: 18px 0 24px;
}
.footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 0 0 auto;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
  white-space: nowrap;
  transition: .2s ease;
}
.footer-btn i {
  font-size: 17px;
  transition: transform .2s ease;
}
.footer-btn.primary {
  background: var(--primary);
  color: #07100b;
}
.footer-btn.ghost {
  border: 1px solid rgba(255, 255, 255, .75);
  color: #fff;
}
.footer-links h3 {
  color: #fff;
  font-weight: 900;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(92px, .48fr)) minmax(300px, 1.75fr);
  gap: clamp(14px, 2vw, 24px);
  align-items: stretch;
}
.footer-links h3 {
  margin: 0 0 18px;
  font-size: 16px;
}
.footer-map h3 {
  font-size: 25px;
  line-height: 1;
  letter-spacing: -.035em;
}
.footer-links a {
  display: block;
  margin: 0 0 12px;
  color: #eef2f7;
  font-size: 14px;
  font-weight: 700;
}
.footer-links a:hover,
.footer-emphasis {
  color: var(--primary) !important;
}
.footer-map iframe {
  display: block;
  width: 100%;
  min-height: 150px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 16px;
  filter: grayscale(.15) invert(.9) hue-rotate(180deg);
}
.footer-map {
  padding-left: clamp(20px, 2.4vw, 34px);
  border-left: 1px solid rgba(255, 255, 255, .18);
  align-self: stretch;
}
.footer-location-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: -6px 0 12px;
}
.footer-point-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 30px;
  margin: -4px 0 12px;
}
.footer-location-tabs button,
.footer-point-tabs button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin: 0;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 900;
}
.footer-location-tabs button:hover,
.footer-location-tabs button.active,
.footer-point-tabs button:hover,
.footer-point-tabs button.active {
  border-color: rgba(74, 222, 128, .7);
  background: rgba(74, 222, 128, .14);
  color: var(--primary);
}
.footer-point-tabs button {
  min-height: 30px;
  padding: 7px 11px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 11px;
}
.footer-map-addresses {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}
.footer-map-addresses a {
  display: grid;
  gap: 3px;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  background: rgba(255, 255, 255, .045);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.footer-map-addresses a:hover {
  border-color: rgba(74, 222, 128, .62);
  background: rgba(74, 222, 128, .10);
}
.footer-map-addresses strong {
  color: var(--primary);
  font-size: 11px;
  text-transform: uppercase;
}
.footer-bottom {
  width: 100%;
  margin: 54px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-bottom small {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.floating-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  background: var(--primary);
  color: #07100b;
  border-radius: 999px;
  padding: 15px 20px;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(34, 197, 94, .3);
  transition: .2s ease;
}

.floating-wa .fa-whatsapp {
  font-size: 1.35em;
  transition: transform .2s ease;
}
.floating-wa span { margin-left: 8px; }

.hidden { display: none !important; }

@media (max-width: 980px) {
  .nav,
  .header-cta { display: none; }
  .menu-toggle { display: block; }
  .nav.open {
    position: absolute;
    display: grid;
    gap: 8px;
    left: 18px;
    right: 18px;
    top: calc(100% + 10px);
    padding: 14px;
    background: rgba(35, 54, 83, .96);
    border: 1px solid rgba(180, 206, 244, .28);
    border-radius: 8px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, .28);
  }
  .nav.open a,
  .nav.open .nav-explore summary {
    display: block;
    width: 100%;
    border-radius: 8px;
    padding: 12px 14px;
  }
  .nav.open .nav-explore {
    width: 100%;
  }
  .nav.open .nav-explore summary {
    display: flex;
    justify-content: space-between;
  }
  .nav.open .nav-dropdown {
    position: static;
    min-width: 0;
    margin-top: 6px;
    padding: 6px 0 0 12px;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .nav.open .nav-dropdown a {
    color: #dce6ff;
  }
  .hero,
  .split,
  .reverse,
  .cards.four,
  .service-grid,
  .rental-grid,
  .timeline { grid-template-columns: 1fr 1fr; }
  .footer-main {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    padding-right: 0;
    padding-bottom: 32px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
  }
  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process:before { display: none; }
  .timeline-step { min-height: 230px; }
  .hero { min-height: auto; }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-gallery {
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
  }
  .hero-panel-compact {
    margin-top: 0;
  }
  .faq {
    grid-template-columns: 1fr;
  }
  .faq-intro {
    position: static;
  }
  .testimonials,
  .testimonial-cards {
    grid-template-columns: 1fr;
  }
  .testimonial-arrow {
    display: none;
  }
  .hero-photo-stage {
    min-height: 390px;
  }
  .customer-proof-box {
    grid-template-columns: minmax(0, 1fr) minmax(160px, .46fr);
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .topbar { display: none; }
  .section { padding: 58px 18px; }
  .site-header {
    top: 10px;
    width: calc(100% - 24px);
    margin-top: 10px;
    padding: 10px 12px;
  }
  .brand {
    gap: 12px;
    padding-right: 14px;
    margin-right: 10px;
  }
  .brand-logo { width: 48px; height: 48px; border-radius: 50%; }
  .brand strong { font-size: 18px; }
  .brand small { font-size: 11px; }
  .section .eyebrow { margin-bottom: 8px; color: var(--primary); font-size: 11px; letter-spacing: .11em; }
  .hero h1 { font-size: 42px; letter-spacing: -.015em; }
  .section h2 { font-size: 42px; line-height: .96; letter-spacing: -.015em; }
  .hero-gallery {
    margin-top: 0;
    gap: 24px;
  }
  .hero-photo-stage {
    min-height: 360px;
  }
  .hero-photo-tall {
    left: 0;
    width: 38%;
    height: 100%;
  }
  .hero-photo-wide {
    top: 0;
    right: 0;
    width: 56%;
    height: 48%;
  }
  .hero-photo-bottom {
    left: auto;
    right: 0;
    width: 56%;
    height: 48%;
  }
  .service-photo-card { min-height: 300px; }
  .glass-box { padding: 24px; }
  .customer-proof-box {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
    padding: 0;
    border: 0;
    background:
      linear-gradient(180deg, rgba(15, 21, 34, .98) 0%, rgba(15, 21, 34, .92) 56%, rgba(15, 21, 34, .5) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .035));
  }
  .customer-proof-copy { max-width: none; padding: 24px 24px 0; }
  .customer-proof-photo {
    position: relative;
    inset: auto;
    min-height: 240px;
    margin: 0;
    border-radius: 0;
  }
  .customer-proof-photo:before {
    background:
      linear-gradient(180deg, rgba(15, 21, 34, .32) 0%, rgba(15, 21, 34, 0) 48%, rgba(8, 11, 18, .48) 100%);
  }
  .check-list li { grid-template-columns: 21px minmax(0, 1fr); column-gap: 9px; }
  .cards.four,
  .service-grid,
  .rental-grid,
  .timeline,
  .price-row { grid-template-columns: 1fr; }
  .faq {
    gap: 28px;
  }
  .faq-list summary {
    min-height: 68px;
    padding: 16px 18px;
  }
  .faq-list details p {
    margin: -2px 18px 18px;
  }
  .testimonial-card,
  .testimonial-card.featured {
    min-height: 0;
    padding: 24px;
  }
  .testimonial-actions .btn {
    width: 100%;
  }
  .device-showcase { grid-template-columns: 1fr; }
  .device-card.big { grid-row: auto; min-height: 220px; }
  .footer {
    padding-top: 48px;
    padding-bottom: 94px;
  }
  .footer-links {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .footer-map {
    padding-left: 0;
    padding-top: 20px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .16);
  }
  .footer-location-tabs {
    grid-template-columns: 1fr;
  }
  .footer-point-tabs {
    display: grid;
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 36px;
  }
  .footer-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .floating-wa { left: 18px; right: 18px; bottom: 16px; text-align: center; }
}

@media (max-width: 640px), (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn,
  .header-cta {
    transition: none;
  }
  .btn:hover {
    transform: none;
  }
  .hero-proof .coverage-card:before {
    animation: none;
  }
}

@media (max-width: 640px) {
  .topbar,
  .site-header {
    backdrop-filter: none;
  }
  .hero-proof div,
  .card,
  .glass-box,
  .service-card,
  .rental-card,
  .hero-panel,
  .price-table,
  .faq-list details,
  .floating-wa {
    box-shadow: 0 12px 26px rgba(0, 0, 0, .24);
  }
}
