/* ═══════════════════════════════════════════════════════
   AQUA — World-Class UI
   Bg:#0a0a0a  Accent:#00c9ff/#00fff7  Text:#fff
   ═══════════════════════════════════════════════════════ */

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body { font-family: 'Inter', system-ui, sans-serif; background: #0a0a0a; color: #fff; line-height: 1.65; overflow-x: hidden; cursor: none; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: none; }
::selection { background: rgba(0,201,255,.18); }

/* ── Custom Cursor ──────────────────────────────────────── */
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 38px; height: 38px;
  border: 1.5px solid rgba(0,201,255,.7);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%,-50%);
  transition: width .25s, height .25s, border-color .25s, background .25s;
  box-shadow: 0 0 14px rgba(0,201,255,.2);
  will-change: left, top;
}
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 5px; height: 5px;
  background: #00c9ff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%,-50%);
  box-shadow: 0 0 6px #00c9ff;
  will-change: left, top;
}
body.cursor-hover .cursor-ring {
  width: 58px; height: 58px;
  border-color: rgba(0,255,247,.8);
  background: rgba(0,201,255,.05);
}

/* ── Scroll Reveal ──────────────────────────────────────── */
.reveal-up    { opacity: 0; transform: translateY(44px); transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1); }
.reveal-left  { opacity: 0; transform: translateX(-50px); transition: opacity .85s cubic-bezier(.4,0,.2,1), transform .85s cubic-bezier(.4,0,.2,1); }
.reveal-right { opacity: 0; transform: translateX(50px);  transition: opacity .85s cubic-bezier(.4,0,.2,1), transform .85s cubic-bezier(.4,0,.2,1); }
.reveal-up.is-visible, .reveal-left.is-visible, .reveal-right.is-visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }

/* ── Scrollbar ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: rgba(0,201,255,.3); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0,201,255,.6); }

/* ── Utilities ──────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.gradient-text { background: linear-gradient(135deg, #00c9ff, #00fff7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-label { display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: #00c9ff; margin-bottom: 14px; }
.section-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: #fff;
  margin-bottom: 16px;
}
.section-title em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 800;
  background: linear-gradient(135deg, #00c9ff, #00fff7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub { font-size: 1rem; color: rgba(255,255,255,.5); max-width: 520px; line-height: 1.8; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-sub { margin: 0 auto; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 10px; font-size: .95rem; font-weight: 700;
  border: none; cursor: none; transition: transform .2s, box-shadow .2s; white-space: nowrap;
}
.btn-lg { padding: 16px 32px; font-size: 1rem; }

.btn-glow {
  background: linear-gradient(135deg, #00c9ff, #00fff7);
  color: #000;
  box-shadow: 0 0 20px rgba(0,201,255,.4), 0 0 40px rgba(0,201,255,.15);
  animation: pulse-glow 2.8s ease-in-out infinite;
}
.btn-glow:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 0 32px rgba(0,201,255,.6), 0 0 64px rgba(0,201,255,.25); }

@keyframes pulse-glow {
  0%,100% { box-shadow: 0 0 20px rgba(0,201,255,.4), 0 0 40px rgba(0,201,255,.15); }
  50%      { box-shadow: 0 0 30px rgba(0,201,255,.6), 0 0 60px rgba(0,201,255,.25); }
}

/* ══════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
}
.nav.scrolled {
  background: rgba(6,6,10,.88);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid rgba(0,201,255,.1);
}
.nav-inner {
  display: flex; align-items: center; height: 72px;
  padding: 0 40px; max-width: 1300px; margin: 0 auto; gap: 24px;
}
.nav-logo { background: none; border: none; }
.nav-logo img { height: 130px; width: auto; object-fit: contain; display: block; transition: opacity .2s; }
.nav-logo:hover img { opacity: .75; }

.nav-links { display: flex; gap: 34px; list-style: none; flex: 1; justify-content: center; }
.nav-links a {
  font-size: .85rem; font-weight: 500; color: rgba(255,255,255,.55);
  transition: color .2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: linear-gradient(to right, #00c9ff, #00fff7);
  transition: width .25s; border-radius: 1px;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { flex-shrink: 0; padding: 10px 22px; font-size: .88rem; border-radius: 8px; }

.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; margin-left: auto; cursor: none; }
.nav-burger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform .25s, opacity .25s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile { display: none; flex-direction: column; background: rgba(6,6,10,.98); border-top: 1px solid rgba(0,201,255,.08); }
.nav-mobile a { padding: 15px 40px; font-size: .95rem; font-weight: 500; color: rgba(255,255,255,.6); border-bottom: 1px solid rgba(255,255,255,.04); transition: color .2s, background .2s; cursor: none; }
.nav-mobile a:hover { color: #00c9ff; background: rgba(0,201,255,.04); }
.nav-mobile-cta { color: #00c9ff !important; font-weight: 700 !important; }
.nav-mobile.open { display: flex; }

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: #0a0a0a; padding-top: 72px; position: relative; overflow: hidden;
}
.hero-glow {
  position: absolute; top: 30%; right: -5%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,201,255,.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,201,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,201,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 80% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 80% 50%, black 20%, transparent 70%);
}
.hero-inner {
  max-width: 1160px; margin: 0 auto; padding: 60px 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center; width: 100%; position: relative; z-index: 1;
}

/* Hero text — CSS animation (no IO needed, above the fold) */
.hero-text {
  display: flex; flex-direction: column; align-items: flex-start;
  animation: hero-enter .9s cubic-bezier(.4,0,.2,1) both;
}
.hero-visual {
  display: flex; align-items: center; justify-content: center;
  animation: hero-enter .9s .2s cubic-bezier(.4,0,.2,1) both;
}
@keyframes hero-enter {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .68rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: #00c9ff;
  background: rgba(0,201,255,.07); border: 1px solid rgba(0,201,255,.22);
  padding: 6px 16px; border-radius: 100px; margin-bottom: 24px;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #00c9ff; box-shadow: 0 0 8px #00c9ff;
  animation: badge-pulse 1.6s ease-in-out infinite; flex-shrink: 0;
}
@keyframes badge-pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.4; transform:scale(.7); } }

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 5.5vw, 5.2rem);
  font-weight: 900; line-height: 1.08;
  letter-spacing: -.025em; color: #fff;
  margin-bottom: 20px; min-height: 1.5em;
}
.cursor-blink { color: #00c9ff; animation: blink .85s step-end infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.5); margin-bottom: 28px; }

.hero-price {
  display: flex; align-items: center; gap: 12px;
  background: rgba(0,201,255,.06); border: 1px solid rgba(0,201,255,.16);
  padding: 12px 20px; border-radius: 10px; margin-bottom: 28px; width: fit-content;
}
.price-from { font-size: .78rem; color: rgba(255,255,255,.45); }
.price-amount {
  font-size: 2.2rem; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, #00c9ff, #00fff7);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  letter-spacing: -.03em;
}
.price-badge {
  font-size: .72rem; font-weight: 600; color: #4ade80;
  background: rgba(74,222,128,.1); border: 1px solid rgba(74,222,128,.22);
  padding: 4px 12px; border-radius: 100px;
}

.hero-btns { margin-bottom: 28px; }

.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; }
.trust-badge {
  display: flex; align-items: center; gap: 6px;
  font-size: .77rem; color: rgba(255,255,255,.45); font-weight: 500;
}

