/* ============================================================
   WoW Private Server – Main Stylesheet
   Dark fantasy theme inspired by World of Warcraft
   ============================================================ */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --gold:         #c8a84b;
  --gold-light:   #f0d080;
  --gold-dark:    #8a6a1a;
  --bg-darkest:   #0a0b0e;
  --bg-dark:      #10131a;
  --bg-mid:       #161b26;
  --bg-card:      #1a2035;
  --bg-card2:     #1e2640;
  --border:       #2a3555;
  --border-light: #3a4a70;
  --text:         #c8cdd8;
  --text-muted:   #7a8499;
  --text-bright:  #e8eaf0;
  --blue-glow:    #3a6fd8;
  --red:          #c83232;
  --green:        #3ab868;
  --nav-h:        68px;
  --radius:       8px;
  --radius-lg:    14px;
  --shadow:       0 4px 24px rgba(0,0,0,0.5);
  --shadow-gold:  0 0 20px rgba(200,168,75,0.25);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', system-ui, sans-serif;
  background: var(--bg-darkest);
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
  min-height: 100vh;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cinzel', 'Times New Roman', serif;
  color: var(--text-bright);
  line-height: 1.25;
}

a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-light); }

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

code {
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 7px;
  font-size: .88em;
  color: var(--gold-light);
}

ul { list-style: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.gold { color: var(--gold); }

/* ── Navigation ────────────────────────────────────────────── */
.main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(10,11,14,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  transition: box-shadow .3s;
}
.main-nav.scrolled {
  box-shadow: 0 2px 30px rgba(0,0,0,0.7);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img { height: 38px; width: auto; }
.logo-text {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .04em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links > li { position: relative; }

.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  color: var(--text);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--gold); background: rgba(200,168,75,.1); }

.nav-links > li > a i.small { font-size: .6em; }

/* Dropdown */
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 190px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .2s, transform .2s, visibility .2s;
  box-shadow: var(--shadow);
  z-index: 99;
}
.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  color: var(--text);
  font-size: .85rem;
  border-radius: 5px;
  transition: background .15s, color .15s;
}
.dropdown-menu li a:hover { background: rgba(200,168,75,.12); color: var(--gold); }
.dropdown-menu li a i { width: 16px; text-align: center; }

/* Nav Buttons */
.btn-nav {
  padding: 7px 16px;
  border-radius: var(--radius);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  color: var(--text) !important;
  transition: background .2s, border-color .2s, color .2s;
}
.btn-nav:hover { background: rgba(255,255,255,0.1); color: var(--text-bright) !important; }
.btn-nav-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-color: var(--gold);
  color: #0a0b0e !important;
}
.btn-nav-gold:hover { background: linear-gradient(135deg, var(--gold), var(--gold-light)); }
.btn-nav-outline { border-color: var(--border-light); }

.nav-user .nav-username {
  font-size: .85rem;
  color: var(--gold);
  font-weight: 600;
  padding: 7px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background .2s, color .2s;
}
.nav-user .nav-username:hover {
  background: rgba(200,168,75,0.12);
  color: var(--gold-light);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius);
  padding: 7px 11px;
  font-size: 1.1rem;
  cursor: pointer;
}

.nav-spacer { height: var(--nav-h); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 700;
  font-family: 'Cinzel', serif;
  letter-spacing: .04em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-sm { padding: 7px 16px; font-size: .8rem; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  color: #0a0b0e;
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(200,168,75,0.3);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  box-shadow: 0 6px 24px rgba(200,168,75,0.5);
  transform: translateY(-1px);
  color: #0a0b0e;
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: rgba(200,168,75,.12);
  color: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-full { width: 100%; justify-content: center; }

/* ── Hero Section ──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    url('../img/background.jpg') center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,11,14,0.55) 0%,
    rgba(10,11,14,0.7) 60%,
    rgba(10,11,14,1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 40px 24px;
  animation: fadeInUp .8s ease both;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--gold);
  text-shadow:
    0 0 40px rgba(200,168,75,0.6),
    0 2px 8px rgba(0,0,0,0.9);
  letter-spacing: .06em;
  margin-bottom: 12px;
}

.hero-subtitle {
  font-family: 'Cinzel', serif;
  font-size: clamp(.95rem, 2.5vw, 1.3rem);
  color: var(--text-muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

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

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(0,0,0,0.55);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 20px;
  font-size: .88rem;
  backdrop-filter: blur(4px);
}
.hero-status.online  { border-color: var(--green); color: #8fe8ae; }
.hero-status.offline { border-color: var(--red);   color: #e88f8f; }

.status-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.online  .status-dot { background: var(--green); box-shadow: 0 0 8px var(--green); animation: pulse 2s infinite; }
.offline .status-dot { background: var(--red); }

/* ── Features Section ──────────────────────────────────────── */
.features-section {
  padding: 90px 0;
  background: var(--bg-dark);
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px; height: 3px;
  background: linear-gradient(to right, var(--gold-dark), var(--gold));
  margin: 14px auto 0;
  border-radius: 2px;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.feature-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.feature-icon {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--gold-light);
}
.feature-card p { color: var(--text-muted); font-size: .92rem; }

/* ── Steps Section ─────────────────────────────────────────── */
.steps-section {
  padding: 80px 0;
  background: var(--bg-mid);
}

.steps-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  max-width: 260px;
  flex: 1 1 200px;
  transition: border-color .2s, box-shadow .2s;
}
.step:hover { border-color: var(--gold-dark); box-shadow: var(--shadow-gold); }

.step-num {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #0a0b0e;
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(200,168,75,0.35);
}

.step h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--gold-light); }
.step p  { font-size: .87rem; color: var(--text-muted); margin-bottom: 18px; }

