/* =========================================================
   SingBet VIP — Premium Credit Accounts & Asian Handicap
   Domain: https://singbet.website
   ========================================================= */

:root {
  --bg-dark: #080808;
  --bg-panel: #111111;
  --text-main: #ffffff;
  --text-muted: #aaaaaa;
  --gold-primary: #D4AF37;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow-gold: 0 0 40px rgba(212, 175, 55, 0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.3s var(--ease);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.8;
  overflow-x: hidden;
  min-height: 100vh;
}

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

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--gold-primary);
  line-height: 1.2;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.2rem);
  margin-bottom: 20px;
  color: #fff;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #fff;
  font-family: var(--font-sans);
}

p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

a {
  text-decoration: none;
  transition: color var(--transition), background var(--transition),
    border-color var(--transition), opacity var(--transition), transform var(--transition);
  color: inherit;
}

strong { color: #fff; font-weight: 600; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }

/* ---------- Buttons ---------- */
.btn-gold {
  background: var(--gold-primary);
  color: #000;
  padding: 12px 28px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  border: none;
  border-radius: 2px;
  font-family: var(--font-sans);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-gold:hover {
  background: #fff;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
  transform: translateY(-1px);
}

.btn-gold:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--gold-primary);
  border: 1px solid rgba(212, 175, 55, 0.5);
  padding: 11px 26px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border-radius: 2px;
  font-family: var(--font-sans);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold-primary);
  color: #fff;
}

/* WhatsApp brand green — full button */
.btn-wa {
  background: #25D366;
  color: #fff !important;
  border: none;
  padding: 12px 28px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  border-radius: 8px;
  font-family: var(--font-sans);
  text-decoration: none;
  line-height: 1.2;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
}

.btn-wa:hover {
  background: #1da851;
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transform: translateY(-1px);
}

.btn-wa:active { transform: translateY(0); }

/* Telegram brand blue — full button */
.btn-tg {
  background: #2AABEE;
  color: #fff !important;
  border: none;
  padding: 12px 28px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  border-radius: 8px;
  font-family: var(--font-sans);
  text-decoration: none;
  line-height: 1.2;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(42, 171, 238, 0.25);
}

.btn-tg:hover {
  background: #1e96d1;
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(42, 171, 238, 0.4);
  transform: translateY(-1px);
}

.btn-tg:active { transform: translateY(0); }

.btn-wa i,
.btn-tg i {
  font-size: 1.15em;
}

.text-link {
  color: var(--gold-primary);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  padding-bottom: 1px;
}

.text-link:hover {
  color: #fff;
  border-bottom-color: #fff;
}

/* ---------- Header ---------- */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 18px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1000;
  transition: box-shadow var(--transition), background var(--transition);
}

header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  background: rgba(8, 8, 8, 0.98);
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}

.logo span { color: var(--gold-primary); }
.logo:hover { opacity: 0.9; }

.nav-menu {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  color: #fff;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--gold-primary);
  transition: width var(--transition);
}

.nav-link:hover { color: var(--gold-primary); }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--gold-primary); }

.mobile-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  line-height: 0;
}

.mobile-toggle:hover {
  border-color: rgba(212, 175, 55, 0.35);
  background: rgba(212, 175, 55, 0.08);
}

.mobile-toggle i { font-size: 18px; }

/* Mobile drawer */
.mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.mobile-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(86vw, 360px);
  height: 100vh;
  height: 100dvh;
  background: rgba(10, 10, 10, 0.98);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.28s var(--ease);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

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

