:root {
  --bg: #07080b;
  --bg-soft: #101117;
  --panel: rgba(18, 19, 25, 0.82);
  --panel-strong: #111218;
  --text: #f4f4f7;
  --muted: #a8acb8;
  --line: rgba(255,255,255,0.08);
  --accent: #ff6a1a;
  --accent-soft: rgba(255,106,26,0.18);
  --shadow: 0 20px 60px rgba(0,0,0,.38);
  --radius: 24px;
  --wrapper: min(1180px, calc(100% - 32px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(255,106,26,.08), transparent 30%),
    radial-gradient(circle at left 20%, rgba(255,255,255,.03), transparent 22%),
    var(--bg);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrapper { width: var(--wrapper); margin: 0 auto; }

.page-glow {
  position: fixed;
  inset: auto;
  pointer-events: none;
  filter: blur(60px);
  opacity: .4;
  z-index: 0;
}
.glow-1 {
  width: 240px; height: 240px; right: 5%; top: 8%;
  background: rgba(255,106,26,.25);
}
.glow-2 {
  width: 180px; height: 180px; left: 8%; top: 42%;
  background: rgba(255,255,255,.06);
}

.topbar, .navbar, main, .footer { position: relative; z-index: 1; }

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}
.topbar-left, .topbar-right {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar a:hover, .nav-links a:hover, .footer a:hover { color: var(--text); }

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 30px;
  font-weight: 700;
}
.brand-mark {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 14px;
  color: var(--accent);
  border: 1px solid rgba(255,106,26,.35);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
  font-size: 14px;
  letter-spacing: .08em;
}
.brand-text { font-size: 22px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 500;
  color: var(--muted);
}
.nav-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 16px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.nav-cta, .btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 12px 30px rgba(255,106,26,.28);
}
.btn-secondary {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  color: var(--text);
}
.nav-cta:hover, .btn:hover { transform: translateY(-2px); }
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 20px;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  padding: 34px 0 40px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 700;
}
.hero h1, .section-heading h2, .contact-band h2, .contact h2 {
  margin: 0;
  font-size: clamp(38px, 6vw, 74px);
  line-height: .98;
  letter-spacing: -0.04em;
}
.hero-text, .section-heading p, .summary-text p, .contact-item p, .hours-note {
  color: var(--muted);
  line-height: 1.75;
}
.hero-text { max-width: 640px; font-size: 18px; margin: 24px 0 18px; }
.hero-points {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 10px;
}
.hero-points li {
  position: relative;
  padding-left: 28px;
  color: #d9dce6;
}
.hero-points li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255,106,26,.15);
}
.hero-actions, .contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.hero-mini-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}
.hero-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.hero-icon-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,106,26,.25);
  background: rgba(255,106,26,.08);
  color: #f5e7de;
  font-size: 14px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
}
.chip-icon {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,106,26,.18);
}

.hero-visual {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.device-card {
  position: relative;
  width: min(100%, 430px);
}
.device-shadow {
  position: absolute;
  inset: auto 10% -12% 10%;
  height: 110px;
  background: radial-gradient(circle, rgba(255,106,26,.33), transparent 70%);
  filter: blur(24px);
}
.phone-illustration {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 32px 60px rgba(0,0,0,.55));
}
.hero-stat-card {
  position: absolute;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}
.stat-main {
  right: 0;
  top: 10%;
  padding: 26px 28px;
  text-align: left;
}
.stat-number {
  display: block;
  font-size: 58px;
  font-weight: 700;
  line-height: 1;
}
.stat-label { color: var(--muted); letter-spacing: .16em; text-transform: uppercase; font-size: 11px; }
.stat-side {
  left: 0;
  bottom: 10%;
  max-width: 270px;
  padding: 22px 22px 20px;
}
.stat-side strong { display: block; margin-bottom: 10px; font-size: 24px; }
.stat-side p { margin: 0; color: var(--muted); line-height: 1.7; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 16px 0 74px;
}
.stat-box, .service-card, .review-card, .contact-panel, .hours-panel, .map-wrap, .contact-band {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.stat-box {
  padding: 24px;
}
.stat-box strong {
  display: block;
  font-size: 20px;
  margin-bottom: 8px;
}
.stat-box span { color: var(--muted); line-height: 1.7; }

.services, .reviews, .contact {
  padding: 50px 0 84px;
}
.section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}
.section-heading h2, .contact-band h2, .contact h2 { font-size: clamp(32px, 4vw, 52px); }
.section-heading.split {
  max-width: unset;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}
