/* ============ Base ============ */
*,*::before,*::after { box-sizing: border-box; }

:root {
  --bg: #0a0c10;
  --bg-2: #0f1218;
  --surface: #151923;
  --surface-2: #1b2030;
  --line: #232a38;
  --text: #eef1f6;
  --muted: #98a1b2;
  --gold: #d4a64a;
  --gold-2: #f1c668;
  --yellow: #f5c518;
  --blue: #2f7ad9;
  --blue-2: #6fa9ec;
  --maxw: 1240px;
}

html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
svg { fill: none; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

h1,h2,h3,h4 {
  font-family: 'Unbounded','Manrope',sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}

/* serif italic accent — for elegant emphasis in headings */
.serif-italic {
  font-family: 'Fraunces', 'Unbounded', serif !important;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-feature-settings: "ss01", "ss02";
}

/* eyebrow with dot */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 18px;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,166,74,0.18);
}

/* generic icon size */
.ic { width: 18px; height: 18px; stroke: currentColor; }

/* ============ Nav ============ */
.nav {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(14px);
  background: rgba(10,12,16,0.78);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; font-family: 'Unbounded',sans-serif; font-weight: 700; }
.brand__mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #1a1306;
  display: grid; place-items: center;
  font-size: 13px; letter-spacing: 0.05em;
  box-shadow: 0 8px 24px -8px rgba(212,166,74,0.5);
}
.brand__name { font-size: 18px; }
.nav__links { display: flex; gap: 32px; }
.nav__links a { font-size: 14px; color: var(--muted); transition: color .2s; position: relative; }
.nav__links a:hover { color: var(--text); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--gold); transition: width .25s ease;
}
.nav__links a:hover::after { width: 100%; }

.nav__lang { display: flex; background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 4px; }
.lang-btn {
  background: transparent; border: 0; color: var(--muted);
  font-size: 12px; font-weight: 700;
  padding: 6px 14px; border-radius: 999px; cursor: pointer; transition: all .2s;
}
.lang-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #1a1306;
}
@media (max-width: 760px) { .nav__links { display: none; } }

/* ============ Hero — split layout ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 60px 0;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(900px 600px at 20% 30%, rgba(212,166,74,0.15), transparent 60%),
    radial-gradient(800px 600px at 80% 70%, rgba(47,122,217,0.12), transparent 60%),
    linear-gradient(180deg, #0a0c10 0%, #0d1117 100%);
}
.hero__bg::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 32px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero__grid { 
    display: flex; 
    flex-direction: column; 
    position: relative; 
  }
  .hero { min-height: auto; padding: 20px 0 60px; overflow: visible; z-index: 10; }
}

.hero__copy { max-width: 620px; }
.hero__title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(28px, 8vw, 68px);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.hero__title span { display: block; }
.hero__title .accent {
  background: linear-gradient(90deg, #f1c668 0%, #d4a64a 30%, #fff 50%, #d4a64a 70%, #f1c668 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine 5s linear infinite;
}
@keyframes shine {
  to { background-position: 200% center; }
}
.hero__lead {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--muted);
  max-width: 540px;
  margin: 0 0 36px;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

.hero__stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 30px;
  max-width: 600px;
}
.stat { display: flex; align-items: center; gap: 14px; }
.stat__ic {
  width: 38px; height: 38px;
  padding: 9px; border-radius: 10px;
  background: rgba(212,166,74,0.1);
  color: var(--gold);
  stroke: currentColor;
}
.stat strong {
  font-family: 'Unbounded',sans-serif;
  font-size: 26px; color: var(--text); line-height: 1;
  display: block;
}
.stat span {
  display: block; font-size: 12px; color: var(--muted); margin-top: 4px;
  letter-spacing: 0.04em;
}

/* hero video — large, fills its column */
.hero__video {
  position: relative;
  width: 120%;
  margin-right: -20%;
  aspect-ratio: 1 / 1;
  max-height: 95vh;
  display: grid; place-items: center;
  transform: scale(1.15);
  transform-origin: center;
}
.hero__video::before {
  content: "";
  position: absolute; inset: 10%;
  background: radial-gradient(closest-side, rgba(212,166,74,0.25), transparent 70%);
  filter: blur(40px);
  z-index: 0;
}
.hero__video video {
  position: relative; z-index: 2;
  width: 100%; height: 100%;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.55));
  transition: opacity 0.4s ease;
}
.hero__grid { position: relative; }

