/* ── VERDANT CYBERZ BRAND THEME & STYLES ── */

:root {
  /* Colors */
  --purple-dark: #120224;      /* Deepest dark purple background */
  --purple-mid: #1A0432;       /* Mid-tone purple background */
  --purple-surface: #230642;   /* Surface/Card base purple */
  --purple-card: rgba(35, 6, 66, 0.45); /* Translucent purple for glassmorphism */
  
  --gold: #D5AB3D;             /* Core brand gold (from Logo) */
  --gold-light: #F2C95F;       /* Highlight gold */
  --gold-dark: #A57E23;        /* Deep gold shadow/accent */
  --gold-glow: rgba(213, 171, 61, 0.12);
  --gold-glow-strong: rgba(213, 171, 61, 0.3);
  
  --purple-glow: rgba(168, 85, 247, 0.15);
  --purple-glow-strong: rgba(168, 85, 247, 0.35);

  --white: #FFFFFF;
  --ice: #F3EEF5;              /* Light purple-tinted white for body */
  --lavender: #A592B3;         /* Soft lavender-grey for secondary text */
  --lavender-dark: #6C5B7B;    /* Darker lavender for secondary highlights */
  
  --border: rgba(213, 171, 61, 0.15);
  --border-hover: rgba(213, 171, 61, 0.4);
  
  /* Fonts */
  --font-headings: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.15s ease;
}

/* ── BASE RESET ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--purple-dark);
  background-image: 
    linear-gradient(rgba(18, 2, 36, 0.75), rgba(18, 2, 36, 0.75)),
    radial-gradient(circle at 10% 20%, rgba(35, 6, 66, 0.4) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(213, 171, 61, 0.05) 0%, transparent 50%),
    url('cyber-bg.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  color: var(--ice);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 5%;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(18, 2, 36, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.logo {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--white);
  letter-spacing: -0.02em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition-smooth);
}

.logo:hover {
  text-shadow: 0 0 10px rgba(213, 171, 61, 0.3);
}

.logo-image {
  height: 38px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--lavender);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-fast);
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: var(--transition-fast);
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta, .nav-links a.nav-cta {
  background: linear-gradient(135deg, rgba(213, 171, 61, 0.15) 0%, rgba(168, 85, 247, 0.15) 100%);
  border: 1.5px solid var(--gold);
  color: var(--gold-light) !important;
  padding: 9px 34px !important;
  border-radius: 6px;
  font-family: var(--font-headings);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-shadow: 0 0 10px rgba(213, 171, 61, 0.20);
  box-shadow: 
    0 4px 15px rgba(18, 2, 36, 0.5),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth) !important;
  display: inline-block;
}

.nav-cta::after, .nav-links a.nav-cta::after {
  display: none !important;
}

.nav-cta:hover, .nav-links a.nav-cta:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%) !important;
  color: var(--purple-dark) !important;
  box-shadow: 
    0 0 25px rgba(213, 171, 61, 0.45),
    0 4px 15px rgba(168, 85, 247, 0.25) !important;
  text-shadow: none;
  transform: translateY(-2px);
  border-color: var(--gold-light);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--lavender);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* ── HERO SECTION ── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding: 120px 5% 80px;
  overflow: hidden;
}

#hex-canvas {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  pointer-events: none;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--gold-light);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.hero-eyebrow::after {
  transform: scaleX(-1);
}

h1 {
  font-family: var(--font-headings);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 900px;
  margin-bottom: 28px;
}

h1 .accent {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold);
  text-stroke: 1.5px var(--gold);
  filter: drop-shadow(0 0 15px rgba(213, 171, 61, 0.2));
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--lavender);
  max-width: 620px;
  margin-bottom: 48px;
  line-height: 1.75;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  z-index: 10;
}

/* BUTTONS */
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--purple-dark);
  padding: 15px 36px;
  border: none;
  border-radius: 4px;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(213, 171, 61, 0.2);
  display: inline-block;
}

.btn-primary:hover {
  box-shadow: 0 0 30px rgba(213, 171, 61, 0.45);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(35, 6, 66, 0.3);
  color: var(--ice);
  padding: 14px 36px;
  border: 1px solid var(--border-hover);
  border-radius: 4px;
  font-family: var(--font-headings);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-smooth);
  display: inline-block;
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(213, 171, 61, 0.05);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 56px;
  justify-content: center;
  margin-top: 80px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: var(--font-headings);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
  text-shadow: 0 0 10px var(--gold-glow-strong);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--lavender);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--purple-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 52px;
  flex-wrap: wrap;
}

.trust-item {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--lavender);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.85;
}

.trust-item::before {
  content: '♦';
  color: var(--gold);
  font-size: 0.75rem;
  text-shadow: 0 0 5px var(--gold);
}

