/* =========================================
   SPG GOLD — Landing Page CSS
   Matches frontend_refrence/src/index.css + Tailwind utilities
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none !important;
  /* Tailwind handles background and color */
}

* {
  cursor: none !important;
}

img {
  max-width: 100%;
  display: block;
}

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

button {
  font-family: inherit;
  border: none;
  background: none;
}

/* ── Global Selection ── */
::selection {
  background: rgba(245, 158, 11, 0.3);
  color: #f59e0b;
}

/* ── CSS Variables ── */
:root {
  --gold-50: #fffbeb;
  --gold-100: #fef3c7;
  --gold-200: #fde68a;
  --gold-300: #fcd34d;
  --gold-400: #fbbf24;
  --gold-500: #f59e0b;
  --gold-600: #d97706;
  --gold-700: #b45309;
  --zinc-50: #fafafa;
  --zinc-100: #f4f4f5;
  --zinc-200: #e4e4e7;
  --zinc-300: #d4d4d8;
  --zinc-400: #a1a1aa;
  --zinc-500: #71717a;
  --zinc-600: #52525b;
  --zinc-700: #3f3f46;
  --zinc-800: #27272a;
  --zinc-900: #18181b;
  --zinc-950: #09090b;
}

/* ── Custom Gold Cursor ── */
.custom-cursor {
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, #f59e0b 0%, #d97706 100%);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: transform 0.1s ease-out;
  box-shadow: 0 0 15px #f59e0b;
  transform: translate(-50%, -50%);
}

.custom-cursor-follower {
  width: 40px;
  height: 40px;
  border: 2px solid #f59e0b;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition: left 0.08s ease-out, top 0.08s ease-out, opacity 0.3s ease;
  opacity: 0.5;
  transform: translate(-50%, -50%);
}

.mouse-trail {
  position: fixed;
  width: 8px;
  height: 8px;
  background: #f59e0b;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  filter: blur(2px);
  animation: trailFade 0.5s forwards;
  transform: translate(-50%, -50%);
}

@keyframes trailFade {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }

  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

/* ── Navbar ── */
.landing-nav {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1280px;
  z-index: 50;
}

.landing-nav-inner {
  background: var(--zinc-50);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 16px 32px;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

html.dark .landing-nav-inner {
  background: rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.1);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-icon-wrap {
  position: relative;
}

.nav-logo-icon-glow {
  position: absolute;
  inset: 0;
  background: #f59e0b;
  filter: blur(16px);
  opacity: 0.2;
  transition: opacity 0.3s;
  border-radius: 50%;
}

.nav-logo:hover .nav-logo-icon-glow {
  opacity: 0.4;
}

.nav-logo-icon {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fbbf24, #eab308, #d97706);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.2);
  font-size: 22px;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.nav-logo:hover .nav-logo-icon {
  transform: scale(1.1);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-title {
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.05em;
  color: #000;
  text-transform: uppercase;
  line-height: 1;
}

html.dark .nav-logo-title {
  color: #fff;
}

.nav-logo-title span {
  color: #f59e0b;
}

.nav-logo-sub {
  font-size: 10px;
  color: var(--zinc-600);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: 4px;
  font-weight: 700;
}

html.dark .nav-logo-sub {
  color: var(--zinc-500);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-auth-desktop {
  display: none;
  align-items: center;
  gap: 12px;
}

@media (min-width: 1024px) {
  .nav-auth-desktop {
    display: flex;
  }

  .nav-login-mobile {
    display: none;
  }
}

.nav-btn-login {
  padding: 10px 24px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 50px;
  transition: all 0.2s;
}

.nav-btn-login:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.4);
}

.nav-btn-register {
  padding: 10px 24px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #000;
  background: #f59e0b;
  border-radius: 50px;
  transition: all 0.2s;
}

.nav-btn-register:hover {
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.5);
}

.nav-login-mobile {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 158, 11, 0.1);
  font-size: 18px;
  transition: all 0.2s;
}

.nav-login-mobile:hover {
  background: rgba(245, 158, 11, 0.2);
}

.nav-hamburger {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #f59e0b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all 0.2s;
}

.nav-hamburger:hover {
  background: rgba(0, 0, 0, 0.1);
}

html.dark .nav-hamburger {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

html.dark .nav-hamburger:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ── Mobile Menu ── */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(4px);
  z-index: 40;
}

.mobile-menu-overlay.active {
  display: block;
}

.mobile-menu-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: 288px;
  z-index: 100;
  background: var(--zinc-50);
  border-left: 1px solid var(--zinc-200);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}



html.dark .mobile-menu-drawer {
  background: var(--zinc-950);
  border-left-color: rgba(245, 158, 11, 0.1);
}

