/* ═══════════════════════════════════════════════════════
   LOCKSTAR LOCKSMITH — SHARED STYLESHEET
   Brand Colors: #080808 black · #E84000 orange · #fff white
   Font: Heebo (Google Fonts)
═══════════════════════════════════════════════════════ */

/* ── VARIABLES ─────────────────────────────────────── */
:root {
  --black:       #080808;
  --black2:      #0f0f0f;
  --black3:      #161616;
  --black4:      #1e1e1e;
  --blue:        #E84000;
  --blue-hover:  #FF5500;
  --blue-dim:    rgba(232,64,0,0.12);
  --blue-border: rgba(232,64,0,0.28);
  --blue-glow:   rgba(232,64,0,0.38);
  --white:       #ffffff;
  --off-white:   #f5f6f8;
  --grey:        #6b7280;
  --grey-light:  #9ca3af;
  --grey-mid:    #3d3d3d;
  --green:       #22c55e;
  --green-wa:    #25D366;
  --red-emerg:   #dc2626;
  --border:      rgba(255,255,255,0.07);
  --border-blue: rgba(232,64,0,0.22);
  --radius:      10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --shadow:      0 4px 24px rgba(0,0,0,0.5);
  --shadow-lg:   0 16px 64px rgba(0,0,0,0.6);
  --transition:  0.25s cubic-bezier(0.4,0,0.2,1);
  --font:        'Heebo', sans-serif;
}

/* ── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: var(--font); }

/* ── UTILITY ───────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.container--narrow { max-width: 820px; margin: 0 auto; padding: 0 28px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.text-blue { color: var(--blue); }
.text-grey { color: var(--grey-light); }
.section-padding { padding: 96px 0; }
.section-padding--sm { padding: 64px 0; }

/* ── SECTION LABELS ────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: ''; display: block; width: 20px; height: 2px;
  background: var(--blue); flex-shrink: 0;
}
.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.02em;
}
.section-sub {
  font-size: 17px; color: var(--grey-light);
  line-height: 1.7; max-width: 560px;
  margin-top: 14px;
}

/* ── BUTTONS ───────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 9px; font-weight: 700; font-size: 15px;
  border-radius: var(--radius); padding: 14px 26px;
  transition: var(--transition); white-space: nowrap; cursor: pointer;
  border: none;
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.btn--primary {
  background: var(--blue); color: var(--white);
}
.btn--primary:hover {
  background: var(--blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px var(--blue-glow);
}
.btn--outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.22);
}
.btn--outline:hover {
  border-color: var(--blue); color: var(--blue);
  background: var(--blue-dim);
}
.btn--wa {
  background: var(--green-wa); color: var(--white);
}
.btn--wa:hover {
  background: #1ebe5c;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37,211,102,0.35);
}
.btn--lg { font-size: 16px; padding: 17px 32px; }
.btn--sm { font-size: 13px; padding: 10px 18px; }
.btn--full { width: 100%; }

@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

/* ── HEADER ────────────────────────────────────────── */
#header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,8,8,0.88);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
#header.elevated {
  background: rgba(8,8,8,0.97);
  border-color: var(--border-blue);
  box-shadow: 0 4px 40px rgba(0,0,0,0.7);
}
.header__inner {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 16px 28px; max-width: 1160px; margin: 0 auto;
  gap: 24px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo__img {
  height: 148px; width: auto; flex-shrink: 0;
  display: block; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35));
  transition: var(--transition);
}
.logo:hover .logo__img { filter: drop-shadow(0 3px 10px rgba(232,64,0,0.4)); }
/* Legacy text fallback – hidden when image loads */
.logo__text { line-height: 1; }
.logo__name {
  font-weight: 900; font-size: 18px; letter-spacing: -0.01em;
  color: var(--white);
}
.logo__name span { color: var(--blue); }
.logo__tagline { font-size: 10px; color: var(--grey-light); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 2px; }
nav.header__nav {
  display: flex; align-items: center; gap: 32px;
}
nav.header__nav a {
  font-size: 14px; font-weight: 500; color: var(--grey-light);
  transition: color var(--transition); white-space: nowrap;
}
nav.header__nav a:hover,
nav.header__nav a.active { color: var(--white); }
.nav-insta {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 8px;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: white !important; transition: var(--transition); flex-shrink: 0;
}
.nav-insta:hover { transform: scale(1.1); opacity: 0.9; }
.nav-insta svg { stroke: white; }
.header__actions { display: flex; align-items: center; gap: 10px; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 4px; background: none; border: none; cursor: pointer;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* ── MOBILE NAV ────────────────────────────────────── */
.mobile-overlay {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: rgba(8,8,8,0.97); backdrop-filter: blur(24px);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 28px;
}
.mobile-overlay.open { display: flex; }
.mobile-overlay a { font-size: 28px; font-weight: 800; color: var(--white); letter-spacing: -0.01em; }
.mobile-overlay a:hover { color: var(--blue); }
.mobile-overlay__close {
  position: absolute; top: 20px; right: 24px;
  font-size: 32px; color: var(--white); background: none; border: none; cursor: pointer;
}
.mobile-overlay__ctas { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; width: min(300px, 80vw); }

/* ── CARD BASE ─────────────────────────────────────── */
.card {
  background: var(--black3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.card:hover {
  border-color: var(--border-blue);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* ── ICON BOX ──────────────────────────────────────── */
.icon-box {
  width: 50px; height: 50px; border-radius: 12px;
  background: var(--blue-dim); border: 1px solid var(--border-blue);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.icon-box svg { width: 22px; height: 22px; stroke: var(--blue); }
.icon-box--lg { width: 60px; height: 60px; border-radius: 14px; }
.icon-box--lg svg { width: 28px; height: 28px; }

/* ── BADGE ─────────────────────────────────────────── */
.badge-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue-dim); border: 1px solid var(--border-blue);
  color: var(--blue); font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 13px; border-radius: 100px;
}
.badge-pill--green {
  background: rgba(34,197,94,0.1); border-color: rgba(34,197,94,0.25);
  color: var(--green);
}
.badge-pill--red {
  background: rgba(220,38,38,0.1); border-color: rgba(220,38,38,0.25);
  color: #f87171;
}

/* ── STAR RATING ───────────────────────────────────── */
.stars { display: flex; gap: 2px; }
.stars svg { width: 15px; height: 15px; fill: #FBBF24; }

/* ── DIVIDER ───────────────────────────────────────── */
.divider {
  height: 1px; background: var(--border); width: 100%;
}

/* ── FLOATING WHATSAPP ─────────────────────────────── */
.float-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  background: var(--green-wa); color: var(--white);
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
  transition: var(--transition); border: none; cursor: pointer;
}
.float-wa:hover { background: #1ebe5c; transform: scale(1.1); box-shadow: 0 12px 36px rgba(37,211,102,0.55); }
.float-wa svg { width: 26px; height: 26px; }
.float-wa__tooltip {
  position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
  background: var(--black3); color: var(--white); font-size: 13px; font-weight: 600;
  padding: 8px 14px; border-radius: 8px; border: 1px solid var(--border);
  white-space: nowrap; pointer-events: none; opacity: 0; transition: opacity var(--transition);
}
.float-wa:hover .float-wa__tooltip { opacity: 1; }

/* ── INSTAGRAM BUTTON ──────────────────────────────── */
.float-insta {
  position: fixed; bottom: 100px; right: 28px; z-index: 500;
  width: 52px; height: 52px; border-radius: 50%;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 22px rgba(214,36,159,0.45);
  transition: var(--transition); border: none; cursor: pointer;
  text-decoration: none;
}
.float-insta:hover { transform: scale(1.1); box-shadow: 0 10px 30px rgba(214,36,159,0.55); }
.float-insta svg { width: 24px; height: 24px; stroke: white; }
.float-insta__tooltip {
  position: absolute; right: 62px; top: 50%; transform: translateY(-50%);
  background: var(--black3); color: var(--white); font-size: 13px; font-weight: 600;
  padding: 7px 13px; border-radius: 8px; border: 1px solid var(--border);
  white-space: nowrap; pointer-events: none; opacity: 0; transition: opacity var(--transition);
}
.float-insta:hover .float-insta__tooltip { opacity: 1; }

/* ── ACCESSIBILITY WIDGET ──────────────────────────── */
.a11y-toggle {
  position: fixed; bottom: 28px; left: 28px; z-index: 500;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--blue); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 22px rgba(232,64,0,0.45);
  border: none; cursor: pointer; transition: var(--transition);
}
.a11y-toggle:hover { background: var(--blue-hover); transform: scale(1.08); }
.a11y-toggle svg { width: 26px; height: 26px; stroke: white; }
.a11y-panel {
  position: fixed; bottom: 90px; left: 28px; z-index: 500;
  background: var(--black3); border: 1px solid var(--border-blue);
  border-radius: var(--radius-xl); padding: 20px;
  width: 260px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6);
  transform: translateY(10px) scale(0.95); opacity: 0;
  pointer-events: none; transition: all 0.25s ease;
}
.a11y-panel.open { transform: none; opacity: 1; pointer-events: all; }
.a11y-panel h4 {
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--grey-light); margin-bottom: 14px;
}
.a11y-btn {
  display: flex; align-items: center; gap: 11px;
  width: 100%; padding: 11px 14px; margin-bottom: 6px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--grey-light);
  font-family: var(--font); font-size: 13px; font-weight: 600;
  cursor: pointer; transition: var(--transition); text-align: left;
}
.a11y-btn:last-child { margin-bottom: 0; }
.a11y-btn:hover { border-color: var(--border-blue); color: var(--white); background: var(--blue-dim); }
.a11y-btn.active { border-color: var(--blue); color: var(--blue); background: var(--blue-dim); }
.a11y-btn svg { width: 16px; height: 16px; stroke: currentColor; flex-shrink: 0; }
.a11y-panel__link {
  display: block; text-align: center; margin-top: 14px;
  font-size: 11px; color: var(--grey); text-decoration: none;
  transition: color var(--transition);
}
.a11y-panel__link:hover { color: var(--blue); }

