/* ============================================
   MATCHKING — BLACK & GOLD THEME
   "Rule Your Trades"
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800;900&family=DM+Sans:wght@400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --gold:         #C9A84C;
  --gold-light:   #E8C96A;
  --gold-bright:  #FFD966;
  --gold-dark:    #9A7A2E;
  --gold-muted:   rgba(201, 168, 76, 0.15);
  --gold-border:  rgba(201, 168, 76, 0.3);
  --gold-glow:    rgba(201, 168, 76, 0.25);

  --black:        #000000;
  --black-deep:   #050505;
  --black-rich:   #0a0a0a;
  --black-card:   #111111;
  --black-hover:  #181818;
  --black-border: rgba(255, 255, 255, 0.06);

  --white:        #ffffff;
  --text-primary: #F0E6C8;
  --text-muted:   #8A7A5A;
  --text-dim:     #5A4E35;

  --gradient-gold: linear-gradient(135deg, #C9A84C 0%, #FFD966 50%, #C9A84C 100%);
  --gradient-gold-h: linear-gradient(90deg, #9A7A2E 0%, #FFD966 50%, #9A7A2E 100%);
  --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
  --gradient-card: linear-gradient(145deg, #141414 0%, #0d0d0d 100%);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --radius-sm:    6px;
  --radius-md:    10px;
  --radius-lg:    16px;
  --radius-xl:    24px;

  --shadow-gold:  0 8px 32px rgba(201, 168, 76, 0.2);
  --shadow-deep:  0 20px 60px rgba(0, 0, 0, 0.8);
  --shadow-card:  0 4px 24px rgba(0, 0, 0, 0.6);
}

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

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--black-deep);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black-rich); }
::-webkit-scrollbar-thumb {
  background: var(--gradient-gold);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }

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

/* ── Navigation ── */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-border);
  z-index: 100;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.97);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.8), 0 1px 0 var(--gold-border);
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 1px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tagline {
  font-size: 10px;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 24px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.navbar-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gold);
  display: block;
  transition: all 0.3s ease;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.navbar-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

.navbar-link:hover { color: var(--gold-light); }

