/* =====================================================================
   WORKADULT.PRO — Premium Dark Glassmorphism
   Sora (display) + Inter (text) · aurora mesh · glass cards · glow
   ===================================================================== */

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

:root {
  /* base */
  --bg: #07060d;
  --bg-2: #0b0916;

  /* accents */
  --c1: #ff4d8d;   /* pink   */
  --c2: #a855f7;   /* violet */
  --c3: #38bdf8;   /* sky    */
  --gold: #ffd24a;

  /* text */
  --text: #f4f2fb;
  --muted: #b0aacb;
  --faint: #756f93;

  /* glass */
  --glass: rgba(255, 255, 255, 0.045);
  --glass-2: rgba(255, 255, 255, 0.07);
  --stroke: rgba(255, 255, 255, 0.10);
  --stroke-2: rgba(255, 255, 255, 0.18);

  --blur: blur(20px) saturate(150%);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
  --shadow-sm: 0 8px 26px rgba(0, 0, 0, 0.4);
  --radius: 20px;
  --maxw: 1200px;
  --ease: cubic-bezier(.22, .8, .3, 1);
  --ease-soft: cubic-bezier(.16, 1, .3, 1);

  --display: 'Sora', 'Inter', system-ui, sans-serif;
  --body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }

/* ===== Animated gradient mesh / aurora background ===== */
.bg-aurora {
  position: fixed; inset: 0; z-index: -3; overflow: hidden;
  background: radial-gradient(120% 120% at 50% 0%, #100a22 0%, var(--bg) 55%, #050409 100%);
}
.bg-aurora i {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: 0.55; mix-blend-mode: screen;
  animation: drift 22s var(--ease) infinite alternate;
}
.bg-aurora i:nth-child(1) { width: 46vw; height: 46vw; background: var(--c1); top: -12vw; left: -8vw; }
.bg-aurora i:nth-child(2) { width: 42vw; height: 42vw; background: var(--c2); top: 8vw; right: -10vw; animation-delay: -7s; }
.bg-aurora i:nth-child(3) { width: 40vw; height: 40vw; background: var(--c3); bottom: -14vw; left: 28vw; animation-delay: -13s; opacity: .4; }
@keyframes drift {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(6vw,-5vw) scale(1.25); }
}

/* particle canvas (fx.js) */
#fx { position: fixed; inset: 0; z-index: -2; pointer-events: none; }

/* fine grain overlay */
.bg-grain {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== Layout ===== */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: 92px 0; position: relative; }
.narrow { max-width: 860px; }

/* ===== Glass primitive ===== */
.glass {
  background: var(--glass);
  border: 1px solid var(--stroke);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.06);
}