/* Accessibility body classes */
body.a11y-big-text { font-size: 19px !important; }
body.a11y-big-text .section-title { font-size: clamp(32px,5vw,58px) !important; }
body.a11y-high-contrast { filter: contrast(1.5) !important; }
body.a11y-dyslexia * { font-family: Arial, sans-serif !important; letter-spacing: 0.06em !important; line-height: 1.9 !important; }
body.a11y-links a:not(.btn):not(.float-wa):not(.float-insta):not(.a11y-toggle) {
  text-decoration: underline !important; text-decoration-color: var(--blue) !important; text-underline-offset: 4px !important;
}
body.a11y-no-anim *, body.a11y-no-anim *::before, body.a11y-no-anim *::after {
  animation: none !important; transition: none !important;
}

@media (max-width: 768px) {
  .float-insta { bottom: 88px; right: 20px; width: 46px; height: 46px; }
  .float-insta svg { width: 20px; height: 20px; }
  .a11y-toggle { bottom: 20px; left: 16px; width: 46px; height: 46px; }
  .a11y-toggle svg { width: 22px; height: 22px; }
  .a11y-panel { left: 16px; bottom: 80px; width: calc(100vw - 32px); }
}

/* ── FOOTER ────────────────────────────────────────── */
footer {
  background: var(--black2); border-top: 1px solid var(--border);
  padding: 64px 0 28px;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 52px;
}
.footer__brand p {
  font-size: 14px; color: var(--grey-light); margin-top: 16px;
  line-height: 1.75; max-width: 260px;
}
.footer__ctas { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; }
.footer__col h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--grey); margin-bottom: 18px;
}
.footer__col ul li { margin-bottom: 11px; }
.footer__col ul li a {
  font-size: 14px; color: var(--grey-light);
  transition: color var(--transition);
}
.footer__col ul li a:hover { color: var(--blue); }
.footer__bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
}
.footer__bottom p { font-size: 12px; color: var(--grey); }
.footer__bottom a { color: var(--blue-hover); }