.mobile-drawer-header {
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-close {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  line-height: 0;
}

.mobile-close:hover {
  border-color: rgba(212, 175, 55, 0.35);
  background: rgba(212, 175, 55, 0.08);
}

.mobile-nav {
  padding: 14px 18px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-nav a {
  padding: 14px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.mobile-nav a:hover {
  border-color: rgba(212, 175, 55, 0.35);
  background: rgba(212, 175, 55, 0.1);
}

.mobile-nav .mobile-cta {
  background: var(--gold-primary);
  color: #000;
  border-color: rgba(212, 175, 55, 0.55);
}

.mobile-nav .mobile-cta:hover {
  background: #fff;
  color: #000;
}

/* ---------- Hero ---------- */
.hero-section {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 120px 5% 80px;
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.1), transparent 42%),
    radial-gradient(circle at bottom left, rgba(212, 175, 55, 0.04), transparent 40%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  pointer-events: none;
  animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-text .subtitle {
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.88rem;
  margin-bottom: 20px;
  display: inline-block;
  animation: fadeInUp 0.8s var(--ease) both;
}

.hero-text h1 {
  animation: fadeInUp 0.8s 0.1s var(--ease) both;
}

.hero-text p {
  animation: fadeInUp 0.8s 0.2s var(--ease) both;
}

.hero-cta {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  animation: fadeInUp 0.8s 0.3s var(--ease) both;
}

.hero-img-wrapper {
  position: relative;
  animation: fadeInRight 1s 0.2s var(--ease) both;
}

.hero-img-wrapper::after {
  content: '';
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 4px;
  pointer-events: none;
  animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
  0%, 100% { border-color: rgba(212, 175, 55, 0.15); }
  50% { border-color: rgba(212, 175, 55, 0.45); }
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 2px;
  object-fit: cover;
  min-height: 280px;
  background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
}

/* ---------- Content ---------- */
.content-section {
  padding: 80px 5%;
  max-width: 1300px;
  margin: 0 auto;
}

.article-block {
  margin-bottom: 80px;
  padding-left: 30px;
  border-left: 1px solid rgba(212, 175, 55, 0.2);
}

/* ---------- Split feature ---------- */
.split-feature {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
  margin: 80px 0;
  background: var(--bg-panel);
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.split-feature:hover {
  border-color: rgba(212, 175, 55, 0.2);
  box-shadow: var(--shadow-gold);
}

.feature-img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.credit-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.1));
  transition: transform 0.4s var(--ease);
  border-radius: 4px;
  min-height: 200px;
  background: linear-gradient(160deg, #1c1c1c, #0a0a0a);
}

.credit-img:hover { transform: scale(1.03); }

.highlight-box {
  background: rgba(212, 175, 55, 0.05);
  border-left: 3px solid var(--gold-primary);
  padding: 20px;
  margin: 25px 0;
  border-radius: 0 6px 6px 0;
}

.check-list li {
  margin-bottom: 12px;
  color: #fff;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check-list i {
  color: var(--gold-primary);
  margin-top: 5px;
  flex-shrink: 0;
}

/* ---------- Stats ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.stat-card {
  background: #111;
  padding: 40px 28px;
  text-align: center;
  border: 1px solid #222;
  border-radius: 4px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.stat-icon {
  font-size: 2.4rem;
  color: var(--gold-primary);
  margin-bottom: 18px;
  display: block;
}

.stat-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-card p {
  font-size: 0.92rem;
  margin-bottom: 0;
}

/* ---------- Crown URLs ---------- */
.urls-section {
  padding: 80px 5%;
  background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.03), transparent);
}

.urls-section .section-inner {
  max-width: 900px;
  margin: 0 auto;
}

.urls-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.urls-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
  max-width: 700px;
  margin: 0 auto;
}

.url-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.url-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  background: var(--bg-panel);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  color: #fff;
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  font-size: 0.95rem;
  transition: border-color var(--transition), transform var(--transition), background var(--transition);
}

.url-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(212, 175, 55, 0.06);
  transform: translateX(4px);
}

.url-card i {
  color: var(--gold-primary);
  font-size: 0.85rem;
  opacity: 0.8;
}

.url-card span {
  flex: 1;
  word-break: break-all;
}

/* ---------- Blog cards ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.blog-card {
  background: var(--bg-panel);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: var(--shadow-gold);
}

.blog-card-img {
  height: 160px;
  background: linear-gradient(135deg, #1a1510 0%, #0d0d0d 50%, #1a1a12 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.blog-card-img i {
  font-size: 2.5rem;
  color: var(--gold-primary);
  opacity: 0.7;
}

.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  font-size: 0.8rem;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.blog-card h3 {
  font-family: var(--font-serif);
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.blog-card p {
  font-size: 0.95rem;
  flex: 1;
  margin-bottom: 16px;
}

/* ---------- CTA band ---------- */
.cta-band {
  text-align: center;
  padding: 70px 5%;
  border-top: 1px solid #222;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.06), transparent 65%);
}

