/* ============================================================
   A1 GYM & FITNESS CLUB — Design System
   "Performance Premium, Neon-Forged"
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* color */
  --bg: #06080B;
  --bg-2: #0B0F14;
  --surface: #11161D;
  --surface-2: #161C24;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);

  --cyan: #00E6D2;
  --cyan-bright: #3BF4E0;
  --blue: #2D7DFF;
  --red: #FF2E55;
  --wa: #25D366;

  --text: #EAF1F5;
  --muted: #95A2AF;
  --muted-2: #6C7884;

  --grad: linear-gradient(135deg, #3BF4E0 0%, #00E6D2 45%, #2D7DFF 100%);
  --grad-soft: linear-gradient(135deg, rgba(0,230,210,0.16), rgba(45,125,255,0.16));
  --glow: 0 0 30px rgba(0, 230, 210, 0.45);
  --glow-sm: 0 0 18px rgba(0, 230, 210, 0.35);

  /* type */
  --font-display: "Big Shoulders Display", "Arial Narrow", sans-serif;
  --font-body: "Sora", system-ui, -apple-system, sans-serif;
  --font-mono: "Space Mono", ui-monospace, "SFMono-Regular", monospace;

  /* layout */
  --container: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 26px;
  --pad: clamp(20px, 5vw, 40px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.8);
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
input, select, textarea { font-family: inherit; }

::selection { background: var(--cyan); color: #04201d; }

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

/* custom scrollbar */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #1e2630; border-radius: 20px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: #29333f; }

/* film grain overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}

.kicker {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--cyan);
  box-shadow: var(--glow-sm);
}
.kicker--center { justify-content: center; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.muted { color: var(--muted); }
.red { color: var(--red); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }
.container--wide { max-width: 1400px; }
.container--narrow { max-width: 880px; }

.section { padding: clamp(64px, 9vw, 128px) 0; position: relative; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section--alt { background:
    radial-gradient(1200px 600px at 85% -10%, rgba(45,125,255,0.07), transparent 60%),
    var(--bg-2); }

.section__head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 60px); }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  margin-top: 18px;
  letter-spacing: 0.01em;
}
.section__intro { color: var(--muted); font-size: 1.06rem; margin-top: 18px; max-width: 60ch; }
.section__head--center .section__intro { margin-left: auto; margin-right: auto; }

.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--line-2), transparent); border: 0; }

/* topographic motif */
.topo {
  background-image:
    repeating-linear-gradient(115deg, rgba(0,230,210,0.05) 0 1px, transparent 1px 26px);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary {
  background: var(--grad);
  color: #042321;
  box-shadow: 0 0 0 1px rgba(0,230,210,0.35), 0 10px 34px -8px rgba(0,230,210,0.55);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 0 0 1px rgba(0,230,210,0.6), 0 18px 50px -10px rgba(0,230,210,0.8); }
.btn--outline {
  border: 1px solid var(--line-2);
  color: var(--text);
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(6px);
}
.btn--outline:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-3px); box-shadow: var(--glow-sm); }
.btn--ghost { color: var(--muted); padding-left: 8px; padding-right: 8px; }
.btn--ghost:hover { color: var(--cyan); }
.btn--wa { background: var(--wa); color: #04150b; box-shadow: 0 10px 30px -10px rgba(37,211,102,0.7); }
.btn--wa:hover { transform: translateY(-3px); box-shadow: 0 16px 40px -10px rgba(37,211,102,0.9); }
.btn--lg { padding: 18px 36px; font-size: 0.88rem; }
.btn--block { width: 100%; }

/* ---------- Announcement bar ---------- */
.ann {
  background: linear-gradient(90deg, rgba(255,46,85,0.16), rgba(45,125,255,0.16));
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
  position: relative;
  z-index: 60;
}
.ann__inner { display: flex; align-items: center; justify-content: center; gap: 14px; padding: 9px var(--pad); text-align: center; flex-wrap: wrap; }
.ann b { color: #fff; }
.ann .dot { color: var(--cyan); }
.ann a { color: var(--cyan); font-weight: 600; border-bottom: 1px solid transparent; }
.ann a:hover { border-color: var(--cyan); }
.ann__close { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); color: var(--muted); width: 26px; height: 26px; border-radius: 50%; font-size: 1rem; line-height: 1; }
.ann__close:hover { color: #fff; background: rgba(255,255,255,0.08); }
.ann.is-hidden { display: none; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(6,8,11,0.82);
  backdrop-filter: blur(14px) saturate(120%);
  border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo { height: 44px; width: auto; filter: drop-shadow(0 0 10px rgba(0,230,210,0.38)); }
.brand__logo--full { height: auto; }
.brand__name { font-family: var(--font-display); font-weight: 800; font-size: 1.18rem; letter-spacing: 0.06em; line-height: 1; text-transform: uppercase; }
.brand__name small { display: block; font-family: var(--font-mono); font-size: 0.52rem; letter-spacing: 0.34em; color: var(--muted); font-weight: 400; margin-top: 3px; }

.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links a {
  padding: 9px 14px;
  font-size: 0.86rem;
  color: var(--muted);
  border-radius: 999px;
  position: relative;
  transition: color 0.25s;
}
.nav__links a:hover { color: var(--text); }
.nav__links a.is-active { color: var(--cyan); }
.nav__links a.is-active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 1px;
  background: var(--cyan); box-shadow: var(--glow-sm);
}
.nav__right { display: flex; align-items: center; gap: 14px; }

.hamburger { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line); flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.hamburger span { width: 20px; height: 2px; background: var(--text); transition: transform 0.3s var(--ease), opacity 0.3s; }
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0 0 0 auto; width: min(82vw, 360px);
  background: var(--bg-2); border-left: 1px solid var(--line);
  transform: translateX(100%); transition: transform 0.45s var(--ease);
  z-index: 70; padding: 90px 28px 28px; display: flex; flex-direction: column; gap: 6px;
}
.mobile-menu.is-open { transform: translateX(0); box-shadow: -30px 0 80px rgba(0,0,0,0.6); }
.mobile-menu a { padding: 14px 8px; font-family: var(--font-display); text-transform: uppercase; font-size: 1.5rem; letter-spacing: 0.04em; color: var(--text); border-bottom: 1px solid var(--line); }
.mobile-menu a.is-active { color: var(--cyan); }
.mobile-menu .btn { margin-top: 18px; }
.menu-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(3px); z-index: 65; opacity: 0; pointer-events: none; transition: opacity 0.4s; }
.menu-backdrop.is-open { opacity: 1; pointer-events: auto; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: clamp(620px, 90vh, 940px); display: flex; align-items: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.5) contrast(1.05) saturate(1.05); }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 700px at 75% 30%, rgba(45,125,255,0.22), transparent 60%),
    linear-gradient(180deg, rgba(6,8,11,0.55) 0%, rgba(6,8,11,0.4) 40%, rgba(6,8,11,0.96) 100%),
    linear-gradient(90deg, rgba(6,8,11,0.9) 0%, rgba(6,8,11,0.3) 60%, transparent 100%);
}
.hero__inner { position: relative; z-index: 2; padding: 120px 0 80px; max-width: 880px; }
.hero__title { font-size: clamp(3rem, 9vw, 7rem); line-height: 0.9; margin: 22px 0; }
.hero__title .grad-text { display: inline; }
.hero__sub { font-size: clamp(1.05rem, 2vw, 1.3rem); color: #c9d3dc; max-width: 56ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }

.hero__stats { position: relative; z-index: 2; border-top: 1px solid var(--line); }
.stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.stat { background: rgba(11,15,20,0.6); padding: 26px 22px; backdrop-filter: blur(6px); }
.stat__num { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1; }
.stat__label { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 10px; }

/* ---------- Marquee ---------- */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); overflow: hidden; padding: 16px 0; }
.marquee__track { display: flex; gap: 0; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { font-family: var(--font-display); text-transform: uppercase; font-size: 1.5rem; font-weight: 700; letter-spacing: 0.04em; color: var(--text); padding: 0 28px; display: inline-flex; align-items: center; gap: 28px; }
.marquee__item::after { content: "◆"; color: var(--cyan); font-size: 0.8rem; }
.marquee__item.is-accent { color: transparent; background: var(--grad); -webkit-background-clip: text; background-clip: text; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: var(--grad); opacity: 0;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  transition: opacity 0.4s;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(0,0,0,0.9), var(--glow-sm); }
.card:hover::before { opacity: 0.6; }

.card__index { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.2em; color: var(--muted-2); }
.card__icon { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; background: var(--grad-soft); border: 1px solid var(--line-2); color: var(--cyan); margin-bottom: 20px; }
.card__icon svg { width: 26px; height: 26px; }
.card__title { font-size: 1.5rem; margin: 6px 0 12px; }
.card__text { color: var(--muted); font-size: 0.96rem; }

/* pillars */
.pillar { padding: 36px 30px; }
.pillar__num { font-family: var(--font-display); font-size: 3.4rem; font-weight: 900; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; opacity: 0.9; }
.pillar__title { font-size: 1.9rem; margin: 14px 0 12px; }

/* service card with media */
.service { padding: 0; }
.service .media { height: 200px; border-radius: 0; }
.service__body { padding: 26px 28px 30px; }

/* ---------- Media / images ---------- */
.media { position: relative; overflow: hidden; background: linear-gradient(135deg, #0c2a2c, #0a1530 70%); }
.media::before {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(160deg, rgba(0,230,210,0.12), transparent 45%, rgba(45,125,255,0.16));
  mix-blend-mode: soft-light;
}
.media img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; filter: saturate(1.02) contrast(1.04) brightness(0.92); transition: transform 0.7s var(--ease); }
.media.is-broken img { opacity: 0; }
.media.is-broken::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 22px);
}
a:hover .media img, .card:hover .media img, .gallery__item:hover .media img { transform: scale(1.06); }

