/* =========================================================
   RENZZO CRYPTO INVESTMENT PLATFORM - MASTER STYLESHEET
   ========================================================= */

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

:root {
  --font-primary: 'Plus Jakarta Sans', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  
  --bg-dark-1: #030712;
  --bg-dark-2: #090e1a;
  --bg-dark-3: #0f172a;
  
  --glass-bg: rgba(15, 23, 42, 0.75);
  --glass-card: rgba(30, 41, 59, 0.5);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-hover: rgba(0, 242, 254, 0.45);
  
  --primary-cyan: #00f2fe;
  --primary-blue: #3b82f6;
  --primary-purple: #8b5cf6;
  --primary-emerald: #10b981;
  --primary-gold: #ffb703;
  --primary-pink: #ec4899;
  
  --gradient-neon: linear-gradient(135deg, #00f2fe 0%, #3b82f6 50%, #8b5cf6 100%);
  --gradient-gold: linear-gradient(135deg, #ffb703 0%, #fb8500 100%);
  --gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
}

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-dark-1);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Ambient Background Lights */
body::before {
  content: '';
  position: fixed;
  top: -15%;
  left: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.18) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(100px);
  z-index: 0;
  pointer-events: none;
  animation: orbFloat1 22s ease-in-out infinite alternate;
}

body::after {
  content: '';
  position: fixed;
  bottom: 0%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.18) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
  animation: orbFloat2 25s ease-in-out infinite alternate;
}

@keyframes orbFloat1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(150px, 180px) scale(1.2); }
  100% { transform: translate(-80px, 250px) scale(0.95); }
}

@keyframes orbFloat2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-180px, -120px) scale(1.3); }
  100% { transform: translate(90px, -200px) scale(0.9); }
}

/* ------------------------------------------
   TOP CRYPTO TICKER & ANNOUNCEMENT BAR
   ------------------------------------------ */
.top-ticker-bar {
  background: rgba(3, 7, 18, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 0;
  font-size: 13px;
  color: var(--text-muted);
  position: relative;
  z-index: 1001;
}

.ticker-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.crypto-tickers {
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: var(--font-heading);
  font-weight: 600;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ticker-name {
  color: var(--text-main);
}

.ticker-badge-up {
  color: var(--primary-emerald);
  background: rgba(16, 185, 129, 0.12);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 12px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.status-dot-group {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-cyan);
  font-weight: 600;
}

.pulse-emerald {
  width: 8px;
  height: 8px;
  background: var(--primary-emerald);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--primary-emerald);
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.4; }
}

/* ------------------------------------------
   FLOATING NAVBAR HEADER
   ------------------------------------------ */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0;
  transition: all 0.4s ease;
}

.main-header.sticky {
  background: rgba(3, 7, 18, 0.95);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
  border-bottom: 1px solid rgba(0, 242, 254, 0.3);
  padding: 12px 0;
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 0 15px rgba(0, 242, 254, 0.5));
  transition: transform 0.3s ease;
}

.brand-logo a:hover img {
  transform: scale(1.06);
}

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

.nav-menu li a {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: #cbd5e1;
  padding: 10px 20px;
  border-radius: 30px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-menu li a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 242, 254, 0.2);
  text-shadow: 0 0 12px rgba(0, 242, 254, 0.6);
}

.btn-nav-login {
  background: rgba(0, 242, 254, 0.08) !important;
  border: 1px solid rgba(0, 242, 254, 0.35) !important;
  color: var(--primary-cyan) !important;
  margin-left: 10px;
}

.btn-nav-login:hover {
  background: var(--primary-cyan) !important;
  color: #030712 !important;
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.6) !important;
}

.btn-nav-register {
  background: var(--gradient-neon) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 25px rgba(0, 242, 254, 0.4) !important;
}

.btn-nav-register:hover {
  box-shadow: 0 8px 32px rgba(0, 242, 254, 0.7) !important;
  transform: translateY(-2px);
}

/* ------------------------------------------
   HERO SECTION (#home)
   ------------------------------------------ */
