#hero{
  position:relative;
  width:100%;height:80vh;
  min-height:560px;
  overflow:hidden;
  background:var(--bg);
}
.hero-slide{
  position:absolute;inset:0;
  opacity:0;transition:opacity 1.2s cubic-bezier(.4,0,.2,1);
  z-index:0;
}
.hero-slide.active{opacity:1;z-index:1}
.hero-media-slot{
  position:absolute;inset:0;
  overflow:hidden;z-index:0;
}
.hero-bg{
  position:absolute;inset:-8% 0;
  background-size:cover;background-position:center top;
  width:100%;height:116%;
  object-fit:cover;object-position:center top;
  will-change:transform;
  transition:transform 9s cubic-bezier(.05,.8,.1,1);
}
.hero-bg-placeholder{background-color:var(--bg-2)}
.hero-slide.active .hero-bg{transform:scale(1.0)}
.hero-slide:not(.active) .hero-bg{transform:scale(1.06)}
.hero-veil{
  position:absolute;inset:0;
  background:
    linear-gradient(to top, rgba(6,6,6,.98) 0%, rgba(6,6,6,.7) 28%, rgba(6,6,6,.15) 58%, transparent 100%),
    linear-gradient(105deg, rgba(6,6,6,.75) 0%, rgba(6,6,6,.3) 45%, transparent 72%);
}
.hero-noise{
  position:absolute;inset:0;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
  opacity:.4;mix-blend-mode:overlay;pointer-events:none;
}
.hero-content{
  position:absolute;inset:0;z-index:2;
  display:flex;align-items:center;
  padding:var(--nav-h) 0 60px;
}
.hero-content-inner{
  max-width:1320px;width:100%;margin:0 auto;padding:0 clamp(20px,5vw,80px);
}
.hero-eyebrow,.hero-eyebrow-line,.hero-eyebrow-text{display:none}
.hero-headline{
  font-size:clamp(32px, 5vw, 64px);
  font-weight:800;
  line-height:1.1;
  letter-spacing:-.025em;
  margin-bottom:16px;
  max-width:600px;
  opacity:0;transform:translateY(22px);
  animation:hfadeUp .65s .15s forwards;
}
.hero-headline em{
  font-style:normal;font-weight:300;
  color:rgba(255,255,255,.6);
  display:block;font-size:.68em;
  letter-spacing:-.01em;
  margin-top:8px;
}
.hero-subline{
  font-family:var(--font-body);
  font-size:clamp(14px,1.6vw,17px);
  color:rgba(255,255,255,.52);
  letter-spacing:.01em;
  line-height:1.65;
  max-width:420px;
  margin-bottom:36px;
  opacity:0;transform:translateY(16px);
  animation:hfadeUp .55s .42s forwards;
}
.hero-actions{
  display:flex;align-items:center;gap:14px;flex-wrap:wrap;
  opacity:0;transform:translateY(14px);
  animation:hfadeUp .5s .32s forwards;
}
.hero-btn-primary{
  display:inline-flex;align-items:center;gap:8px;
  padding:15px 32px;
  background:var(--gold-shine);
  color:#000;
  border-radius:100px;
  font-family:var(--font);
  font-size:14px;font-weight:800;
  letter-spacing:.01em;
  transition:all .28s var(--ease);
  box-shadow:0 4px 20px rgba(201,149,42,.32);
}
.hero-btn-primary:hover{transform:translateY(-2px);box-shadow:0 10px 32px rgba(201,149,42,.48)}
.hero-btn-primary svg{width:16px;height:16px}
.hero-btn-ghost{
  display:inline-flex;align-items:center;gap:8px;
  padding:14px 28px;
  border:1.5px solid rgba(255,255,255,.18);
  color:rgba(255,255,255,.75);
  border-radius:100px;
  font-size:14px;font-weight:600;
  transition:all .25s;
  backdrop-filter:blur(8px);
  background:rgba(255,255,255,.04);
}
.hero-btn-ghost:hover{border-color:rgba(255,255,255,.45);color:#fff;background:rgba(255,255,255,.08)}
.hero-counter{
  position:absolute;left:clamp(20px,5vw,80px);bottom:68px;z-index:3;
  display:flex;align-items:center;gap:14px;
  opacity:0;animation:hfadeUp .45s .45s forwards;
}
.hero-counter-num{
  font-family:var(--font-body);
  font-size:11px;font-weight:600;
  color:rgba(255,255,255,.35);
  letter-spacing:.06em;
}
.hero-counter-current{
  font-size:15px;font-weight:800;
  color:var(--gold-light);
}
.hero-counter-dots{display:flex;gap:6px}
.hero-counter-dot{
  width:20px;height:2px;border-radius:1px;
  background:rgba(255,255,255,.18);
  transition:all .4s var(--ease);cursor:pointer;
}
.hero-counter-dot.active{width:36px;background:var(--gold)}
.hero-scroll{
  position:absolute;right:clamp(20px,3vw,48px);top:50%;transform:translateY(-50%);
  z-index:3;
  display:flex;flex-direction:column;align-items:center;gap:8px;
  opacity:0;animation:hfadeUp .5s .9s forwards;
}
.hero-scroll-line{
  width:1px;height:48px;
  background:linear-gradient(to bottom,transparent,rgba(255,255,255,.35),transparent);
  animation:scrollPulse 2.4s infinite;
}
.hero-scroll-label{
  font-family:var(--font-body);
  font-size:9px;font-weight:600;
  letter-spacing:.22em;text-transform:uppercase;
  color:rgba(255,255,255,.28);
  writing-mode:vertical-rl;
}
.hero-arr{
  position:absolute;top:50%;transform:translateY(-50%);
  z-index:3;width:50px;height:50px;
  border-radius:50%;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  backdrop-filter:blur(10px);
  display:flex;align-items:center;justify-content:center;
  color:rgba(255,255,255,.65);
  transition:all .25s;
}
.hero-arr:hover{
  background:rgba(201,149,42,.2);
  border-color:rgba(201,149,42,.5);
  color:var(--gold-light);
  transform:translateY(-50%) scale(1.06);
}
.hero-arr svg{width:18px;height:18px}
.hero-prev{left:28px}
.hero-next{right:28px}
.hero-video-wrap{
  position:absolute;inset:0;overflow:hidden;z-index:0;
  pointer-events:none;
}
.hero-video-wrap iframe{
  position:absolute;
  top:50%;left:50%;
  width:100vw;height:56.25vw;
  min-height:100vh;min-width:177.78vh;
  transform:translate(-50%,-50%);
  border:0;
}
.hero-video-mp4{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;
  z-index:0;
}
@keyframes scrollPulse{0%,100%{opacity:.3}50%{opacity:.8}}

.cat-section{padding:72px 0 52px}
.cat-section+.cat-section{padding-top:16px}
.cat-section-head{display:flex;align-items:flex-end;justify-content:space-between;margin-bottom:24px;gap:16px}
.cat-section-eyebrow{font-size:11px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--gold);margin-bottom:7px}
.cat-section-title{font-size:clamp(26px,4vw,42px);font-weight:900;letter-spacing:-.025em;line-height:1}
.cat-section-viewall{display:flex;align-items:center;gap:6px;font-size:14px;font-weight:600;color:var(--text-2);transition:color .2s;white-space:nowrap;flex-shrink:0}
.cat-section-viewall:hover{color:var(--gold-light)}
.cat-section-viewall svg{width:15px;height:15px}
.subfilter-row{display:flex;align-items:center;gap:8px;margin-bottom:28px;overflow-x:auto;scrollbar-width:none;padding-bottom:2px}
.subfilter-row::-webkit-scrollbar{display:none}
.subfilter-pill{padding:7px 18px;border-radius:100px;font-size:13px;font-weight:600;border:1.5px solid var(--border-md);color:var(--text-2);transition:all .2s;white-space:nowrap;cursor:pointer;background:transparent}
.subfilter-pill:hover{color:var(--text-1);border-color:var(--border-gold)}
.subfilter-pill.active{background:var(--gold);color:#000;border-color:var(--gold);font-weight:800}

.parallax{position:relative;overflow:hidden;min-height:480px;display:flex;align-items:center}
.parallax-bg{position:absolute;inset:-15% 0;background-size:cover;background-position:center;background-attachment:fixed}
.parallax-veil{position:absolute;inset:0;background:linear-gradient(to right,rgba(6,6,6,.88) 0%,rgba(6,6,6,.55) 50%,rgba(6,6,6,.12) 100%)}
.parallax-content{position:relative;z-index:1;padding:80px 28px;max-width:1320px;margin:0 auto;width:100%}
.parallax-content h2{font-size:clamp(32px,5.5vw,60px);font-weight:900;letter-spacing:-.03em;max-width:580px;line-height:1.05;margin-bottom:18px}
.parallax-content p{font-family:var(--font-body);font-size:17px;color:rgba(255,255,255,.74);max-width:420px;line-height:1.65;margin-bottom:32px}

.marquee-wrap{overflow:hidden;border-top:1px solid var(--border);border-bottom:1px solid var(--border);padding:16px 0;background:var(--bg-2)}
.marquee-track{display:flex;width:max-content;animation:marquee 28s linear infinite}
.marquee-track:hover{animation-play-state:paused}
.marquee-item{display:flex;align-items:center;gap:14px;padding:0 32px;font-size:12px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--text-3);white-space:nowrap}
.marquee-sep{width:3px;height:3px;border-radius:50%;background:var(--gold);flex-shrink:0}
@keyframes marquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}