/* ---------- Ladies band ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { height: clamp(360px, 50vw, 560px); border-radius: var(--radius-lg); }
.ladies { background:
    radial-gradient(800px 500px at 10% 20%, rgba(0,230,210,0.08), transparent 60%),
    var(--bg-2); }
.feature-list { display: grid; gap: 14px; margin-top: 26px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; color: var(--muted); }
.feature-list svg { flex: 0 0 auto; width: 22px; height: 22px; color: var(--cyan); margin-top: 2px; }
.feature-list b { color: var(--text); font-weight: 600; }

/* ---------- Plans / pricing ---------- */
.plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
.plan-pair { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; align-items: stretch; max-width: 660px; margin: 0 auto; }
@media (max-width: 640px) { .plan-pair { grid-template-columns: 1fr; } }
.plan { display: flex; flex-direction: column; padding: 30px 26px; }
.plan--featured { background: linear-gradient(180deg, rgba(0,230,210,0.10), rgba(45,125,255,0.06)); border-color: rgba(0,230,210,0.4); box-shadow: 0 30px 70px -34px rgba(0,230,210,0.5); }
.plan--featured::before { opacity: 0.5; }
.plan__flag { position: absolute; top: 16px; right: -34px; transform: rotate(45deg); background: var(--red); color: #fff; font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.16em; padding: 5px 40px; text-transform: uppercase; }
.plan__name { font-family: var(--font-display); font-size: 1.5rem; text-transform: uppercase; letter-spacing: 0.04em; }
.plan__price { display: flex; align-items: baseline; gap: 8px; margin: 14px 0 4px; }
.plan__price .amount { font-family: var(--font-display); font-size: 3.2rem; font-weight: 900; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.plan__price .cur { font-family: var(--font-mono); font-size: 0.9rem; color: var(--muted); }
.plan__was { font-family: var(--font-mono); font-size: 0.82rem; color: var(--muted-2); }
.plan__was s { color: var(--muted-2); }
.plan__was b { color: var(--red); }
.plan__perks { display: grid; gap: 11px; margin: 22px 0 26px; padding-top: 22px; border-top: 1px solid var(--line); }
.plan__perks li { display: flex; justify-content: space-between; gap: 12px; font-size: 0.92rem; color: var(--muted); }
.plan__perks li b { color: var(--text); font-family: var(--font-mono); font-weight: 700; }
.plan__perks li.off { color: var(--muted-2); opacity: 0.6; }
.plan .btn { margin-top: auto; }

/* comparison matrix */
.matrix-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
.matrix { width: 100%; border-collapse: collapse; min-width: 720px; }
.matrix th, .matrix td { padding: 16px 18px; text-align: center; border-bottom: 1px solid var(--line); }
.matrix thead th { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.04em; font-size: 1.1rem; background: var(--surface); position: sticky; top: 0; }
.matrix tbody th { text-align: left; font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); font-weight: 400; }
.matrix td { font-family: var(--font-mono); font-size: 0.95rem; }
.matrix .col-feat { background: rgba(0,230,210,0.05); }
.matrix .col-feat.amount { color: var(--cyan); font-weight: 700; }
.matrix tr:hover td { background: rgba(255,255,255,0.015); }
.matrix .dash { color: var(--muted-2); }
.matrix tbody tr:last-child td, .matrix tbody tr:last-child th { border-bottom: none; }

/* ---------- Offer band + countdown ---------- */
.offer {
  background:
    radial-gradient(700px 400px at 80% 50%, rgba(255,46,85,0.14), transparent 60%),
    linear-gradient(135deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line-2); border-radius: var(--radius-lg);
  padding: clamp(34px, 5vw, 60px); text-align: center; position: relative; overflow: hidden;
}
.offer__badge { display: inline-flex; gap: 8px; align-items: center; font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); border: 1px solid rgba(255,46,85,0.4); padding: 7px 16px; border-radius: 999px; }
.offer__title { font-size: clamp(2rem, 6vw, 4rem); margin: 20px 0 10px; }
.countdown { display: flex; justify-content: center; gap: 14px; margin: 30px 0; flex-wrap: wrap; }
.cd-unit { background: rgba(6,8,11,0.6); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 18px; min-width: 86px; }
.cd-unit .n { font-family: var(--font-display); font-size: 2.6rem; font-weight: 900; line-height: 1; }
.cd-unit .l { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; }
.gallery__item { border-radius: var(--radius-sm); overflow: hidden; }
.gallery__item .media { height: 100%; }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

