@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500;600;700&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg-dark: #050811;
  --bg-card: rgba(11, 16, 28, 0.65);
  --bg-card-hover: rgba(16, 24, 42, 0.85);
  --bg-code: #0a0e19;
  
  --border-light: rgba(0, 242, 254, 0.12);
  --border-hover: rgba(29, 233, 182, 0.45);
  --border-glow: rgba(0, 242, 254, 0.25);
  
  --text-main: #ffffff;
  --text-muted: #7b89a3;
  --text-light-gray: #a0aec0;
  
  --accent-teal: #1de9b6;
  --accent-cyan: #00f2fe;
  --accent-purple: #a855f7;
  --accent-gold: #ffc107;
  --accent-pink: #ec4899;
  
  --accent-teal-glow: rgba(29, 233, 182, 0.25);
  --accent-cyan-glow: rgba(0, 242, 254, 0.2);
  
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --font-code: 'Fira Code', monospace;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

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

/* Background Canvas & Mesh Grid */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
}

/* Custom Cyber Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #050811;
}
::-webkit-scrollbar-thumb {
  background: #1de9b6;
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(29, 233, 182, 0.6);
}
::-webkit-scrollbar-thumb:hover {
  background: #00ff87;
  box-shadow: 0 0 20px rgba(0, 255, 135, 0.9);
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: 
    radial-gradient(circle at 15% 15%, rgba(29, 233, 182, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 85% 40%, rgba(0, 242, 254, 0.1) 0%, transparent 45%),
    radial-gradient(circle at 50% 85%, rgba(29, 233, 182, 0.08) 0%, transparent 50%);
  z-index: -1;
  pointer-events: none;
}

/* Cyber Grid Lines overlay */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: 
    linear-gradient(rgba(0, 242, 254, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 242, 254, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: -1;
  pointer-events: none;
  opacity: 0.7;
}

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

@keyframes pulseGlow {
  0%, 100% { opacity: 0.4; filter: drop-shadow(0 0 15px var(--accent-teal)); }
  50% { opacity: 0.8; filter: drop-shadow(0 0 25px var(--accent-cyan)); }
}

.anim-1 { animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; opacity: 0; }
.anim-2 { animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards; opacity: 0; }
.anim-3 { animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards; opacity: 0; }
.anim-4 { animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards; opacity: 0; }
.anim-5 { animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards; opacity: 0; }

/* Typography */
h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

h1 {
  font-size: 4.25rem;
  margin-bottom: 1.25rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

p {
  color: var(--text-light-gray);
  font-size: 1.1rem;
}

.text-teal {
  color: #1de9b6;
  text-shadow: 0 0 25px rgba(29, 233, 182, 0.5);
}

.text-gradient {
  color: #1de9b6;
  text-shadow: 0 0 25px rgba(29, 233, 182, 0.5);
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
}

.code-font {
  font-family: var(--font-code);
}

/* Hero Cyber Badge & Hero Chips */
.cyber-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-code);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-teal);
  background: rgba(29, 233, 182, 0.08);
  border: 1px solid rgba(29, 233, 182, 0.3);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(29, 233, 182, 0.15);
  backdrop-filter: blur(10px);
}

.hero-chips-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-code);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  background: rgba(11, 16, 28, 0.75);
  border: 1px solid rgba(0, 242, 254, 0.25);
  padding: 0.5rem 1.1rem;
  border-radius: 30px;
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
}

.hero-chip ion-icon {
  color: var(--accent-teal);
  font-size: 1.1rem;
}

.hero-chip:hover {
  border-color: var(--accent-teal);
  background: rgba(29, 233, 182, 0.12);
  box-shadow: 0 0 20px rgba(29, 233, 182, 0.3);
  transform: translateY(-3px);
}

a {
  color: var(--text-main);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-teal);
}

/* Layout */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navbar */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 1.2rem 0;
  background: rgba(5, 8, 17, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-light);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
}

.logo img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 0 12px var(--accent-teal));
  transition: var(--transition);
}

.logo:hover img {
  filter: drop-shadow(0 0 20px var(--accent-teal));
  transform: scale(1.05);
}

.logo-tag {
  font-family: var(--font-code);
  font-size: 0.75rem;
  color: var(--accent-cyan);
  background: rgba(0, 242, 254, 0.1);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  border: 1px solid rgba(0, 242, 254, 0.2);
}