.hero-section {
  position: relative;
  padding: 100px 0 70px 0;
  min-height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
}

#particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 22px;
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.3);
  border-radius: 30px;
  color: var(--primary-cyan);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.2);
}

.hero-title {
  font-size: 50px;
  font-weight: 900;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}

.gradient-text {
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-description {
  font-size: 17px;
  color: #94a3b8;
  line-height: 1.75;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 35px;
}

.btn-primary-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 42px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  background: var(--gradient-neon);
  border-radius: 40px;
  box-shadow: 0 10px 30px rgba(0, 242, 254, 0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary-glow:hover {
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 18px 45px rgba(0, 242, 254, 0.7);
  color: #ffffff;
}

.btn-secondary-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 40px;
  transition: all 0.3s ease;
}

.btn-secondary-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-cyan);
  color: var(--primary-cyan);
  transform: translateY(-3px);
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 18px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.stat-box h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary-cyan);
}

.stat-box p {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero Right Image & Badge */
.hero-visual {
  position: relative;
  text-align: center;
}

.hero-visual img {
  max-width: 78%;
  max-height: 380px;
  height: auto;
  border-radius: 20px;
  animation: floatImage 4.5s ease-in-out infinite alternate;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
}

@keyframes floatImage {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-26px) rotate(1.5deg); }
}

.floating-yield-box {
  position: absolute;
  bottom: 10px;
  left: -20px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(0, 242, 254, 0.35);
  backdrop-filter: blur(20px);
  padding: 18px 26px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
  animation: badgeFloat 5.5s ease-in-out infinite alternate;
}

@keyframes badgeFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-18px); }
}

.yield-icon-box {
  width: 48px;
  height: 48px;
  background: var(--gradient-neon);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 22px;
}

.yield-text h5 {
  font-size: 13px;
  color: var(--text-muted);
}

.yield-text p {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-emerald);
}

/* ------------------------------------------
   SECTION COMMON STYLES
   ------------------------------------------ */
.section-padding {
  padding: 110px 0;
}

.section-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-subtitle-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: var(--primary-cyan);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.section-main-title {
  font-size: 42px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
}

/* ------------------------------------------
   ABOUT US SECTION (#about)
   ------------------------------------------ */
.about-section {
  background: var(--bg-dark-2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-card {
  background: var(--glass-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(25px);
  padding: 50px;
  border-radius: 30px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--gradient-neon);
}

.about-text {
  color: #cbd5e1;
  font-size: 16.5px;
  line-height: 1.85;
  margin: 20px 0 30px 0;
}

.about-badges-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 35px;
}

.about-badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 20px;
  border-radius: 14px;
  font-size: 14.5px;
  font-weight: 600;
}

.about-badge-item i {
  color: var(--primary-cyan);
  font-size: 18px;
}

.about-visual img {
  max-width: 100%;
  border-radius: 28px;
  animation: floatImage 5s ease-in-out infinite alternate;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.6));
}

/* ------------------------------------------
   FEATURES SECTION (#features)
   ------------------------------------------ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-item-card {
  background: var(--glass-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(25px);
  border-radius: 30px;
  padding: 45px 36px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.feature-item-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-neon);
  opacity: 0.3;
  transition: opacity 0.4s ease;
}

.feature-item-card:hover {
  transform: translateY(-14px);
  border-color: rgba(0, 242, 254, 0.5);
  box-shadow: 0 30px 65px rgba(0, 242, 254, 0.2);
  background: rgba(22, 33, 56, 0.95);
}

.feature-item-card:hover::before {
  opacity: 1;
}

.feature-icon-box {
  width: 76px;
  height: 76px;
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.25);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  transition: all 0.4s ease;
}

.feature-item-card:hover .feature-icon-box {
  background: var(--gradient-neon);
  transform: scale(1.12) rotate(6deg);
  box-shadow: 0 12px 30px rgba(0, 242, 254, 0.5);
}

.feature-icon-box img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  transition: filter 0.3s ease;
}

.feature-item-card:hover .feature-icon-box img {
  filter: brightness(0) invert(1);
}

.feature-item-card h4 {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
}

.feature-item-card p {
  color: #94a3b8;
  font-size: 15px;
  line-height: 1.8;
}

/* ------------------------------------------
   CALCULATOR SECTION (#calculator)
   ------------------------------------------ */
