/* KresProperty – Custom CSS (Tailwind companion) */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --gold:        #D4AF37;
  --gold-dark:   #B8960C;
  --gold-darker: #8B6914;
  --gold-deep:   #5C420A;
  --gold-light:  #F5E6C8;
  --gold-glow:   rgba(212,175,55,0.18);
  --gold-bg:     rgba(139,105,20,0.10);
  --gold-surface:#0e0b00;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: #080800; color: #fff; overflow-x: hidden; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #080800; }
::-webkit-scrollbar-thumb { background: var(--gold-darker); border-radius: 3px; }

/* ── Gold text gradient ── */
.text-gold-gradient {
  background: linear-gradient(135deg, #D4AF37 0%, #F5E6C8 50%, #8B6914 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.text-gold { color: var(--gold); }

/* ── Fonts ── */
.font-display { font-family: 'Playfair Display', serif; }

/* ── Gold shimmer button ── */
.btn-gold {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #D4AF37 0%, #B8960C 50%, #8B6914 100%);
  color: #000; font-weight: 700; letter-spacing: 0.05em;
  border-radius: 8px; transition: all 0.3s ease;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-gold::after {
  content: ''; position: absolute; top: -50%; left: -75%;
  width: 50%; height: 200%; background: rgba(255,255,255,0.2);
  transform: skewX(-20deg); transition: left 0.5s ease;
}
.btn-gold:hover::after { left: 125%; }
.btn-gold:hover { box-shadow: 0 0 35px rgba(184,150,12,0.5); transform: translateY(-1px); }

.btn-outline-gold {
  border: 1.5px solid var(--gold-dark); color: var(--gold);
  background: transparent; border-radius: 8px; font-weight: 600;
  transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-gold:hover { background: linear-gradient(135deg,#8B6914,#B8960C); color: #000; border-color: transparent; box-shadow: 0 0 24px rgba(184,150,12,0.35); }

/* ── Nav ── */
nav.main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(8,8,0,0.92); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(184,150,12,0.2);
  transition: all 0.3s ease;
}
nav.main-nav.scrolled {
  background: rgba(5,4,0,0.98);
  border-bottom-color: rgba(184,150,12,0.35);
  box-shadow: 0 4px 30px rgba(0,0,0,0.6), 0 1px 0 rgba(184,150,12,0.2);
}
.nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; height: 72px; gap: 32px; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.nav-logo-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg,#D4AF37,#8B6914); }
.nav-logo-text { font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.1rem; color: #fff; }

/* Desktop links */
.nav-links { display: flex; align-items: center; gap: 4px; flex: 1; }
.nav-link {
  color: #b0a080; font-weight: 500; font-size: 0.875rem; padding: 8px 14px;
  border-radius: 8px; transition: all 0.2s; display: flex; align-items: center; gap: 5px;
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--gold); background: var(--gold-bg); }

/* Mega menu dropdown */
.nav-item { position: relative; }
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: all; }
/* Invisible bridge fills the gap so hover doesn't break when moving mouse down */
.nav-item::after {
  content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 16px;
}
.dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(6px);
  opacity: 0; visibility: hidden; transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  background: linear-gradient(160deg, #0e0c00, #1a1600);
  border: 1px solid rgba(184,150,12,0.25); border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.7), 0 0 0 1px rgba(184,150,12,0.1);
  padding: 20px; min-width: 560px; pointer-events: none;
}
.dropdown-wide { min-width: 680px; }
.dropdown-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 6px; }
.dropdown-grid-3 { grid-template-columns: repeat(3,1fr); }
.dropdown-item {
  display: flex; align-items: flex-start; gap: 12px; padding: 12px;
  border-radius: 10px; transition: all 0.2s; color: #b0a080;
  text-decoration: none;
}
.dropdown-item:hover { background: rgba(184,150,12,0.12); color: var(--gold); }
.dropdown-item-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(139,105,20,0.15); border: 1px solid rgba(184,150,12,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.875rem; color: var(--gold-dark); }
.dropdown-item:hover .dropdown-item-icon { background: rgba(184,150,12,0.2); color: var(--gold); }
.dropdown-item-title { font-size: 0.813rem; font-weight: 600; color: #e0c870; margin-bottom: 2px; }
.dropdown-item:hover .dropdown-item-title { color: var(--gold); }
.dropdown-item-desc { font-size: 0.7rem; color: #6b5c30; }
.dropdown-header { font-size: 0.65rem; font-weight: 700; color: var(--gold-darker); text-transform: uppercase; letter-spacing: 0.1em; padding: 0 12px 8px; border-bottom: 1px solid rgba(184,150,12,0.15); margin-bottom: 6px; }
.dropdown-divider { height: 1px; background: rgba(184,150,12,0.12); margin: 8px 0; }

/* Nav CTA */
.nav-cta { display: flex; align-items: center; gap: 10px; margin-left: auto; flex-shrink: 0; }

/* Hamburger */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; border-radius: 8px; transition: background 0.2s; }
.nav-hamburger:hover { background: var(--gold-bg); }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--gold); border-radius: 2px; transition: all 0.3s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-nav {
  position: fixed; top: 0; right: -100%; width: min(320px, 90vw); height: 100dvh;
  background: linear-gradient(160deg, #0e0c00 0%, #100e00 50%, #0a0800 100%);
  border-left: 1px solid rgba(184,150,12,0.25);
  z-index: 200; transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto; padding: 88px 20px 40px; display: flex; flex-direction: column; gap: 4px;
}
.mobile-nav.open { right: 0; box-shadow: -20px 0 60px rgba(0,0,0,0.8); }
.mobile-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.75); z-index: 199;
  opacity: 0; visibility: hidden; transition: all 0.3s; backdrop-filter: blur(4px);
}
.mobile-overlay.open { opacity: 1; visibility: visible; }
.mobile-link { color: #c0a860; font-weight: 500; padding: 12px 16px; border-radius: 10px; display: flex; align-items: center; justify-content: space-between; transition: all 0.2s; font-size: 0.9rem; }
.mobile-link:hover { background: var(--gold-bg); color: var(--gold); }
.mobile-section-title { font-size: 0.65rem; font-weight: 700; color: var(--gold-darker); text-transform: uppercase; letter-spacing: 0.1em; padding: 16px 16px 6px; }
.mobile-sub-link { color: #8a7240; padding: 9px 16px 9px 32px; border-radius: 8px; display: block; font-size: 0.8rem; transition: all 0.2s; }
.mobile-sub-link:hover { color: var(--gold); background: var(--gold-bg); }
.mobile-divider { height: 1px; background: rgba(184,150,12,0.12); margin: 8px 16px; }
.mobile-cta { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; padding: 0 4px; }

@media (max-width: 1023px) {
  .nav-links, .nav-cta .btn-outline-gold { display: none; }
  .nav-hamburger { display: flex; }
  .nav-cta .btn-gold { display: inline-flex; }
}

/* ── Mega menu legacy alias ── */
.nav-scrolled { background: rgba(5,4,0,0.98) !important; }
.mega-menu { opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.25s ease; }
.mega-trigger:hover .mega-menu,
.mega-trigger:focus-within .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }

/* ── Footer ── */
footer.main-footer {
  background: linear-gradient(180deg, #080800 0%, #050400 50%, #030200 100%);
  border-top: 1px solid rgba(184,150,12,0.2);
}
.footer-brand-line { width: 48px; height: 3px; background: linear-gradient(90deg,#8B6914,#D4AF37); border-radius: 2px; margin: 12px 0; }
.footer-heading { font-size: 0.75rem; font-weight: 700; color: var(--gold-dark); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; }
.footer-link { color: #7a6535; font-size: 0.8rem; padding: 4px 0; display: block; transition: color 0.2s; }
.footer-link:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(184,150,12,0.1); background: rgba(0,0,0,0.4); }

/* ── Cards ── */
.card-glass {
  background: linear-gradient(135deg, rgba(20,16,0,0.95), rgba(14,12,0,0.98));
  border: 1px solid rgba(184,150,12,0.18); border-radius: 16px;
  backdrop-filter: blur(10px); transition: all 0.3s ease;
}
.card-glass:hover { border-color: rgba(212,175,55,0.45); box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 30px rgba(139,105,20,0.12); transform: translateY(-4px); }

.card-plan {
  background: linear-gradient(160deg, #100e00, #1a1600);
  border: 1px solid rgba(184,150,12,0.22); border-radius: 20px;
  transition: all 0.35s ease; position: relative; overflow: hidden;
}
.card-plan.featured { border-color: var(--gold-dark); box-shadow: 0 0 40px rgba(139,105,20,0.2); }
.card-plan:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(139,105,20,0.18); }
.card-plan .plan-glow {
  position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(139,105,20,0.07) 0%, transparent 60%);
  pointer-events: none;
}

/* ── Property cards ── */
.property-card { border-radius: 16px; overflow: hidden; transition: all 0.3s ease; background: linear-gradient(160deg,#0e0c00,#0a0800); border: 1px solid rgba(184,150,12,0.14); }
.property-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 20px rgba(139,105,20,0.1); border-color: rgba(184,150,12,0.35); }
.property-card img { transition: transform 0.5s ease; }
.property-card:hover img { transform: scale(1.06); }

/* ── ROI badge ── */
.roi-badge {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-darker));
  color: #fff; font-weight: 700; font-size: 0.7rem;
  padding: 4px 10px; border-radius: 20px; letter-spacing: 0.05em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

/* ── Stats counter ── */
.stat-number { font-family: 'Playfair Display', serif; font-weight: 700; }

/* ── Section decoration ── */
.section-line {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold-darker), var(--gold-dark), var(--gold));
  border-radius: 2px; margin: 0 auto 1rem;
}
.section-line-left { margin: 0 0 1rem; }

/* ── Hero ── */
.hero-overlay {
  background: linear-gradient(135deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.4) 100%);
}
.hero-title { font-family: 'Playfair Display', serif; line-height: 1.1; }

/* ── Page header ── */
.page-header {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, #0d0b00 0%, #080800 60%, #080800 100%);
  position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1560472354-b33ff0c44a43?w=1600&q=60&fit=crop') center/cover;
  opacity: 0.04;
}
.page-header::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(139,105,20,0.08) 0%, transparent 70%);
}
.page-header > * { position: relative; z-index: 1; }