.step-arrow {
  font-size: 1.6rem;
  color: var(--gold-dark);
  flex-shrink: 0;
}

/* ── News Section ──────────────────────────────────────────── */
.news-section {
  padding: 80px 0;
  background: var(--bg-dark);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.news-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.news-img {
  height: 180px;
  background: var(--bg-card2) center / cover no-repeat;
  position: relative;
}
.news-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,32,53,1) 0%, transparent 60%);
}

.news-body { padding: 22px; }
.news-date { font-size: .8rem; color: var(--text-muted); }
.news-title { font-size: 1.1rem; margin: 8px 0 10px; color: var(--gold-light); }
.news-body p { font-size: .88rem; color: var(--text-muted); }

/* ── CTA Section ───────────────────────────────────────────── */
.cta-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #0f1520 0%, #1a2035 50%, #0f1520 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-inner h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
.cta-inner p  { color: var(--text-muted); margin-top: 6px; }
.cta-buttons  { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Page Hero (inner pages) ───────────────────────────────── */
.page-hero {
  background:
    linear-gradient(to bottom, rgba(10,11,14,0.7), rgba(10,11,14,0.95)),
    url('../img/background.jpg') center / cover no-repeat;
  padding: 90px 24px 60px;
  text-align: center;
}
.page-hero-sm { padding: 70px 24px 50px; }
.page-hero-content h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--gold);
  margin-bottom: 10px;
}
.page-hero-content p { color: var(--text-muted); font-size: 1rem; }

/* ── Forms ─────────────────────────────────────────────────── */
.form-section { padding: 60px 0 80px; background: var(--bg-darkest); }

.form-container {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}
.form-container-sm {
  grid-template-columns: 1fr;
  max-width: 520px;
}

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px 36px;
}

.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 7px;
  letter-spacing: .03em;
}
.form-group label i { color: var(--gold); margin-right: 3px; }

.form-control {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-bright);
  font-size: .92rem;
  padding: 11px 14px;
  transition: border-color .2s, box-shadow .2s;
  font-family: inherit;
}
.form-control:focus {
  outline: none;
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(200,168,75,0.15);
  background: rgba(255,255,255,0.07);
}
.form-control::placeholder { color: var(--text-muted); }

.input-with-toggle { position: relative; }
.input-with-toggle .form-control { padding-right: 44px; }
.toggle-pw {
  position: absolute;
  right: 10px; top: 50%;
  transform: translateY(-50%);
  background: none; border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: .95rem;
  padding: 4px;
  transition: color .2s;
}
.toggle-pw:hover { color: var(--gold); }

.field-hint { font-size: .78rem; color: var(--text-muted); margin-top: 5px; }

/* Password strength */
.password-strength {
  font-size: .78rem;
  margin-top: 5px;
  font-weight: 600;
}
.pw-weak      { color: var(--red); }
.pw-fair      { color: #e8a030; }
.pw-good      { color: #d8c040; }
.pw-strong    { color: var(--green); }
.pw-very-strong { color: #60e8a0; }

/* Checkbox */
.form-check-group { }
.form-check {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .88rem;
  cursor: pointer;
  color: var(--text);
}
.form-check input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--gold);
  cursor: pointer;
}

.form-footer {
  text-align: center;
  margin-top: 22px;
  font-size: .88rem;
  color: var(--text-muted);
}

/* Side Info Box */
.form-side-info {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
}
.form-side-info h3 {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.form-side-info ul { display: flex; flex-direction: column; gap: 10px; }
.form-side-info li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .86rem;
  color: var(--text);
}
.form-side-info li i.gold { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.side-info-box {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-top: 20px;
  font-size: .85rem;
  line-height: 1.8;
  color: var(--text-muted);
}
.side-info-box strong { color: var(--gold); }

/* ── Alerts ────────────────────────────────────────────────── */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 22px;
  font-size: .9rem;
  border: 1px solid;
  line-height: 1.6;
}
.alert-success {
  background: rgba(58,184,104,0.12);
  border-color: var(--green);
  color: #8fe8ae;
}
.alert-error {
  background: rgba(200,50,50,0.12);
  border-color: var(--red);
  color: #e88f8f;
}
.alert-info {
  background: rgba(58,111,216,0.12);
  border-color: var(--blue-glow);
  color: #8fb8f8;
}

/* ── Content Pages ─────────────────────────────────────────── */
.content-section { padding: 60px 0 80px; background: var(--bg-darkest); }

.content-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  max-width: 860px;
  margin: 0 auto;
}