.services-grid, .reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  padding: 26px;
  min-height: 230px;
}
.service-card.featured {
  background: linear-gradient(180deg, rgba(255,106,26,.16), rgba(255,255,255,.02));
}
.service-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255,106,26,.14);
  font-size: 26px;
  margin-bottom: 22px;
}
.service-card h3, .review-card strong {
  margin: 0 0 12px;
  font-size: 24px;
}
.service-card p, .review-card p, .review-card span { color: var(--muted); line-height: 1.8; }

.reviews-summary {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 20px;
  margin-bottom: 22px;
}
.summary-rating, .summary-text {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.summary-rating span {
  display: block;
  font-size: 58px;
  font-weight: 800;
  color: var(--text);
}
.summary-rating p { margin: 10px 0 0; color: var(--muted); }
.review-card {
  padding: 28px;
}
.review-card.highlight {
  border-color: rgba(255,106,26,.34);
  background: linear-gradient(180deg, rgba(255,106,26,.1), rgba(255,255,255,.02));
}
.stars { color: var(--accent); letter-spacing: .22em; margin-bottom: 18px; }
.review-card strong { display: block; margin-top: 12px; margin-bottom: 4px; }

.contact-band {
  padding: 28px;
  margin-bottom: 24px;
}
.band-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.band-list span {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  color: #d8dbe4;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.contact-panel, .hours-panel { padding: 28px; }
.label {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 700;
}
.contact-item + .contact-item { margin-top: 18px; }
.contact-item p { margin: 0; }
.hours-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.hours-list li span { color: var(--muted); }
.map-wrap {
  overflow: hidden;
  padding: 0;
}
.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
  filter: grayscale(1) invert(.92) contrast(1.05);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 60px;
  color: var(--muted);
}
.footer strong { color: var(--text); display: block; margin-bottom: 6px; }
.footer div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}
.floating-btn {
  min-width: 168px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  padding: 16px 18px;
  border-radius: 18px;
  color: #fff;
  box-shadow: 0 18px 34px rgba(0,0,0,.3);
  font-weight: 700;
  backdrop-filter: blur(10px);
}
.floating-btn.call { background: linear-gradient(135deg, #ff6a1a, #ff8242); }
.floating-btn.whatsapp { background: linear-gradient(135deg, #1fa95b, #25d366); }
.floating-btn:hover { transform: translateY(-2px); }

@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { min-height: auto; padding-top: 30px; }
  .stat-main { right: 2%; top: 0; }
  .stat-side { left: 2%; bottom: 2%; }
  .services-grid, .reviews-grid, .stats, .contact-grid, .reviews-summary { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 840px) {
  .topbar { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    width: min(320px, calc(100vw - 32px));
    background: rgba(10,11,15,.97);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: .2s ease;
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-links a { padding: 8px 6px; }
  .nav-cta { text-align: center; }
  .services-grid, .reviews-grid, .stats, .contact-grid, .reviews-summary { grid-template-columns: 1fr; }
  .section-heading.split, .footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero h1 { font-size: clamp(34px, 10vw, 58px); }
  .hero-visual { min-height: 620px; }
  .stat-main { top: 2%; right: 0; }
  .stat-side { left: 0; bottom: 3%; }
}

@media (max-width: 560px) {
  .wrapper { width: min(100% - 20px, 100%); }
  .navbar { padding: 18px 0; }
  .brand-text { font-size: 20px; }
  .hero { gap: 24px; padding-top: 20px; }
  .hero-text { font-size: 16px; }
  .hero-visual { min-height: 520px; }
  .stat-number { font-size: 42px; }
  .summary-rating span { font-size: 42px; }
  .service-card, .review-card, .contact-panel, .hours-panel, .contact-band, .stat-box { padding: 22px; }
  .floating-actions {
    right: 10px;
    left: 10px;
    bottom: 10px;
  }
  .floating-btn { min-width: 0; width: 100%; }
}


.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.review-card {
  padding: 24px;
}
.review-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}
.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255,106,26,.12);
  border: 1px solid rgba(255,106,26,.2);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
  font-size: 26px;
}
@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr; }
}


/* Reviews compact */
.reviews-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.review-card.compact-card {
  padding:14px 14px 12px;
  min-height:130px;
  border-radius:16px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}