.cta-band p {
  max-width: 600px;
  margin: 0 auto 30px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.cta-actions .btn-gold,
.cta-actions .btn-wa,
.cta-actions .btn-tg,
.cta-actions .btn-outline {
  min-width: 180px;
}

.hero-cta .btn-wa,
.hero-cta .btn-tg {
  padding: 14px 22px;
}

.hero-chat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
  width: 100%;
  flex-basis: 100%;
  animation: fadeInUp 0.8s 0.4s var(--ease) both;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: 140px 5% 60px;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(212, 175, 55, 0.08), transparent 50%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.page-hero .breadcrumb {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.page-hero .breadcrumb a {
  color: var(--gold-primary);
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.page-hero p {
  max-width: 640px;
  margin: 0 auto;
}

/* ---------- Application Form ---------- */
.form-section {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 5% 100px;
}

.form-card {
  background: var(--bg-panel);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.form-intro {
  margin-bottom: 32px;
  text-align: center;
}

.form-intro p {
  margin-bottom: 0;
  font-size: 0.98rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 500;
  color: #e0e0e0;
  letter-spacing: 0.3px;
}

.form-group label .req {
  color: var(--gold-primary);
  margin-left: 2px;
}

.form-group .hint {
  font-size: 0.8rem;
  color: #777;
  margin-top: -2px;
}

/* Text fields only — exclude checkbox/radio */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 12px 14px;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23D4AF37' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #555;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}

/* Choice chips — radio / checkbox (clickable) */
.radio-group,
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 6px 0 2px;
  position: relative;
  z-index: 1;
}

.radio-option,
.checkbox-option {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: #ccc;
  font-size: 0.92rem;
  font-weight: 500;
  user-select: none;
  -webkit-user-select: none;
  padding: 11px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0a0a0a;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  margin: 0;
  line-height: 1.3;
}

.radio-option:hover,
.checkbox-option:hover {
  color: #fff;
  border-color: rgba(212, 175, 55, 0.45);
  background: rgba(212, 175, 55, 0.06);
}

.radio-option input[type="radio"],
.checkbox-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin: 0;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--gold-primary);
  -webkit-appearance: auto;
  appearance: auto;
}

.radio-option:has(input:checked),
.checkbox-option:has(input:checked) {
  color: #fff;
  border-color: rgba(212, 175, 55, 0.65);
  background: rgba(212, 175, 55, 0.12);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.2);
}

.radio-option input:focus-visible,
.checkbox-option input:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 2px;
}

.form-actions {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-actions .btn-gold {
  width: 100%;
  padding: 16px;
  font-size: 0.95rem;
}

/* Success / share panel */
.share-panel {
  display: none;
  margin-top: 28px;
  padding: 28px;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-lg);
  animation: fadeInUp 0.5s var(--ease) both;
}

.share-panel.visible {
  display: block;
}

.share-panel h3 {
  color: var(--gold-primary);
  font-family: var(--font-serif);
  margin-bottom: 10px;
}

