/* ============================================================
   GameMandi — Cyberpunk Obsidian theme
   ============================================================ */

:root {
  --bg:        #0B0B0F;
  --surface:   #16161F;
  --surface-2: #1E1E2A;
  --border:    rgba(255,255,255,0.08);
  --border-2:  rgba(255,255,255,0.14);
  --text:      #F4F4F6;
  --muted:     #9A9AB0;
  --muted-2:   #6E6E84;

  --accent:    #00E676;
  --accent-2:  #00E5FF;
  --accent-ink:#04130B;
  --glow:      rgba(0,230,118,0.35);

  --radius:    18px;
  --radius-sm: 12px;
  --maxw:      1140px;

  --shadow:    0 20px 50px -20px rgba(0,0,0,0.7);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 104px; overflow-x: hidden; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Syne', sans-serif; line-height: 1.08; letter-spacing: -0.02em; font-weight: 800; }

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

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 760px; }

.accent { color: var(--accent); }
.muted { color: var(--muted); font-weight: 400; }
.grad {
  background: linear-gradient(100deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 15px;
  padding: 12px 20px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap; color: var(--text); background: transparent;
}
.btn--primary {
  background: linear-gradient(100deg, var(--accent), var(--accent-2));
  color: var(--accent-ink); font-weight: 700;
  box-shadow: 0 8px 26px -8px var(--glow);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -8px var(--glow); }
.btn--ghost { border-color: var(--border-2); background: rgba(255,255,255,0.02); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn--lg { padding: 15px 28px; font-size: 16px; }
.btn--block { width: 100%; }

/* ---------- Announcement bar ---------- */
.announce {
  background: linear-gradient(90deg, rgba(0,230,118,0.12), rgba(0,229,255,0.12));
  border-bottom: 1px solid var(--border);
  text-align: center; font-size: 13.5px; color: var(--text);
  padding: 9px 16px; letter-spacing: .01em;
}
.announce .dot { display:inline-block; width:7px; height:7px; border-radius:50%; background:var(--accent); margin-right:7px; box-shadow:0 0 8px var(--accent); vertical-align: middle; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease;
}
/* Blur lives on a pseudo-element so .nav itself doesn't become the containing
   block for the position:fixed mobile menu (backdrop-filter would do that). */
.nav::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(11,11,15,0.72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  transition: background .3s ease;
}
.nav.is-scrolled { border-bottom-color: var(--border); }
.nav.is-scrolled::before { background: rgba(11,11,15,0.9); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }

.brand { display: inline-flex; align-items: center; gap: 10px; font-family: 'Syne', sans-serif; font-weight: 800; font-size: 20px; letter-spacing: -0.02em; }
.brand__mark {
  display: grid; place-items: center; width: 36px; height: 36px; border-radius: 10px;
  color: var(--accent);
  background: radial-gradient(120% 120% at 30% 20%, rgba(0,230,118,0.22), rgba(0,229,255,0.06));
  border: 1px solid var(--border-2);
}
.brand__mark svg { width: 22px; height: 22px; }
.brand__logo { height: 58px; width: auto; display: block; border-radius: 12px; }
.brand__logo--footer { height: 62px; border-radius: 13px; }

.nav__menu { display: flex; align-items: center; gap: 28px; }
.nav__menu > a { font-size: 15px; color: var(--muted); transition: color .2s ease; }
.nav__menu > a:hover { color: var(--text); }
.nav__cta { margin-left: 6px; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s ease, opacity .2s ease; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__scrim {
  position: fixed; inset: 0; z-index: 45;
  background: rgba(5,5,8,0.6);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .3s ease, visibility .3s ease;
}
.nav__scrim.is-visible { opacity: 1; visibility: visible; pointer-events: auto; }
@media (min-width: 761px) { .nav__scrim { display: none; } }

/* ---------- Sections ---------- */
.section { padding: 92px 0; position: relative; }
.section--alt { background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0)); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section__head { max-width: 680px; margin-bottom: 48px; }
.section__head h2 { font-size: clamp(28px, 4.5vw, 44px); margin: 14px 0 0; }
.section__lead { color: var(--muted); font-size: 17px; margin-top: 14px; }

.eyebrow {
  display: inline-block; font-size: 12.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); padding: 6px 12px; border: 1px solid var(--border-2); border-radius: 999px;
  background: rgba(0,230,118,0.05);
}

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

/* ---------- Hero ---------- */
.hero { position: relative; padding: 84px 0 72px; overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.hero__title { font-size: clamp(42px, 7vw, 78px); margin: 18px 0 0; }
.hero__sub { color: var(--muted); font-size: 18px; max-width: 480px; margin-top: 22px; }
.hero__actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero__trust { list-style: none; display: flex; gap: 22px; margin-top: 30px; flex-wrap: wrap; color: var(--muted); font-size: 14.5px; }

.blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; z-index: 0; pointer-events: none; }
.blob--1 { width: 460px; height: 460px; background: radial-gradient(circle, rgba(0,230,118,0.5), transparent 70%); top: -120px; right: -80px; }
.blob--2 { width: 380px; height: 380px; background: radial-gradient(circle, rgba(0,229,255,0.4), transparent 70%); bottom: -140px; left: -100px; }
.blob--3 { width: 520px; height: 520px; background: radial-gradient(circle, rgba(0,230,118,0.3), transparent 70%); top: 50%; left: 50%; transform: translate(-50%,-50%); }
.hero__grid, .hero__copy, .hero__visual { position: relative; z-index: 1; }

/* Console card */
.console-card {
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-2); border-radius: 26px; padding: 22px;
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.console-card::before { content:""; position:absolute; inset:0; background: radial-gradient(120% 80% at 70% 0%, rgba(0,230,118,0.12), transparent 60%); pointer-events:none; }
.console-card__top { display: flex; justify-content: space-between; gap: 10px; position: relative; }
.console-card__art { display: grid; place-items: center; padding: 26px 0 14px; position: relative; }
.pad { width: 210px; height: 210px; filter: drop-shadow(0 0 24px var(--glow)); animation: float 6s ease-in-out infinite; }
.pad--sm { width: 150px; height: 150px; }
.hero-ps5 { width: 84%; max-width: 360px; height: auto; filter: drop-shadow(0 26px 52px rgba(0,0,0,.6)); animation: float 6s ease-in-out infinite; }
.rental-img { width: 90%; max-width: 320px; height: auto; filter: drop-shadow(0 20px 42px rgba(0,0,0,.55)); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.console-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 12px; border-top: 1px solid var(--border); position: relative; }
.console-card__label { font-size: 13px; color: var(--muted); }
.console-card__price { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 26px; }
.console-card__price span { font-size: 14px; font-weight: 600; color: var(--muted); }

.chip { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; color: var(--muted); background: rgba(255,255,255,0.04); border: 1px solid var(--border); padding: 6px 11px; border-radius: 999px; }
.chip--live { color: var(--accent); border-color: rgba(0,230,118,0.3); }
.chip--live .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

/* ---------- Marquee ---------- */
.marquee { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 20px 0; overflow: hidden; background: rgba(255,255,255,0.01); }
.marquee__track { display: flex; gap: 34px; align-items: center; white-space: nowrap; width: max-content; animation: scroll 26s linear infinite; }
.marquee__track span { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 22px; color: var(--muted-2); }
.marquee__track span:nth-child(even) { color: var(--accent); font-size: 14px; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Trust strip ---------- */
.trust-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: linear-gradient(90deg, rgba(0,230,118,0.045), rgba(0,229,255,0.045)); }
.trust-strip__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 30px; padding: 18px 24px; }
.trust-item { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; color: var(--text); }
.trust-item__ic { font-size: 17px; }
@media (max-width: 760px) { .trust-item { font-size: 13px; } .trust-strip__inner { gap: 12px 18px; } }