/* ── Hero ── */
.hero {
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 1px;
  background: var(--gradient-gold-h);
  opacity: 0.5;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-text h1 {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  margin: 0 0 20px;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -1px;
}

.hero-text h1 span {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.hero-cta .btn {
  min-width: 190px;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 700;
}

.hero-trust {
  font-size: 12px;
  color: var(--text-dim);
  margin: 0;
  letter-spacing: 0.3px;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Chart Card ── */
.chart-card {
  background: var(--gradient-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  box-shadow: var(--shadow-gold), var(--shadow-deep);
  position: relative;
  overflow: hidden;
}

.chart-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gradient-gold-h);
  opacity: 0.6;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.chart-header h4 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.chart-badge {
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.chart {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

.chart-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-label {
  font-size: 10px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold-light);
}

/* ── Challenge Banner ── */
.challenge-banner {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.07) 0%, rgba(255, 217, 102, 0.04) 100%);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: 56px 0;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}

.challenge-banner::before {
  content: '♛';
  position: absolute;
  font-size: 200px;
  color: rgba(201, 168, 76, 0.03);
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.challenge-content { text-align: center; }

.challenge-header { margin-bottom: 20px; }

.challenge-header h2 {
  font-family: var(--font-display);
  font-size: 36px;
  margin: 0 0 8px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.challenge-subtitle {
  font-size: 12px;
  color: var(--gold);
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.challenge-description {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 20px auto 32px;
  max-width: 560px;
}

.btn-challenge {
  background: var(--gradient-gold);
  color: var(--black);
  border: none;
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 800;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.btn-challenge:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px var(--gold-glow);
  filter: brightness(1.1);
}

.challenge-meta {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 20px;
  letter-spacing: 0.5px;
}

/* ── Trust Bar ── */
.trust-bar {
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 44px 0;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.03), transparent);
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

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

.trust-icon {
  font-size: 28px;
  flex-shrink: 0;
  min-width: 40px;
}

.trust-item p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.trust-item strong {
  color: var(--gold-light);
  font-weight: 600;
}

/* ── Section Headings ── */
.features h2,
.how-it-works h2,
.testimonials h2,
.pricing h2,
.faq h2,
.demo-section h2 {
  font-family: var(--font-display);
  font-size: 38px;
  margin: 0 0 14px;
  color: var(--white);
  text-align: center;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 52px;
}

/* ── Features ── */
.features { padding: 80px 0; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--gradient-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  background: var(--black-hover);
  border-color: var(--gold-border);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  font-size: 30px;
  margin-bottom: 16px;
  display: block;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  margin: 0 0 10px;
  color: var(--white);
}

.feature-card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── How It Works ── */
.how-it-works {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.step {
  position: relative;
  padding-left: 64px;
}

.step-number {
  position: absolute;
  left: 0; top: 0;
  width: 48px; height: 48px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--black);
  box-shadow: 0 4px 16px var(--gold-glow);
}

.step h3 {
  font-family: var(--font-display);
  font-size: 18px;
  margin: 0 0 10px;
  color: var(--white);
}

.step p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

/* ── Testimonials ── */
.testimonials { padding: 80px 0; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.testimonial {
  background: var(--gradient-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  border-left: 3px solid var(--gold);
  transition: all 0.3s ease;
}

.testimonial:hover {
  border-color: var(--gold-border);
  border-left-color: var(--gold-light);
  box-shadow: var(--shadow-gold);
}

.testimonial-text {
  margin: 0 0 16px;
  font-size: 15px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.7;
}

.testimonial-author {
  margin: 0;
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
}

/* ── Pricing ── */
.pricing {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.01);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
}

.pricing-card {
  background: var(--gradient-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-deep);
}

.pricing-featured {
  background: linear-gradient(145deg, #141414 0%, #0c0c0c 100%);
  border: 1px solid var(--gold-border);
  transform: scale(1.02);
  box-shadow: var(--shadow-gold);
}

.pricing-featured:hover {
  transform: scale(1.02) translateY(-6px);
  box-shadow: 0 28px 60px var(--gold-glow);
}

.pricing-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-gold);
  color: var(--black);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.pricing-header {
  text-align: center;
  margin-bottom: 28px;
}

.pricing-header h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--white);
}

.price-value {
  font-family: var(--font-display);
  font-size: 58px;
  font-weight: 800;
  color: var(--gold);
  margin: 0;
  line-height: 1;
  text-shadow: 0 0 30px var(--gold-glow);
}

.pricing-featured .price-value {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-old {
  text-decoration: line-through;
  color: var(--text-dim);
  font-size: 16px;
  margin-bottom: 6px;
}

.price-note {
  color: var(--gold-light);
  font-size: 13px;
  margin-top: 8px;
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.pricing-features li {
  padding: 11px 0;
  font-size: 14px;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(201, 168, 76, 0.06);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing-features li:last-child { border-bottom: none; }
.pricing-features li strong { color: var(--text-primary); }

/* ── Demo Section ── */
.demo-section {
  padding: 80px 0;
  text-align: center;
}

.demo-section p {
  font-size: 17px;
  color: var(--text-muted);
  margin: 16px auto 32px;
  max-width: 580px;
  line-height: 1.7;
}

/* ── FAQ ── */
.faq {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.01);
}

.faq-list {
  max-width: 700px;
  margin: 48px auto 0;
}

.faq-item {
  background: var(--gradient-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item[open] { border-color: var(--gold-border); }

.faq-item summary {
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-primary);
  transition: all 0.2s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
}

.faq-item summary:hover { background: rgba(201, 168, 76, 0.04); color: var(--gold-light); }
.faq-item[open] summary { color: var(--gold-light); }

.faq-item p {
  padding: 0 20px 20px;
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  border-top: 1px solid var(--black-border);
  line-height: 1.7;
}

/* ── Buttons ── */
.btn {
  padding: 10px 20px;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 700;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s ease;
  display: inline-block;
  letter-spacing: 0.3px;
}

.btn-lg {
  padding: 15px 32px;
  font-size: 15px;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--black);
  box-shadow: 0 6px 20px var(--gold-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px var(--gold-glow);
  filter: brightness(1.08);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--gold-border);
  color: var(--gold);
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: var(--gold-muted);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-weight: 700;
}

.btn-outline:hover {
  background: var(--gold-muted);
  border-color: var(--gold);
  box-shadow: 0 8px 20px var(--gold-glow);
  transform: translateY(-3px);
}

.btn-demo {
  background: var(--gradient-gold);
  border: none;
  color: var(--black);
  font-weight: 700;
  box-shadow: 0 6px 20px var(--gold-glow);
  text-decoration: none;
}

.btn-demo:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px var(--gold-glow);
  filter: brightness(1.1);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--black-border);
}

.btn-ghost:hover {
  border-color: var(--gold-border);
  color: var(--gold);
}

.btn-accent {
  background: var(--gradient-gold);
  color: var(--black);
  font-weight: 800;
}

.btn-full {
  width: 100% !important;
  display: block !important;
  margin-bottom: 8px !important;
}

.btn-whatsapp {
  background: #25d366 !important;
  color: #fff !important;
}

.btn-whatsapp:hover {
  background: #20ba5a !important;
}

/* ── Stats ── */
.stats-section { padding: 40px 0; }

.stats-inner {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
}

.stat {
  background: var(--gradient-card);
  border: 1px solid var(--black-border);
  padding: 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  flex: 1;
  margin: 6px;
  transition: all 0.3s ease;
}

.stat:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-gold);
}

.stat-value {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--gold);
  text-shadow: 0 0 20px var(--gold-glow);
}