.nav-links {
  display: flex;
  gap: 2.2rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-light-gray);
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-teal), var(--accent-cyan));
  transition: var(--transition);
  border-radius: 2px;
}

.nav-links a:hover {
  color: var(--text-main);
}

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

.nav-actions {
  display: flex;
  gap: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-cyan) 100%);
  color: #030712;
  box-shadow: 0 0 20px rgba(29, 233, 182, 0.35);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: rotate(45deg) translateY(-100%);
  transition: transform 0.6s ease;
}

.btn-primary:hover::before {
  transform: rotate(45deg) translateY(100%);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 242, 254, 0.55);
  color: #000;
}

.btn-outline {
  background: rgba(11, 16, 28, 0.6);
  color: var(--text-main);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(0, 242, 254, 0.08);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
  transform: translateY(-2px);
}

.nav-btn {
  padding: 0.6rem 1.4rem;
  font-size: 0.9rem;
}

.btn-text {
  color: var(--text-light-gray);
  font-weight: 600;
  padding: 0.6rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-text:hover {
  color: var(--accent-teal);
  gap: 0.8rem;
}

/* Badge Tags */
.tech-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-code);
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.2);
  color: var(--accent-cyan);
  margin-right: 0.4rem;
  margin-bottom: 0.4rem;
}

/* Hero Section */
.hero {
  padding: 11rem 0 5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.cyber-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-code);
  font-size: 0.85rem;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  background: rgba(11, 16, 28, 0.8);
  border: 1px solid var(--accent-teal);
  box-shadow: 0 0 15px rgba(29, 233, 182, 0.2);
  color: var(--accent-teal);
  margin-bottom: 1.5rem;
}

.hero p {
  max-width: 680px;
  margin: 0 auto 2.5rem;
  font-size: 1.2rem;
  color: var(--text-light-gray);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

/* IDE Code Terminal Mockup */
.hero-ide {
  width: 100%;
  max-width: 860px;
  background: var(--bg-code);
  border: 1px solid var(--border-hover);
  border-radius: 12px;
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(0, 242, 254, 0.15);
  overflow: hidden;
  text-align: left;
  margin: 0 auto 3rem;
  position: relative;
  transition: var(--transition);
}

.hero-ide:hover {
  border-color: var(--accent-teal);
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.7),
    0 0 40px rgba(29, 233, 182, 0.25);
}