.hero__static-fallback {
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  object-fit: contain;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.55));
}
.hero__grid.show-fallback .hero__video video {
  opacity: 0;
}
.hero__grid.show-fallback .hero__static-fallback {
  opacity: 1;
  visibility: visible;
  z-index: 3;
}
@media (max-width: 980px) {
  .hero__static-fallback {
    top: auto;
    bottom: -120px; /* Push it much lower into the open space */
    right: -10px;
    width: 170px; /* Make it slightly smaller to reduce text overlap */
    height: auto;
    opacity: 1; /* Always show on mobile */
    visibility: visible; /* Always show on mobile */
  }
  .hero__copy {
    position: relative;
    z-index: 1;
  }
  .hero__cta {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: max-content;
    z-index: 6;
  }
  .hero__video { 
    position: absolute;
    right: -10px; /* Stay slightly on the right */
    top: 20px; /* Move it UP to align with the text */
    width: 100%; /* Make video 100% as requested */
    margin: 0; 
    aspect-ratio: auto; 
    max-height: none; 
    transform: scale(1); 
    z-index: 10; /* Make it go OVER the text */
    pointer-events: none;
  }
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600; font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform .15s ease, box-shadow .25s ease, background .2s, color .2s, border-color .2s;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #1a1306;
  box-shadow: 0 14px 32px -10px rgba(212,166,74,0.55);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 38px -10px rgba(212,166,74,0.65); }
.btn--ghost { background: transparent; border-color: var(--line); color: var(--text); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ============ Section base ============ */
.section { padding: 130px 0; position: relative; }
.section--dark { background: var(--bg-2); }
.section__head { text-align: center; max-width: 760px; margin: 0 auto 80px; }
.section__title {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  margin-bottom: 18px;
  position: relative;
  display: inline-block;
}
.section__title > span { display: inline; }
.section__title .serif-italic {
  font-size: 1.05em;
  background: linear-gradient(120deg, var(--gold-2), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: 0.05em;
}
.section__title::after {
  content: "";
  display: block;
  width: 60px; height: 3px;
  margin: 22px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  box-shadow: 0 0 20px rgba(212,166,74,0.5);
}
.section__sub { color: var(--muted); font-size: 17px; margin: 0; }

/* ============ Products — split rows ============ */
.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
  padding: 60px 0;
  margin-bottom: 40px;
  position: relative;
}
.product + .product { border-top: 1px solid var(--line); }
.product--reverse .product__stage { order: 2; }
.product--reverse .product__copy  { order: 1; }
@media (max-width: 980px) {
  .product { grid-template-columns: 1fr; gap: 40px; }
  .product--reverse .product__stage,
  .product--reverse .product__copy { order: 0; }
  .product__stage { aspect-ratio: 1/1; }
  .product__copy { padding: 24px 0 0 0; }
}

/* ============ PRODUCT STAGE — premium luxury ============ */
.product__stage {
  position: relative;
  aspect-ratio: 1 / 1.08;
  border-radius: 36px;
  overflow: hidden;
  isolation: isolate;
  perspective: 1400px;
  transform-style: preserve-3d;
  transition: transform .6s cubic-bezier(.2,.7,.2,1), box-shadow .6s ease;
}
.product--start .product__stage {
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(255, 150, 30, 0.22), transparent 65%),
    radial-gradient(60% 50% at 50% 100%, rgba(255, 90, 0, 0.10), transparent 70%),
    linear-gradient(165deg, #1d1407 0%, #0f1218 75%);
  box-shadow:
    0 50px 120px -40px rgba(245, 140, 30, 0.45),
    0 0 0 1px rgba(255, 180, 80, 0.08) inset;
}
.product--finish .product__stage {
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(60, 130, 230, 0.28), transparent 65%),
    radial-gradient(60% 50% at 50% 100%, rgba(20, 80, 200, 0.12), transparent 70%),
    linear-gradient(165deg, #0a1226 0%, #0f1218 75%);
  box-shadow:
    0 50px 120px -40px rgba(47, 122, 217, 0.5),
    0 0 0 1px rgba(120, 170, 240, 0.1) inset;
}

/* animated conic gradient border */
.product__stage::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(
    from var(--angle, 0deg),
    transparent 0deg,
    rgba(255,255,255,0.5) 60deg,
    transparent 120deg,
    transparent 240deg,
    rgba(255,255,255,0.3) 300deg,
    transparent 360deg
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  z-index: 5;
  pointer-events: none;
  animation: spinBorder 8s linear infinite;
}
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes spinBorder {
  to { --angle: 360deg; }
}

/* technical grid pattern */
.product__grid {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 25%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 25%, transparent 78%);
  pointer-events: none;
}