/* ---------- Values ---------- */
.value { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; transition: transform .2s ease, border-color .2s ease; }
.value:hover { transform: translateY(-4px); border-color: var(--border-2); }
.value__ic { font-size: 26px; width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px; background: rgba(0,230,118,0.08); border: 1px solid var(--border); margin-bottom: 16px; }
.value h3 { font-size: 18px; margin-bottom: 8px; font-weight: 700; }
.value p { color: var(--muted); font-size: 14.5px; }

/* ---------- Rental ---------- */
.rental { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 0; background: linear-gradient(160deg, var(--surface-2), var(--surface)); border: 1px solid var(--border-2); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); }
.rental__media { position: relative; display: grid; place-items: center; padding: 40px; background: radial-gradient(120% 100% at 50% 0%, rgba(0,229,255,0.1), transparent 60%); border-right: 1px solid var(--border); }
.rental__media .chip { position: absolute; top: 20px; left: 20px; }
.rental__body { padding: 38px 40px; }
.rental__title { font-size: 30px; }
.rental__desc { color: var(--muted); margin-top: 10px; font-size: 15px; }

.toggle { display: inline-flex; background: rgba(0,0,0,0.3); border: 1px solid var(--border); border-radius: 999px; padding: 5px; margin: 24px 0 18px; gap: 4px; }
.toggle__opt { border: 0; background: transparent; color: var(--muted); font-family: 'Inter'; font-weight: 600; font-size: 14px; padding: 9px 18px; border-radius: 999px; cursor: pointer; transition: all .2s ease; display: inline-flex; align-items: center; gap: 8px; }
.toggle__opt.is-active { background: linear-gradient(100deg, var(--accent), var(--accent-2)); color: var(--accent-ink); }
.save { font-size: 10.5px; background: rgba(255,255,255,0.18); padding: 2px 7px; border-radius: 999px; font-weight: 700; }
.toggle__opt.is-active .save { background: rgba(4,19,11,0.18); }