/* ── Section gold tint ── */
.section-dark-gold {
  background: linear-gradient(180deg, #080800, #0a0900);
  border-top: 1px solid rgba(184,150,12,0.1);
  border-bottom: 1px solid rgba(184,150,12,0.1);
}

/* ── Animations ── */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes pulse-gold { 0%,100% { box-shadow: 0 0 0 0 rgba(184,150,12,0.4); } 50% { box-shadow: 0 0 0 12px rgba(184,150,12,0); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.animate-fadeInUp { animation: fadeInUp 0.7s ease forwards; }
.animate-float { animation: float 4s ease-in-out infinite; }
.animate-pulse-gold { animation: pulse-gold 2s infinite; }
.animate-spin-slow { animation: spin-slow 20s linear infinite; }
.animate-ticker { animation: ticker 30s linear infinite; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.9); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
.delay-6 { transition-delay: 0.6s !important; }

/* ── Shimmer skeleton ── */
.shimmer {
  background: linear-gradient(90deg, #1a1600 25%, #2a2000 50%, #1a1600 75%);
  background-size: 200% 100%; animation: shimmer 1.5s infinite;
}

/* ── Gold divider ── */
.gold-divider { height: 1px; background: linear-gradient(90deg, transparent, var(--gold-dark), transparent); }

/* ── Testimonials ── */
.testimonial-card {
  background: linear-gradient(135deg, #100e00, #1a1600);
  border: 1px solid rgba(184,150,12,0.14); border-radius: 20px;
  transition: all 0.3s ease;
}
.testimonial-card:hover { border-color: rgba(212,175,55,0.4); transform: translateY(-4px); }

/* ── Input styles ── */
.input-gold {
  background: #0e0c00; border: 1.5px solid rgba(184,150,12,0.2); color: #e0c870;
  border-radius: 10px; padding: 12px 16px; width: 100%;
  transition: border-color 0.3s, box-shadow 0.3s; outline: none;
}
.input-gold:focus { border-color: var(--gold-dark); box-shadow: 0 0 0 3px rgba(184,150,12,0.12); }
.input-gold::placeholder { color: #4a3c18; }

/* ── Select ── */
.select-gold {
  background: #0e0c00 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B8960C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E") no-repeat right 14px center;
  border: 1.5px solid rgba(184,150,12,0.2); color: #e0c870; border-radius: 10px;
  padding: 12px 40px 12px 16px; appearance: none; width: 100%;
  transition: border-color 0.3s; outline: none; cursor: pointer;
}
.select-gold:focus { border-color: var(--gold-dark); }

/* ── Dashboard sidebar ── */
.sidebar {
  background: linear-gradient(180deg, #0a0800 0%, #080600 100%);
  border-right: 1px solid rgba(184,150,12,0.15);
  min-height: 100vh; width: 260px; position: fixed; top: 0; left: 0; z-index: 40;
  transition: transform 0.3s ease;
}
.sidebar-link { display: flex; align-items: center; gap: 12px; padding: 12px 20px; border-radius: 10px; color: #7a6535; font-weight: 500; transition: all 0.2s ease; margin: 2px 12px; }
.sidebar-link:hover, .sidebar-link.active { background: rgba(184,150,12,0.1); color: var(--gold); }
.sidebar-link.active { border-left: 3px solid var(--gold-dark); color: var(--gold); }
.dashboard-main { margin-left: 260px; min-height: 100vh; background: #080800; }

@media (max-width: 1024px) {
  .sidebar { transform: translateX(-100%); }
  .sidebar.open { transform: translateX(0); }
  .dashboard-main { margin-left: 0; }
}

/* ── Stat cards ── */
.stat-card {
  background: linear-gradient(135deg, #0e0c00, #141000);
  border: 1px solid rgba(184,150,12,0.18); border-radius: 16px;
  padding: 24px; transition: all 0.3s ease;
}
.stat-card:hover { border-color: rgba(212,175,55,0.4); transform: translateY(-3px); }

/* ── Progress bar ── */
.progress-track { background: #1a1600; border-radius: 20px; height: 8px; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--gold-deeper,#5C420A), var(--gold-darker), var(--gold)); border-radius: 20px; transition: width 1.5s ease; }

/* ── Countdown ── */
.countdown-box {
  background: linear-gradient(135deg, #100e00, #1a1600);
  border: 1px solid rgba(184,150,12,0.28); border-radius: 12px;
  padding: 16px 20px; text-align: center; min-width: 70px;
}

/* ── Table ── */
.table-dark th { background: #0e0c00; color: var(--gold-dark); font-weight: 600; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 14px 16px; border-bottom: 1px solid rgba(184,150,12,0.22); }
.table-dark td { padding: 14px 16px; border-bottom: 1px solid rgba(255,255,200,0.04); color: #c0a860; font-size: 0.9rem; }
.table-dark tr:hover td { background: rgba(184,150,12,0.05); }

/* ── Badges ── */
.badge-green { background: rgba(34,197,94,0.12); color: #22C55E; border-radius: 20px; padding: 3px 10px; font-size: 0.75rem; font-weight: 600; }
.badge-red   { background: rgba(239,68,68,0.12);  color: #EF4444; border-radius: 20px; padding: 3px 10px; font-size: 0.75rem; font-weight: 600; }
.badge-gold  { background: rgba(184,150,12,0.15);  color: var(--gold); border-radius: 20px; padding: 3px 10px; font-size: 0.75rem; font-weight: 600; }
.badge-blue  { background: rgba(59,130,246,0.12);  color: #60A5FA; border-radius: 20px; padding: 3px 10px; font-size: 0.75rem; font-weight: 600; }

/* ── Toast ── */
.toast { position: fixed; bottom: 24px; right: 24px; background: #100e00; border: 1px solid rgba(184,150,12,0.35); border-radius: 12px; padding: 16px 20px; z-index: 9999; transform: translateY(100px); opacity: 0; transition: all 0.3s ease; max-width: 360px; box-shadow: 0 8px 30px rgba(0,0,0,0.5); }
.toast.show { transform: translateY(0); opacity: 1; }

/* ── Modal ── */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.85); backdrop-filter: blur(6px); z-index: 100; opacity: 0; visibility: hidden; transition: all 0.3s; display: flex; align-items: center; justify-content: center; }
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-box { background: linear-gradient(160deg,#0e0c00,#1a1600); border: 1px solid rgba(184,150,12,0.3); border-radius: 20px; padding: 40px; max-width: 520px; width: 90%; transform: scale(0.9); transition: transform 0.3s; }
.modal-overlay.open .modal-box { transform: scale(1); }

/* ── Range slider ── */
input[type=range] { -webkit-appearance: none; background: transparent; width: 100%; }
input[type=range]::-webkit-slider-track { height: 6px; background: #2a2000; border-radius: 3px; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 20px; height: 20px; background: linear-gradient(135deg,#D4AF37,#8B6914); border-radius: 50%; cursor: pointer; border: 2px solid #000; box-shadow: 0 0 10px rgba(184,150,12,0.5); }
input[type=range]:focus { outline: none; }

/* ── Steps ── */
.step-circle { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, #8B6914, #D4AF37); color: #000; font-weight: 800; font-family: 'Playfair Display', serif; font-size: 1.25rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-line { flex: 1; height: 2px; background: linear-gradient(90deg, var(--gold-dark), rgba(184,150,12,0.15)); }

/* ── FAQ accordion ── */
.faq-item { border: 1px solid rgba(184,150,12,0.14); border-radius: 12px; overflow: hidden; transition: border-color 0.3s; }
.faq-item.open { border-color: rgba(184,150,12,0.4); }
.faq-question { padding: 20px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; background: #0e0c00; transition: background 0.2s; color: #c0a860; }
.faq-question:hover { background: rgba(184,150,12,0.06); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; padding: 0 24px; background: #0a0900; }
.faq-item.open .faq-answer { max-height: 500px; padding: 20px 24px; }
.faq-icon { width: 24px; height: 24px; color: var(--gold-dark); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ── Blog cards ── */
.blog-card { background: #0e0c00; border: 1px solid rgba(184,150,12,0.12); border-radius: 16px; overflow: hidden; transition: all 0.3s; }
.blog-card:hover { border-color: rgba(212,175,55,0.38); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.5); }
.blog-card img { transition: transform 0.5s; }
.blog-card:hover img { transform: scale(1.04); }

/* ── Team cards ── */
.team-card { background: #0e0c00; border: 1px solid rgba(184,150,12,0.12); border-radius: 16px; overflow: hidden; transition: all 0.3s; text-align: center; }
.team-card:hover { border-color: rgba(212,175,55,0.35); transform: translateY(-5px); }

/* ── Comparison ── */
.comp-yes { color: #22C55E; font-size: 1.2rem; }
.comp-no  { color: #EF4444; font-size: 1.2rem; }

/* ── Hero particles ── */
.particle { position: absolute; border-radius: 50%; background: var(--gold-dark); opacity: 0.12; animation: float var(--dur, 6s) ease-in-out infinite; }

/* ── Plan popular tag ── */
.plan-popular-tag { position: absolute; top: -1px; right: 24px; background: linear-gradient(135deg, #8B6914, #D4AF37); color: #000; font-size: 0.7rem; font-weight: 800; padding: 5px 14px; border-radius: 0 0 10px 10px; letter-spacing: 0.08em; text-transform: uppercase; }

/* ── Ticker ── */
.ticker-wrapper { overflow: hidden; background: rgba(139,105,20,0.07); border-top: 1px solid rgba(184,150,12,0.18); border-bottom: 1px solid rgba(184,150,12,0.18); }
.ticker-track { display: flex; gap: 60px; white-space: nowrap; }

/* ── Trust bar icons ── */
.trust-icon { color: var(--gold-dark); font-size: 1.5rem; }

/* ── Back to top ── */
#backToTop { position: fixed; bottom: 30px; right: 30px; width: 44px; height: 44px; background: linear-gradient(135deg, #8B6914, #D4AF37); color: #000; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 80; opacity: 0; transform: translateY(20px); transition: all 0.3s; cursor: pointer; box-shadow: 0 4px 20px rgba(139,105,20,0.5); }
#backToTop.visible { opacity: 1; transform: translateY(0); }

/* ── Cookie banner ── */
#cookieBanner { position: fixed; bottom: 0; left: 0; right: 0; background: #0e0c00; border-top: 1px solid rgba(184,150,12,0.2); padding: 16px 24px; z-index: 90; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

/* ── Timeline ── */
.timeline-line { position: absolute; left: 27px; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, var(--gold-dark), rgba(184,150,12,0.1)); }
.timeline-dot { width: 14px; height: 14px; background: var(--gold-darker); border-radius: 50%; border: 3px solid #080800; flex-shrink: 0; }

/* ── Map pins ── */
.map-pin { position: absolute; width: 12px; height: 12px; background: var(--gold-dark); border-radius: 50%; box-shadow: 0 0 0 4px rgba(184,150,12,0.2); animation: pulse-gold 2s infinite; }

/* ── Gradient border ── */
.grad-border { position: relative; }
.grad-border::before { content: ''; position: absolute; inset: -1px; background: linear-gradient(135deg, var(--gold-dark), transparent, var(--gold-darker)); border-radius: inherit; z-index: -1; opacity: 0; transition: opacity 0.3s; }
.grad-border:hover::before { opacity: 1; }

/* ── Filter buttons ── */
.filter-btn { padding: 8px 20px; border-radius: 8px; font-size: 0.813rem; font-weight: 600; color: #7a6535; border: 1px solid rgba(184,150,12,0.15); background: transparent; cursor: pointer; transition: all 0.2s; }
.filter-btn.active, .filter-btn:hover { background: rgba(184,150,12,0.15); color: var(--gold); border-color: rgba(184,150,12,0.4); }

/* ── KYC steps ── */
.kyc-step { display: flex; gap: 16px; align-items: flex-start; padding: 24px; background: #0e0c00; border: 1px solid rgba(184,150,12,0.14); border-radius: 14px; transition: all 0.3s; }
.kyc-step:hover { border-color: rgba(184,150,12,0.35); }

/* ── Currency toggle ── */
.currency-pill { background: #0e0c00; border: 1px solid rgba(184,150,12,0.22); border-radius: 30px; padding: 4px; display: inline-flex; }
.currency-pill button { padding: 8px 20px; border-radius: 26px; font-size: 0.875rem; font-weight: 600; transition: all 0.25s; color: #6b5530; }
.currency-pill button.active { background: linear-gradient(135deg, #8B6914, #D4AF37); color: #000; }

/* ── Upload zone ── */
.upload-zone { border: 2px dashed rgba(184,150,12,0.25); border-radius: 12px; padding: 32px; text-align: center; cursor: pointer; transition: all 0.3s; background: #0a0900; }
.upload-zone:hover, .upload-zone.drag-over { border-color: var(--gold-dark); background: rgba(184,150,12,0.06); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-title { font-size: 2.5rem !important; }
  .sidebar { display: none; }
  .dashboard-main { margin-left: 0 !important; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2rem !important; }
  .countdown-box { min-width: 56px; padding: 12px; }
}