/* orbiting ring */
.product__orbit {
  position: absolute;
  width: 90%; aspect-ratio: 1;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px dashed rgba(245, 197, 80, 0.25);
  z-index: 1;
  animation: spin 30s linear infinite;
  pointer-events: none;
}
.product__orbit::before, .product__orbit::after {
  content: ""; position: absolute;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 20px var(--gold);
}
.product__orbit::before { top: -5px; left: 50%; transform: translateX(-50%); }
.product__orbit::after  { bottom: -5px; left: 50%; transform: translateX(-50%); opacity: 0.5; }
.product__orbit--blue { border-color: rgba(120, 170, 240, 0.3); }
.product__orbit--blue::before, .product__orbit--blue::after {
  background: var(--blue-2); box-shadow: 0 0 20px var(--blue-2);
}
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

/* glow blobs */
.product__glow {
  position: absolute; inset: -10%;
  z-index: 0; pointer-events: none;
  filter: blur(100px); opacity: 0.65;
  animation: glowPulse 6s ease-in-out infinite;
}
.product__glow--yellow { background: radial-gradient(closest-side, rgba(255, 150, 30, 0.55), transparent 70%); }
.product__glow--blue   { background: radial-gradient(closest-side, rgba(47, 122, 217, 0.55), transparent 70%); }
@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%      { opacity: 0.8; transform: scale(1.08); }
}

/* huge ghost letter */
.product__letter {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: clamp(180px, 36vw, 380px);
  line-height: 1;
  color: transparent;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0));
  -webkit-background-clip: text;
          background-clip: text;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}

/* small num badge */
.product__num {
  position: absolute; top: 24px; left: 24px; z-index: 6;
  font-family: 'Unbounded',sans-serif;
  font-size: 11px; letter-spacing: 0.3em;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(10,12,16,0.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
}

/* spotlight beam from top */
.product__beam {
  position: absolute;
  top: -10%; left: 50%;
  transform: translateX(-50%);
  width: 70%; height: 90%;
  background: radial-gradient(
    ellipse 60% 50% at 50% 0%,
    rgba(255, 200, 100, 0.25),
    rgba(255, 200, 100, 0.08) 35%,
    transparent 70%
  );
  filter: blur(20px);
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
}
.product__beam--blue {
  background: radial-gradient(
    ellipse 60% 50% at 50% 0%,
    rgba(140, 190, 255, 0.28),
    rgba(60, 130, 230, 0.1) 35%,
    transparent 70%
  );
}

/* floor pedestal — elliptical light disc under product */
.product__pedestal {
  position: absolute;
  bottom: -6%;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 14%;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  filter: blur(10px);
  animation: pedestalPulse 6s ease-in-out infinite;
}
.product__pedestal--yellow {
  background: radial-gradient(ellipse at center, rgba(255, 170, 60, 0.55), rgba(255, 140, 30, 0.2) 50%, transparent 75%);
  box-shadow: 0 0 50px rgba(255, 160, 50, 0.4);
}
.product__pedestal--blue {
  background: radial-gradient(ellipse at center, rgba(110, 170, 240, 0.55), rgba(47, 122, 217, 0.2) 50%, transparent 75%);
  box-shadow: 0 0 50px rgba(60, 130, 230, 0.45);
}
@keyframes pedestalPulse {
  0%, 100% { opacity: 0.9; transform: translateX(-50%) scaleX(1); }
  50%      { opacity: 1;   transform: translateX(-50%) scaleX(1.08); }
}

/* sparkle dust particles */
.product__sparkles {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
  background-image:
    radial-gradient(circle 1px at 12% 18%, rgba(255,220,160,0.9), transparent 100%),
    radial-gradient(circle 1.5px at 80% 22%, rgba(255,220,160,0.85), transparent 100%),
    radial-gradient(circle 1px at 28% 70%, rgba(255,220,160,0.7), transparent 100%),
    radial-gradient(circle 1.2px at 70% 80%, rgba(255,220,160,0.75), transparent 100%),
    radial-gradient(circle 1px at 50% 12%, rgba(255,220,160,0.6), transparent 100%),
    radial-gradient(circle 1px at 90% 60%, rgba(255,220,160,0.7), transparent 100%),
    radial-gradient(circle 1.4px at 18% 50%, rgba(255,220,160,0.8), transparent 100%),
    radial-gradient(circle 1px at 60% 40%, rgba(255,220,160,0.6), transparent 100%);
  animation: sparkleTwinkle 5s ease-in-out infinite;
}
.product__sparkles--blue {
  background-image:
    radial-gradient(circle 1px at 12% 18%, rgba(180,210,255,0.9), transparent 100%),
    radial-gradient(circle 1.5px at 80% 22%, rgba(180,210,255,0.85), transparent 100%),
    radial-gradient(circle 1px at 28% 70%, rgba(180,210,255,0.7), transparent 100%),
    radial-gradient(circle 1.2px at 70% 80%, rgba(180,210,255,0.75), transparent 100%),
    radial-gradient(circle 1px at 50% 12%, rgba(180,210,255,0.6), transparent 100%),
    radial-gradient(circle 1px at 90% 60%, rgba(180,210,255,0.7), transparent 100%),
    radial-gradient(circle 1.4px at 18% 50%, rgba(180,210,255,0.8), transparent 100%),
    radial-gradient(circle 1px at 60% 40%, rgba(180,210,255,0.6), transparent 100%);
}
@keyframes sparkleTwinkle {
  0%, 100% { opacity: 0.7; }
  50%      { opacity: 1; transform: translateY(-4px); }
}

/* corner vignette */
.product__vignette {
  position: absolute; inset: 0; z-index: 4;
  pointer-events: none;
  background: radial-gradient(ellipse 90% 80% at 50% 50%, transparent 50%, rgba(0,0,0,0.55) 100%);
  border-radius: inherit;
}

/* shine sweep */
.product__shine {
  position: absolute;
  top: 0; left: -60%;
  width: 50%; height: 100%;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.12) 50%, transparent 70%);
  z-index: 4;
  pointer-events: none;
  transition: transform 1s ease;
}
.product:hover .product__shine { transform: translateX(360%); }