/* Product image — NO filter, NO blend-mode */
.hero-product-wrap {
  position: relative; display: inline-block;
  animation: product-float 4.2s ease-in-out infinite;
}
@keyframes product-float {
  0%,100% { transform: perspective(1000px) rotateY(-8deg) rotateX(3deg) translateY(0); }
  50%      { transform: perspective(1000px) rotateY(-8deg) rotateX(3deg) translateY(-22px); }
}
.hero-product {
  width: 100%; max-width: 500px; display: block; border-radius: 20px;
  box-shadow: 0 40px 100px rgba(0,0,0,.55), 0 0 80px rgba(0,201,255,.14), 0 0 160px rgba(0,201,255,.07);
}

.float-badge {
  position: absolute;
  background: rgba(8,8,14,.88);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border: 1px solid rgba(0,201,255,.28);
  border-radius: 10px; padding: 8px 13px;
  font-size: .72rem; font-weight: 700; color: #fff;
  display: flex; align-items: center; gap: 6px;
  white-space: nowrap; box-shadow: 0 4px 24px rgba(0,0,0,.35);
}
.badge-tl { top: 14%; left: -18px; animation: badge-drift1 3.2s ease-in-out infinite; }
.badge-tr { top: 8%;  right: -18px; animation: badge-drift2 3.8s ease-in-out infinite; border-color: rgba(0,255,247,.28); }
.badge-br { bottom: 18%; right: -14px; animation: badge-drift3 4.4s ease-in-out infinite; }
@keyframes badge-drift1 { 0%,100%{transform:translateY(0) rotate(-1.5deg)} 50%{transform:translateY(-10px) rotate(-1.5deg)} }
@keyframes badge-drift2 { 0%,100%{transform:translateY(0) rotate(2deg)}   50%{transform:translateY(-13px) rotate(2deg)} }
@keyframes badge-drift3 { 0%,100%{transform:translateY(0) rotate(-1deg)}  50%{transform:translateY(-8px) rotate(-1deg)} }