.rental__pricing { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.price { display: flex; align-items: baseline; gap: 4px; }
.price__amt { font-family: 'Syne'; font-weight: 800; font-size: 44px; }
.price__per { color: var(--muted); font-size: 16px; }
.price__deposit { color: var(--muted); font-size: 14px; }

.incl { list-style: none; margin: 24px 0; display: grid; gap: 11px; }
.incl li { position: relative; padding-left: 28px; color: var(--text); font-size: 14.5px; }
.incl li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 700; width: 18px; height: 18px; }

/* ---------- Gallery (real gear) ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; }
.shot { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: radial-gradient(120% 90% at 50% 18%, rgba(255,255,255,0.05), transparent 70%), linear-gradient(135deg, var(--surface-2), var(--surface)); display: flex; flex-direction: column; }
.shot--lg { grid-column: span 2; grid-row: span 2; }
.shot img { flex: 1; min-height: 0; width: 100%; object-fit: contain; padding: 20px 18px 4px; display: block; }
.shot figcaption { flex: none; padding: 0 8px 14px; text-align: center; font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.shot__ph { color: var(--muted-2); font-size: 12.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.shot::after { content: "📷"; position: absolute; top: 14px; left: 16px; font-size: 15px; opacity: .35; }
.shot:has(img)::after { content: none; }
@media (max-width: 760px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 168px; }
  .shot--lg { grid-column: span 2; grid-row: span 1; }
}

/* ---------- Console cards ---------- */
.ccard { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; display: flex; flex-direction: column; transition: transform .2s ease, border-color .2s ease; }
.ccard:hover { transform: translateY(-5px); border-color: var(--border-2); }
.ccard__media { height: 190px; display: grid; place-items: center; border-radius: 14px; overflow: hidden; margin-bottom: 16px; border: 1px solid var(--border); background: radial-gradient(120% 90% at 50% 16%, rgba(255,255,255,0.05), transparent 70%), linear-gradient(135deg, var(--surface-2), var(--surface)); }
.ccard__media img { max-width: 82%; max-height: 82%; object-fit: contain; filter: drop-shadow(0 16px 32px rgba(0,0,0,.5)); }
.ccard__name { font-size: 21px; }
.ccard__desc { color: var(--muted); font-size: 14px; margin: 7px 0 14px; }
.ccard__price { font-family: 'Syne', sans-serif; font-weight: 800; color: var(--muted); font-size: 15px; }
.ccard__price strong { color: var(--text); font-size: 30px; }
.ccard__price span { font-size: 14px; }
.ccard__meta { color: var(--muted-2); font-size: 12.5px; margin: 6px 0 18px; }
.ccard .btn { margin-top: auto; }
.lineup__note { text-align: center; color: var(--muted); font-size: 14px; margin-top: 28px; }

/* ---------- Experiences ---------- */
.xp { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; position: relative; transition: transform .2s ease, border-color .2s ease; display: flex; flex-direction: column; }
.xp:hover { transform: translateY(-5px); border-color: var(--border-2); }
.xp--featured { border-color: rgba(0,230,118,0.4); box-shadow: 0 0 0 1px rgba(0,230,118,0.1), 0 20px 50px -24px var(--glow); }
.xp__tag { position: absolute; top: -11px; left: 24px; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; background: var(--surface-2); border: 1px solid var(--border-2); color: var(--muted); }
.xp__tag--hot { background: linear-gradient(100deg, var(--accent), var(--accent-2)); color: var(--accent-ink); border: 0; }
.xp h3 { font-size: 23px; margin-top: 10px; }
.xp > p { color: var(--muted); font-size: 14.5px; margin-top: 8px; }
.xp__list { list-style: none; margin: 18px 0 22px; display: grid; gap: 9px; }
.xp__list li { padding-left: 22px; position: relative; font-size: 14px; color: var(--text); }
.xp__list li::before { content: "—"; position: absolute; left: 0; color: var(--accent); }
.xp .btn { margin-top: auto; }