.ide-header {
  background: rgba(15, 23, 42, 0.9);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ide-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot-red { background-color: #ff5f56; }
.dot-yellow { background-color: #ffbd2e; }
.dot-green { background-color: #27c93f; }

.ide-title {
  font-family: var(--font-code);
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ide-status {
  font-family: var(--font-code);
  font-size: 0.75rem;
  color: var(--accent-teal);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.ide-body {
  padding: 1.5rem;
  font-family: var(--font-code);
  font-size: 0.95rem;
  line-height: 1.7;
  color: #e2e8f0;
  overflow-x: auto;
  min-height: 220px;
}

/* Syntax Highlighting Colors */
.code-kw { color: #f43f5e; font-weight: 600; } /* keyword */
.code-func { color: #38bdf8; } /* function */
.code-str { color: #34d399; } /* string */
.code-var { color: #fbbf24; } /* variable */
.code-comment { color: #64748b; font-style: italic; } /* comment */
.code-num { color: #a78bfa; } /* number */

.typing-cursor {
  display: inline-block;
  width: 8px;
  height: 1.1em;
  background-color: var(--accent-teal);
  vertical-align: middle;
  margin-left: 2px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Live Pulse Dot */
.live-dot {
  width: 9px;
  height: 9px;
  background-color: var(--accent-teal);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px var(--accent-teal);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(29, 233, 182, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 8px rgba(29, 233, 182, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(29, 233, 182, 0); }
}

/* Stats Ticker Section */
.stats-ticker {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: rgba(11, 16, 28, 0.7);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 1.75rem 2rem;
  margin-bottom: 6rem;
  backdrop-filter: blur(16px);
  width: 100%;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-family: var(--font-code);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--accent-teal);
  text-shadow: 0 0 15px rgba(29, 233, 182, 0.3);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-top: 0.25rem;
}

/* Plans Section */
.plans-section {
  padding: 0 0 6rem;
}

.plans-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

/* Plan Card Spec CTA Link */
.plan-spec-cta {
  margin-top: 1rem;
  color: var(--accent-teal);
  font-weight: 700;
  font-family: var(--font-code);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  position: relative;
  transition: var(--transition);
}

.plan-spec-cta .cta-arrow {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.plan-card:hover .plan-spec-cta {
  color: #00ff87;
  text-shadow: 0 0 15px rgba(29, 233, 182, 0.7);
}

.plan-card:hover .plan-spec-cta .cta-arrow {
  transform: translateX(8px);
}

.plan-spec-cta::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #1de9b6, #00f2fe);
  box-shadow: 0 0 10px #1de9b6;
  transition: width 0.35s ease;
}

.plan-card:hover .plan-spec-cta::after {
  width: 100%;
}
.plan-card, .card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-top: 1px solid rgba(29, 233, 182, 0.25);
  border-radius: 16px;
  padding: 2rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Interactive Spotlight Gradient Follower */
.plan-card::before, .card::before {
  content: '';
  position: absolute;
  top: var(--mouse-y, -100px);
  left: var(--mouse-x, -100px);
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(29, 233, 182, 0.18) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.plan-card:hover::before, .card:hover::before {
  opacity: 1;
}

.plan-card:hover, .card:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-teal);
  transform: translateY(-7px) scale(1.015);
  box-shadow: 
    0 20px 45px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(29, 233, 182, 0.2);
}

.plan-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.plan-icon {
  font-size: 1.5rem;
  color: var(--accent-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(29, 233, 182, 0.12);
  border: 1px solid rgba(29, 233, 182, 0.25);
  width: 42px;
  height: 42px;
  border-radius: 10px;
}

.plan-header h3 {
  font-size: 1.35rem;
  color: var(--text-main);
  margin: 0;
}

.plan-content {
  border-left: 2px solid rgba(0, 242, 254, 0.2);
  padding-left: 1.2rem;
  margin-left: 0.5rem;
  transition: var(--transition);
  margin-bottom: 1.5rem;
}

.plan-content p {
  font-size: 0.98rem;
  color: var(--text-light-gray);
  margin: 0;
}

.plan-card:hover .plan-content {
  border-left-color: var(--accent-teal);
}

/* Features Grid */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.75rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 6rem;
}

.card-icon {
  width: 52px;
  height: 52px;
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-size: 1.65rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.1);
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.card p {
  font-size: 0.98rem;
  color: var(--text-light-gray);
  line-height: 1.65;
}

/* Futuristic CTA Banner Section */
.cta-section {
  margin-top: 2rem;
  margin-bottom: 6rem;
}

.cta-card {
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: 20px;
  padding: 3.5rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.6),
    0 0 35px rgba(29, 233, 182, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  transition: var(--transition);
}

.cta-card:hover {
  border-color: var(--accent-teal);
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.7),
    0 0 45px rgba(29, 233, 182, 0.25);
  transform: translateY(-4px);
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-teal), var(--accent-cyan), var(--accent-teal));
  box-shadow: 0 0 15px var(--accent-teal);
}

.cta-card h2 {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 0;
}

.cta-card p {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.15rem;
  color: var(--text-light-gray);
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

/* FAQ Grid Styling */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

.faq-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.75rem;
  transition: var(--transition);
  backdrop-filter: blur(12px);
}

.faq-card:hover {
  border-color: var(--accent-teal);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 25px rgba(29, 233, 182, 0.15);
  transform: translateY(-3px);
}

.faq-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.faq-card h4 ion-icon {
  color: var(--accent-teal);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.faq-card p {
  color: var(--text-light-gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Forms */
.contact-form {
  max-width: 550px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}

.input-group label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
  font-family: var(--font-code);
}

.form-control {
  background: rgba(10, 14, 25, 0.8);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  color: white;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.2);
  background: rgba(15, 23, 42, 0.9);
}

/* Generic Pages */
.page-header {
  padding: 11rem 0 4rem;
  text-align: center;
}

/* Enhanced Footer */
footer {
  border-top: 1px solid var(--border-light);
  position: relative;
  padding: 5rem 0 2.5rem;
  margin-top: 6rem;
  background: rgba(5, 8, 17, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-teal), var(--accent-cyan), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-heading {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-menu a {
  color: var(--text-light-gray);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}

.footer-menu a:hover {
  color: var(--accent-teal);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Scroll indicator */
.scroll-indicator {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(0, 242, 254, 0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-indicator::before {
  content: '';
  width: 4px;
  height: 8px;
  background-color: var(--accent-teal);
  border-radius: 2px;
  animation: pulseScroll 2s infinite;
}

@keyframes pulseScroll {
  0% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(10px); opacity: 1; }
  100% { transform: translateY(0); opacity: 0.5; }
}

/* Responsive Design System */
@media (max-width: 992px) {
  .plans-list, .features-grid { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 1.5rem; 
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  h1 { 
    font-size: 2.2rem !important; 
    line-height: 1.25 !important;
    margin-bottom: 1rem !important;
  }

  h2 {
    font-size: 1.75rem !important;
  }

  p {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
  }

  /* Navbar Mobile Optimization */
  nav {
    padding: 0.65rem 0 !important;
  }

  .nav-container {
    padding: 0 0.5rem !important;
    gap: 0.5rem !important;
  }

  .logo {
    font-size: 1.25rem !important;
    gap: 0.4rem !important;
  }

  .logo img {
    height: 32px !important;
  }

  .nav-links { 
    display: none !important; 
  }

  .nav-actions .btn, .nav-btn {
    padding: 0.35rem 0.65rem !important;
    font-size: 0.72rem !important;
    white-space: nowrap !important;
    border-radius: 8px !important;
  }

  /* Hero Section & Page Header Mobile Optimization */
  .hero { 
    padding: 6.5rem 0 2.5rem !important; 
  }

  .page-header {
    padding: 7.5rem 0 2rem !important;
    text-align: center !important;
  }

  .cyber-badge {
    font-size: 0.7rem !important;
    padding: 0.35rem 0.75rem !important;
    margin-bottom: 1rem !important;
  }

  .hero p {
    font-size: 0.95rem !important;
    margin-bottom: 1.6rem !important;
    padding: 0 0.5rem !important;
  }

  .hero-actions {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 320px !important;
    gap: 0.85rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 2.5rem !important;
  }

  .hero-actions .btn {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 0.85rem 1rem !important;
    font-size: 0.92rem !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
  }

  /* Stats Ticker Mobile 2x2 Grid */
  .stats-ticker {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 0.5rem;
    padding: 1.2rem 1rem;
    width: 100%;
    margin-bottom: 2.5rem;
  }

  .stat-value {
    font-size: 1.6rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  /* Cards & Lists Single Column */
  .plans-list, .features-grid { 
    grid-template-columns: 1fr; 
    gap: 1.25rem;
  }

  .card, .plan-card, .faq-card, .cta-card {
    padding: 1.5rem 1.25rem;
    border-radius: 12px;
  }

  /* Terminal IDE Mockup Touch Scroll */
  .hero-ide {
    margin-bottom: 2rem;
    border-radius: 10px;
  }

  .code-content {
    font-size: 0.78rem;
    padding: 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Footer Mobile Layout */
  footer {
    padding: 3.5rem 0 2rem;
    margin-top: 4rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-col {
    align-items: center;
    text-align: center;
  }

  .footer-col p {
    max-width: 100% !important;
  }

  .footer-menu {
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.6rem;
    text-align: center;
    padding-top: 1.5rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.1rem;
  }

  .logo {
    font-size: 1.2rem;
  }

  .logo img {
    height: 32px;
  }
}

/* Mobile Hamburger Menu Toggle Button & Overlay Drawer */
.mobile-menu-toggle {
  display: none;
  background: rgba(29, 233, 182, 0.1);
  border: 1px solid rgba(29, 233, 182, 0.3);
  color: var(--accent-teal);
  font-size: 1.4rem;
  padding: 0.35rem 0.6rem;
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  margin-left: 0.5rem;
}

.mobile-menu-toggle:hover {
  background: rgba(29, 233, 182, 0.2);
  box-shadow: 0 0 15px rgba(29, 233, 182, 0.4);
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 8, 17, 0.96);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-content {
  width: 85%;
  max-width: 360px;
  background: rgba(11, 16, 28, 0.95);
  border: 1px solid var(--border-hover);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(29, 233, 182, 0.15);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  cursor: pointer;
  transition: var(--transition);
}

.mobile-menu-close:hover {
  color: var(--accent-teal);
  transform: rotate(90deg);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

.mobile-nav-links a {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: var(--accent-teal);
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: inline-flex !important;
  }
}