/* ===== Nav ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  height: 66px; padding: 0 28px;
  background: rgba(9, 7, 16, 0.55);
  backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  border-bottom: 1px solid var(--stroke);
}
.nav-logo { font-family: var(--display); font-weight: 800; font-size: 18px; letter-spacing: 0.5px; color: #fff; }
.nav-logo span { background: linear-gradient(120deg, var(--c1), var(--c2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > a {
  color: var(--muted); font-size: 14px; font-weight: 500;
  padding: 9px 15px; border-radius: 999px; transition: color .2s, background .2s;
}
.nav-links > a:hover { color: #fff; background: var(--glass-2); }
.nav-lang { display: flex; gap: 2px; margin-left: 8px; padding-left: 10px; border-left: 1px solid var(--stroke); }
.nav-lang a { color: var(--faint); font-size: 13px; font-weight: 600; padding: 6px 9px; border-radius: 999px; }
.nav-lang a.active { color: var(--c3); }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.burger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--body); font-weight: 600; font-size: 15px;
  padding: 13px 26px; border-radius: 999px; cursor: pointer;
  border: 1px solid transparent; text-decoration: none;
  transition: transform .22s var(--ease), box-shadow .28s, background .25s, border-color .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold, .btn-primary {
  color: #fff;
  background: linear-gradient(120deg, var(--c1), var(--c2) 55%, var(--c3));
  background-size: 180% 180%;
  box-shadow: 0 10px 34px rgba(168, 85, 247, 0.4);
  animation: btnflow 7s ease infinite;
}
.btn-gold:hover, .btn-primary:hover { box-shadow: 0 16px 46px rgba(255, 77, 141, 0.5); }
@keyframes btnflow { 0%,100%{background-position:0% 50%;} 50%{background-position:100% 50%;} }
.btn-white, .btn-ghost {
  color: var(--text); background: var(--glass-2);
  border: 1px solid var(--stroke-2);
  backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
}
.btn-white:hover, .btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--stroke-2); }
.btn-black { color: #0c0a14; background: #fff; }
.btn-black:hover { background: #fff; box-shadow: 0 12px 34px rgba(255,255,255,0.18); }
.btn-green { color: #04130b; background: linear-gradient(120deg, #34e89e, #13ce66); box-shadow: 0 10px 30px rgba(19,206,102,.3); }
.btn-green:hover { box-shadow: 0 14px 40px rgba(19,206,102,.45); }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== Typography helpers ===== */
.eyebrow, .section-label {
  display: inline-block; font-family: var(--body);
  font-size: 12px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--c3); margin-bottom: 14px;
}
.section-title, h1, h2, h3 { font-family: var(--display); letter-spacing: -0.02em; line-height: 1.12; }
.section-title { font-size: clamp(28px, 3.4vw, 44px); font-weight: 800; margin-bottom: 16px; color: var(--text); }
.section-desc { font-size: 17px; color: var(--muted); max-width: 640px; line-height: 1.7; }
.grad {
  background: linear-gradient(115deg, var(--c1) 0%, var(--c2) 45%, var(--c3) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ===== Hero ===== */
.hero { position: relative; padding: 168px 0 96px; overflow: hidden; }
.hero-inner { max-width: 880px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 16px; border-radius: 999px; margin-bottom: 26px;
  font-size: 13px; font-weight: 600; color: var(--muted);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #36e27e; box-shadow: 0 0 0 0 rgba(54,226,126,.7); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(54,226,126,.55);} 70%{box-shadow:0 0 0 9px rgba(54,226,126,0);} 100%{box-shadow:0 0 0 0 rgba(54,226,126,0);} }
.hero h1 { font-size: clamp(38px, 6vw, 72px); font-weight: 800; color: #fff; letter-spacing: -0.03em; margin-bottom: 22px; }
.hero p { font-size: clamp(16px, 2vw, 20px); color: var(--muted); max-width: 620px; margin-bottom: 34px; }
.hero .btn-group { margin-bottom: 56px; }

/* stat row */
.stats { display: flex; gap: 16px; flex-wrap: wrap; }
.stat { padding: 20px 26px; border-radius: var(--radius); min-width: 150px; }
.stat b { display: block; font-family: var(--display); font-size: 30px; font-weight: 800; }
.stat span { font-size: 13px; color: var(--muted); }

/* ===== Cards / grids ===== */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.card {
  position: relative; padding: 30px; border-radius: var(--radius);
  background: var(--glass); border: 1px solid var(--stroke);
  backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; opacity: 0;
  background: radial-gradient(420px 220px at var(--mx, 50%) var(--my, 0%), rgba(168,85,247,0.18), transparent 70%);
  transition: opacity .35s; pointer-events: none;
}
.card:hover { transform: translateY(-6px); border-color: var(--stroke-2); box-shadow: var(--shadow), 0 0 40px rgba(168,85,247,0.18); }
.card:hover::before { opacity: 1; }
.card-ico {
  width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center;
  font-size: 24px; margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(255,77,141,0.22), rgba(56,189,248,0.18));
  border: 1px solid var(--stroke);
}
.card h3 { font-size: 19px; font-weight: 700; margin-bottom: 9px; color: var(--text); }
.card p { font-size: 14.5px; color: var(--muted); line-height: 1.7; }

/* ===== Pricing ===== */
.price-card { text-align: center; padding: 44px 30px 36px; }
.price-amount { display: block; font-family: var(--display); font-size: 48px; font-weight: 800; line-height: 1; margin-bottom: 16px; }
.price-amount .grad { display: inline; }
.price-desc { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 28px; min-height: 70px; }

/* ===== Section heading block ===== */
.head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.head .section-desc { margin: 0 auto; }

/* ===== Checklist ===== */
.checklist { list-style: none; display: grid; gap: 12px; }
.checklist li { position: relative; padding-left: 32px; color: var(--text); font-size: 15.5px; }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  width: 22px; height: 22px; display: grid; place-items: center; font-size: 12px; color: #fff;
  border-radius: 50%; background: linear-gradient(135deg, var(--c1), var(--c2));
}

/* ===== Forms ===== */
.form-wrap { border-radius: 24px; padding: 38px; }
.form-group { margin-bottom: 18px; }
.field { display: grid; gap: 7px; margin-bottom: 16px; }
.form-group label, .field label, .lbl { display: block; font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 7px; }
.lbl .req { color: var(--c1); }
input, select, textarea, .inp {
  width: 100%; font-family: var(--body); font-size: 15px; color: var(--text);
  padding: 13px 15px; border-radius: 13px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--stroke);
  transition: border-color .18s, box-shadow .18s, background .18s;
}
input::placeholder, textarea::placeholder { color: var(--faint); }
select option { background: #14111f; color: var(--text); }
textarea { min-height: 110px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--c2);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 0 0 3px rgba(168,85,247,0.22);
}
.form-note { font-size: 12px; color: var(--faint); margin-top: 5px; }
.form-success {
  display: none; margin-top: 14px; padding: 16px; border-radius: 14px; text-align: center;
  font-weight: 600; color: #9af0bf;
  background: rgba(43,213,118,0.12); border: 1px solid rgba(43,213,118,0.35);
}

/* ===== Breadcrumb ===== */
.breadcrumb { padding: 14px 0; font-size: 13px; color: var(--faint); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--c3); }
.breadcrumb span { margin: 0 7px; opacity: .6; }