.mobile-menu-drawer.open {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu-header span {
  font-weight: 700;
  color: #f59e0b;
}

.mobile-menu-close {
  padding: 8px;
  border-radius: 8px;
  color: #000;
  font-size: 20px;
  transition: background 0.2s;
  background: transparent;
  border: none;
  cursor: pointer;
}

html.dark .mobile-menu-close {
  color: #fff;
}

.mobile-menu-close:hover {
  background: var(--zinc-200);
}

html.dark .mobile-menu-close:hover {
  background: var(--zinc-800);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-link {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--zinc-600);
  padding: 12px 0;
  border-bottom: 1px solid var(--zinc-200);
  transition: color 0.2s;
}

html.dark .mobile-nav-link {
  color: var(--zinc-400);
  border-color: rgba(255, 255, 255, 0.05);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #f59e0b;
}

.mobile-menu-auth {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-auth-login {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(245, 158, 11, 0.2);
  color: #d97706;
  font-weight: 700;
}

html.dark .mobile-auth-login {
  color: #f59e0b;
}

.mobile-auth-register {
  display: block;
  width: 100%;
  padding: 12px;
  text-align: center;
  font-weight: 700;
  color: #000;
  background: linear-gradient(135deg, #fbbf24, #d97706);
  border-radius: 12px;
  transition: all 0.2s;
}

.mobile-auth-register:hover {
  opacity: 0.9;
}

/* ── Main Content ── */
.landing-main {
  padding-top: 80px;
}

/* ── Footer ── */
.landing-footer {
  background: var(--zinc-50);
  border-top: 1px solid var(--zinc-200);
  padding: 80px 0 40px;
}

html.dark .landing-footer {
  background: var(--zinc-950);
  border-color: rgba(255, 255, 255, 0.05);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 640px) {
  .footer-inner {
    padding: 0 24px;
  }
}

@media (min-width: 1024px) {
  .footer-inner {
    padding: 0 32px;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 80px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.footer-brand p {
  color: var(--zinc-600);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
}

html.dark .footer-brand p {
  color: var(--zinc-500);
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fbbf24, #eab308, #d97706);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.footer-brand-name {
  font-weight: 700;
  font-size: 18px;
  color: #f59e0b;
}

.footer-social-row {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--zinc-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--zinc-600);
  font-size: 16px;
  transition: all 0.2s;
}

html.dark .footer-social-btn {
  background: var(--zinc-900);
  color: var(--zinc-400);
}

.footer-social-btn:hover {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.1);
}

.footer-col h4 {
  color: #f59e0b;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 24px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 16px;
}

.footer-col ul li a {
  color: var(--zinc-600);
  font-size: 14px;
  transition: color 0.2s;
}

html.dark .footer-col ul li a {
  color: var(--zinc-400);
}

.footer-col ul li a:hover {
  color: #f59e0b;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-icon {
  color: #f59e0b;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-text {
  color: var(--zinc-600);
  font-size: 14px;
}

html.dark .footer-contact-text {
  color: var(--zinc-400);
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid var(--zinc-200);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--zinc-600);
  font-size: 12px;
}

html.dark .footer-bottom {
  border-top-color: var(--zinc-900);
  color: var(--zinc-500);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

/* ── Container ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 640px) {
  .container {
    padding: 0 24px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 32px;
  }
}

/* ── Section Spacing ── */
.section-space {
  padding: 80px 0;
}

.page-sections {
  display: flex;
  flex-direction: column;
  gap: 128px;
  padding-bottom: 128px;
}

/* ── Typography ── */
.text-gold {
  color: #d97706;
}

html.dark .text-gold {
  color: #f59e0b;
}

.text-muted {
  color: var(--zinc-600) !important;
}

html.dark .text-muted {
  color: var(--zinc-400) !important;
}

.text-subtle {
  color: var(--zinc-500) !important;
}

html.dark .text-subtle {
  color: var(--zinc-500) !important;
}

.label-gold {
  display: inline-block;
  color: #f59e0b;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}

.h1-display {
  font-size: clamp(40px, 8vw, 120px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.85;
  text-transform: uppercase;
  color: #000;
}

html.dark .h1-display {
  color: #fff;
}

.h1-page {
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #000;
}

html.dark .h1-page {
  color: #fff;
}

.h2-section {
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #000;
}

html.dark .h2-section {
  color: #fff;
}

.h3-card {
  font-size: 20px;
  font-weight: 700;
  color: #000;
}

html.dark .h3-card {
  color: #fff;
}

.body-lg {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.7;
}

.body-md {
  font-size: 16px;
  line-height: 1.7;
}

/* ── Gradient text on JEWELS ── */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.gradient-text {
  background: linear-gradient(90deg, #fde68a, #f59e0b, #fde68a);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
}

/* ── Buttons ── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 48px;
  background: #f59e0b;
  color: #000;
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 16px;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}

.btn-gold:hover {
  box-shadow: 0 0 50px rgba(245, 158, 11, 0.35);
  transform: scale(1.03);
}

.btn-gold:active {
  transform: scale(0.97);
}

.badge-subtle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  color: #d97706;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

html.dark .badge-subtle {
  color: #f59e0b;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 48px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 16px;
  transition: all 0.2s;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
}

.btn-outline:active {
  transform: scale(0.97);
}

.btn-gold-sm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  background: #f59e0b;
  color: #000;
  font-weight: 700;
  border-radius: 16px;
  transition: all 0.2s;
  font-size: 14px;
}

.btn-gold-sm:hover {
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.4);
}

/* ── Cards ── */
.card-dark {
  background: var(--zinc-50);
  border: 1px solid var(--zinc-200);
  padding: 40px;
  border-radius: 24px;
  transition: all 0.3s;
}

html.dark .card-dark {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.05);
}

.card-dark:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 158, 11, 0.3);
}

.card-black {
  background: var(--zinc-100);
  border: 1px solid var(--zinc-200);
  padding: 32px;
  border-radius: 24px;
  transition: all 0.3s;
}

html.dark .card-black {
  background: var(--zinc-950);
  border-color: rgba(255, 255, 255, 0.05);
}

.card-black:hover {
  border-color: rgba(245, 158, 11, 0.2);
}

.card-amber-glow {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), transparent);
  border: 1px solid rgba(245, 158, 11, 0.1);
  border-radius: 40px;
  padding: 40px;
}

.icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(245, 158, 11, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f59e0b;
  font-size: 24px;
  margin-bottom: 24px;
  transition: transform 0.3s;
}

.card-dark:hover .icon-wrap,
.card-black:hover .icon-wrap {
  transform: scale(1.1);
}

.icon-wrap-sm {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(245, 158, 11, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f59e0b;
  font-size: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.card-dark:hover .icon-wrap-sm,
.card-black:hover .icon-wrap-sm {
  transform: scale(1.1);
}

/* ── Grids ── */
.grid-1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.grid-2-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
  align-items: center;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .grid-2-col {
    grid-template-columns: 1fr 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

/* ── List Items ── */
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background: var(--zinc-50);
  border: 1px solid var(--zinc-200);
  border-radius: 16px;
  transition: transform 0.2s;
}

html.dark .feature-item {
  background: rgba(245, 158, 11, 0.03);
  border-color: rgba(245, 158, 11, 0.1);
}

.feature-item:hover {
  transform: translateX(5px);
}

.feature-item span {
  font-weight: 700;
  font-size: 18px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.check-icon {
  color: #f59e0b;
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-item span {
  color: var(--zinc-600);
  font-weight: 500;
  line-height: 1.5;
}

html.dark .check-item span {
  color: var(--zinc-400);
}

.numbered-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.numbered-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f59e0b;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.numbered-item span {
  color: var(--zinc-600);
  font-weight: 500;
}

html.dark .numbered-item span {
  color: var(--zinc-400);
}

/* ── Dark Section Panel ── */
.dark-panel {
  background: var(--zinc-50);
  padding: 128px 0;
  border-top: 1px solid var(--zinc-200);
  border-bottom: 1px solid var(--zinc-200);
}

html.dark .dark-panel {
  background: var(--zinc-950);
  border-color: rgba(255, 255, 255, 0.05);
}

.dark-card {
  background: var(--zinc-50);
  border: 1px solid var(--zinc-200);
  border-radius: 40px;
  padding: 64px;
}

html.dark .dark-card {
  background: var(--zinc-950);
  border-color: rgba(245, 158, 11, 0.1);
}

.dark-card .h2-section,
.dark-card .text-muted {
  transition: color 0.3s;
}

@media (max-width: 640px) {
  .dark-card {
    padding: 32px;
  }
}

/* ── Badge ── */
.badge-subtle .dot {
  color: #f59e0b;
  font-size: 16px;
}

.badge-subtle span {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--zinc-600);
}

html.dark .badge-subtle span {
  color: var(--zinc-400);
}

/* ── Image ── */
.img-card {
  border-radius: 40px;
  overflow: hidden;
  border: 1px solid rgba(245, 158, 11, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
  aspect-ratio: 1;
}

.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 1s ease;
}

.img-card:hover img {
  filter: grayscale(0);
}

/* ── Float card ── */
.float-badge {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 192px;
  background: var(--zinc-950);
  border: 1px solid rgba(245, 158, 11, 0.1);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
  z-index: 10;
}

html.dark .float-badge {
  background: rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.float-badge .big-text {
  font-size: 32px;
  font-weight: 900;
  color: #d97706;
  line-height: 1;
}

html.dark .float-badge .big-text {
  color: #f59e0b;
}

.float-badge .small-text {
  font-size: 12px;
  color: var(--zinc-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* ── Level Table ── */
.level-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.level-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: var(--zinc-950);
  border: 1px solid rgba(245, 158, 11, 0.05);
  border-radius: 12px;
  transition: border-color 0.3s;
}

.level-item:hover {
  border-color: rgba(245, 158, 11, 0.2);
}

.level-item .label {
  color: var(--zinc-400);
  font-weight: 500;
}

.level-item .amount {
  color: #f59e0b;
  font-weight: 700;
}

/* ── "Section header" utility ── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .h2-section {
  margin-top: 8px;
}

/* ── Declaration box ── */
.declaration-box {
  padding: 64px 32px;
  text-align: center;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(217, 119, 6, 0.05));
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 32px;
  position: relative;
  overflow: hidden;
}

html.dark .declaration-box {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.3), rgba(245, 158, 11, 0.05));
  border-color: rgba(245, 158, 11, 0.4);
}

.declaration-box .icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 28px;
}

/* ── FAQ Accordion ── */
.faq-item {
  border-bottom: 1px solid var(--zinc-300);
  padding: 24px 0;
  cursor: pointer;
}

html.dark .faq-item {
  border-color: rgba(255, 255, 255, 0.1);
}

.faq-item.open {
  background: var(--zinc-950);
  border-color: rgba(245, 158, 11, 0.2);
  box-shadow: 0 4px 24px rgba(245, 158, 11, 0.05);
}

.faq-question {
  width: 100%;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  background: none;
  border: none;
  color: #fff;
  transition: color 0.3s;
}

.faq-question .q-text {
  font-size: 18px;
  font-weight: 700;
  transition: color 0.3s;
}

.faq-item.open .q-text {
  color: #f59e0b;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--zinc-900);
  color: var(--zinc-500);
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.3s;
}

.faq-item.open .faq-toggle {
  background: #f59e0b;
  color: #000;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
  padding: 0 32px;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding: 0 32px 32px;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer p {
  color: var(--zinc-600);
  line-height: 1.6;
}

html.dark .faq-answer p {
  color: var(--zinc-400);
}

/* ── Compliance notice ── */
.icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
}

html.dark .icon-wrap {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.icon-wrap-sm {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

html.dark .icon-wrap-sm {
  background: rgba(255, 255, 255, 0.05);
}

.compliance-box {
  padding: 32px;
  background: rgba(245, 158, 11, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.1);
  border-radius: 24px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.compliance-box .icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(245, 158, 11, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f59e0b;
  font-size: 22px;
  flex-shrink: 0;
}

.compliance-box h4 {
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: 8px;
}

.compliance-box p {
  font-size: 14px;
  color: var(--zinc-500);
  line-height: 1.7;
}

/* ── Terms sections ── */
.terms-section h3 {
  font-size: 18px;
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.terms-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.terms-section .term-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: var(--zinc-400);
  font-size: 14px;
  line-height: 1.7;
}

.term-icon {
  color: rgba(245, 158, 11, 0.4);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Quote block ── */
.quote-block {
  position: relative;
  background: linear-gradient(135deg, var(--zinc-900), #000);
  border: 1px solid rgba(245, 158, 11, 0.1);
  border-radius: 40px;
  padding: 80px;
  text-align: center;
  overflow: hidden;
}

@media (max-width: 640px) {
  .quote-block {
    padding: 40px;
  }
}

.quote-block .quote-icon {
  position: absolute;
  top: 40px;
  left: 40px;
  font-size: 80px;
  color: rgba(245, 158, 11, 0.1);
  line-height: 1;
}

.quote-block blockquote {
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 300;
  font-style: italic;
  color: var(--zinc-300);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.quote-attr {
  margin-top: 32px;
}

.quote-attr .name {
  color: #f59e0b;
  font-weight: 700;
  font-size: 20px;
}

.quote-attr .title {
  color: var(--zinc-500);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: 8px;
}

/* ── Scroll fade-in ── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* delay helpers */
.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

/* ── Responsive text align ── */
.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.max-w-2xl {
  max-width: 672px;
}

.max-w-3xl {
  max-width: 768px;
}

.max-w-4xl {
  max-width: 896px;
}

.space-y-4>*+* {
  margin-top: 16px;
}

.space-y-6>*+* {
  margin-top: 24px;
}

.space-y-8>*+* {
  margin-top: 32px;
}

.space-y-10>*+* {
  margin-top: 40px;
}

.space-y-12>*+* {
  margin-top: 48px;
}

.mt-4 {
  margin-top: 16px;
}

.mt-6 {
  margin-top: 24px;
}

.mt-8 {
  margin-top: 32px;
}

.mt-10 {
  margin-top: 40px;
}

.mt-16 {
  margin-top: 64px;
}

.relative {
  position: relative;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.gap-3 {
  gap: 12px;
}

.gap-4 {
  gap: 16px;
}

.gap-6 {
  gap: 24px;
}