.stat-label {
  color: var(--text-muted);
  margin-top: 6px;
  font-size: 13px;
}

/* ── How It Works (alt layout) ── */
.how-it-works { padding: 44px 0; }

.step-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.step h4 {
  font-family: var(--font-display);
  margin: 6px 0;
  color: var(--white);
}

/* ── Footer ── */
.footer {
  background: rgba(0, 0, 0, 0.6);
  border-top: 1px solid var(--gold-border);
  padding: 40px 0;
  margin-top: 80px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-content p {
  margin: 0;
  font-size: 13px;
  color: var(--text-dim);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.site-footer {
  padding: 20px 0;
  border-top: 1px solid var(--gold-border);
  margin-top: 40px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-inner a {
  color: var(--text-dim);
  margin-left: 12px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-inner a:hover { color: var(--gold); }

/* ── Modals ── */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal[aria-hidden="false"] { display: flex; }

.modal-content {
  background: linear-gradient(145deg, #111111, #0a0a0a);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: 32px;
  max-width: 400px;
  width: 90%;
  position: relative;
  box-shadow: var(--shadow-gold), var(--shadow-deep);
}

.modal-content::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.modal-panel {
  background: #0f0f0f;
  padding: 24px;
  border-radius: var(--radius-lg);
  min-width: 320px;
  max-width: 520px;
  border: 1px solid var(--gold-border);
  position: relative;
  box-shadow: var(--shadow-gold);
}

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 22px;
  cursor: pointer;
  transition: color 0.2s;
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover { color: var(--gold); }

.modal-content h3,
.modal-panel h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  color: var(--white);
  font-size: 20px;
}

.modal-content p,
.modal-panel p {
  margin: 0 0 22px;
  color: var(--text-muted);
  font-size: 14px;
}

.modal-content form,
.modal-panel form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-content input,
.modal-content select,
.modal-panel input {
  padding: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
}

.modal-content input:focus,
.modal-content select:focus,
.modal-panel input:focus {
  outline: none;
  border-color: var(--gold-border);
  background: rgba(201, 168, 76, 0.05);
  box-shadow: 0 0 0 2px var(--gold-muted);
}

.modal-panel label {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  color: var(--text-muted);
  gap: 6px;
}

.modal-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 8px;
}

/* ── Social Modal ── */
.social-modal-content {
  max-width: 380px;
  text-align: center;
}

.social-modal-header { margin-bottom: 16px; }

.social-modal-header h2 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
}

.social-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}

.social-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 12px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.social-link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
}