/* product image plate */
.product__plate {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52%;
  height: 70%;
  display: grid;
  place-items: center;
  z-index: 3;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
  isolation: isolate;
}
.product__plate img {
  position: relative; z-index: 1;
  width: 100%; height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 40px 60px rgba(0,0,0,0.6))
    drop-shadow(0 8px 16px rgba(0,0,0,0.5));
  animation: floatY 7s ease-in-out infinite;
}
.product:hover .product__plate { transform: translate(-50%, -52%) scale(1.04); }

@keyframes floatY {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-14px) rotate(-1deg); }
}

/* floating spec chips */
.chip {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 12px;
  background: rgba(15, 18, 25, 0.65);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  animation: chipFloat 6s ease-in-out infinite;
}
.chip__ic {
  flex: none;
  width: 28px; height: 28px;
  padding: 6px; border-radius: 8px;
  stroke: var(--gold);
  color: var(--gold);
  background: rgba(212, 166, 74, 0.12);
  border: 1px solid rgba(212, 166, 74, 0.25);
}
.product--finish .chip__ic { stroke: var(--blue-2); color: var(--blue-2); background: rgba(47,122,217,0.14); border-color: rgba(47,122,217,0.3); }
.chip b { display: block; font-family: 'Unbounded',sans-serif; font-size: 14px; line-height: 1; color: #fff; }
.chip span { display: block; font-size: 11px; color: var(--muted); margin-top: 3px; letter-spacing: 0.04em; }

.chip--tl { top: 8%;  left: 4%;  animation-delay: 0s; }
.chip--tr { top: 14%; right: 4%; animation-delay: 1.2s; }
.chip--bl { bottom: 14%; left: 6%;  animation-delay: 2.4s; }
.chip--br { bottom: 9%;  right: 5%; animation-delay: 3.6s; }

@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

@media (max-width: 600px) {
  .chip { padding: 8px 10px; }
  .chip span { display: none; }
}

.product__copy { padding: 8px 0; }
.tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em;
  padding: 7px 14px; border-radius: 999px;
  margin-bottom: 18px;
}
.tag--yellow { background: rgba(245,197,24,0.14); color: var(--yellow); border: 1px solid rgba(245,197,24,0.25); }
.tag--blue   { background: rgba(47,122,217,0.14); color: var(--blue-2); border: 1px solid rgba(47,122,217,0.3); }