.content-card h2 {
  font-size: 1.4rem;
  color: var(--gold);
  margin: 28px 0 12px;
}
.content-card h2:first-child { margin-top: 0; }
.content-card p  { color: var(--text); margin-bottom: 14px; line-height: 1.75; }
.content-card ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.content-card li { color: var(--text); padding: 3px 0; }
.content-card strong { color: var(--text-bright); }

/* Status page */
.status-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin: 30px 0; }
.status-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}
.status-card .status-icon { font-size: 2rem; margin-bottom: 10px; }
.status-card h4 { font-size: .9rem; color: var(--text-muted); margin-bottom: 6px; }
.status-card .status-val { font-size: 1.5rem; font-family: 'Cinzel', serif; color: var(--text-bright); }
.status-card.online-card { border-color: var(--green); }
.status-card.online-card .status-icon { color: var(--green); }
.status-card.offline-card { border-color: var(--red); }
.status-card.offline-card .status-icon { color: var(--red); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: .92rem;
  color: var(--text-bright);
  transition: background .15s;
  gap: 12px;
}
.faq-q:hover { background: rgba(255,255,255,0.04); }
.faq-q i { color: var(--gold); transition: transform .25s; font-size: .8rem; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height .3s, padding .3s; }
.faq-item.open .faq-a { max-height: 400px; padding: 0 20px 16px; }
.faq-a p { color: var(--text-muted); font-size: .88rem; }

/* Changelog */
.changelog-entry {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold-dark);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 18px;
}
.changelog-date { font-size: .78rem; color: var(--text-muted); margin-bottom: 6px; }
.changelog-entry h3 { font-size: 1rem; color: var(--gold); margin-bottom: 10px; }
.changelog-entry ul { list-style: disc; padding-left: 18px; }
.changelog-entry li { font-size: .87rem; color: var(--text); padding: 2px 0; }

/* Downloads table */
.dl-table { width: 100%; border-collapse: collapse; margin-top: 16px; }
.dl-table th {
  text-align: left;
  padding: 12px 16px;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid var(--border);
  font-size: .82rem;
  color: var(--gold);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.dl-table td { padding: 13px 16px; border-bottom: 1px solid var(--border); font-size: .88rem; }
.dl-table tr:last-child td { border-bottom: none; }
.dl-table tr:hover td { background: rgba(255,255,255,0.03); }

/* Connect page */
.realmlist-box {
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--gold-dark);
  border-radius: var(--radius);
  padding: 18px 22px;
  font-family: 'Courier New', monospace;
  font-size: 1rem;
  color: var(--gold-light);
  margin: 16px 0;
  letter-spacing: .05em;
  user-select: all;
}

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}

.footer-inner { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-logo img { height: 34px; }
.footer-logo span {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}
.footer-tagline { font-size: .85rem; color: var(--text-muted); margin-bottom: 18px; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 1rem;
  transition: background .2s, color .2s, border-color .2s;
}
.footer-social a:hover {
  background: rgba(200,168,75,0.15);
  color: var(--gold);
  border-color: var(--gold-dark);
}

.footer-col h4 {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col li a { font-size: .87rem; color: var(--text-muted); transition: color .2s; }
.footer-col li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-bottom p { font-size: .8rem; color: var(--text-muted); }
.disclaimer { font-size: .72rem !important; opacity: .65; }

/* ── Animations ────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(58,184,104,0.7); }
  50%       { box-shadow: 0 0 0 6px rgba(58,184,104,0); }
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-buttons { justify-content: center; }
  .form-container { grid-template-columns: 1fr; }
  .form-side-info { order: -1; }
}

@media (max-width: 700px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(10,11,14,0.98);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 12px;
    gap: 2px;
    backdrop-filter: blur(12px);
  }
  .nav-links.open { display: flex; }
  .nav-links > li { width: 100%; }
  .nav-links > li > a { width: 100%; }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: rgba(255,255,255,0.05); margin-left: 12px; display: none; }
  .nav-dropdown.open .dropdown-menu { display: block; }

  .hero-buttons { flex-direction: column; align-items: center; }
  .steps-row { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); }
  .footer-cols { grid-template-columns: 1fr; gap: 28px; }
  .form-card { padding: 26px 20px; }
  .content-card { padding: 26px 20px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .btn-lg { padding: 13px 22px; font-size: .92rem; }
}