.hero-scroll-hint {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.28); font-size: .65rem; letter-spacing: .18em;
  text-transform: uppercase; transition: opacity .4s; z-index: 2;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(0,201,255,.6), transparent);
  animation: scroll-anim 1.8s ease-in-out infinite;
}
@keyframes scroll-anim {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ══════════════════════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════════════════════ */
.stats {
  background: linear-gradient(135deg, #00c9ff, #00d4ff, #00fff7);
  padding: 46px 0;
}
.stats-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-around; gap: 20px; flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.stat-num {
  font-size: clamp(2.4rem, 4vw, 3.2rem); font-weight: 900; color: #0a0a0a;
  line-height: 1; letter-spacing: -.025em;
}
.stat-label { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(0,0,0,.6); }
.stat-divider { width: 1px; height: 52px; background: rgba(0,0,0,.15); }

/* ══════════════════════════════════════════════════════════
   FEATURES
══════════════════════════════════════════════════════════ */
.features { padding: 120px 0; background: #0d1017; }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.feat-card {
  background: #111520;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px; padding: 40px;
  position: relative; overflow: hidden;
  transition: transform .28s cubic-bezier(.4,0,.2,1), border-color .28s, box-shadow .28s;
}
.feat-card:hover {
  transform: translateY(-7px);
  border-color: rgba(0,201,255,.28);
  box-shadow: 0 0 36px rgba(0,201,255,.1), 0 24px 56px rgba(0,0,0,.5);
}
.feat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,201,255,.3), transparent);
  opacity: 0; transition: opacity .28s;
}
.feat-card:hover::before { opacity: 1; }

.feat-icon-wrap {
  width: 62px; height: 62px; border-radius: 16px;
  background: rgba(0,201,255,.07); border: 1px solid rgba(0,201,255,.16);
  display: grid; place-items: center; margin-bottom: 22px;
  transition: background .28s, transform .28s;
}
.feat-card:hover .feat-icon-wrap { background: rgba(0,201,255,.13); transform: rotate(-4deg) scale(1.05); }
.feat-card h3 { font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 10px; letter-spacing: -.01em; }
.feat-card p  { font-size: .88rem; color: rgba(255,255,255,.48); line-height: 1.82; }

.feat-line {
  position: absolute; bottom: 0; left: 0;
  height: 2px; width: 0;
  background: linear-gradient(to right, #00c9ff, #00fff7);
  transition: width .4s cubic-bezier(.4,0,.2,1);
  border-radius: 0 0 2px 2px;
}
.feat-card:hover .feat-line { width: 100%; }

/* ══════════════════════════════════════════════════════════
   SPLASH PARALLAX
══════════════════════════════════════════════════════════ */
.splash-section {
  position: relative; height: 560px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.parallax-wrap { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.parallax-img {
  position: absolute; top: -20%; left: 0;
  width: 100%; height: 140%; object-fit: cover; will-change: transform;
  /* NO filter, NO blend-mode */
}
.splash-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(0,0,0,.52), rgba(0,0,0,.68));
}
.splash-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 28px;
}
.splash-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 6rem); font-weight: 900;
  letter-spacing: -.025em; line-height: 1.06; color: #fff; margin-bottom: 20px;
}
.splash-underline {
  width: 0; height: 3px;
  background: linear-gradient(to right, #00c9ff, #00fff7);
  margin: 0 auto 20px; border-radius: 2px;
  transition: width .9s .2s cubic-bezier(.4,0,.2,1);
}
.reveal-up.is-visible .splash-underline { width: 120px; }
.splash-sub { font-size: 1.1rem; font-weight: 600; color: rgba(255,255,255,.7); letter-spacing: .04em; }

/* ══════════════════════════════════════════════════════════
   TECHNOLOGY / PRODUCT SHOWCASE
══════════════════════════════════════════════════════════ */
.showcase { background: #0a0a0a; padding-bottom: 0; }
.showcase-top {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; padding: 110px 0 80px;
}

/* Product image — NO filter, NO blend-mode */
.showcase-img-wrap {
  position: relative; border-radius: 20px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.5), 0 0 60px rgba(0,201,255,.1);
}
.showcase-img { width: 100%; display: block; border-radius: 20px; }
.showcase-img-badge {
  position: absolute; bottom: 18px; right: 18px;
  background: linear-gradient(135deg, #00c9ff, #00fff7);
  color: #000; font-size: .72rem; font-weight: 800;
  padding: 7px 16px; border-radius: 8px; letter-spacing: .07em;
}
.showcase-content { max-width: 520px; }
.showcase-sub {
  font-size: .95rem; color: rgba(255,255,255,.5); line-height: 1.82; margin-bottom: 30px;
}
.check-list { list-style: none; display: flex; flex-direction: column; gap: 18px; margin-bottom: 36px; }
.check-list li { display: flex; align-items: flex-start; gap: 14px; }
.check-dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, #00c9ff, #00fff7);
  flex-shrink: 0; margin-top: 2px; position: relative;
}
.check-dot::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 7px; height: 5px;
  border-left: 1.8px solid #000; border-bottom: 1.8px solid #000;
  transform: translate(-50%, -58%) rotate(-45deg);
}
.check-list div { font-size: .9rem; color: rgba(255,255,255,.6); line-height: 1.65; }
.check-list strong { display: block; font-weight: 700; color: #fff; margin-bottom: 2px; }

/* Showcase wide — product-new3.jpg — NO filter, NO blend-mode */
.showcase-wide { padding: 0 28px 0; overflow: hidden; }
.showcase-wide-inner {
  position: relative; border-radius: 20px; overflow: hidden;
  max-width: 1160px; margin: 0 auto;
  box-shadow: 0 30px 80px rgba(0,0,0,.5), 0 0 40px rgba(0,201,255,.08);
}
.showcase-wide-img {
  width: 100%; height: 500px; object-fit: cover; display: block;
  /* NO filter, NO blend-mode */
}
.showcase-wide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.88) 45%, rgba(0,0,0,.3));
  display: flex; align-items: center;
}
.showcase-wide-content { padding: 0 64px; max-width: 560px; }
.showcase-wide-desc { font-size: 1rem; color: rgba(255,255,255,.65); line-height: 1.8; margin-top: 14px; }