.trust-strip{background:var(--bg-2);border-top:1px solid var(--border);border-bottom:1px solid var(--border);padding:16px 0}
.trust-grid{display:grid;grid-template-columns:repeat(4,1fr)}
.trust-item{padding:48px 32px;display:flex;align-items:flex-start;gap:18px;border-right:1px solid var(--border)}
.trust-item:last-child{border-right:none}
.trust-icon{width:44px;height:44px;border-radius:12px;background:rgba(201,149,42,.1);border:1px solid var(--border-gold);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.trust-icon svg{width:20px;height:20px;color:var(--gold)}
.trust-title{font-size:14px;font-weight:700;margin-bottom:4px}
.trust-desc{font-family:var(--font-body);font-size:12.5px;color:var(--text-3);line-height:1.55}
.stats-band{background:var(--bg-card);border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.stats-grid{display:grid;grid-template-columns:repeat(4,1fr)}
.stat-cell{padding:44px 28px;text-align:center;border-right:1px solid var(--border)}
.stat-cell:last-child{border-right:none}
.stat-num{font-size:46px;font-weight:900;letter-spacing:-.03em;background:var(--gold-shine);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;line-height:1}
.stat-lbl{font-family:var(--font-body);font-size:13px;color:var(--text-3);margin-top:6px}

.offers-section{padding:var(--section-pad,72px) 0;background:var(--bg-card-warm,#faf8f5)}
.offers-item{position:relative}
.offers-tag{position:absolute;top:10px;left:50%;transform:translateX(-50%);z-index:6;display:inline-flex;align-items:center;gap:6px;padding:6px 14px;border-radius:100px;font-size:11px;font-weight:800;letter-spacing:.05em;text-transform:uppercase;color:#fff;white-space:nowrap;box-shadow:0 4px 14px rgba(0,0,0,.22)}
.offers-tag svg{width:13px;height:13px}
.offers-tag.discount{background:#c0392b}
.offers-tag.free_gift{background:#8e44ad}
.offers-tag.bundle{background:#2563eb}
.offers-tag.bank_installment{background:#0E7C7B}
.offers-tag.trade_in{background:#b8860b}
.offers-detail{margin-top:8px;font-size:12px;color:var(--text-3);font-family:var(--font-body);text-align:center}

@media(max-width:960px){.trust-grid{grid-template-columns:repeat(2,1fr)}.stats-grid{grid-template-columns:repeat(2,1fr)}.hero-content{padding:0 32px}}
@media(max-width:640px){.trust-grid{grid-template-columns:1fr}.trust-item{border-right:none;border-bottom:1px solid var(--border);padding:24px 18px}.trust-item:last-child{border-bottom:none}.hero-arr{display:none}.hero-content-inner{padding:0 20px}.cat-section-head{flex-direction:column;align-items:flex-start}.stats-grid{grid-template-columns:repeat(2,1fr)}}