.social-card-icon {
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.social-link-card:hover .social-card-icon { transform: scale(1.15); }

.email-card {
  background: var(--gold-muted);
  border-color: var(--gold-border);
  color: var(--gold-light);
}

.email-card:hover {
  background: rgba(201, 168, 76, 0.2);
  border-color: var(--gold);
}

.whatsapp-card {
  background: rgba(37, 211, 102, 0.06);
  border-color: rgba(37, 211, 102, 0.3);
  color: #25d366;
}

.whatsapp-card:hover {
  background: rgba(37, 211, 102, 0.12);
  border-color: #25d366;
}

.telegram-card {
  background: rgba(0, 136, 204, 0.06);
  border-color: rgba(0, 136, 204, 0.3);
  color: #0088cc;
}

.telegram-card:hover {
  background: rgba(0, 136, 204, 0.12);
  border-color: #0088cc;
}

.instagram-card {
  background: rgba(245, 88, 124, 0.06);
  border-color: rgba(245, 88, 124, 0.3);
  color: #f55a7c;
}

.instagram-card:hover {
  background: rgba(245, 88, 124, 0.12);
  border-color: #f55a7c;
}

.social-card-label {
  font-size: 12px;
  font-weight: 600;
  display: block;
}

.social-card-hint {
  font-size: 10px;
  opacity: 0.6;
  display: block;
}

.social-modal-info {
  background: var(--gold-muted);
  border-left: 3px solid var(--gold);
  padding: 12px 14px;
  margin: 20px 0;
  border-radius: 4px;
}

.social-modal-info p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
  text-align: left;
}

/* ── Buy Modal ── */
#buyModal {
  position: fixed !important;
  top: 0 !important; left: 0 !important;
  right: 0 !important; bottom: 0 !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(0, 0, 0, 0.85) !important;
  backdrop-filter: blur(6px) !important;
  z-index: 10000 !important;
  padding: 16px !important;
  overflow-y: auto !important;
}

#buyModal[aria-hidden="false"] { display: flex !important; }

.buy-modal-content {
  max-width: 480px !important;
  padding: 24px !important;
  background: linear-gradient(145deg, #141414, #0d0d0d) !important;
  border: 1px solid var(--gold-border) !important;
  box-shadow: var(--shadow-gold), var(--shadow-deep) !important;
  width: 100% !important;
  max-height: 85vh !important;
  overflow-y: auto !important;
  margin: auto !important;
  border-radius: var(--radius-xl) !important;
  position: relative;
}

.buy-modal-content::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.buy-modal-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-light);
  margin: 0 0 12px;
  padding-right: 30px;
}

.buy-modal-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0 0 16px;
}

.buy-address-section {
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 16px;
  margin: 16px 0;
}

.buy-address-label {
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  margin: 0 0 10px;
  font-weight: 700;
  letter-spacing: 1px;
}

.buy-address-input {
  width: 100%;
  padding: 12px;
  background: #050505;
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--gold-light);
  font-family: monospace;
  font-size: 12px;
  border-radius: var(--radius-sm);
  box-sizing: border-box;
  word-break: break-all;
}

.buy-warning-box {
  background: rgba(201, 168, 76, 0.05);
  border-left: 3px solid var(--gold);
  padding: 12px;
  margin: 16px 0;
  border-radius: 4px;
}

.buy-warning-box p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.buy-form-group { margin: 14px 0; }

.buy-form-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.buy-form-input {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.15);
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  box-sizing: border-box;
}

.buy-form-input:focus {
  outline: none;
  border-color: var(--gold-border);
  box-shadow: 0 0 0 2px var(--gold-muted);
}

.buy-form-hint {
  font-size: 11px;
  color: var(--text-dim);
  margin: 6px 0;
  line-height: 1.5;
}

.buy-form-hint a { color: var(--gold); text-decoration: none; }

.buy-divider-section {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--black-border);
}

.buy-divider-text {
  font-size: 12px;
  color: var(--text-dim);
  margin: 0 0 10px;
}

.buy-modal-footer {
  font-size: 11px;
  color: var(--text-dim);
  text-align: center;
  margin-top: 16px;
}

/* ── Easter / Promo Card ── */
.easter-dark {
  background: linear-gradient(145deg, #0f0c00, #141000);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-gold);
  position: relative;
}

.easter-badge {
  background: var(--gradient-gold);
  color: var(--black);
  font-weight: 800;
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.proof-note {
  margin-top: 6px;
  font-size: 13px;
  color: var(--gold-light);
  font-weight: 600;
}

.small-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-dim);
  text-align: center;
}

