:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --bg-card-hover: #1c1c1c;
  --border: #222222;
  --border-hover: #333333;
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --text-muted: #666666;
  --accent-gold: #d4a843;
  --accent-red: #c0392b;
  --accent-dark-red: #8b1a1a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--border-hover); }

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0.03;
  z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

::selection {
  background: linear-gradient(135deg, #f5f5f5, #d4a843, #c0392b);
  color: #0a0a0a;
}



/* Gradient text utility */
.gradient-text {
  background: linear-gradient(135deg, #f5f5f5, #d4a843, #c0392b);
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}



.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes slideUp {
  to { transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes kenburns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.12) translate(-1%, -1%); }
}

/* ---------- Shared hero atoms ---------- */
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
  position: relative;
  z-index: 2;
}
.hero-label .dot {
  width: 6px; height: 6px;
  background: #22c55e; border-radius: 50%;
  animation: pulse 2s ease infinite;
}
.hero-label .dot.gold { background: var(--accent-gold); }

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.8s forwards;
  opacity: 0;
  position: relative;
  z-index: 2;
}
.hero-cta-primary {
  padding: 14px 36px;
  background: linear-gradient(135deg, #8b1a1a, #5c1212);
  color: #f5f5f5;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(139,26,26,0.3);
}
.hero-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(139,26,26,0.3);
}
.hero-cta-secondary {
  padding: 14px 36px;
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-cta-secondary:hover {
  border-color: var(--text-primary);
  background: rgba(255,255,255,0.05);
  transform: translateY(-3px);
}

/* ---------- Section atoms ---------- */
.section {
  padding: 100px 40px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.section-desc {
  color: var(--text-secondary);
  max-width: 600px;
  margin-top: 16px;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Marquee */
.marquee-container {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  overflow: hidden;
  background: var(--bg-secondary);
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 60px;
}
.marquee-item::after {
  content: '\25CF';
  font-size: 0.5rem;
  color: var(--border-hover);
}

/* ---------- CTA section ---------- */
.cta-section {
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.03) 0%, transparent 70%);
}
.cta-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.cta-section .section-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.cta-section .section-title {
  font-size: clamp(2.5rem, 5vw, 5rem);
  margin-bottom: 24px;
}
.cta-section .section-desc {
  margin: 0 auto 40px;
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 640px;
}
.cta-spots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.cta-spots .dot {
  width: 6px; height: 6px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* ---------- Contact Hero (video bg + split layout) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 40px 100px;
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  filter: grayscale(15%) contrast(1.08);
}
.hero-video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.75) 60%, var(--bg-primary) 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 40%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 40%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  will-change: transform;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-title .line {
  display: block;
  overflow: hidden;
}
.hero-title .line > span {
  display: block;
  transform: translateY(100%);
  animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-title .line:nth-child(1) > span { animation-delay: 0.2s; }
.hero-title .line:nth-child(2) > span { animation-delay: 0.35s; }
.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 36px;
  animation: fadeInUp 0.8s ease 0.6s forwards;
  opacity: 0;
}
.hero-spots {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 24px;
  animation: fadeInUp 0.8s ease 1s forwards;
  opacity: 0;
}
.hero-spots .dot {
  width: 6px; height: 6px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* Right visual — image card + floating stats */
.hero-visual {
  position: relative;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 0.8s ease 0.5s forwards;
  opacity: 0;
}
.hero-visual-img {
  position: relative;
  width: 320px;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-hover);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.hero-visual-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(25%) contrast(1.1);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-visual:hover .hero-visual-img img {
  filter: grayscale(0%) contrast(1.1);
  transform: scale(1.04);
}
.hero-visual-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(10,10,10,0.85) 100%);
}
.stat-card {
  position: absolute;
  background: rgba(22,22,22,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}
.stat-card:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: rgba(212, 168, 67, 0.5);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.stat-card-icon {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.stat-card-text {
  font-size: 0.82rem;
  color: var(--text-primary);
  font-weight: 600;
  white-space: nowrap;
}
.stat-card-1 { top: 2rem; right: 0; animation: float 4s ease-in-out infinite; }
.stat-card-2 { top: 7.5rem; right: -1rem; animation: float 4s ease-in-out 0.5s infinite; }
.stat-card-3 { top: 13rem; right: 0.5rem; animation: float 4s ease-in-out 1s infinite; }
.stat-card-4 { top: 18.5rem; right: -0.5rem; animation: float 4s ease-in-out 1.5s infinite; }
.stat-card-5 { top: 24rem; right: 1rem; animation: float 4s ease-in-out 2s infinite; }

/* ---------- Contact section ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: start;
}
.contact-info p.lead {
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 20px 0 48px;
  max-width: 420px;
  font-size: 1.05rem;
}
.contact-method {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.contact-method-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.contact-method:hover .contact-method-icon {
  background: linear-gradient(135deg, #f5f5f5, #d4a843, #c0392b);
  border-color: transparent;
  transform: scale(1.08) rotate(-5deg);
}
.contact-method-content h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  font-weight: 600;
}
.contact-method-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.contact-method-content a {
  color: #d4a843;
  text-decoration: none;
  transition: color 0.3s;
}
.contact-method-content a:hover { color: #f5f5f5; }

/* Form */
.contact-form {
  padding: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.contact-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f5f5f5, #d4a843, #c0392b);
}
.contact-form h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 32px;
  font-weight: 700;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(212, 168, 67, 0.6);
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a0a0a0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #8b1a1a, #5c1212);
  color: #f5f5f5;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid rgba(139,26,26,0.3);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: 'Inter', sans-serif;
  margin-top: 8px;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 50px rgba(139,26,26,0.35);
}
.form-success {
  display: none;
  padding: 14px 18px;
  margin-top: 16px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 12px;
  color: #22c55e;
  font-size: 0.9rem;
  text-align: center;
}
.form-success.show { display: block; animation: fadeInUp 0.5s ease; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 60px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.3s;
}
.faq-question:hover { color: #d4a843; }
.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  padding-right: 24px;
}
.faq-icon {
  width: 24px; height: 24px;
  position: relative;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--text-muted);
  transition: all 0.3s;
}
.faq-icon::before {
  width: 12px; height: 2px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-icon::after {
  width: 2px; height: 12px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-item.open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), padding 0.5s;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 24px;
}
.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { height: 480px; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero { padding: 120px 20px 80px; }
  .hero-visual { display: none; }
  .contact-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
}
.form-success{
    display:none;
    color:#2ecc71;
    margin-top:20px;
    font-weight:600;
}
.floating-tags{position:absolute;right:0;top:50%;transform:translateY(-50%);display:flex;flex-direction:column;gap:16px;z-index:20}
.floating-tag{padding:10px 18px;background:rgba(17,17,17,0.9);backdrop-filter:blur(20px);border:1px solid rgba(212,168,67,0.3);border-radius:12px;display:flex;align-items:center;gap:10px;font-size:0.85rem;color:#f5f5f5;font-weight:500;animation:floatTag 3s ease-in-out infinite;box-shadow:0 10px 30px rgba(0,0,0,0.3)}
.floating-tag:nth-child(1){animation-delay:0s;margin-left:0}
.floating-tag:nth-child(2){animation-delay:0.5s;margin-left:-20px}
.floating-tag:nth-child(3){animation-delay:1s;margin-left:-40px}
.floating-tag:nth-child(4){animation-delay:1.5s;margin-left:-60px}
.floating-tag:nth-child(5){animation-delay:2s;margin-left:-80px}
@keyframes floatTag{0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)}}
.floating-tag-icon{width:28px;height:28px;border-radius:8px;background:rgba(139,26,26,0.2);display:flex;align-items:center;justify-content:center}
.floating-tag-icon svg{width:16px;height:16px;color:#d4a843}