.product__title { font-size: clamp(28px, 3vw, 40px); margin-bottom: 8px; line-height: 1.1; }
.product__sub { color: var(--gold); font-size: 16px; margin: 0 0 22px; font-weight: 500; }
.product__text { color: #c8cdd6; font-size: 15.5px; margin-bottom: 28px; }

.features { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 12px; }
.features li {
  position: relative;
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px;
  background: linear-gradient(135deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005));
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: border-color .35s, transform .35s, background .35s;
  overflow: hidden;
}
.features li::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), var(--gold-2));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .4s ease;
}
.features li:hover {
  border-color: rgba(212,166,74,0.4);
  transform: translateX(6px);
  background: linear-gradient(135deg, rgba(212,166,74,0.08), rgba(255,255,255,0.01));
}
.features li:hover::before { transform: scaleY(1); }
.features li:hover .features__chev { transform: translateX(4px); opacity: 1; }

.features__ic {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(212,166,74,0.22), rgba(212,166,74,0.06));
  color: var(--gold);
  border: 1px solid rgba(212,166,74,0.3);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  transition: transform .4s ease;
}
.features li:hover .features__ic { transform: rotate(-6deg) scale(1.06); }
.features__ic svg { width: 22px; height: 22px; stroke: currentColor; }

.features li > div { flex: 1; min-width: 0; }
.features b { display: block; font-size: 15.5px; font-weight: 700; margin-bottom: 3px; color: #fff; }
.features span { color: var(--muted); font-size: 13.5px; }

.features__chev {
  flex: none;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  color: var(--gold);
  opacity: 0.4;
  transition: transform .4s ease, opacity .4s ease;
}
.features__chev svg { width: 18px; height: 18px; stroke: currentColor; }

/* finish variant — blue accents */
.product--finish .features li::before { background: linear-gradient(180deg, var(--blue-2), var(--blue)); }
.product--finish .features li:hover { border-color: rgba(120,170,240,0.4); background: linear-gradient(135deg, rgba(47,122,217,0.1), rgba(255,255,255,0.01)); }
.product--finish .features__ic { background: linear-gradient(135deg, rgba(47,122,217,0.22), rgba(47,122,217,0.06)); color: var(--blue-2); border-color: rgba(120,170,240,0.3); }
.product--finish .features__chev { color: var(--blue-2); }
.product--finish .product__sub { color: var(--blue-2); }
.product--finish .product__quote { border-color: var(--blue-2); color: var(--blue-2); }

.product__quote {
  border-left: 2px solid var(--gold);
  padding: 6px 0 6px 16px;
  margin: 0;
  font-style: italic;
  color: var(--gold-2);
  font-size: 15px;
}

/* ============ WHY — premium ============ */
.section--why {
  position: relative;
  background: var(--bg-2);
  overflow: hidden;
}
.why__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(800px 500px at 0% 0%, rgba(212,166,74,0.08), transparent 60%),
    radial-gradient(700px 500px at 100% 100%, rgba(47,122,217,0.08), transparent 60%);
}
.why__bg::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.section--why .container { position: relative; z-index: 1; }

.why {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 22px;
}
.why__item--feature { grid-row: span 1; }
@media (max-width: 1100px) {
  .why { grid-template-columns: 1fr 1fr; }
  .why__item--feature { grid-column: span 2; }
}
@media (max-width: 600px) {
  .why { grid-template-columns: 1fr; }
  .why__item--feature { grid-column: span 1; }
}

.why__item {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.005));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 36px 30px 32px;
  overflow: hidden;
  isolation: isolate;
  transition: transform .45s cubic-bezier(.2,.7,.2,1), border-color .45s, background .45s;
  display: flex;
  flex-direction: column;
}
.why__item::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(400px 200px at 50% -20%, rgba(212,166,74,0.18), transparent 70%);
  opacity: 0;
  transition: opacity .5s ease;
  z-index: 0;
}
.why__item::after {
  content: ""; position: absolute; inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(212,166,74,0.6), transparent 50%, rgba(47,122,217,0.4));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .5s ease;
  z-index: 1;
  pointer-events: none;
}
.why__item:hover {
  transform: translateY(-6px);
  border-color: transparent;
}
.why__item:hover::before { opacity: 1; }
.why__item:hover::after  { opacity: 1; }

.why__item--feature {
  background: linear-gradient(160deg, rgba(212,166,74,0.08), rgba(255,255,255,0.01));
  border-color: rgba(212,166,74,0.2);
}
.why__item--feature::before { opacity: 0.5; }