/* ══════════════════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════════════════ */
.how { position: relative; padding: 120px 0; overflow: hidden; }
.how .parallax-wrap { z-index: 0; }
.how-overlay { position: absolute; inset: 0; z-index: 1; background: rgba(4,6,12,.82); }
.how-inner { position: relative; z-index: 2; }
.how-steps {
  display: flex; align-items: center; justify-content: center; gap: 0;
}
.how-step { flex: 1; max-width: 260px; text-align: center; padding: 0 10px; }
.how-circle {
  width: 88px; height: 88px; border-radius: 50%;
  background: rgba(0,201,255,.08); border: 1.5px solid rgba(0,201,255,.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px; position: relative;
  transition: transform .3s, box-shadow .3s;
}
.how-step:hover .how-circle { transform: scale(1.06); box-shadow: 0 0 30px rgba(0,201,255,.25); }
.how-num {
  font-size: 1.25rem; font-weight: 900;
  background: linear-gradient(135deg, #00c9ff, #00fff7);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.how-ring {
  position: absolute; inset: -12px; border-radius: 50%;
  border: 1px solid rgba(0,201,255,.18);
  animation: ring-expand 2.4s ease-out infinite;
}
@keyframes ring-expand { 0%{transform:scale(1);opacity:.8} 100%{transform:scale(1.35);opacity:0} }
.how-step h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.how-step p  { font-size: .86rem; color: rgba(255,255,255,.48); line-height: 1.82; }
.how-arrow { flex-shrink: 0; opacity: .5; padding: 0 16px; margin-bottom: 64px; }

/* ══════════════════════════════════════════════════════════
   LIFESTYLE PARALLAX
══════════════════════════════════════════════════════════ */
.lifestyle-section {
  position: relative; height: 620px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.lifestyle-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(0,0,0,.38), rgba(0,0,0,.62));
}
.lifestyle-content {
  position: relative; z-index: 2; text-align: center; padding: 0 28px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.lifestyle-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 8vw, 6.5rem); font-weight: 900;
  letter-spacing: -.025em; color: #fff; line-height: 1.05;
}
.lifestyle-sub {
  font-size: 1.1rem; color: rgba(255,255,255,.65); font-style: italic;
  margin-bottom: 8px;
}

/* ══════════════════════════════════════════════════════════
   PERFECT FOR EVERYONE
══════════════════════════════════════════════════════════ */
.perfect { display: grid; grid-template-columns: 1fr 1fr; min-height: 640px; }
.perfect-img-col { overflow: hidden; }
.perfect-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .9s cubic-bezier(.4,0,.2,1);
}
.perfect-img-col:hover .perfect-img { transform: scale(1.05); }
.perfect-content-col {
  background: #0d1017;
  display: flex; align-items: center; padding: 80px 64px;
}
.perfect-content { max-width: 460px; }
.perfect-sub { font-size: .95rem; color: rgba(255,255,255,.48); line-height: 1.82; margin-bottom: 32px; }