/* ── SECTION CORE ── */
section {
  padding: 104px 5%;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold-light);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

h2 {
  font-family: var(--font-headings);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-sub {
  color: var(--lavender);
  font-size: 1.05rem;
  max-width: 600px;
  line-height: 1.75;
}

.section-header {
  margin-bottom: 64px;
}

/* ── SERVICES SECTION ── */
#services {
  background: linear-gradient(180deg, rgba(26, 4, 50, 0.92) 0%, rgba(26, 4, 50, 0.96) 100%);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--purple-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 38px 34px;
  position: relative;
  transition: var(--transition-smooth);
  cursor: default;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

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

.service-card:hover {
  background: rgba(35, 6, 66, 0.7);
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(168, 85, 247, 0.08);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: rgba(213, 171, 61, 0.08);
  border: 1px solid rgba(213, 171, 61, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  box-shadow: 0 0 22px rgba(213, 171, 61, 0.3);
  background: rgba(213, 171, 61, 0.15);
  border-color: var(--gold);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 1.5;
}

.service-card h3 {
  font-family: var(--font-headings);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--lavender);
  line-height: 1.7;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
}

.tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--gold-light);
  background: rgba(213, 171, 61, 0.05);
  border: 1px solid rgba(213, 171, 61, 0.18);
  padding: 3px 10px;
  border-radius: 3px;
  letter-spacing: 0.04em;
}

/* ── WHY US SECTION ── */
#why {
  background: linear-gradient(180deg, rgba(18, 2, 36, 0.90) 0%, rgba(18, 2, 36, 0.95) 100%);
  position: relative;
  overflow: hidden;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.pillar-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pillar {
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 24px;
  cursor: default;
  transition: var(--transition-smooth);
}

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

.pillar:hover {
  padding-left: 12px;
  border-bottom-color: var(--border-hover);
  background: linear-gradient(90deg, rgba(213, 171, 61, 0.02), transparent);
}

.pillar-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold-light);
  padding-top: 4px;
  min-width: 32px;
  font-weight: 700;
  text-shadow: 0 0 5px rgba(213, 171, 61, 0.2);
}

.pillar-content h4 {
  font-family: var(--font-headings);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.pillar-content p {
  font-size: 0.88rem;
  color: var(--lavender);
  line-height: 1.65;
}

.why-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── SPINNING SHIELD DIAGRAM ── */
.shield-diagram {
  width: 340px;
  height: 340px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed;
  animation: spin-slow linear infinite;
}

.ring-1 {
  width: 100%;
  height: 100%;
  border-color: rgba(213, 171, 61, 0.15);
  animation-duration: 32s;
}

.ring-2 {
  width: 76%;
  height: 76%;
  border-color: rgba(213, 171, 61, 0.25);
  border-style: solid;
  border-width: 1px;
  border-top-color: var(--gold);
  animation-duration: 22s;
  animation-direction: reverse;
}

.ring-3 {
  width: 50%;
  height: 50%;
  border-color: rgba(168, 85, 247, 0.3);
  animation-duration: 14s;
}

.ring-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
  top: -4px;
  left: calc(50% - 4px);
  box-shadow: 0 0 12px var(--gold-light);
}

.ring-3 .ring-dot {
  background: #A855F7;
  box-shadow: 0 0 12px #A855F7;
}

.shield-center {
  width: 108px;
  height: 108px;
  background: var(--purple-surface);
  border-radius: 50%;
  border: 2px solid var(--border-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 0 40px var(--gold-glow-strong),
    0 0 80px rgba(168, 85, 247, 0.15);
  z-index: 2;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.shield-center:hover {
  transform: scale(1.05);
  box-shadow: 
    0 0 50px rgba(213, 171, 61, 0.45),
    0 0 90px rgba(168, 85, 247, 0.25);
  border-color: var(--gold-light);
}

.shield-center svg {
  width: 44px;
  height: 44px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 1.5;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ── PROCESS SECTION ── */
#process {
  background: linear-gradient(180deg, rgba(26, 4, 50, 0.92) 0%, rgba(26, 4, 50, 0.96) 100%);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 12.5%;
  right: 12.5%;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), rgba(168, 85, 247, 0.25), var(--gold));
  z-index: 0;
}

.step {
  text-align: center;
  padding: 0 10px;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--purple-surface);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  box-shadow: 0 0 20px var(--gold-glow-strong);
  position: relative;
  transition: var(--transition-smooth);
}

.step:hover .step-circle {
  transform: scale(1.08);
  box-shadow: 
    0 0 25px var(--gold-light),
    0 0 10px rgba(168, 85, 247, 0.4);
  border-color: var(--gold-light);
}

.step-circle span {
  font-family: var(--font-headings);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-light);
}