.why__num {
  position: relative; z-index: 2;
  font-family: 'Unbounded', sans-serif;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.why__num::after {
  content: "";
  flex: 1; height: 1px;
  background: linear-gradient(90deg, rgba(212,166,74,0.4), transparent);
}

.why__ic {
  position: relative; z-index: 2;
  display: inline-grid; place-items: center;
  width: 64px; height: 64px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(212,166,74,0.25), rgba(212,166,74,0.06)),
    radial-gradient(circle at 30% 20%, rgba(255,220,140,0.3), transparent 60%);
  border: 1px solid rgba(212,166,74,0.35);
  color: var(--gold);
  margin-bottom: 26px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.1),
    0 10px 24px -10px rgba(212,166,74,0.45);
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.why__item:hover .why__ic {
  transform: rotate(-8deg) scale(1.08);
}
.why__ic svg { width: 28px; height: 28px; stroke: currentColor; }

.why__item--feature .why__ic {
  width: 80px; height: 80px;
  border-radius: 22px;
}
.why__item--feature .why__ic svg { width: 34px; height: 34px; }

.why__content { position: relative; z-index: 2; flex: 1; }
.why__item h4 {
  font-size: 20px;
  line-height: 1.25;
  margin-bottom: 12px;
  color: #fff;
}
.why__item--feature h4 { font-size: 26px; }
.why__item p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.65;
  margin: 0;
}
.why__item--feature p { font-size: 16px; max-width: 92%; }

.why__line {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
  z-index: 2;
  opacity: 0.7;
}
.why__item:hover .why__line { transform: scaleX(1); }

/* ============ CTA ============ */
.cta {
  position: relative;
  padding: 160px 0;
  border-top: 1px solid var(--line);
}
.cta::before {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background: url('img/komputer.webp') center/cover no-repeat;
  opacity: 1;
}
@media (max-width: 980px) {
  .cta::before {
    background: url('img/photo.webp') center/cover no-repeat;
  }
}
.cta::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, #0a0c10 0%, rgba(10,12,16,0.5) 40%, rgba(10,12,16,0.5) 60%, #0a0c10 100%);
}
.cta__inner {
  position: relative; z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}
.cta__heading {
  color: #fff;
  font-size: clamp(24px, 4vw, 42px);
  font-family: 'Unbounded', sans-serif;
  line-height: 1.35;
  margin-bottom: 48px;
  text-wrap: balance;
  text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}
.cta__actions {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.btn--large {
  padding: 24px 64px;
  font-size: 19px;
  box-shadow: 0 20px 50px -10px rgba(212,166,74,0.6);
  border-radius: 999px;
}
.cta__contacts {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta__contacts .btn {
  background: rgba(10,12,16,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 16px 28px;
  font-size: 15px;
}
@media (max-width: 760px) {
  .cta { padding: 80px 0; }
  .cta__inner { padding: 40px 24px; border-radius: 24px; }
  .cta__heading { font-size: 26px; margin-bottom: 32px; }
  .btn--large { padding: 20px 32px; font-size: 16px; width: 100%; justify-content: center; }
  .cta__contacts { flex-direction: column; gap: 12px; }
  .cta__contacts .btn { width: 100%; justify-content: center; }
}

/* ============ Footer ============ */
.footer { border-top: 1px solid var(--line); padding: 28px 0; background: var(--bg-2); }
.footer__inner {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: var(--muted);
}

/* ============ Reveal animations ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ Floating Cashback ============ */
.floating-cashback {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 28px;
  background: rgba(15, 18, 25, 0.65);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(212, 166, 74, 0.25);
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 
    0 20px 40px -10px rgba(0, 0, 0, 0.5),
    0 0 0 1px inset rgba(255, 255, 255, 0.05),
    0 0 20px rgba(212, 166, 74, 0.15);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
  animation: floatBounce 5s ease-in-out infinite;
}
.floating-cashback:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 25px 50px -10px rgba(0, 0, 0, 0.6),
    0 0 0 1px inset rgba(255, 255, 255, 0.08),
    0 0 30px rgba(212, 166, 74, 0.3);
  animation-play-state: paused;
}

.floating-cashback__text {
  display: flex;
  flex-direction: column;
}
.floating-cashback__text span {
  color: var(--text);
  font-family: 'Unbounded', sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}
.floating-cashback__text small {
  font-family: 'Manrope', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}

@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 760px) {
  .floating-cashback {
    bottom: 24px;
    right: 24px;
    padding: 6px 18px 6px 6px;
    gap: 10px;
  }
  .floating-cashback__icon { width: 44px; height: 44px; }
  .floating-cashback__text span { font-size: 11px; }
  .floating-cashback__text small { font-size: 9px; }
}