.anim-checklist { list-style: none; display: flex; flex-direction: column; gap: 20px; margin-bottom: 38px; }
.anim-check-item { display: flex; align-items: flex-start; gap: 14px; }
.anim-check-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(0,201,255,.08); border: 1.5px solid rgba(0,201,255,.3);
  flex-shrink: 0; position: relative; margin-top: 2px;
  transition: background .4s, border-color .4s;
}
.anim-check-icon::after {
  content: ''; position: absolute;
  top: 5px; left: 6px; width: 9px; height: 6px;
  border-left: 2px solid #00c9ff; border-bottom: 2px solid #00c9ff;
  transform: rotate(-45deg) scale(0);
  transform-origin: center;
  transition: transform .3s cubic-bezier(.4,0,.2,1) .15s;
}
.anim-check-item.is-visible .anim-check-icon { background: rgba(0,201,255,.15); border-color: #00c9ff; }
.anim-check-item.is-visible .anim-check-icon::after { transform: rotate(-45deg) scale(1); }

.anim-check-item div { font-size: .9rem; color: rgba(255,255,255,.55); line-height: 1.65; }
.anim-check-item strong { display: block; font-weight: 700; color: #fff; margin-bottom: 2px; }

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════ */
.testimonials { padding: 120px 0; background: #0a0a0a; }
.rating-row { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 10px; }
.stars { color: #fbbf24; font-size: 1.15rem; letter-spacing: 3px; }
.rating-text { font-size: .82rem; color: rgba(255,255,255,.45); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testi-card {
  background: #111520; border: 1px solid rgba(255,255,255,.06);
  border-radius: 18px; padding: 38px; position: relative; overflow: hidden;
  transition: transform .28s, border-color .28s, box-shadow .28s;
}
.testi-card::before {
  content: '"'; position: absolute; top: 10px; left: 20px;
  font-family: 'Playfair Display', serif; font-size: 6rem; font-weight: 900;
  color: rgba(0,201,255,.05); line-height: 1; pointer-events: none;
}
.testi-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,201,255,.22);
  box-shadow: 0 0 28px rgba(0,201,255,.09), 0 20px 48px rgba(0,0,0,.4);
}
.testi-stars { color: #fbbf24; font-size: .95rem; letter-spacing: 2px; margin-bottom: 16px; }
.testi-text  { font-size: .88rem; color: rgba(255,255,255,.58); line-height: 1.88; font-style: italic; margin-bottom: 26px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(0,201,255,.1); border: 1px solid rgba(0,201,255,.2);
  display: grid; place-items: center;
  font-size: .75rem; font-weight: 700; color: #00c9ff; flex-shrink: 0;
}
.testi-author strong { display: block; font-size: .88rem; font-weight: 700; color: #fff; }
.testi-author span   { font-size: .76rem; color: rgba(255,255,255,.38); margin-top: 2px; display: block; }

/* ══════════════════════════════════════════════════════════
   ORDER SECTION
══════════════════════════════════════════════════════════ */
.order { padding: 120px 0; background: #0d1017; }
.order-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}

/* Product image — NO filter, NO blend-mode */
.order-img-col { display: flex; align-items: center; justify-content: center; }
.order-product-wrap {
  position: relative; display: inline-block;
  animation: order-float 4.5s ease-in-out infinite;
}
@keyframes order-float {
  0%,100% { transform: perspective(1000px) rotateY(8deg) rotateX(-3deg) translateY(0); }
  50%      { transform: perspective(1000px) rotateY(8deg) rotateX(-3deg) translateY(-18px); }
}
.order-img {
  width: 100%; max-width: 420px; display: block; border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,.55), 0 0 60px rgba(0,201,255,.12);
}

.order-name { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 900; letter-spacing: -.03em; color: #fff; margin-bottom: 6px; line-height: 1; }
.order-dot { background: linear-gradient(135deg, #00c9ff, #00fff7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.order-desc { font-size: .9rem; color: rgba(255,255,255,.42); margin-bottom: 26px; }
.order-pricing { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.order-old   { font-size: 1.2rem; color: rgba(255,255,255,.3); text-decoration: line-through; }
.order-price {
  font-size: 3rem; font-weight: 900; line-height: 1; letter-spacing: -.03em;
  background: linear-gradient(135deg, #00c9ff, #00fff7);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.order-save {
  font-size: .75rem; font-weight: 700; color: #4ade80;
  background: rgba(74,222,128,.1); border: 1px solid rgba(74,222,128,.22);
  padding: 5px 12px; border-radius: 100px;
}
.order-includes { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
.order-includes li { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: rgba(255,255,255,.68); font-weight: 500; }
.order-includes svg { flex-shrink: 0; }
.qty-row { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.qty-label { font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); }
.qty-ctrl { display: flex; align-items: center; border: 1px solid rgba(255,255,255,.1); border-radius: 10px; overflow: hidden; }
.qty-btn { width: 42px; height: 42px; background: rgba(255,255,255,.04); border: none; color: #fff; font-size: 1.25rem; font-weight: 700; cursor: none; transition: background .2s, color .2s; }
.qty-btn:hover { background: rgba(0,201,255,.12); color: #00c9ff; }
.qty-ctrl span { display: flex; align-items: center; justify-content: center; width: 48px; height: 42px; font-size: .95rem; font-weight: 700; border-left: 1px solid rgba(255,255,255,.1); border-right: 1px solid rgba(255,255,255,.1); }

.btn-cart {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 18px 28px; border-radius: 12px;
  background: linear-gradient(135deg, #00c9ff, #00fff7);
  color: #000; font-size: 1.05rem; font-weight: 800;
  border: none; cursor: none;
  box-shadow: 0 0 24px rgba(0,201,255,.4), 0 0 48px rgba(0,201,255,.16);
  animation: pulse-glow 2.8s ease-in-out infinite;
  transition: transform .2s;
}
.btn-cart:hover { transform: translateY(-3px) scale(1.02); }

.order-trust { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.trust-pill {
  display: flex; align-items: center; gap: 6px;
  font-size: .74rem; font-weight: 600; color: rgba(255,255,255,.42);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  padding: 6px 14px; border-radius: 100px;
  transition: border-color .2s, color .2s;
}
.trust-pill:hover { border-color: rgba(0,201,255,.28); color: rgba(255,255,255,.75); }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.footer {
  background: #050810;
  padding: 60px 0 30px;
  position: relative;
}
.footer::before {
  content: ''; display: block;
  height: 2px; width: 100%;
  background: linear-gradient(to right, transparent 5%, #00c9ff 35%, #00fff7 65%, transparent 95%);
  box-shadow: 0 0 22px rgba(0,201,255,.4);
  margin-bottom: 60px;
}
.footer-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 28px;
  display: flex; flex-direction: column; align-items: center; gap: 32px;
}
.footer-logo { background: none; border: none; }
.footer-logo img { height: 150px; width: auto; object-fit: contain; opacity: .9; transition: opacity .2s; }
.footer-logo:hover img { opacity: 1; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 28px; }
.footer-nav a { font-size: .84rem; color: rgba(255,255,255,.38); transition: color .2s; cursor: none; }
.footer-nav a:hover { color: rgba(255,255,255,.8); }
.footer-social { display: flex; gap: 10px; }
.soc-btn {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  display: grid; place-items: center; color: rgba(255,255,255,.42);
  transition: color .2s, border-color .2s, background .2s, transform .2s; cursor: none;
}
.soc-btn:hover { color: #00c9ff; border-color: rgba(0,201,255,.32); background: rgba(0,201,255,.07); transform: translateY(-2px); }
/* Footer contact info */
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  width: 100%;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  font-weight: 500;
  transition: color .2s;
  cursor: none;
}
.contact-item svg { flex-shrink: 0; opacity: .7; }
.contact-item:hover { color: #00c9ff; }
.contact-item:hover svg { opacity: 1; }

/* Payment methods */
.footer-payments {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  width: 100%;
}
.payments-heading {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
}
.payment-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.payment-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.65);
  letter-spacing: .02em;
  transition: border-color .2s, color .2s, background .2s;
}
.payment-badge:hover { border-color: rgba(0,201,255,.25); color: #fff; background: rgba(255,255,255,.09); }
.payment-badge--visa { border-color: rgba(26,31,113,.3); }
.payment-badge--visa:hover { border-color: rgba(26,31,113,.65); }
.payment-badge--amex { border-color: rgba(0,111,207,.3); }
.payment-badge--amex:hover { border-color: rgba(0,111,207,.65); }
.payment-badge--paypal { border-color: rgba(0,48,135,.25); }
.payment-badge--paypal:hover { border-color: rgba(0,156,222,.45); }
.payment-badge--klarna { border-color: rgba(255,179,199,.2); }
.payment-badge--klarna:hover { border-color: rgba(255,179,199,.5); }
.payment-badge--clearpay { border-color: rgba(178,252,228,.2); }
.payment-badge--clearpay:hover { border-color: rgba(178,252,228,.5); }

.footer-bottom { display: flex; flex-direction: column; align-items: center; gap: 12px; width: 100%; border-top: 1px solid rgba(255,255,255,.06); padding-top: 28px; }
.footer-bottom p { font-size: .72rem; color: rgba(255,255,255,.28); text-align: center; line-height: 1.6; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: .78rem; color: rgba(255,255,255,.22); transition: color .2s; cursor: none; }
.footer-links a:hover { color: rgba(255,255,255,.6); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner        { grid-template-columns: 1fr; text-align: center; }
  .hero-text         { align-items: center; }
  .hero-visual       { order: -1; }
  .float-badge       { display: none; }
  .showcase-top      { grid-template-columns: 1fr; gap: 48px; padding: 80px 0 60px; }
  .order-inner       { grid-template-columns: 1fr; gap: 52px; }
  .order-img-col     { order: -1; }
  .perfect           { grid-template-columns: 1fr; }
  .perfect-img-col   { height: 400px; }
  .perfect-content-col { padding: 60px 40px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger          { display: flex; }
  .nav-inner           { padding: 0 24px; }
  .features-grid       { grid-template-columns: 1fr; }
  .testi-grid          { grid-template-columns: 1fr; }
  .how-steps           { flex-direction: column; align-items: center; gap: 36px; }
  .how-arrow           { display: none; }
  .stat-divider        { display: none; }
  .splash-section      { height: 440px; }
  .lifestyle-section   { height: 480px; }
  .perfect-content-col { padding: 52px 28px; }
  .showcase-wide-img   { height: 340px; }
  .showcase-wide-content { padding: 0 32px; }
}

@media (max-width: 540px) {
  .hero-btns          { width: 100%; }
  .hero-btns .btn     { width: 100%; justify-content: center; }
  .hero-trust         { justify-content: center; }
  .hero-price         { flex-wrap: wrap; }
  .order-trust        { justify-content: center; }
  .footer-bottom      { flex-direction: column; text-align: center; }
  .footer-links       { justify-content: center; }
  .stats-inner        { gap: 28px; }
  .hero-scroll-hint   { display: none; }
}

/* ══ CONTACT SECTION ══════════════════════════════════ */
.contact-section {
  padding: 120px 0 140px;
  background: #0a0a0a;
  position: relative;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,201,255,.18), transparent);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  margin-top: 64px;
  align-items: start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-details-heading {
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -.01em;
  margin: 0;
}

.contact-detail-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  text-decoration: none;
  transition: border-color .25s, background .25s, transform .25s;
}
.contact-detail-item:hover {
  border-color: rgba(0,201,255,.3);
  background: rgba(0,201,255,.05);
  transform: translateX(4px);
}

.contact-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,201,255,.1);
  border: 1px solid rgba(0,201,255,.2);
  border-radius: 10px;
  color: #00c9ff;
  flex-shrink: 0;
}

.contact-detail-label {
  display: block;
  font-size: .72rem;
  font-weight: 500;
  color: rgba(255,255,255,.4);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.contact-detail-value {
  display: block;
  font-size: .92rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
}

.contact-response-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  padding: 14px 18px;
  background: rgba(0,201,255,.04);
  border: 1px solid rgba(0,201,255,.1);
  border-radius: 10px;
}

.contact-form-wrap {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  padding: 44px 40px;
  position: relative;
}
.contact-form-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,201,255,.06) 0%, transparent 70%);
  pointer-events: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group:last-of-type { margin-bottom: 0; }

.form-group label {
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.required { color: #00c9ff; font-size: .75rem; }
.optional  { color: rgba(255,255,255,.25); font-size: .7rem; font-weight: 400; text-transform: none; letter-spacing: 0; }

.form-group input,
.form-group textarea {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: .92rem;
  font-family: inherit;
  color: #fff;
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
  resize: none;
  width: 100%;
  box-sizing: border-box;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,.22);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(0,201,255,.5);
  background: rgba(0,201,255,.04);
  box-shadow: 0 0 0 3px rgba(0,201,255,.1);
}
.form-group input.error,
.form-group textarea.error {
  border-color: rgba(248,113,113,.5);
}

.field-error {
  font-size: .75rem;
  color: #f87171;
  min-height: 16px;
  display: block;
}

.form-submit {
  margin-top: 28px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 32px;
  font-size: 1rem;
}

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(74,222,128,.08);
  border: 1px solid rgba(74,222,128,.25);
  border-radius: 12px;
  font-size: .9rem;
  color: #4ade80;
  font-weight: 500;
}
.form-success.visible {
  display: flex;
}

@media (max-width: 1024px) {
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .contact-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   OUT OF STOCK STYLES
══════════════════════════════════════════════════════════ */

/* Disabled / OOS button variant */
.btn-oos {
  background: rgba(255,255,255,.08) !important;
  background-image: none !important;
  color: rgba(255,255,255,.32) !important;
  box-shadow: none !important;
  animation: none !important;
  border: 1px solid rgba(255,255,255,.1) !important;
  cursor: not-allowed !important;
}
.btn-oos:hover { transform: none !important; box-shadow: none !important; }

/* OOS variant for the Add to Cart button */
.btn-cart-oos {
  background: rgba(255,255,255,.08) !important;
  background-image: none !important;
  color: rgba(255,255,255,.32) !important;
  box-shadow: none !important;
  animation: none !important;
  cursor: not-allowed !important;
}
.btn-cart-oos:hover { transform: none !important; }

/* Nav CTA disabled */
.nav-cta.btn-oos { cursor: not-allowed; }

/* Mobile nav OOS */
.nav-mobile-oos {
  color: rgba(255,255,255,.35) !important;
  font-weight: 600 !important;
  cursor: not-allowed;
}

/* OOS badge on product images */
.oos-image-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
  background: linear-gradient(135deg, #ff4444, #ff7700);
  color: #fff;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .2em;
  padding: 9px 22px;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(255,68,68,.45), 0 0 40px rgba(255,68,68,.2);
  pointer-events: none;
  z-index: 5;
  white-space: nowrap;
  border: 1.5px solid rgba(255,255,255,.3);
}

/* OOS section label override */
.oos-section-label {
  color: #ff6644 !important;
  background: rgba(255,100,68,.07);
  border: 1px solid rgba(255,100,68,.22);
  padding: 4px 14px;
  border-radius: 100px;
}

/* Waitlist hint text */
.hero-waitlist-text,
.order-waitlist-text {
  font-size: .82rem;
  color: rgba(255,255,255,.42);
  margin-top: -4px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-waitlist-text::before,
.order-waitlist-text::before {
  content: '↓';
  color: #00c9ff;
  font-size: .9rem;
}
.order-waitlist-text { margin-top: 10px; }

/* ══════════════════════════════════════════════════════════
   AI CHATBOT
══════════════════════════════════════════════════════════ */

.chat-widget-container {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 8000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

/* FAB button */
.chat-fab-btn {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00c9ff, #00fff7);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  cursor: none;
  box-shadow: 0 8px 32px rgba(0,201,255,.5), 0 2px 8px rgba(0,0,0,.4);
  position: relative;
  transition: transform .2s, box-shadow .2s;
  flex-shrink: 0;
}
.chat-fab-btn:hover { transform: scale(1.08); box-shadow: 0 12px 40px rgba(0,201,255,.65), 0 2px 8px rgba(0,0,0,.4); }

.chat-fab-ping {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(0,201,255,.55);
  animation: chat-ping 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes chat-ping {
  0%   { transform: scale(1);   opacity: .9; }
  100% { transform: scale(1.7); opacity: 0;  }
}

/* Chat window */
.chat-window {
  width: 358px;
  background: rgba(8,10,18,.93);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(0,201,255,.22);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,.75), 0 0 50px rgba(0,201,255,.1);
  display: none;
  flex-direction: column;
  max-height: 540px;
  transform-origin: bottom right;
  animation: chat-open .25s cubic-bezier(.4,0,.2,1);
}
.chat-window.open { display: flex; }
@keyframes chat-open {
  from { opacity: 0; transform: scale(.92) translateY(12px); }
  to   { opacity: 1; transform: scale(1)   translateY(0); }
}

/* Chat header */
.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: rgba(0,201,255,.06);
  border-bottom: 1px solid rgba(0,201,255,.14);
  flex-shrink: 0;
}
.chat-header-brand { display: flex; align-items: center; gap: 10px; }
.chat-logo { height: 36px; width: auto; object-fit: contain; filter: drop-shadow(0 0 6px rgba(0,201,255,.4)); }
.chat-header-info { display: flex; flex-direction: column; gap: 2px; }
.chat-name { font-size: .88rem; font-weight: 700; color: #fff; letter-spacing: -.01em; }
.chat-online { display: flex; align-items: center; gap: 5px; font-size: .72rem; color: rgba(255,255,255,.45); }
.chat-online-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 6px #4ade80; flex-shrink: 0; }

.chat-close-btn {
  width: 30px; height: 30px; border-radius: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  cursor: none;
  transition: background .2s, color .2s;
}
.chat-close-btn:hover { background: rgba(255,255,255,.12); color: #fff; }

/* Messages area */
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,201,255,.2) transparent;
}
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-thumb { background: rgba(0,201,255,.2); border-radius: 4px; }

.chat-msg {
  display: flex;
  flex-direction: column;
  max-width: 82%;
  gap: 4px;
  animation: msg-in .22s cubic-bezier(.4,0,.2,1);
}
@keyframes msg-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.chat-msg.bot { align-items: flex-start; align-self: flex-start; }
.chat-msg.user { align-items: flex-end; align-self: flex-end; }

.chat-bubble {
  padding: 10px 14px;
  border-radius: 16px;
  font-size: .85rem;
  line-height: 1.6;
  word-break: break-word;
}
.chat-msg.bot .chat-bubble {
  background: rgba(0,201,255,.1);
  border: 1px solid rgba(0,201,255,.18);
  color: rgba(255,255,255,.88);
  border-bottom-left-radius: 4px;
}
.chat-msg.user .chat-bubble {
  background: linear-gradient(135deg, #00c9ff, #00d4f7);
  color: #000;
  font-weight: 600;
  border-bottom-right-radius: 4px;
}

/* Typing indicator */
.chat-typing .chat-bubble {
  display: flex; align-items: center; gap: 5px; padding: 12px 16px;
}
.chat-typing-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(0,201,255,.6);
  animation: typing-bounce .9s ease-in-out infinite;
}
.chat-typing-dot:nth-child(2) { animation-delay: .15s; }
.chat-typing-dot:nth-child(3) { animation-delay: .30s; }
@keyframes typing-bounce { 0%,80%,100% { transform: translateY(0); } 40% { transform: translateY(-6px); } }

/* Quick replies */
.chat-quick-replies {
  padding: 6px 14px 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  flex-shrink: 0;
}
.chat-quick-btn {
  font-size: .73rem;
  font-weight: 600;
  color: #00c9ff;
  background: rgba(0,201,255,.08);
  border: 1px solid rgba(0,201,255,.22);
  border-radius: 100px;
  padding: 5px 13px;
  cursor: none;
  transition: background .2s, border-color .2s, color .2s;
  white-space: nowrap;
}
.chat-quick-btn:hover { background: rgba(0,201,255,.18); border-color: rgba(0,201,255,.5); color: #fff; }

/* Input area */
.chat-input-area {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid rgba(255,255,255,.07);
  flex-shrink: 0;
  background: rgba(0,0,0,.2);
}
.chat-input {
  flex: 1;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: .85rem;
  font-family: inherit;
  color: #fff;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.chat-input::placeholder { color: rgba(255,255,255,.25); }
.chat-input:focus { border-color: rgba(0,201,255,.45); box-shadow: 0 0 0 3px rgba(0,201,255,.1); }

.chat-send-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #00c9ff, #00fff7);
  border: none;
  display: flex; align-items: center; justify-content: center;
  color: #000;
  cursor: none;
  transition: transform .2s, box-shadow .2s;
  flex-shrink: 0;
}
.chat-send-btn:hover { transform: scale(1.06); box-shadow: 0 4px 16px rgba(0,201,255,.45); }

@media (max-width: 480px) {
  .chat-widget-container { bottom: 18px; right: 16px; }
  .chat-window { width: calc(100vw - 32px); }
}