/* ===== Vacancy board (vakansii) ===== */
.vac-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 36px; align-items: start; }
.post-grid { display: grid; gap: 14px; margin-top: 16px; }
.seeker-grid { display: grid; gap: 14px; margin-top: 16px; }
.vac-col-title { font-size: 22px; font-weight: 700; margin: 4px 0 2px; color: var(--text); }
.post-card {
  position: relative; display: block; padding: 20px 22px; border-radius: 16px; color: inherit;
  background: var(--glass); border: 1px solid var(--stroke);
  backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.post-card:hover { transform: translateY(-3px); border-color: var(--stroke-2); box-shadow: var(--shadow-sm), 0 0 30px rgba(56,189,248,0.14); }
.post-card.pinned { border-color: rgba(255,210,74,0.55); background: linear-gradient(180deg, rgba(255,210,74,0.10), var(--glass)); }
.pin-badge {
  position: absolute; top: -11px; left: 18px;
  background: linear-gradient(120deg, var(--gold), #f5a623); color: #2a2000;
  font-size: 11px; font-weight: 800; padding: 3px 11px; border-radius: 999px;
}
.vac-org { font-size: 11px; font-weight: 800; color: var(--gold); text-transform: uppercase; letter-spacing: .6px; margin-bottom: 5px; }
.vac-title { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 5px; }
.vac-sal { font-size: 13.5px; color: var(--c3); font-weight: 600; margin-bottom: 7px; }
.vac-desc { font-size: 13.5px; color: var(--muted); line-height: 1.55; margin-bottom: 11px; white-space: pre-wrap; }
.vac-contact { display: inline-block; font-size: 13.5px; font-weight: 600; color: var(--c1); }
.vac-contact:hover { text-decoration: underline; }
.pager { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 18px; }
.pager .pg {
  min-width: 34px; height: 34px; border-radius: 10px; cursor: pointer;
  border: 1px solid var(--stroke); background: var(--glass); color: var(--muted); font-size: 13px;
  transition: .2s;
}
.pager .pg:hover { color: #fff; border-color: var(--stroke-2); }
.pager .pg.active { background: linear-gradient(120deg, var(--c1), var(--c2)); border-color: transparent; color: #fff; font-weight: 700; }

/* role choice / telegram card */
.tg-badge {
  border-radius: 13px; padding: 12px 15px; margin-bottom: 18px; font-size: 14px;
  color: #9af0bf; background: rgba(43,213,118,0.12); border: 1px solid rgba(43,213,118,0.32);
}
.pay-box { border-radius: 16px; padding: 18px; margin-top: 6px; background: rgba(255,210,74,0.06); border: 1px solid rgba(255,210,74,0.28); }
.pay-box .addr {
  flex: 1; display: block; font-family: ui-monospace, monospace; font-size: 13px; word-break: break-all;
  background: rgba(0,0,0,0.3); border: 1px solid var(--stroke); border-radius: 9px; padding: 9px 11px; color: var(--text);
}
.copy-btn { background: linear-gradient(120deg, var(--gold), #f5a623); border: 0; border-radius: 9px; padding: 9px 13px; font-size: 13px; font-weight: 700; cursor: pointer; white-space: nowrap; color: #2a2000; }
.check-row { display: flex; align-items: flex-start; gap: 11px; cursor: pointer; }
.check-row input[type=checkbox] { width: 18px; height: 18px; margin-top: 3px; flex-shrink: 0; accent-color: var(--c2); }

/* info tooltip */
.rules-info { display:inline-flex; align-items:center; justify-content:center; width:21px; height:21px; border-radius:50%;
  background: rgba(255,210,74,0.2); color: var(--gold); font-size:13px; font-weight:700; cursor:help; position:relative; vertical-align:middle; margin-left:8px; }
.rules-info .rules-pop { visibility:hidden; opacity:0; transition:.15s; position:absolute; top:140%; left:50%; transform:translateX(-50%);
  width:300px; max-width:78vw; border-radius:12px; padding:14px 16px; font-size:13px; font-weight:400; line-height:1.6; text-align:left; z-index:20;
  background: rgba(20,16,30,0.96); border:1px solid var(--stroke-2); box-shadow: var(--shadow); color: var(--muted); backdrop-filter: var(--blur); }
.rules-info:hover .rules-pop, .rules-info:focus .rules-pop { visibility:visible; opacity:1; }
.rules-info .rules-pop b { color: var(--text); }

/* ===== Blog ===== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; margin-top: 36px; }
.blog-grid .post-card { padding: 26px; }
.blog-grid .tag { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--c1); }
.blog-grid h3 { font-size: 19px; margin: 12px 0 9px; color: var(--text); line-height: 1.3; }
.blog-grid p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ===== mini board (index) ===== */
.mini-list { display: grid; gap: 8px; }
.mini-vac { border-radius: 12px; padding: 10px 13px; background: var(--glass); border: 1px solid var(--stroke); }
.mini-vac.pin { border-color: rgba(255,210,74,0.5); background: rgba(255,210,74,0.07); }
.mini-vac .o { font-size: 10px; font-weight: 800; color: var(--gold); text-transform: uppercase; letter-spacing: .4px; margin-bottom: 2px; }
.mini-vac .t { font-size: 13.5px; font-weight: 700; color: var(--text); }
.mini-vac .t small { font-weight: 500; color: var(--muted); }
.spot-status { font-size: 12.5px; font-weight: 600; line-height: 1.5; margin: 10px 0 0; }

/* ===== Footer ===== */
footer { border-top: 1px solid var(--stroke); background: rgba(7,5,12,0.6); backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur); padding: 60px 0 34px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 44px; }
.footer-logo { font-family: var(--display); font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.footer-logo span { background: linear-gradient(120deg, var(--c1), var(--c2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.footer-desc { font-size: 13.5px; color: var(--muted); line-height: 1.75; max-width: 320px; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 14px; color: var(--muted); padding: 5px 0; transition: color .18s; }
.footer-col a:hover { color: var(--c3); }
.footer-bottom { border-top: 1px solid var(--stroke); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 13px; color: var(--faint); }
.footer-cities { border-top: 1px solid var(--stroke); margin-top: 30px; padding-top: 22px; }
.footer-cities summary { cursor: pointer; font-weight: 600; font-size: 15px; color: var(--text); list-style: none; }
.footer-cities summary::-webkit-details-marker { display: none; }
.footer-cities .cities { display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: 13px; line-height: 1.8; margin-top: 14px; }
.footer-cities .cities a { color: var(--muted); }
.footer-cities .cities a:hover { color: var(--c3); }


/* ===== Marquee (infinite platform ticker) ===== */
.marquee{overflow:hidden;-webkit-mask-image:linear-gradient(90deg,transparent,#000 12%,#000 88%,transparent);mask-image:linear-gradient(90deg,transparent,#000 12%,#000 88%,transparent);}
.marquee-track{display:flex;gap:58px;width:max-content;animation:marq 24s linear infinite;font-family:var(--display);font-weight:700;font-size:22px;color:var(--muted);}
.marquee:hover .marquee-track{animation-play-state:paused;}
.marquee-track span{opacity:.72;white-space:nowrap;}
.marquee-track span::after{content:"\00B7";margin-left:58px;color:var(--c2);opacity:.5;}
@keyframes marq{to{transform:translateX(-50%);}}

/* ===== Hero media layers (shared) ===== */
.hero-media{position:absolute;inset:0;z-index:0;overflow:hidden;}
.hero-chips{display:flex;align-items:center;gap:12px;flex-wrap:wrap;margin-bottom:22px;}
.live-badge{display:inline-flex;align-items:center;gap:8px;padding:6px 14px;border-radius:999px;font-family:var(--display);font-weight:800;font-size:13px;letter-spacing:1px;color:#fff;background:linear-gradient(120deg,#ff2d55,#ff5d8f);box-shadow:0 0 22px rgba(255,45,85,.55);}
.live-dot{width:9px;height:9px;border-radius:50%;background:#fff;animation:livepulse 1.2s infinite;}
@keyframes livepulse{0%{box-shadow:0 0 0 0 rgba(255,255,255,.7);}70%{box-shadow:0 0 0 9px rgba(255,255,255,0);}100%{box-shadow:0 0 0 0 rgba(255,255,255,0);}}
.viewers{padding:7px 14px;border-radius:999px;font-size:13px;color:var(--muted);}
.viewers b{color:#fff;font-variant-numeric:tabular-nums;}

/* ===== Scroll reveal — self-animating, JS-independent, GPU-light ===== */
.reveal { opacity: 0; transform: translateY(20px);
  animation: revealIn .9s cubic-bezier(.16,1,.3,1) forwards; will-change: opacity, transform; }
@keyframes revealIn { to { opacity: 1; transform: none; } }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { animation-delay: .08s; } .reveal.d2 { animation-delay: .16s; } .reveal.d3 { animation-delay: .24s; } .reveal.d4 { animation-delay: .32s; }

/* ===== Responsive ===== */
@media (max-width: 940px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 760px) {
  .nav-links, .nav-lang { }
  .nav-links {
    display: none; position: fixed; top: 66px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 4px;
    padding: 16px; background: rgba(9,7,16,0.96); border-bottom: 1px solid var(--stroke);
    backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  }
  .nav-links.open { display: flex; }
  .nav-lang { margin: 6px 0 0; padding: 8px 0 0; border-left: 0; border-top: 1px solid var(--stroke); }
  .burger { display: flex; }
  .section { padding: 64px 0; }
  .hero { padding: 130px 0 64px; min-height: auto; }
  .grid-2, .grid-3, .vac-columns { grid-template-columns: 1fr; }
  .form-wrap { padding: 26px 20px; }
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; }
  .footer-bottom { flex-direction: column; }
  /* hero text + chips fit small screens */
  .hero h1 { font-size: clamp(28px, 8vw, 40px); line-height: 1.15; }
  .hero p { font-size: 15px; }
  .hero-chips { gap: 8px; }
  .stats { flex-wrap: wrap; gap: 10px; }
  .stat { flex: 1 1 40%; }
  /* marquee smaller + faster on mobile */
  .marquee-track { font-size: 16px; gap: 36px; animation-duration: 18s; }
  .marquee-track span::after { margin-left: 36px; }
  /* lighter hero overlay so text stays readable */
  nav { padding: 0 16px; }
}

/* ── Very small phones ─────────────────────────────── */
@media (max-width: 480px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .grid-auto, .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
  .hero h1 { font-size: clamp(24px, 8.5vw, 34px); }
  .stat { flex: 1 1 100%; }
  .stat b { font-size: 26px; }
  .card { padding: 22px 18px; }
  .price-amount { font-size: 38px; }
  .section-title { font-size: clamp(22px, 6vw, 30px); }
  .nav-logo { font-size: 15px; }
  .marquee-track { font-size: 14px; gap: 28px; }
  .marquee-track span::after { margin-left: 28px; }
}

/* ── Save battery/data: lighter motion on small touch screens ── */
@media (max-width: 760px) {
  .hero-fallback { animation-duration: 28s; }
  #model .feat-card .card-ico, #about .about-card .card-ico { animation-duration: 4s; }
}

/* ── Video hero (shared) ─────────────────────────────── */
@keyframes hero-zoom { 0% { transform: scale(1); } 100% { transform: scale(1.08); } }
.hero-fallback { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; animation: hero-zoom 20s ease infinite alternate; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; opacity: 0; transition: opacity .8s ease; }
.hero-video.playing { opacity: 1; }
.hero-veil { position: absolute; inset: 0; z-index: 0; background: linear-gradient(105deg, rgba(7,4,15,.82) 0%, rgba(10,8,22,.55) 45%, rgba(60,0,80,.32) 100%); }
.hero > .container { position: relative; z-index: 2; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .bg-aurora i, .btn-gold, .hero-badge .dot, .hero-fallback { animation: none; }
  .reveal { opacity: 1; transform: none; filter: none; animation: none; transition: none; }
  .card:hover, .btn:hover, .post-card:hover { transform: none; }
}