/* ── SCROLL REVEAL ─────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; }
.reveal-d6 { transition-delay: 0.48s; }

/* ── FORM ELEMENTS ─────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--grey-light);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  color: var(--white); font-size: 15px; padding: 13px 16px;
  border-radius: var(--radius); outline: none; transition: var(--transition);
  width: 100%; resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(107,114,128,0.7); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(232,64,0,0.55);
  background: rgba(232,64,0,0.05);
  box-shadow: 0 0 0 3px rgba(232,64,0,0.12);
}
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--black3); color: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── MOBILE STICKY CALL BAR ─────────────────────── */
.mobile-callbar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 400;
  background: var(--black2);
  border-top: 1px solid var(--border-blue);
  padding: 10px 16px;
  gap: 10px;
}
.mobile-callbar a {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 8px; font-weight: 800; font-size: 15px; border-radius: var(--radius);
  padding: 13px 10px; text-decoration: none; transition: var(--transition);
}
.mobile-callbar a.mcb-call { background: var(--blue); color: var(--white); }
.mobile-callbar a.mcb-wa   { background: var(--green-wa); color: var(--white); }
.mobile-callbar svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section-padding { padding: 56px 0; }
  .hamburger { display: none; }
  .mobile-overlay { display: none !important; }
  .header__actions .btn { display: none; }
  /* Two-row header: logo top, nav bottom */
  .header__inner {
    flex-wrap: wrap;
    padding: 10px 16px 0;
    gap: 0;
    align-items: center;
  }
  .logo { flex: 0 0 auto; padding-bottom: 10px; }
  .logo__img { height: 80px !important; }
  nav.header__nav {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    gap: 0;
    padding: 8px 0;
    border-top: 1px solid var(--border);
  }
  nav.header__nav a { font-size: 12px; white-space: nowrap; }
  .footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  /* Show mobile call bar */
  .mobile-callbar { display: flex; }
  /* Push page content above the bar */
  main { padding-bottom: 72px; }
  footer { padding-bottom: calc(28px + 72px); }
  /* Accessibility widget above call bar */
  .a11y-toggle { bottom: 82px; }
  .a11y-panel { bottom: 148px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  nav.header__nav a { font-size: 11px; }
}

/* ── ENHANCED REVEALS ───────────────────────────── */
.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal-scale {
  opacity: 0; transform: scale(0.88) translateY(16px);
  transition: opacity 0.6s ease, transform 0.65s cubic-bezier(0.34,1.36,0.64,1);
}
.reveal-left.visible, .reveal-right.visible, .reveal-scale.visible {
  opacity: 1; transform: none;
}

/* ── MARQUEE TICKER ─────────────────────────────── */
.ticker-strip {
  background: var(--black2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.ticker-strip::before,
.ticker-strip::after {
  content: ''; position: absolute; top: 0; bottom: 0;
  width: 100px; z-index: 2; pointer-events: none;
}
.ticker-strip::before { left: 0; background: linear-gradient(to right, var(--black2), transparent); }
.ticker-strip::after  { right: 0; background: linear-gradient(to left, var(--black2), transparent); }
.ticker-track {
  display: inline-flex;
  animation: ticker-scroll 32s linear infinite;
}
.ticker-strip:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 0 32px;
  font-size: 13px; font-weight: 600; color: var(--grey-light);
  white-space: nowrap;
}
.ticker-item strong { color: var(--white); }
.ticker-item svg { width: 14px; height: 14px; stroke: var(--blue); flex-shrink: 0; }
.ticker-dot {
  width: 4px; height: 4px; background: var(--blue);
  border-radius: 50%; flex-shrink: 0;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── CARD TOP GLOW LINE ─────────────────────────── */
.card {
  position: relative;
  overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--blue) 50%, transparent 100%);
  opacity: 0; transition: opacity 0.35s ease;
}
.card:hover::before { opacity: 1; }

/* ── SERVICE CARD NUMBER GHOST ──────────────────── */
.svc-card { position: relative; overflow: hidden; }
.svc-card__num {
  position: absolute; top: 16px; right: 20px;
  font-size: 64px; font-weight: 900; line-height: 1;
  color: rgba(255,255,255,0.04);
  letter-spacing: -0.04em;
  transition: color 0.35s ease;
  pointer-events: none; user-select: none;
}
.card.svc-card:hover .svc-card__num { color: rgba(232,64,0,0.09); }

/* ── BUTTON AMBIENT PULSE ───────────────────────── */
@keyframes btn-ambient {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,64,0,0); }
  50%       { box-shadow: 0 0 22px 6px rgba(232,64,0,0.18); }
}
.btn--primary { animation: btn-ambient 3.5s ease-in-out infinite; }
.btn--primary:hover { animation: none; }

/* ── TEXT ORANGE FLARE ──────────────────────────── */
@keyframes orange-flare {
  0%, 100% { text-shadow: none; }
  50%       { text-shadow: 0 0 24px rgba(232,64,0,0.5); }
}
.text-blue { animation: orange-flare 4.5s ease-in-out infinite; }

