/* ────────────────────────────────────────────────────────────
   SynDex Official — Home & Shared Styles
   Dark gaming theme  |  Red accent #c8102e
───────────────────────────────────────────────────────────── */

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

:root {
  --red: #c8102e;
  --red-dim: #a50e28;
  --red-glow: rgba(200,16,46,0.25);
  --red-subtle: rgba(200,16,46,0.08);
  --bg: #000000;
  --bg2: #050505;
  --bg3: #080808;
  --bg4: #121212;
  --border: rgba(255,255,255,0.06);
  --border-red: rgba(200,16,46,0.22);
  --text: #ffffff;
  --muted: #888888;
  --green: #22c55e;
  --gold: #f59e0b;
  --font-head: 'Rajdhani', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --font-mono: 'Space Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

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

/* ── INTRO ANIMATION & HANDS ──────────────────────────────── */
.hands-container {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background: #000000;
  transition: background 1s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: background;
}

body.intro-completed .hands-container {
  background: transparent;
  z-index: -1;
}

.hand-left, .hand-right {
  position: absolute;
  width: 32vw;
  max-width: 420px;
  height: auto;
  mix-blend-mode: screen;
  filter: contrast(1.5) brightness(0.85);
  will-change: transform, opacity;
}

.hand-left {
  top: 75px;
  left: 0;
  transform: translate3d(-100%, -100%, 0) rotate(-15deg);
  animation: slide-in-left 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hand-right {
  bottom: 0;
  right: 0;
  transform: translate3d(100%, 100%, 0) rotate(15deg);
  animation: slide-in-right 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slide-in-left {
  0% {
    transform: translate3d(-100%, -100%, 0) rotate(-15deg);
    opacity: 0;
  }
  30% {
    opacity: 0.8;
  }
  100% {
    transform: translate3d(-12%, -12%, 0) rotate(0deg);
    opacity: 1;
  }
}

@keyframes slide-in-right {
  0% {
    transform: translate3d(100%, 100%, 0) rotate(15deg);
    opacity: 0;
  }
  30% {
    opacity: 0.8;
  }
  100% {
    transform: translate3d(12%, 12%, 0) rotate(0deg);
    opacity: 1;
  }
}

/* ── APP WRAPPER TRANSITION ───────────────────────────────── */
.app-wrapper {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

body.intro-completed .app-wrapper {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* ── NOTICE BAR ───────────────────────────────────────────── */
.notice-bar {
  position: sticky; top: 0; z-index: 200;
  background: linear-gradient(90deg, #7c0a1a, var(--red), #7c0a1a);
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 10px 20px; font-size: 14px; font-weight: 500;
  animation: noticeSlide .3s ease;
}
@keyframes noticeSlide { from{transform:translateY(-100%)} to{transform:translateY(0)} }
.notice-bar.hidden { display: none; }
.notice-close {
  background: none; border: none; color: rgba(255,255,255,.7);
  cursor: pointer; font-size: 18px; line-height: 1; padding: 0 4px; margin-left: auto;
}
.notice-close:hover { color: #fff; }

/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background .3s, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
  transform: translate3d(0, -100%, 0);
}
.navbar.visible { transform: translate3d(0, 0, 0); }
.navbar.scrolled { background: #000000; box-shadow: 0 4px 30px rgba(0,0,0,.8); }
.nav-inner {
  width: 100%;
  max-width: 100%;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px; height: 68px;
}
.nav-logo {
  flex: 1 1 0%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.nav-logo-img { width: 34px; height: 34px; object-fit: contain; }
.nav-brand { font-family: var(--font-body); font-size: 17px; font-weight: 700; letter-spacing: 0.5px; text-transform: lowercase; color: #fff; }
.nav-brand em { color: rgba(255,255,255,0.5); font-style: normal; font-weight: 400; }
.nav-right {
  flex: 1 1 0%;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-end;
}

/* ── NAV CENTER LINKS ─────────────────────────────────────── */
.nav-links {
  display: flex; align-items: center; gap: 24px;
}
.nav-links a {
  display: flex; align-items: center; gap: 6px;
  padding: 4px 8px;
  color: rgba(255, 255, 255, 0.65); font-size: 13.5px; font-weight: 500;
  font-family: var(--font-body);
  transition: color .2s ease, opacity .2s ease; white-space: nowrap;
  background: none !important;
  border: none !important;
}
.nav-links a:hover { color: #ffffff; opacity: 1; }
.online-badge {
  display: flex; align-items: center; gap: 6px;
  font-size: 12.5px; color: rgba(255, 255, 255, 0.5); padding: 4px 12px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 100px;
}
.online-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 6px var(--green); animation: blink 1.5s ease infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.btn-client-login {
  background: #ffffff; color: #000000 !important; font-weight: 700; font-size: 13px;
  padding: 8px 18px; border-radius: 6px; transition: background .2s, transform .1s;
  font-family: var(--font-body);
}
.btn-client-login:hover { background: rgba(255,255,255,0.85); transform: translateY(-1px); }
.btn-admin-login {
  color: rgba(255,255,255,0.75) !important; font-size: 13px; padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.15); border-radius: 6px; transition: all .2s;
  font-family: var(--font-body);
}
.btn-admin-login:hover { color: #ffffff !important; border-color: rgba(255,255,255,0.4); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  min-height: calc(100vh - 68px);
  display: flex; align-items: center; justify-content: center;
  padding: 40px 32px; width: 100%;
  box-sizing: border-box;
}
.hero-bg-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-glow {
  position: absolute; top: 20%; left: 35%; transform: translate(-50%,-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.03) 0%, transparent 68%);
  pointer-events: none; z-index: 0;
}
/* Default: always two-column split */
.hero-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
/* image variant just adds has-image class — no change needed */
.hero-inner.has-image { gap: 48px; }

.hero-content { text-align: left; max-width: 650px; }
.hero-inner.has-image .hero-actions { justify-content: flex-start; }
.hero-inner.has-image .hero-stats  { justify-content: flex-start; }
.hero-badge {
  display: inline-block; margin-bottom: 20px;
  background: var(--red-subtle); border: 1px solid var(--border-red);
  color: #ffffff; font-size: 12px; font-weight: 600; letter-spacing: 0.5px;
  padding: 5px 14px; border-radius: 100px;
  opacity: 0;
  transform: translate3d(0, 15px, 0);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.hero-badge.visible { opacity: 1; transform: translate3d(0, 0, 0); }

.hero-title {
  font-family: var(--font-body); font-size: clamp(34px, 5.5vw, 62px);
  font-weight: 800; letter-spacing: -0.5px; line-height: 1.05;
  margin-bottom: 20px; color: #fff;
  opacity: 0;
}
.brand-highlight {
  background: linear-gradient(135deg, var(--red), #ff4d6d);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 15px; color: rgba(255,255,255,0.6); margin-bottom: 36px; line-height: 1.8;
  max-width: 560px;
  margin-left: 0; margin-right: 0;
  opacity: 0;
}
.hero-sub strong { color: var(--text); }
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-start;
  margin-bottom: 48px;
  opacity: 0;
  transform: translate3d(0, 15px, 0);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.hero-actions.visible { opacity: 1; transform: translate3d(0, 0, 0); }

/* Sleek compact buttons with red accents */
.btn-hero-primary {
  background: var(--red); color: #ffffff !important; font-weight: 700;
  font-family: var(--font-body); font-size: 13px; letter-spacing: 0.2px;
  padding: 9px 20px; border-radius: 4px;
  border: 1.5px solid var(--red); transition: all .2s;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 12px var(--red-glow);
}
.btn-hero-primary:hover {
  background: transparent; color: var(--red) !important;
  transform: translateY(-1.5px);
  box-shadow: none;
}
.btn-hero-outline {
  background: transparent; color: #ffffff; font-weight: 500;
  font-family: var(--font-body);
  font-size: 13px; padding: 9px 18px; border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,0.2); transition: all .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-hero-outline:hover {
  border-color: var(--red); color: var(--red); transform: translateY(-1.5px);
}
.hero-stats {
  display: flex; gap: 0; align-items: center; justify-content: flex-start;
  opacity: 0;
  transform: translate3d(0, 15px, 0);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.hero-stats.visible { opacity: 1; transform: translate3d(0, 0, 0); }

.stat-item { padding: 0 24px; text-align: left; }
.stat-item:first-child { padding-left: 0; }
.stat-num { display: block; font-family: var(--font-body); font-size: 34px; font-weight: 800; color: var(--red); line-height: 1.1; }
.stat-label { font-size: 11px; color: rgba(255,255,255,0.4); text-transform: lowercase; letter-spacing: 0.5px; margin-top: 4px; display: block; }
.stat-div { width: 1px; height: 32px; background: rgba(255,255,255,0.08); }

/* RIGHT: image area */
.hero-image-wrap {
  position: relative; display: flex;
  align-items: center; justify-content: center;
  min-height: 400px;
  opacity: 0;
  transform: translate3d(0, 15px, 0);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.hero-image-wrap.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.hero-image-glow {
  position: absolute; width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(200,16,46,0.2) 0%, transparent 70%);
  filter: blur(20px); z-index: 0; pointer-events: none;
}

/* Inline SVG icon coloring back to red */
.hero-badge svg,
.hero-sub svg,
.section-label svg {
  color: var(--red) !important;
  fill: var(--red) !important;
}
#hero-char-img {
  position: relative; z-index: 1;
  max-height: 440px; width: auto; max-width: 100%;
  object-fit: contain; filter: drop-shadow(0 15px 30px rgba(200,16,46,0.25));
  animation: floatUp 4s ease-in-out infinite;
}
.hero-logo-fallback {
  position: relative; z-index: 1; opacity: 0.85;
  animation: floatUp 4s ease-in-out infinite;
}
.hero-logo-fallback img { width: 380px; height: 380px; object-fit: contain; filter: drop-shadow(0 0 50px var(--red)); }
@keyframes floatUp { 0%,100%{transform:translate3d(0, 0, 0)} 50%{transform:translate3d(0, -10px, 0)} }
@keyframes fadeUp { from{opacity:0;transform:translate3d(0, 15px, 0)} to{opacity:1;transform:translate3d(0, 0, 0)} }

@media(max-width:900px){
  .hero-inner, .hero-inner.has-image { display: flex; flex-direction: column; align-items: center; text-align: center; }
  .hero-inner.has-image .hero-content { text-align: center; }
  .hero-inner.has-image .hero-actions, .hero-inner.has-image .hero-stats { justify-content: center; }
  .hero-image-wrap { display: none; }
  .hero-sub { margin-left: auto; margin-right: auto; }
}


/* ── PRODUCTS SECTION ────────────────────────────────────── */
.products-section { padding: 80px 32px; background: var(--bg); }
.section-inner { max-width: 1400px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 52px; position: relative; }
.section-label {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; color: #bbbbbb; text-transform: uppercase;
  margin-bottom: 12px; background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12); padding: 4px 14px; border-radius: 100px;
}
.section-title {
  font-family: var(--font-head); font-size: clamp(28px, 5vw, 52px);
  font-weight: 700; letter-spacing: 3px; color: #fff; margin-bottom: 10px;
  text-shadow: 0 0 60px var(--red-glow);
}
.section-sub { color: var(--muted); font-size: 15px; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}

/* ── PRODUCT CARD UPGRADED ────────────────────────────────── */
.product-card {
  background: linear-gradient(145deg, #141414, #111111);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; overflow: hidden;
  transition: transform .3s cubic-bezier(.4,0,.2,1), border-color .3s, box-shadow .3s;
  display: flex; flex-direction: column;
  position: relative;
}
.product-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(200,16,46,0.04) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s; pointer-events: none; z-index: 0;
}
.product-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(200,16,46,0.35);
  box-shadow: 0 20px 50px rgba(200,16,46,0.18), 0 4px 20px rgba(0,0,0,0.5);
}
.product-card:hover::before { opacity: 1; }

.product-img-wrap {
  height: 170px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
}
.product-img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.7) 100%);
  pointer-events: none;
}
.product-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease; filter: brightness(.9);
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); filter: brightness(1); }
.product-img-placeholder { font-size: 52px; opacity: .25; }

.product-badge-wrap { position: absolute; top: 12px; right: 12px; z-index: 1; }
.product-badge {
  font-size: 10px; font-weight: 800; letter-spacing: 1.2px; padding: 4px 10px;
  border-radius: 6px; text-transform: uppercase; backdrop-filter: blur(8px);
}
.badge-green  { background: rgba(34,197,94,.18);  border: 1px solid rgba(34,197,94,.5);  color: #4ade80; box-shadow: 0 2px 10px rgba(34,197,94,.2); }
.badge-gold   { background: rgba(245,158,11,.18); border: 1px solid rgba(245,158,11,.5); color: #fbbf24; box-shadow: 0 2px 10px rgba(245,158,11,.2); }
.badge-red    { background: rgba(200,16,46,.18);  border: 1px solid rgba(200,16,46,.5);  color: #ff6b6b; box-shadow: 0 2px 10px rgba(200,16,46,.2); }
.badge-blue   { background: rgba(59,130,246,.18); border: 1px solid rgba(59,130,246,.5); color: #93c5fd; box-shadow: 0 2px 10px rgba(59,130,246,.2); }
.badge-purple { background: rgba(168,85,247,.18); border: 1px solid rgba(168,85,247,.5); color: #c084fc; box-shadow: 0 2px 10px rgba(168,85,247,.2); }

.product-body { padding: 20px; flex: 1; display: flex; flex-direction: column; position: relative; z-index: 1; }

.product-name {
  font-family: var(--font-head); font-size: 18px; font-weight: 700;
  color: #fff; margin-bottom: 10px; line-height: 1.3; letter-spacing: .3px;
}

.product-price {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, var(--red), #ff3355);
  color: #fff; font-size: 13px; font-weight: 700;
  padding: 6px 14px; border-radius: 7px; margin-bottom: 14px;
  box-shadow: 0 3px 12px rgba(200,16,46,.35); letter-spacing: .3px;
  width: fit-content;
}

.product-features { list-style: none; margin-bottom: 18px; flex: 1; }
.product-features li {
  font-size: 13px; color: #aaa; padding: 4px 0;
  display: flex; align-items: center; gap: 8px; border-bottom: 1px solid rgba(255,255,255,.04);
}
.product-features li:last-child { border-bottom: none; }
.product-features li::before {
  content: "✓"; color: var(--green); font-weight: 800;
  font-size: 11px; width: 16px; height: 16px; display: flex;
  align-items: center; justify-content: center;
  background: rgba(34,197,94,.12); border-radius: 50%;
  flex-shrink: 0;
}

.btn-whatsapp {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  background: linear-gradient(135deg, #25d366, #1aad53);
  color: #fff; font-weight: 700; font-size: 13px;
  padding: 13px; border-radius: 10px; border: none; cursor: pointer;
  transition: all .25s; width: 100%;
  box-shadow: 0 4px 16px rgba(37,211,102,.25);
  letter-spacing: .3px;
}
.btn-whatsapp:hover {
  background: linear-gradient(135deg, #2de372, #20c75e);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.35);
}
.btn-whatsapp svg { width: 18px; height: 18px; fill: #fff; flex-shrink: 0; }

.loading-spinner { text-align: center; color: var(--muted); padding: 40px; grid-column: 1/-1; }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 32px 24px;
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; flex-wrap: wrap; gap: 20px;
  justify-content: space-between;
}
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo-img { width: 36px; height: 36px; object-fit: contain; }
.footer-brand { font-family: var(--font-head); font-size: 18px; font-weight: 700; }
.footer-brand em { color: var(--red); font-style: normal; }
.footer-copy { color: var(--muted); font-size: 13px; }
.footer-links { display: flex; gap: 16px; }
.footer-links a { color: var(--muted); font-size: 13px; transition: color .2s; }
.footer-links a:hover { color: var(--red); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-logo-float { display: none; }
  .hero-stats { gap: 0; }
  .stat-item { padding: 0 16px; }
  .stat-num { font-size: 24px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .nav-links { display: none; }
}
@media (max-width: 480px) {
  .nav-inner { padding: 0 16px; }
  .btn-admin-login { display: none; }
}

/* ── AUTH PLATFORM DIVIDER ──────────────────────────────────── */
.auth-divider-wrap {
  display: flex; align-items: center; gap: 20px;
  max-width: 1280px; margin: 0 auto; padding: 0 24px 0;
}
.auth-divider-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,16,46,0.35), transparent);
}
.auth-divider-label {
  display: flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  color: var(--red); text-transform: uppercase; white-space: nowrap;
  background: var(--red-subtle); border: 1px solid var(--border-red);
  padding: 5px 14px; border-radius: 100px;
}

/* ── AUTH PLATFORM SECTION ──────────────────────────────────── */
.auth-section {
  padding: 60px 24px 80px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 60%, var(--bg) 100%);
  position: relative; overflow: hidden;
}
.auth-section::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(200,16,46,0.07), transparent 70%);
  pointer-events: none;
}
.auth-section .section-inner { position: relative; z-index: 1; }

/* Header */
.auth-section-header { text-align: center; margin-bottom: 52px; }
.auth-section-badge {
  display: inline-flex; align-items: center; gap: 7px; margin-bottom: 18px;
  background: var(--red-subtle); border: 1px solid var(--border-red);
  color: var(--red); font-size: 12px; font-weight: 700; letter-spacing: 1.2px;
  padding: 6px 16px; border-radius: 100px; text-transform: uppercase;
}
.auth-section-title {
  font-family: var(--font-head); font-size: clamp(30px, 5vw, 52px);
  font-weight: 700; letter-spacing: 2px; color: #fff; margin-bottom: 14px;
}
.auth-section-sub {
  font-size: 16px; color: #999; max-width: 580px; margin: 0 auto 32px;
  line-height: 1.7;
}
.auth-section-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.btn-auth-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: #fff; font-weight: 700;
  font-family: var(--font-head); font-size: 16px; letter-spacing: 0.5px;
  padding: 13px 30px; border-radius: 8px; border: 2px solid var(--red);
  transition: all .2s; box-shadow: 0 0 20px rgba(200,16,46,0.3);
}
.btn-auth-primary:hover {
  background: transparent; color: var(--red); transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(200,16,46,0.4);
}
.btn-auth-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #aaa; font-weight: 600; font-size: 15px;
  padding: 13px 24px; border-radius: 8px; border: 1px solid var(--border);
  transition: all .2s;
}
.btn-auth-outline:hover { border-color: var(--border-red); color: var(--red); transform: translateY(-2px); }

/* Feature grid */
.auth-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px; margin-bottom: 40px;
}
.auth-feat-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 12px; padding: 26px 24px;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.auth-feat-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-red);
  box-shadow: 0 10px 36px rgba(255,255,255,0.02);
}
.auth-feat-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--red-subtle); border: 1px solid var(--border-red);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; color: var(--red);
}
.auth-feat-icon svg { width: 22px; height: 22px; }
.auth-feat-title {
  font-family: var(--font-head); font-size: 18px; font-weight: 700;
  color: #fff; margin-bottom: 8px; letter-spacing: 0.5px;
}
.auth-feat-desc { font-size: 13px; color: #888; line-height: 1.65; }

/* CTA banner */
.auth-cta-banner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid var(--border-red); border-radius: 14px;
  padding: 28px 32px;
}
.auth-cta-title {
  font-family: var(--font-head); font-size: 22px; font-weight: 700;
  color: #fff; margin-bottom: 6px;
}
.auth-cta-sub { font-size: 14px; color: #888; }

@media (max-width: 768px) {
  .auth-cta-banner { flex-direction: column; text-align: center; }
  .auth-features-grid { grid-template-columns: 1fr; }
}

/* ── PRICING CARDS (new style) ────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}
.product-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(200, 16, 46, 0.08);
  border-color: rgba(200, 16, 46, 0.25);
}
.product-card-popular {
  border: 2.5px solid var(--red);
  box-shadow: 0 8px 30px rgba(200, 16, 46, 0.15);
  transform: translateY(-4px);
}
.product-card-popular:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(200, 16, 46, 0.25);
}
.pc-popular-banner {
  background: linear-gradient(90deg, var(--red), #e6193c);
  color: #ffffff; font-size: 11px; font-weight: 800;
  text-align: center; padding: 8px 16px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  letter-spacing: .5px; text-transform: uppercase;
}
.pc-top-badge {
  position: absolute; top: 14px; right: 14px;
  font-size: 10px; font-weight: 800; letter-spacing: 1.2px;
  padding: 4px 10px; border-radius: 6px; text-transform: uppercase;
  backdrop-filter: blur(8px); z-index: 1;
}
.pc-badge-green  { background: rgba(34,197,94,.15);  border: 1px solid rgba(34,197,94,.4);  color: #4ade80; }
.pc-badge-gold   { background: rgba(245,158,11,.15); border: 1px solid rgba(245,158,11,.4); color: #fbbf24; }
.pc-badge-red    { background: rgba(200,16,46,.15);  border: 1px solid rgba(200,16,46,.4);  color: #ff6b6b; }
.pc-badge-blue   { background: rgba(59,130,246,.15); border: 1px solid rgba(59,130,246,.4); color: #93c5fd; }
.pc-badge-purple { background: rgba(168,85,247,.15); border: 1px solid rgba(168,85,247,.4); color: #c084fc; }
.pc-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.pc-name {
  font-family: var(--font-body); font-size: 17px; font-weight: 700;
  color: #fff; margin-bottom: 18px; line-height: 1.3;
  padding-right: 80px; /* room for badge */
}
.pc-price-row {
  display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px;
}
.pc-currency { font-size: 16px; font-weight: 700; color: var(--red); }
.pc-amount   { font-size: 48px; font-weight: 800; color: var(--red); line-height: 1; font-family: var(--font-body); }
.pc-period   { font-size: 14px; color: var(--muted); }
.pc-orig-row {
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.pc-orig {
  font-size: 13px; color: var(--muted);
  text-decoration: line-through;
}
.pc-save {
  font-size: 11px; font-weight: 700; color: var(--red);
  background: rgba(200,16,46,.12); border: 1px solid rgba(200,16,46,.25);
  padding: 2px 9px; border-radius: 100px;
}
.pc-buy-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 13px; border-radius: 10px;
  font-size: 13px; font-weight: 700; cursor: pointer;
  border: 1.5px solid var(--border-red); color: #ffffff;
  background: transparent; transition: all .2s; margin-bottom: 10px;
  text-decoration: none;
}
.pc-buy-btn:hover { background: var(--red); color: #ffffff; transform: translateY(-1px); border-color: var(--red); }
.pc-buy-popular {
  background: var(--red);
  color: #ffffff !important; border-color: transparent;
}
.pc-buy-popular:hover { background: transparent; color: var(--red) !important; border-color: var(--red); }
.pc-renew {
  font-size: 11px; color: var(--muted); font-weight: 500;
  text-align: center; margin-bottom: 18px; letter-spacing: .3px;
}
.pc-features {
  list-style: none; border-top: 1px solid var(--border);
  padding-top: 16px; flex: 1;
}
.pc-features li {
  font-size: 13px; color: #bbb; padding: 5px 0;
  display: flex; align-items: center; gap: 9px;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.pc-features li:last-child { border-bottom: none; }
.pc-features li::before {
  content: "✓"; color: var(--green); font-weight: 800; font-size: 11px;
  width: 18px; height: 18px; display: flex; align-items: center; justify-content: center;
  background: rgba(34,197,94,.12); border-radius: 50%; flex-shrink: 0;
}
.pc-features li.hidden { display: none; }
.pc-see-more {
  background: none; border: none; color: var(--red); font-size: 12px;
  font-weight: 600; cursor: pointer; padding: 10px 0 0; text-align: center;
  width: 100%; transition: opacity .2s; letter-spacing: .3px;
}
.pc-see-more:hover { opacity: .75; }
