/* ===== VELAKAST.ORG — STYLESHEET (dark premium theme) ===== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,800;1,700&family=Nunito+Sans:wght@300;400;600;700&display=swap');

:root {
  --bg:        #0f1a14;
  --bg2:       #152019;
  --bg3:       #1c2b20;
  --card:      #1a2820;
  --border:    #2d4035;
  --green:     #2a7a4b;
  --green-l:   #34a362;
  --green-pale:#1e3328;
  --gold:      #c9a84c;
  --gold-l:    #e8c96a;
  --text:      #e8f0ea;
  --text-muted:#8aaa92;
  --white:     #ffffff;
  --radius:    12px;
  --shadow:    0 6px 32px rgba(0,0,0,0.40);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16.5px;
  line-height: 1.78;
}

/* ===== HEADER ===== */
header {
  background: rgba(15,26,20,0.97);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  height: 66px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.logo em {
  font-style: italic;
  color: var(--gold);
}

nav { display: flex; gap: 4px; align-items: center; }

nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.83rem;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: 6px;
  transition: color 0.18s, background 0.18s;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

nav a:hover { color: var(--text); background: var(--bg3); }

nav a.nav-cta {
  background: var(--gold);
  color: #1a1200;
  font-weight: 700;
  margin-left: 8px;
}

nav a.nav-cta:hover { background: var(--gold-l); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s;
}

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 8px 20px 20px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 6px;
  border-bottom: 1px solid var(--border);
  transition: color 0.15s;
}

.mobile-nav a:last-child { border-bottom: none; color: var(--gold); }
.mobile-nav a:hover { color: var(--text); }

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg2);
  padding: 72px 28px 64px;
  border-bottom: 1px solid var(--border);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(42,122,75,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(201,168,76,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  gap: 56px;
  align-items: center;
  position: relative;
}

.hero-text { flex: 1; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green-pale);
  border: 1px solid var(--green);
  color: var(--green-l);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-l);
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 20px;
  color: var(--white);
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-img {
  flex-shrink: 0;
  width: 210px;
}

.hero-img img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 16px 60px rgba(0,0,0,0.55), 0 0 0 1px var(--border);
  display: block;
}

/* ===== BUTTONS ===== */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #1a1200;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 0.97rem;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 24px rgba(201,168,76,0.28);
  transition: all 0.18s;
}

.btn-gold:hover {
  background: var(--gold-l);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(201,168,76,0.38);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.18s;
}

.btn-outline:hover {
  background: var(--gold);
  color: #1a1200;
}

/* ===== LAYOUT ===== */
.page-layout {
  display: grid;
  grid-template-columns: 1fr 310px;
  gap: 40px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 52px 28px;
}

/* ===== SECTIONS ===== */
section { margin-bottom: 48px; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0; bottom: -1px;
  width: 48px; height: 2px;
  background: var(--gold);
}

p { margin-bottom: 14px; color: var(--text); }
p:last-child { margin-bottom: 0; }

/* ===== STAT CARDS ===== */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===== INFO LIST ===== */
.info-list {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
}

.info-row {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
}

.info-row:last-child { border-bottom: none; }

.info-key {
  flex: 0 0 44%;
  padding: 13px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  background: rgba(255,255,255,0.02);
  letter-spacing: 0.02em;
}

.info-val {
  flex: 1;
  padding: 13px 18px;
  font-size: 0.92rem;
  color: var(--text);
}

/* ===== TABLE ===== */
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

.data-table th {
  background: var(--green);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: left;
  padding: 12px 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.data-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 0.93rem;
  vertical-align: top;
  color: var(--text);
}

.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: rgba(255,255,255,0.03); }

/* ===== NOTICE ===== */
.notice {
  background: rgba(201,168,76,0.08);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin-bottom: 20px;
  font-size: 0.93rem;
  color: var(--text);
}

.notice strong {
  display: block;
  color: var(--gold-l);
  margin-bottom: 4px;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.notice-green {
  background: rgba(42,122,75,0.12);
  border-left-color: var(--green-l);
}

.notice-green strong { color: var(--green-l); }

/* ===== FAQ ===== */
.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  padding: 17px 4px;
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
  transition: color 0.15s;
}

.faq-q:hover { color: var(--gold); }

.faq-arrow {
  width: 22px;
  height: 22px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1rem;
  transition: transform 0.2s, background 0.2s;
}

.faq-item.open .faq-arrow { transform: rotate(45deg); background: var(--green-pale); }

.faq-a {
  display: none;
  padding: 0 4px 18px;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.75;
}

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

/* ===== STEP LIST ===== */
.step-list { list-style: none; margin-bottom: 24px; }

.step-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.step-list li:last-child { border-bottom: none; }

.step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green-pale);
  border: 1px solid var(--green);
  color: var(--green-l);
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.step-text { font-size: 0.95rem; color: var(--text); }
.step-text strong { color: var(--white); }

/* ===== SIDEBAR ===== */
.sidebar {
  position: sticky;
  top: 82px;
  align-self: start;
}

.sidebar-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  margin-bottom: 20px;
  text-align: center;
}

.sidebar-card img {
  width: 120px;
  border-radius: 10px;
  margin-bottom: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.sc-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.sc-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.sidebar-card .btn-gold { width: 100%; justify-content: center; }

.sidebar-nav {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 0.15s, background 0.15s;
}

.sidebar-nav a:last-child { border-bottom: none; }
.sidebar-nav a:hover { color: var(--text); background: var(--bg3); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--bg3), #1a2f1e);
  border: 1px solid var(--green);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  right: -40px;
  top: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
}

.cta-banner h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.cta-banner p { font-size: 0.92rem; color: var(--text-muted); margin: 0; }

/* ===== VERIFICATION CARD ===== */
.verify-card {
  background: var(--card);
  border: 1px solid var(--green);
  border-radius: var(--radius);
  padding: 28px 24px;
  margin-bottom: 24px;
}

.verify-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.verify-card h3 span {
  font-size: 1.3rem;
}

/* ===== FOOTER ===== */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 36px 28px;
  text-align: center;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 20px;
  margin-bottom: 14px;
}

footer a { color: var(--text-muted); text-decoration: none; transition: color 0.15s; }
footer a:hover { color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 940px) {
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .stat-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 680px) {
  nav { display: none; }
  .burger { display: flex; }

  .hero-inner { flex-direction: column-reverse; gap: 28px; }
  .hero-img { width: 160px; margin: 0 auto; }
  .hero { padding: 44px 20px 40px; }

  .stat-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { flex-direction: column; text-align: center; padding: 26px 20px; }
  .page-layout { padding: 32px 16px; }
  .info-key { flex: 0 0 40%; font-size: 0.78rem; }
}

@media (max-width: 400px) {
  .stat-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.65rem; }
}