/* ── WHY FEAT HOVER ────────────────────────────── */
.why-feat:hover {
  border-color: var(--border-blue);
  box-shadow: 0 8px 32px rgba(232,64,0,0.1);
  transform: translateX(5px);
}

/* ── REVIEW CARD HOVER ─────────────────────────── */
.review-card {
  transition: var(--transition), box-shadow 0.3s ease;
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px var(--border-blue);
}

/* ── AREA TAG HOVER ────────────────────────────── */
.area-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* ── SECTION SEPARATOR GRADIENT ─────────────────── */
.section-sep {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-blue), transparent);
  border: none;
  margin: 0;
}

/* ── AREAS MAP ────────────────────────────────────── */
.areas-map-wrap {
  position: relative;
  width: 100%;
  margin-top: 52px;
  background: #090909;
  border-top: 1px solid rgba(232,64,0,0.15);
  border-bottom: 1px solid rgba(232,64,0,0.15);
  overflow: hidden;
}
.areas-svg {
  width: 100%;
  height: auto;
  display: block;
}
@keyframes map-ping {
  0%   { transform: scale(1); opacity: 0.9; }
  70%  { transform: scale(3.5); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}
.pin-pulse {
  transform-box: fill-box;
  transform-origin: center;
  animation: map-ping 2.4s ease-out infinite;
}
.pin-label {
  fill: rgba(255,255,255,0.7);
  font-size: 11px;
  font-family: 'Heebo', sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  pointer-events: none;
}
.pin-label-main {
  fill: #ffffff;
  font-size: 13px;
  font-weight: 800;
}
.areas-tag-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 28px 24px 44px;
  background: var(--black2);
}
.area-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--black3);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--grey-light);
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}
.area-tag:hover {
  border-color: var(--border-blue);
  color: var(--white);
  transform: translateY(-2px);
}
.area-tag--more {
  background: rgba(232,64,0,0.08);
  border-color: var(--border-blue);
  color: var(--blue);
}
.area-tag--more:hover {
  background: var(--blue);
  color: var(--white);
}

/* ── AREAS TICKER ────────────────────────────────── */
.areas-ticker {
  position: relative;
  overflow: hidden;
  background: var(--black2);
  padding: 22px 0 36px;
  white-space: nowrap;
}
.areas-ticker::before,
.areas-ticker::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 120px; z-index: 2; pointer-events: none;
}
.areas-ticker::before { left: 0; background: linear-gradient(to right, var(--black2), transparent); }
.areas-ticker::after  { right: 0; background: linear-gradient(to left,  var(--black2), transparent); }
.areas-ticker__track {
  display: inline-flex;
  gap: 10px;
  animation: areas-scroll 28s linear infinite;
}
.areas-ticker:hover .areas-ticker__track { animation-play-state: paused; }
@keyframes areas-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── MAP PIN ACTIVE CYCLING ──────────────────────── */
.map-pin-g { cursor: pointer; }

/* Inactive ring — hidden by default */
.map-pin-g .pin-active-ring {
  fill: rgba(232,64,0,0.12);
  stroke: rgba(232,64,0,0.55);
  stroke-width: 1.5;
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(0);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), opacity 0.4s ease;
}

/* Active ring appears */
.map-pin-g.map-active .pin-active-ring {
  transform: scale(1);
  opacity: 1;
}

/* Dot scaling */
.map-pin-g .pin-dot {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
.map-pin-g.map-active .pin-dot {
  transform: scale(1.7);
}

/* Label brightens */
.map-pin-g .pin-label {
  transition: fill 0.4s ease, font-weight 0.4s;
}
.map-pin-g.map-active .pin-label {
  fill: #ffffff !important;
  font-weight: 800 !important;
  font-size: 12.5px !important;
  filter: drop-shadow(0 0 6px rgba(232,64,0,0.8));
}

/* Connection line brightens on active area */
.map-pin-g.map-active ~ .map-line { stroke-opacity: 0.5; }

/* Active name badge — floats above the map */
.map-active-label {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(232,64,0,0.9);
  color: #fff;
  font-family: 'Heebo', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 6px 16px;
  border-radius: 100px;
  pointer-events: none;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  z-index: 5;
}
.areas-map-wrap { position: relative; }