.calc-section {
  background: var(--bg-dark-2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.calc-card-box {
  background: var(--glass-bg);
  border: 1px solid rgba(0, 242, 254, 0.3);
  backdrop-filter: blur(25px);
  border-radius: 30px;
  padding: 50px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}

.calc-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  color: #cbd5e1;
  margin-bottom: 16px;
}

.calc-amount-text {
  color: var(--primary-cyan);
  font-size: 28px;
  font-weight: 800;
}

.range-slider-input {
  width: 100%;
  height: 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  -webkit-appearance: none;
  margin-bottom: 45px;
}

.range-slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gradient-neon);
  cursor: pointer;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.8);
}

.calc-outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.outcome-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px 20px;
  border-radius: 20px;
}

.outcome-box h4 {
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.outcome-box p {
  font-size: 30px;
  font-weight: 800;
  color: var(--primary-emerald);
}

/* ------------------------------------------
   ROADMAP SECTION (#roadmap)
   ------------------------------------------ */
.roadmap-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.roadmap-card {
  background: var(--glass-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(25px);
  border-radius: 24px;
  padding: 35px 28px;
  position: relative;
  transition: all 0.4s ease;
}

.roadmap-card.active-phase {
  border-color: rgba(0, 242, 254, 0.45);
  box-shadow: 0 15px 40px rgba(0, 242, 254, 0.2);
}

.phase-tag {
  display: inline-block;
  padding: 4px 14px;
  background: var(--gradient-neon);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.roadmap-card h4 {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.roadmap-card ul {
  list-style: none;
  padding: 0;
}

.roadmap-card ul li {
  color: #94a3b8;
  font-size: 14.5px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.roadmap-card ul li i {
  color: var(--primary-cyan);
}

/* ------------------------------------------
   CONTACT SECTION (#contact)
   ------------------------------------------ */
.contact-section {
  background: var(--bg-dark-2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.contact-info-card {
  background: var(--glass-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(25px);
  padding: 45px;
  border-radius: 28px;
}

.info-item-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.info-icon-circle {
  width: 56px;
  height: 56px;
  background: var(--gradient-neon);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 22px;
}

.info-text-group h5 {
  font-size: 14px;
  color: var(--text-muted);
}

.info-text-group p {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.contact-form-box {
  background: var(--glass-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(25px);
  padding: 45px;
  border-radius: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-input {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-input:focus {
  border-color: var(--primary-cyan);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.3);
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

/* ------------------------------------------
   FOOTER
   ------------------------------------------ */
.main-footer {
  background: var(--bg-dark-1);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 80px 0 30px 0;
}

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

.footer-brand a {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 900;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-bottom: 16px;
}

.footer-brand p {
  color: #94a3b8;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.social-icons-list {
  display: flex;
  gap: 12px;
  list-style: none;
}

.social-icons-list li a {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icons-list li a:hover {
  background: var(--gradient-neon);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 242, 254, 0.4);
}

.social-icons-list li a img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.footer-column h4 {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background: var(--gradient-neon);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links li a {
  color: #94a3b8;
  font-size: 15px;
  transition: all 0.3s ease;
}

.footer-links li a:hover {
  color: var(--primary-cyan);
  padding-left: 6px;
}

.footer-bottom-bar {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #64748b;
  font-size: 14.5px;
}

.footer-bottom-bar a {
  color: var(--primary-cyan);
  font-weight: 600;
}

/* Responsive Rules */
@media (max-width: 991px) {
  .hero-container, .about-grid, .contact-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid, .calc-outcomes-grid, .roadmap-timeline {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 40px;
  }
  
  .nav-menu {
    display: none;
  }
}