/* ---------- Gallery page: filter + grid + lightbox ---------- */
.gallery-filter { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: clamp(30px, 4vw, 48px); }
.filter-btn {
  font-family: var(--font-mono); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); padding: 10px 20px; border-radius: 999px;
  border: 1px solid var(--line-2); background: rgba(255,255,255,0.02); backdrop-filter: blur(6px);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.filter-btn:hover { color: var(--text); border-color: var(--cyan); transform: translateY(-2px); }
.filter-btn.is-active { color: #042321; background: var(--grad); border-color: transparent; box-shadow: var(--glow-sm); }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 240px; gap: 14px; }
.gallery-tile {
  display: block; width: 100%; height: 100%; padding: 0; cursor: zoom-in;
  border-radius: var(--radius-sm); overflow: hidden; position: relative; background: var(--surface);
}
.gallery-tile .media { height: 100%; }
.gallery-tile::after {
  content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  border: 1px solid transparent; border-radius: inherit; transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.gallery-tile:hover::after, .gallery-tile:focus-visible::after { border-color: rgba(0,230,210,0.55); box-shadow: inset var(--glow-sm); }
.gallery-tile:hover .media img, .gallery-tile:focus-visible .media img { transform: scale(1.06); }
.gallery-tile.is-hidden { display: none; }

.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center;
  padding: clamp(16px, 4vmin, 48px); background: rgba(4,6,9,0.92); backdrop-filter: blur(10px);
  opacity: 0; transition: opacity 0.35s var(--ease);
}
.lightbox.is-open { display: flex; opacity: 1; }
.lightbox__stage { position: relative; max-width: 100%; max-height: 100%; display: flex; align-items: center; justify-content: center; }
.lightbox__img {
  max-width: 92vw; max-height: 84vh; width: auto; height: auto; object-fit: contain;
  border-radius: var(--radius-sm); box-shadow: 0 40px 120px -30px rgba(0,0,0,0.9), 0 0 0 1px var(--line-2);
}
.lightbox__cap {
  position: absolute; left: 0; right: 0; bottom: 16px; text-align: center;
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}
.lightbox__btn {
  position: fixed; z-index: 201; display: grid; place-items: center; color: var(--text);
  border: 1px solid var(--line-2); background: rgba(11,15,20,0.6); backdrop-filter: blur(8px);
  border-radius: 50%; transition: color 0.25s, border-color 0.25s, background 0.25s, transform 0.25s var(--ease);
}
.lightbox__btn:hover { color: var(--cyan); border-color: var(--cyan); box-shadow: var(--glow-sm); }
.lightbox__close { top: 18px; right: 20px; width: 48px; height: 48px; font-size: 1.5rem; line-height: 1; }
.lightbox__nav { top: 50%; transform: translateY(-50%); width: 54px; height: 54px; }
.lightbox__nav svg { width: 24px; height: 24px; }
.lightbox__nav:hover { transform: translateY(-50%) scale(1.08); }
.lightbox__nav--prev { left: 18px; }
.lightbox__nav--next { right: 18px; }
.lightbox__counter { position: fixed; top: 24px; left: 24px; z-index: 201; font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.16em; color: var(--muted); }

/* ---------- Rating ---------- */
.rating { display: inline-flex; align-items: center; gap: 18px; background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 14px 26px; }
.rating__score { font-family: var(--font-display); font-size: 2.4rem; font-weight: 900; line-height: 1; }
.rating__stars { color: var(--cyan); letter-spacing: 2px; font-size: 1.1rem; }
.rating__meta { font-size: 0.82rem; color: var(--muted); }
.rating__meta a { color: var(--cyan); }

/* ---------- Location ---------- */
.map-frame { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; height: 100%; min-height: 360px; background: var(--surface); }
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; filter: invert(0.92) hue-rotate(180deg) contrast(0.9) brightness(0.9); }
.info-list { display: grid; gap: 22px; }
.info-item { display: flex; gap: 16px; }
.info-item__ic { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 12px; background: var(--grad-soft); border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--cyan); }
.info-item__ic svg { width: 22px; height: 22px; }
.info-item h4 { font-family: var(--font-body); font-weight: 600; text-transform: none; font-size: 1rem; letter-spacing: 0; }
.info-item p, .info-item a { color: var(--muted); font-size: 0.95rem; }
.info-item a:hover { color: var(--cyan); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq summary { padding: 20px 24px; font-family: var(--font-display); text-transform: uppercase; font-size: 1.15rem; letter-spacing: 0.02em; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-body); color: var(--cyan); font-size: 1.6rem; transition: transform 0.3s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details[open] summary { color: var(--cyan); }
.faq p { padding: 0 24px 22px; color: var(--muted); }

/* ---------- Roles (careers) ---------- */
.role { display: flex; flex-direction: column; }
.role__tag { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cyan); }
.role__title { font-size: 1.7rem; margin: 10px 0 14px; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
  background: var(--bg); border: 1px solid var(--line-2); border-radius: var(--radius-sm);
  padding: 14px 16px; color: var(--text); font-size: 0.98rem; transition: border-color 0.25s, box-shadow 0.25s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--cyan); box-shadow: var(--glow-sm); }