.step h4 {
  font-family: var(--font-headings);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.step p {
  font-size: 0.825rem;
  color: var(--lavender);
  line-height: 1.65;
}

/* ── CONTACT SECTION ── */
#contact {
  background: 
    radial-gradient(circle at 50% 90%, rgba(213, 171, 61, 0.05) 0%, transparent 60%),
    linear-gradient(180deg, rgba(18, 2, 36, 0.90) 0%, rgba(18, 2, 36, 0.95) 100%);
}

.contact-wrap {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.contact-wrap h2 {
  margin-bottom: 16px;
}

.contact-wrap .section-sub {
  margin: 0 auto 48px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
  background: var(--purple-card);
  border: 1px solid var(--border);
  padding: 48px;
  border-radius: 12px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

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

.form-field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: var(--font-mono);
}

.form-field input, 
.form-field select, 
.form-field textarea {
  width: 100%;
  background: rgba(18, 2, 36, 0.6);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-field input:focus, 
.form-field select:focus, 
.form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 
    0 0 0 3px var(--gold-glow),
    0 0 12px rgba(213, 171, 61, 0.1);
}

.form-field select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23F2C95F' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 18px) center;
  padding-right: 40px;
}

.form-field select option {
  background: var(--purple-mid);
  color: var(--white);
}

.form-field textarea {
  resize: vertical;
  min-height: 130px;
}

.form-submit {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.form-submit .btn-primary {
  min-width: 220px;
  text-align: center;
}

/* ── FOOTER ── */
footer {
  background: rgba(18, 2, 36, 0.95);
  border-top: 1px solid var(--border);
  padding: 80px 5% 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--lavender);
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h5 {
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
}

.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  color: var(--lavender);
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition-fast);
}

.footer-col ul a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.825rem;
  color: var(--lavender);
}

.footer-bottom .mono {
  font-family: var(--font-mono);
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

/* ── RESPONSIVE MEDIA QUERIES ── */
@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .why-visual {
    order: -1;
  }

  .shield-diagram {
    width: 280px;
    height: 280px;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }

  .process-steps::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  section {
    padding: 80px 6%;
  }

  nav {
    height: 68px;
  }

  .logo {
    font-size: 1.2rem;
  }

  .logo-image {
    height: 32px;
  }

  .contact-form {
    padding: 30px 24px;
  }

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

  .process-steps {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-stats {
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ── MOBILE NAV OVERLAY ── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(18, 2, 36, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 40px 8%;
  flex-direction: column;
  gap: 12px;
  z-index: 99;
  overflow-y: auto;
}

@media (max-width: 960px) {
  .mobile-nav {
    top: 76px;
  }
}

@media (max-width: 640px) {
  .mobile-nav {
    top: 68px;
  }
}

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

.mobile-nav a {
  color: var(--ice);
  text-decoration: none;
  font-size: 1.2rem;
  font-family: var(--font-headings);
  font-weight: 500;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav a::after {
  content: '→';
  color: var(--gold);
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.mobile-nav a:hover {
  color: var(--gold-light);
  padding-left: 8px;
}

.mobile-nav a:hover::after {
  transform: translateX(6px);
}

.mobile-nav .nav-cta {
  margin-top: 20px;
  border-radius: 6px;
  text-align: center;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--purple-dark) !important;
  font-weight: 700;
  padding: 12px 0;
  display: block;
  box-shadow: 0 4px 15px rgba(213, 171, 61, 0.2);
  transition: var(--transition-smooth) !important;
}

.mobile-nav .nav-cta::after {
  display: none;
}

.mobile-nav .nav-cta:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%) !important;
  box-shadow: 0 0 25px rgba(213, 171, 61, 0.4);
  transform: translateY(-2px);
  padding-left: 0;
}

/* ── SCROLL TO TOP BUTTON ── */
.scroll-top-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--purple-card);
  border: 1px solid var(--border);
  color: var(--gold-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition-smooth);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.3),
    0 0 10px rgba(168, 85, 247, 0.05);
}

.scroll-top-btn svg {
  width: 20px;
  height: 20px;
  transition: var(--transition-smooth);
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: var(--purple-surface);
  border-color: var(--gold);
  color: var(--white);
  box-shadow: 
    0 0 20px var(--gold-glow-strong),
    0 4px 20px rgba(168, 85, 247, 0.2);
  transform: translateY(-3px);
}

.scroll-top-btn:hover svg {
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .scroll-top-btn {
    bottom: 24px;
    right: 24px;
    width: 42px;
    height: 42px;
  }
  .scroll-top-btn svg {
    width: 18px;
    height: 18px;
  }
}

/* Reduced Motion overrides */
@media (prefers-reduced-motion: reduce) {
  .ring {
    animation: none;
  }
  
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}

/* Disabled links styling */
.disabled-link {
  opacity: 0.5 !important;
  pointer-events: none !important;
  cursor: default !important;
}