.share-panel > p {
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.preview-box {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 16px;
  max-height: 280px;
  overflow-y: auto;
  font-size: 0.88rem;
  color: #ccc;
  white-space: pre-wrap;
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  line-height: 1.55;
  margin-bottom: 20px;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.share-buttons .btn-copy,
.share-buttons .btn-wa,
.share-buttons .btn-tg {
  flex: 1 1 180px;
  min-height: 48px;
  padding: 14px 18px;
  border-radius: 8px;
}

.btn-copy {
  background: var(--gold-primary);
  color: #000 !important;
  border: none;
  padding: 12px 28px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  border-radius: 8px;
  font-family: var(--font-sans);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-copy:hover {
  background: #fff;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
  transform: translateY(-1px);
}

.btn-copy.copied {
  background: #2ecc71;
  color: #fff !important;
}

.trust-note {
  margin-top: 20px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  font-size: 0.88rem;
  color: #888;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-note i {
  color: var(--gold-primary);
  margin-right: 6px;
}

/* Process steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 50px 0 20px;
}

.step-card {
  text-align: center;
  padding: 28px 16px;
  background: var(--bg-panel);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: border-color var(--transition), transform var(--transition);
}

.step-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-4px);
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 14px;
  font-family: var(--font-serif);
}

.step-card h4 {
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* ---------- Legal pages ---------- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 5% 100px;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--gold-primary);
  font-family: var(--font-serif);
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.legal-content ul {
  margin: 0 0 1.5rem 1.2rem;
  list-style: disc;
}

.legal-content li { margin-bottom: 8px; }

/* ---------- Footer ---------- */
footer {
  background: #020202;
  padding: 60px 5% 40px;
  text-align: center;
  border-top: 1px solid #1a1a1a;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 8px;
}

.footer-brand span { color: var(--gold-primary); }

.footer-tagline {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.footer-nav {
  margin-bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
}

.footer-nav a {
  color: #666;
  font-size: 0.9rem;
}

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

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  border: 1px solid transparent;
  color: #fff;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.footer-contact .wa {
  background: #25D366;
  color: #fff;
}

.footer-contact .wa:hover {
  background: #1da851;
  color: #fff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
  transform: translateY(-1px);
}

.footer-contact .tg {
  background: #2AABEE;
  color: #fff;
}

.footer-contact .tg:hover {
  background: #1e96d1;
  color: #fff;
  box-shadow: 0 8px 20px rgba(42, 171, 238, 0.35);
  transform: translateY(-1px);
}

.footer-copy {
  font-size: 0.8rem;
  color: #444;
  margin-bottom: 0;
  line-height: 1.7;
}

/* ---------- Animations (scroll reveal) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.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; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Float decoration */
.float-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  animation: floatOrb 10s ease-in-out infinite;
}

.float-orb-1 {
  width: 280px;
  height: 280px;
  background: rgba(212, 175, 55, 0.08);
  top: 15%;
  right: 5%;
}

.float-orb-2 {
  width: 200px;
  height: 200px;
  background: rgba(212, 175, 55, 0.05);
  bottom: 20%;
  left: 8%;
  animation-delay: -4s;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -25px); }
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: #1a1a1a;
  color: #fff;
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 0.9rem;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast i { color: var(--gold-primary); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-img-wrapper { order: -1; }

  .split-feature {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 28px 20px;
  }

  .nav-menu { display: none; }
  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .stats-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }

  .article-block {
    padding-left: 18px;
    margin-bottom: 50px;
  }

  .urls-grid {
    gap: 14px 20px;
  }

  .form-card { padding: 28px 20px; }

  .share-buttons .btn-copy,
  .share-buttons .btn-wa,
  .share-buttons .btn-tg {
    flex: 1 1 100%;
  }
}

@media (max-width: 560px) {
  .process-steps { grid-template-columns: 1fr; }
  .urls-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn-gold,
  .hero-cta .nav-link,
  .hero-cta .btn-wa,
  .hero-cta .btn-tg {
    text-align: center;
    margin-left: 0 !important;
    justify-content: center;
    width: 100%;
  }
  .hero-chat-row {
    flex-direction: column;
    width: 100%;
  }
  .cta-actions .btn-gold,
  .cta-actions .btn-wa,
  .cta-actions .btn-tg,
  .cta-actions .btn-outline {
    width: 100%;
    min-width: 0;
  }
  .radio-option,
  .checkbox-option {
    width: 100%;
  }
  h1 { font-size: 2.2rem; }
  .content-section { padding: 50px 5%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-text .subtitle,
  .hero-text h1,
  .hero-text p,
  .hero-cta,
  .hero-img-wrapper {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}

/* Skip link a11y */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--gold-primary);
  color: #000;
  padding: 10px 16px;
  z-index: 3000;
  font-weight: 600;
  border-radius: 4px;
}

.skip-link:focus {
  top: 16px;
}