.review-card.compact-card .stars {
  font-size:14px;
  margin-bottom:6px;
}


.review-card.compact-card .review-text {
  color: var(--muted);
  line-height:1.5;
  font-size:13px;
  margin:0 0 6px;
  min-height:36px;
}


.review-card.compact-card strong {
  margin-top:auto;
  display:block;
  font-size:16px;
}

.review-card.compact-card > span:last-child {
  color: var(--muted);
  margin-top: 6px;
  font-size: 14px;
}
.review-more {
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,106,26,.32);
  background: rgba(255,106,26,.08);
  color: #ffd5bf;
  font-weight: 600;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.review-more:hover {
  transform: translateY(-1px);
  background: rgba(255,106,26,.14);
  border-color: rgba(255,106,26,.55);
}
.review-card.expanded {
  min-height: unset;
}
.review-card.expanded .review-text {
  min-height: 0;
}
.review-card.expanded .review-preview {
  display: none;
}
.review-card.expanded .review-full[hidden] {
  display: inline;
}
.review-card:not(.expanded) .review-full {
  display: none;
}
@media (max-width: 980px) {
  .reviews-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .reviews-grid.compact {
    grid-template-columns: 1fr;
  }
  
.review-card.compact-card {
  padding:14px 14px 12px;
  min-height:130px;
  border-radius:16px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}

}


/* Premium navigation effects */
.navbar {
  position: sticky;
  top: 0;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(7,8,11,.58);
  border: 1px solid rgba(255,255,255,.04);
  border-radius: 24px;
  margin-top: 14px;
  box-shadow: 0 18px 60px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.04);
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}
.navbar::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, rgba(255,106,26,.35), rgba(255,255,255,.04), rgba(255,106,26,.15));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.navbar.is-scrolled {
  background: rgba(10,11,16,.82);
  box-shadow: 0 24px 70px rgba(0,0,0,.34), 0 0 0 1px rgba(255,255,255,.03);
}
.brand {
  transition: transform .24s ease, filter .24s ease;
}
.brand:hover {
  transform: translateY(-1px) scale(1.01);
  filter: drop-shadow(0 0 14px rgba(255,106,26,.25));
}
.nav-links a {
  position: relative;
  transition: color .22s ease, transform .22s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,106,26,0), rgba(255,106,26,1), rgba(255,106,26,0));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .26s ease;
}
.nav-links a:hover {
  color: var(--text);
  transform: translateY(-1px);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}
.nav-cta {
  position: relative;
  overflow: hidden;
}
.nav-cta::before,
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(115deg, transparent 25%, rgba(255,255,255,.22) 50%, transparent 75%);
  transition: transform .7s ease;
}
.nav-cta:hover::before,
.btn-primary:hover::before {
  transform: translateX(120%);
}

/* Premium services */
.services-grid {
  gap: 22px;
}
.premium-service {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255,106,26,.12), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01)),
    rgba(16,17,23,.88);
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 16px 50px rgba(0,0,0,.26), inset 0 1px 0 rgba(255,255,255,.03);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.premium-service::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,106,26,.14), transparent 34%, transparent 65%, rgba(255,106,26,.05));
  opacity: 0;
  transition: opacity .28s ease;
  pointer-events: none;
}
.premium-service:hover {
  transform: translateY(-8px);
  border-color: rgba(255,106,26,.28);
  box-shadow: 0 26px 70px rgba(0,0,0,.36), 0 0 0 1px rgba(255,106,26,.08);
}
.premium-service:hover::before {
  opacity: 1;
}
.premium-icon {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,183,120,.22), transparent 35%),
    linear-gradient(180deg, rgba(255,106,26,.16), rgba(255,106,26,.05));
  border: 1px solid rgba(255,106,26,.24);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 10px 30px rgba(255,106,26,.12);
  margin-bottom: 18px;
}
.premium-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: #ff8a45;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(255,106,26,.18));
}
.service-card h3 {
  letter-spacing: -.02em;
}
.service-card p {
  max-width: 33ch;
}
.floating-btn,
.btn,
.nav-cta,
.service-card,
.review-card,
.contact-card,
.info-card {
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
}

/* subtle reveal */
.reveal-up {
  opacity: 0;
  transform: translateY(18px);
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .55s ease, transform .55s ease;
}

/* overflow fix */

.hero-visual{
  overflow:hidden;
  border-radius:28px;
}

.hero-visual .device-card{
  max-width:100%;
  overflow:hidden;
}