.easter-btn {
  width: 100%;
  margin-top: 20px;
  background: var(--gradient-gold);
  border: none;
  border-radius: var(--radius-lg);
  padding: 14px;
  font-family: var(--font-body);
  font-weight: 800;
  color: var(--black);
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
  letter-spacing: 0.3px;
}

.easter-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 32px var(--gold-glow);
}

.countdown {
  margin-top: 12px;
  font-size: 14px;
  color: var(--gold);
}

#time {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--white);
}

/* ── Contact ── */
.contact-section {
  padding: 40px 0;
  border-top: 1px solid var(--gold-border);
}

.contact-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.contact-ctas .btn { margin-right: 8px; }

.trust .badge {
  display: inline-block;
  background: var(--gold-muted);
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--gold);
  font-weight: 700;
  border: 1px solid var(--gold-border);
  font-size: 13px;
}

/* ── Utilities ── */
.muted { color: var(--text-muted); }

.fade-in-up {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.6s forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: none; }
}

/* ── Mobile Nav ── */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 20px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: flex-start;
  justify-content: flex-end;
  z-index: 200;
}

.mobile-nav[aria-hidden="false"] { display: flex; }

.mobile-nav-inner {
  width: 300px;
  max-width: 85%;
  background: #080808;
  border-left: 1px solid var(--gold-border);
  padding: 24px 20px;
  height: 100vh;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.8);
}

.mobile-close {
  background: transparent;
  border: 0;
  color: var(--gold);
  font-size: 20px;
  float: right;
  cursor: pointer;
}

.mobile-link {
  display: block;
  width: 100%;
  text-align: left;
  margin: 12px 0;
  padding: 10px;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.mobile-link:hover {
  color: var(--gold);
  background: var(--gold-muted);
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .hero-inner { flex-direction: column; }
  .hero-copy h1 { font-size: 36px; }
  .hero-visual { max-width: 100%; width: 100%; order: 2; }
  .footer-inner { flex-direction: column; gap: 10px; }
  .nav { display: none; }
  .nav-toggle { display: inline-block; }
  .steps { flex-direction: column; }
  .stats-inner { flex-direction: column; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  .navbar-menu { display: none; }
  .navbar-toggle { display: flex; }

  .navbar-menu.active {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(5, 5, 5, 0.98);
    border-bottom: 1px solid var(--gold-border);
    flex-direction: column;
    padding: 16px 24px;
    gap: 12px;
    z-index: 50;
  }

  .hero-content { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: 34px; }
  .hero-cta { flex-direction: column; }
  .btn-lg { width: 100%; text-align: center; }

  .features h2,
  .how-it-works h2,
  .testimonials h2,
  .pricing h2,
  .faq h2,
  .demo-section h2 { font-size: 28px; }

  .footer-content { flex-direction: column; gap: 20px; text-align: center; }
  .footer-links { justify-content: center; }
  .trust-items { grid-template-columns: 1fr; }

  .pricing-grid { grid-template-columns: 1fr; gap: 40px; }
  .pricing-featured { transform: none; order: -1; }
  .pricing-featured:hover { transform: translateY(-6px); }

  #buyModal { padding: 12px !important; }
  .buy-modal-content { max-width: 100% !important; max-height: 88vh !important; }
}

@media (max-width: 480px) {
  .hero-text h1 { font-size: 26px; }
  .logo { font-size: 18px; }
  .feature-card { padding: 20px; }
  .pricing-card { padding: 24px; }
  .modal-content { padding: 20px; }
  .price-value { font-size: 46px; }

  .social-links-grid { grid-template-columns: 1fr; }
  .social-modal-content { max-width: 100% !important; padding: 20px !important; }

  #buyModal { padding: 8px !important; }
  .buy-modal-content { padding: 16px !important; border-radius: var(--radius-lg) !important; }
  .buy-modal-title { font-size: 16px; }
}

@media (max-width: 400px) {
  .modal-content { width: 95% !important; padding: 18px !important; }
  .social-modal-header h2 { font-size: 16px; }
}