/* ---------- Add-ons ---------- */
.addon { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; transition: transform .2s ease, border-color .2s ease; }
.addon:hover { transform: translateY(-4px); border-color: var(--border-2); }
.addon__ic { font-size: 30px; margin-bottom: 14px; }
.addon h3 { font-size: 18px; font-weight: 700; }
.addon p { color: var(--muted); font-size: 14px; margin: 6px 0 14px; }
.addon__price { font-family: 'Syne'; font-weight: 800; font-size: 22px; color: var(--accent); }

/* ---------- Sim racing ---------- */
.racing { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.racing__media { position: relative; display: grid; place-items: center; min-height: 300px; padding: 30px; border-radius: 24px; border: 1px solid var(--border-2); background: radial-gradient(120% 100% at 50% 10%, rgba(0,229,255,0.10), transparent 60%), linear-gradient(160deg, var(--surface-2), var(--surface)); box-shadow: var(--shadow); }
.racing__wheel { width: 82%; max-width: 380px; height: auto; filter: drop-shadow(0 24px 46px rgba(0,0,0,.6)); }
.racing__shifter { position: absolute; right: 20px; bottom: 20px; width: 30%; max-width: 138px; height: auto; filter: drop-shadow(0 14px 28px rgba(0,0,0,.6)); }
.racing__body h2 { font-size: clamp(28px, 4vw, 42px); margin: 12px 0 0; }
.racing__body > p { color: var(--muted); font-size: 16px; margin-top: 14px; }
.racing__prices { display: flex; gap: 12px; margin: 22px 0 6px; flex-wrap: wrap; }
.rchip { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.04); border: 1px solid var(--border-2); border-radius: 999px; padding: 9px 16px; font-size: 14px; color: var(--muted); }
.rchip b { color: var(--accent); font-family: 'Syne', sans-serif; }
.racing__body .btn { margin-top: 18px; }
.racing__note { font-size: 13px; color: var(--muted-2); margin-top: 14px; }
@media (max-width: 760px) { .racing { grid-template-columns: 1fr; gap: 28px; } .racing__media { min-height: 240px; } }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; position: relative; }
.step__n { font-family: 'Syne'; font-weight: 800; font-size: 20px; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; background: rgba(0,230,118,0.1); color: var(--accent); border: 1px solid rgba(0,230,118,0.25); margin-bottom: 18px; }
.step h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14px; }

/* ---------- Zones ---------- */
.zone { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: border-color .2s ease, transform .2s ease; }
.zone:hover { border-color: var(--accent); transform: translateY(-3px); }
.zone h3 { font-size: 19px; font-weight: 700; }
.zone p { color: var(--muted); margin-top: 8px; font-size: 14.5px; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; }
.faq__item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.faq__q { width: 100%; text-align: left; background: none; border: 0; color: var(--text); font-family: 'Inter'; font-weight: 600; font-size: 16px; padding: 20px 22px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq__chev { color: var(--accent); font-size: 22px; font-weight: 400; transition: transform .25s ease; flex-shrink: 0; }
.faq__item.is-open .faq__chev { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a p { padding: 0 22px 20px; color: var(--muted); font-size: 14.5px; }

/* ---------- CTA ---------- */
.cta { position: relative; padding: 96px 0; text-align: center; overflow: hidden; border-top: 1px solid var(--border); }
.cta__inner { position: relative; z-index: 1; }
.cta h2 { font-size: clamp(30px, 5vw, 52px); }
.cta p { color: var(--muted); font-size: 18px; margin: 14px 0 30px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); padding: 64px 0 30px; background: rgba(0,0,0,0.3); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 48px; }
.footer__brand p { color: var(--muted); font-size: 14px; margin-top: 14px; max-width: 260px; }
.footer__col h4 { font-family: 'Inter'; font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted-2); margin-bottom: 16px; font-weight: 600; }
.footer__col a { display: block; color: var(--muted); font-size: 14.5px; margin-bottom: 11px; transition: color .2s ease; }
.footer__col a:hover { color: var(--accent); }
.footer__bar { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; border-top: 1px solid var(--border); color: var(--muted-2); font-size: 13px; flex-wrap: wrap; gap: 10px; }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal.is-open { display: flex; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(5,5,8,0.75); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.modal__dialog { position: relative; z-index: 1; width: 100%; max-width: 480px; max-height: 92vh; overflow-y: auto; background: var(--surface); border: 1px solid var(--border-2); border-radius: 22px; padding: 30px; box-shadow: var(--shadow); animation: pop .25s ease; }
@keyframes pop { from { opacity: 0; transform: translateY(16px) scale(.98); } to { opacity: 1; transform: none; } }
.modal__close { position: absolute; top: 16px; right: 18px; background: none; border: 0; color: var(--muted); font-size: 28px; line-height: 1; cursor: pointer; transition: color .2s ease; }
.modal__close:hover { color: var(--text); }
.modal__title { font-size: 26px; }
.modal__sub { color: var(--muted); font-size: 14.5px; margin: 6px 0 22px; }

.form { display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--text); }
.field input, .field select, .field textarea {
  background: var(--bg); border: 1px solid var(--border-2); border-radius: 11px; padding: 12px 14px;
  color: var(--text); font-family: 'Inter'; font-size: 15px; width: 100%; transition: border-color .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }

.seg { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.seg--3 { grid-template-columns: repeat(3, 1fr); }
.seg--3 .seg__opt { padding: 11px 4px; font-size: 12.5px; }
.seg__opt { background: var(--bg); border: 1px solid var(--border-2); color: var(--muted); font-family: 'Inter'; font-weight: 600; font-size: 14px; padding: 12px; border-radius: 11px; cursor: pointer; transition: all .2s ease; }
.seg__opt.is-active { border-color: var(--accent); color: var(--accent); background: rgba(0,230,118,0.08); }

.addons-pick { display: grid; gap: 8px; }
.pick { display: flex; align-items: center; gap: 10px; background: var(--bg); border: 1px solid var(--border); border-radius: 11px; padding: 11px 14px; cursor: pointer; font-size: 14px; }
.pick input { width: auto; accent-color: var(--accent); }
.pick span { flex: 1; }
.pick b { color: var(--accent); font-weight: 700; }

.summary { background: var(--bg); border: 1px solid var(--border); border-radius: 14px; padding: 16px 18px; }
.summary__row { display: flex; justify-content: space-between; font-size: 14.5px; color: var(--muted); padding: 5px 0; }
.summary__row--total { color: var(--text); font-weight: 700; border-top: 1px solid var(--border); margin-top: 6px; padding-top: 11px; font-size: 16px; }
.summary__row--dep { color: var(--accent); font-weight: 600; }
.summary__note { font-size: 12px; color: var(--muted-2); margin-top: 10px; line-height: 1.5; }
.wa-ic { font-weight: 800; }

/* ---------- Floating action button ---------- */
.fab { position: fixed; bottom: 22px; right: 22px; z-index: 60; display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(100deg, var(--accent), var(--accent-2)); color: var(--accent-ink); font-family: 'Inter'; font-weight: 700; font-size: 15px; border: 0; padding: 14px 22px; border-radius: 999px; cursor: pointer; box-shadow: 0 12px 30px -8px var(--glow); transition: transform .2s ease; }
.fab:hover { transform: translateY(-3px) scale(1.03); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-width: 440px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 760px) {
  .nav__menu {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 320px); flex-direction: column; align-items: flex-start; justify-content: flex-start;
    gap: 8px; padding: 90px 28px 28px; background: var(--surface); border-left: 1px solid var(--border);
    transform: translateX(100%); transition: transform .3s ease; z-index: 40;
  }
  .nav__menu.is-open { transform: translateX(0); }
  .nav__menu > a { font-size: 18px; padding: 8px 0; }
  .nav__cta { margin: 12px 0 0; width: 100%; }
  .nav__toggle { display: flex; z-index: 50; }
  .grid--3 { grid-template-columns: 1fr; }
  .rental { grid-template-columns: 1fr; }
  .rental__media { border-right: 0; border-bottom: 1px solid var(--border); padding: 36px; }
  .section { padding: 70px 0; }
  .footer__bar { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .grid--4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__trust { gap: 14px; }
  .rental__body { padding: 30px 24px; }
  .fab span:last-child { display: none; }
  .fab { padding: 16px; }
}

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