.field select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%2395A2AF' stroke-width='2'><path d='M3 5l4 4 4-4'/></svg>"); background-repeat: no-repeat; background-position: right 16px center; }
.form__note { font-size: 0.82rem; color: var(--muted-2); }
.form__success { display: none; background: var(--grad-soft); border: 1px solid rgba(0,230,210,0.4); border-radius: var(--radius-sm); padding: 16px 18px; color: var(--text); font-size: 0.95rem; }
.form__success.is-show { display: block; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--red); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; text-align: center; padding: clamp(60px, 8vw, 110px) 0; overflow: hidden; }
.cta-band__bg { position: absolute; inset: 0; z-index: 0; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.34) grayscale(0.2); }
.cta-band__bg::after { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 400px at 50% 120%, rgba(0,230,210,0.25), transparent 60%), rgba(6,8,11,0.7); }
.cta-band__inner { position: relative; z-index: 2; }
.cta-band__title { font-size: clamp(2.4rem, 7vw, 5rem); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--bg-2); padding: clamp(50px, 6vw, 80px) 0 34px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer__brand .brand { margin-bottom: 18px; }
.footer__brand .brand__logo { height: 88px; filter: drop-shadow(0 0 16px rgba(0,230,210,0.22)); }
.footer__tag { color: var(--muted); font-size: 0.95rem; max-width: 32ch; }
.footer__col h5 { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 18px; }
.footer__col a, .footer__col p { display: block; color: var(--muted); font-size: 0.92rem; padding: 5px 0; }
.footer__col a:hover { color: var(--cyan); }
.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a { width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--text); transition: all 0.3s var(--ease); }
.socials a:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-3px); box-shadow: var(--glow-sm); }
.socials svg { width: 20px; height: 20px; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-top: 50px; padding-top: 26px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.footer__bottom p { font-size: 0.82rem; color: var(--muted-2); }
.footer__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.footer__tags span { font-family: var(--font-mono); font-size: 0.68rem; color: var(--muted-2); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--wa); color: #04150b; display: grid; place-items: center;
  box-shadow: 0 14px 36px -8px rgba(37,211,102,0.7);
  transition: transform 0.3s var(--ease);
  transform: translateY(120px); opacity: 0;
}
.wa-float.is-show { transform: translateY(0); opacity: 1; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; }
.wa-float::before { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--wa); animation: pulse 2.4s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.7); opacity: 0; } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); transition-delay: var(--delay, 0s); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal--left { transform: translateX(-30px); }
.reveal--right { transform: translateX(30px); }
.reveal--scale { transform: scale(0.94); }
.stagger > .reveal:nth-child(1) { --delay: 0.05s; }
.stagger > .reveal:nth-child(2) { --delay: 0.13s; }
.stagger > .reveal:nth-child(3) { --delay: 0.21s; }
.stagger > .reveal:nth-child(4) { --delay: 0.29s; }
.stagger > .reveal:nth-child(5) { --delay: 0.37s; }
.stagger > .reveal:nth-child(6) { --delay: 0.45s; }

/* ---------- Helpers ---------- */
.center { text-align: center; }
.mt-s { margin-top: 16px; } .mt-m { margin-top: 28px; } .mt-l { margin-top: 44px; }
.hide { display: none !important; }
.eyebrow-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .hamburger { display: flex; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; }
}
@media (max-width: 760px) {
  .nav__right .btn--primary { display: none; }
  .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; gap: 10px; }
  .gallery-filter { gap: 8px; }
  .filter-btn { padding: 8px 15px; font-size: 0.68rem; letter-spacing: 0.1em; }
  .lightbox__nav { width: 44px; height: 44px; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
  .hero__cta .btn { flex: 1; }
}
@media (max-width: 420px) {
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .cd-unit { min-width: 70px; padding: 12px; }
  .cd-unit .n { font-size: 2rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
  .wa-float { transform: none; opacity: 1; }
}
