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

:root {
  /* Colors */
  --primary: #5b6ef5;
  --primary-dark: #4a5ce0;
  --primary-light: #8a99fa;
  --secondary: #7c3aed;
  --accent: #a855f7;
  --success: #16a34a;
  --danger: #dc2626;
  --warning: #d97706;
  
  /* Grays */
  --bg: #ffffff;
  --bg-soft: #f8f7ff;
  --bg-card: #ffffff;
  --border: rgba(91, 110, 245, 0.14);
  --border-strong: rgba(91, 110, 245, 0.3);
  
  /* Text */
  --text-primary: #12132a;
  --text-secondary: #4b5280;
  --text-muted: #6b7280;
  --text-light: #9098c0;
  
  /* Gradients */
  --grad-primary: linear-gradient(135deg, #5b6ef5 0%, #7c3aed 100%);
  --grad-soft: linear-gradient(135deg, rgba(91, 110, 245, 0.08), rgba(124, 58, 237, 0.06));
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(18, 19, 42, 0.06);
  --shadow-md: 0 4px 16px rgba(18, 19, 42, 0.08);
  --shadow-lg: 0 8px 32px rgba(18, 19, 42, 0.12);
  --shadow-glow: 0 4px 24px rgba(91, 110, 245, 0.2);
  
  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  
  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  /* Transitions */
  --t-fast: all 0.2s ease;
  --t-normal: all 0.3s ease;
  --t-slow: all 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
  color: var(--text-secondary);
  line-height: 1.7;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--t-fast);
}

a:hover {
  color: var(--secondary);
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Sections */
.section {
  padding: 96px 0;
}

.section-header {
  max-width: 700px;
  margin: 0 auto 56px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.center {
  text-align: center;
}

.gradient-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--t-normal);
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad-primary);
  color: white;
  box-shadow: 0 4px 16px rgba(91, 110, 245, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(91, 110, 245, 0.4);
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-strong);
}

.btn-outline:hover {
  background: var(--bg-soft);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn-small {
  padding: 8px 16px;
  font-size: 0.85rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: var(--t-normal);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--grad-primary);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: white;
  box-shadow: 0 4px 12px rgba(91, 110, 245, 0.3);
}

.logo-text {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.logo-text span {
  color: var(--primary);
}

/* Navigation Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--text-secondary);
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(91, 110, 245, 0.08);
  color: var(--primary);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--t-fast);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  flex-direction: column;
  gap: 8px;
  z-index: 999;
  box-shadow: var(--shadow-md);
}

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

.mobile-menu a {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--text-secondary);
}

.mobile-menu a:hover {
  background: rgba(91, 110, 245, 0.08);
  color: var(--primary);
}

.mobile-menu .btn {
  margin-top: 8px;
  justify-content: center;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(160deg, #f8f7ff 0%, #f0f2ff 50%, #f8f7ff 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(91, 110, 245, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 110, 245, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.hero-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.live-badge {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero-title {
  margin-bottom: 24px;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-value {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-primary);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Browser Mockup */
.browser-mockup {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.browser-bar {
  background: #f5f4ff;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #febc2e; }
.browser-dots span:nth-child(3) { background: #28c840; }

.browser-url {
  flex: 1;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-light);
}

.browser-content {
  padding: 24px;
  background: #faf9ff;
}

/* WordPress Dashboard Preview */
.wp-dash-preview {
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
}

.wp-admin-bar {
  background: #1d2327;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wp-logo {
  width: 20px;
  height: 20px;
  background: var(--grad-primary);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
}

.wp-site-name {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

.wp-dash-layout {
  display: flex;
  height: 260px;
}

.wp-sidebar-mini {
  width: 48px;
  background: #f8f8f8;
  border-right: 1px solid #e5e5e5;
  padding: 8px 0;
}

.wp-menu-item {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #666;
}

.wp-menu-item.active {
  background: rgba(91, 110, 245, 0.1);
  color: var(--primary);
  border-right: 2px solid var(--primary);
}

.wp-main-panel {
  flex: 1;
  padding: 16px;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.panel-header h4 {
  font-size: 0.9rem;
  font-weight: 600;
}

.badge-soft {
  background: rgba(22, 163, 74, 0.1);
  color: var(--success);
  padding: 4px 8px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
}

.reset-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.option-card {
  background: #f9f8ff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--t-fast);
}

.option-card.selected {
  border-color: var(--primary);
  background: rgba(91, 110, 245, 0.05);
}

.option-icon {
  font-size: 1.2rem;
}

.option-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.option-details strong {
  font-size: 0.8rem;
}

.option-details small {
  font-size: 0.7rem;
  color: var(--text-light);
}

.backup-indicator {
  background: rgba(91, 110, 245, 0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.reset-confirm {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reset-confirm input {
  flex: 1;
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-primary);
}

.btn-reset {
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--t-fast);
}

.btn-reset:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

/* Trust Bar */
.trust-bar {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-weight: 500;
}

.check-icon {
  color: var(--success);
  font-weight: 700;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--t-normal);
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-glow);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--grad-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 20px;
  box-shadow: 0 8px 16px rgba(91, 110, 245, 0.2);
}

.feature-card h3 {
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Comparison Section */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.comparison-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.card-header {
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}

.card-header.soft {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.05), rgba(22, 163, 74, 0.02));
}

.card-header.nuclear {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.05), rgba(220, 38, 38, 0.02));
}

.mode-icon {
  font-size: 2rem;
}

.card-header h3 {
  flex: 1;
  margin: 0;
}

.badge {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

.badge.success {
  background: rgba(22, 163, 74, 0.1);
  color: var(--success);
}

.badge.danger {
  background: rgba(220, 38, 38, 0.1);
  color: var(--danger);
}

.feature-list {
  padding: 24px;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  color: var(--text-secondary);
}

.check {
  color: var(--success);
  font-weight: 700;
}

.cross {
  color: var(--danger);
  font-weight: 700;
}

/* Steps */
.steps-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
  margin-top: 40px;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 100px;
  right: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
  opacity: 0.3;
}

.step-item {
  text-align: center;
  padding: 20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--grad-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(91, 110, 245, 0.3);
}

.step-item h4 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.step-item p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Use Cases Grid */
.usecases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.usecase-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--t-normal);
}

.usecase-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.usecase-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.usecase-card h4 {
  margin-bottom: 8px;
}

.usecase-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}

.quote {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 24px;
  font-style: italic;
}

.author {
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.author strong {
  display: block;
  margin-bottom: 4px;
}

.author span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* CTA Section */
.cta-section {
  position: relative;
  padding: 96px 0;
  background: linear-gradient(135deg, #f0f2ff 0%, #f8f7ff 100%);
  overflow: hidden;
}

.cta-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(91, 110, 245, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 50%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
}

.cta-content {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.cta-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cta-note {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Footer */
.footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

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

.footer-brand p {
  margin: 16px 0 20px;
  color: var(--text-light);
  max-width: 250px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 36px;
  height: 36px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--t-fast);
}

.social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.footer-links h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 20px;
}

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

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

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
  color: var(--text-light);
  font-size: 0.85rem;
}

.footer-bottom strong {
  color: var(--text-primary);
}

/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Delays */
.card-1 { transition-delay: 0.1s; }
.card-2 { transition-delay: 0.2s; }
.card-3 { transition-delay: 0.3s; }
.card-4 { transition-delay: 0.4s; }
.card-5 { transition-delay: 0.5s; }
.card-6 { transition-delay: 0.6s; }

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .features-grid,
  .usecases-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .steps-container {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .steps-container::before {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta .btn-outline {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .section {
    padding: 64px 0;
  }
  
  .features-grid,
  .usecases-grid,
  .testimonials-grid,
  .comparison-grid {
    grid-template-columns: 1fr;
  }
  
  .steps-container {
    grid-template-columns: 1fr;
  }
  
  .trust-items {
    gap: 24px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}

/* ============================================
   PAGE HERO (COMMON FOR ALL PAGES)
   ============================================ */
.page-hero {
  position: relative;
  padding: 140px 0 60px;
  background: linear-gradient(160deg, #f8f7ff 0%, #f0f2ff 100%);
  text-align: center;
  overflow: hidden;
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* ============================================
   DOCUMENTATION PAGE SPECIFIC STYLES
   ============================================ */

/* Docs Hero Section */
.docs-hero {
  position: relative;
  padding: 140px 0 80px;
  background: linear-gradient(160deg, #f8f7ff 0%, #f0f2ff 100%);
  overflow: hidden;
}

.docs-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: var(--text-secondary);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--primary);
}

.breadcrumbs span {
  color: var(--text-light);
}

.lead {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin: 24px 0 32px;
  line-height: 1.8;
}

/* Docs Search */
.docs-search {
  display: flex;
  max-width: 500px;
  margin: 0 auto 32px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 100px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.docs-search input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  outline: none;
  font-size: 0.95rem;
  font-family: var(--font-sans);
}

.docs-search input::placeholder {
  color: var(--text-light);
}

.search-btn {
  background: white;
  border: none;
  padding: 0 24px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--t-fast);
  border-left: 1px solid var(--border);
}

.search-btn:hover {
  background: var(--bg-soft);
}

/* Quick Links */
.quick-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.quick-links span {
  color: var(--text-muted);
}

.quick-link {
  padding: 6px 14px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--t-fast);
}

.quick-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* Hero Decoration */
.hero-decoration {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.decoration-circle {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 110, 245, 0.1) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
}

.decoration-dots {
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 300px;
  height: 300px;
  background-image: radial-gradient(var(--primary-light) 2px, transparent 2px);
  background-size: 30px 30px;
  opacity: 0.2;
  animation: float 12s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -20px); }
}

/* Docs Layout */
.docs-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  padding: 60px 0 80px;
  align-items: start;
}

/* Sidebar */
.docs-sidebar {
  position: sticky;
  top: 90px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.sidebar-header h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.sidebar-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text-muted);
}

.sidebar-nav {
  margin-bottom: 24px;
}

.docs-nav {
  list-style: none;
  padding: 0;
}

.nav-section {
  margin-bottom: 20px;
}

.nav-section-title {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.nav-section ul {
  list-style: none;
  padding-left: 12px;
}

.nav-section li {
  margin-bottom: 4px;
}

.nav-link {
  display: block;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--t-fast);
}

.nav-link:hover {
  background: rgba(91, 110, 245, 0.08);
  color: var(--primary);
}

.nav-link.active {
  background: var(--primary);
  color: white;
  font-weight: 500;
}

/* Sidebar CTA */
.sidebar-cta {
  background: linear-gradient(135deg, #f8f7ff 0%, #f0f2ff 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}

.cta-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.sidebar-cta h5 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.sidebar-cta p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* Main Content */
.docs-section {
  margin-bottom: 60px;
  scroll-margin-top: 90px;
}

.docs-section h2 {
  margin-bottom: 32px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.docs-section h3 {
  margin: 32px 0 16px;
  color: var(--text-primary);
}

/* Installation Methods */
.install-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.method-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--t-normal);
}

.method-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.method-header {
  background: var(--bg-soft);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}

.method-number {
  width: 28px;
  height: 28px;
  background: var(--grad-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
}

.method-header h3 {
  flex: 1;
  margin: 0;
  font-size: 1rem;
}

.badge.recommended {
  background: var(--success);
  color: white;
  padding: 4px 8px;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
}

.method-content {
  padding: 20px;
}

.method-content ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

.method-content li {
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.method-note {
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}

.note-icon {
  color: var(--success);
  font-weight: 700;
}

/* Code Blocks */
.code-block {
  background: #1e1e2e;
  border-radius: var(--radius-md);
  margin: 16px 0;
  overflow: hidden;
}

.code-header {
  background: #2d2d3a;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #3d3d4a;
}

.code-header span {
  color: #abb2bf;
  font-size: 0.8rem;
  font-family: var(--font-mono);
}

.copy-btn {
  background: #3d3d4a;
  border: none;
  border-radius: 4px;
  padding: 4px 10px;
  color: white;
  font-size: 0.75rem;
  cursor: pointer;
  transition: var(--t-fast);
}

.copy-btn:hover {
  background: var(--primary);
}

.code-block pre {
  margin: 0;
  padding: 16px;
}

.code-block code {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  line-height: 1.6;
}

.inline-code {
  background: #1e1e2e;
  color: #e5e5e5;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-family: var(--font-mono);
}

/* Alert Boxes */
.alert-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-md);
  margin: 24px 0;
}

.alert-box.success {
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.2);
}

.alert-box.info {
  background: rgba(91, 110, 245, 0.08);
  border: 1px solid rgba(91, 110, 245, 0.2);
}

.alert-box.warning {
  background: rgba(217, 119, 6, 0.08);
  border: 1px solid rgba(217, 119, 6, 0.2);
}

.alert-box.danger {
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.alert-icon {
  font-size: 1.5rem;
}

.alert-content {
  flex: 1;
}

.alert-content strong {
  display: block;
  margin-bottom: 4px;
}

.alert-content p {
  margin: 0;
  color: var(--text-secondary);
}

/* Requirements Grid */
.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 24px 0;
}

.requirement-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--t-fast);
}

.requirement-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.req-icon {
  font-size: 2rem;
}

.req-details h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.req-details p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.req-badge {
  background: rgba(91, 110, 245, 0.1);
  color: var(--primary);
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 500;
}

.req-badge.compatible {
  background: rgba(22, 163, 74, 0.1);
  color: var(--success);
}

/* Timeline Steps */
.steps-timeline {
  margin: 32px 0;
}

.timeline-step {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  position: relative;
}

.timeline-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 50px;
  bottom: -20px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), transparent);
}

.step-indicator {
  width: 40px;
  height: 40px;
  background: var(--grad-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.step-content {
  flex: 1;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.step-content h3 {
  margin: 0 0 12px 0;
  font-size: 1.1rem;
}

.step-content p {
  margin-bottom: 12px;
}

.step-content ul,
.step-content ol {
  padding-left: 20px;
}

/* Tip Box */
.tip-box {
  background: rgba(91, 110, 245, 0.08);
  border: 1px solid var(--primary-light);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  gap: 16px;
  margin: 24px 0;
}

.tip-icon {
  font-size: 1.5rem;
}

.tip-content {
  flex: 1;
  color: var(--text-secondary);
}

/* Mode Intro */
.mode-intro {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 32px;
}

.mode-intro.soft {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.05), rgba(22, 163, 74, 0.02));
  border-color: rgba(22, 163, 74, 0.2);
}

.mode-intro.nuclear {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.05), rgba(220, 38, 38, 0.02));
  border-color: rgba(220, 38, 38, 0.2);
}

.mode-icon-large {
  font-size: 4rem;
}

.mode-description h3 {
  margin: 0 0 8px 0;
}

.mode-description p {
  margin: 0;
  font-size: 1.05rem;
}

/* Split Layout */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0;
}

.split-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.split-card.deleted {
  border-color: rgba(220, 38, 38, 0.3);
}

.split-card.kept {
  border-color: rgba(22, 163, 74, 0.3);
}

.split-card h4 {
  margin-bottom: 16px;
  font-size: 1rem;
}

.checklist {
  list-style: none;
  padding: 0;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

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

.list-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

.checklist.delete .list-icon {
  color: var(--danger);
}

.checklist.keep .list-icon {
  color: var(--success);
}

/* Instruction Steps */
.instruction-steps {
  margin: 32px 0;
}

.instruction-step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  margin-bottom: 24px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  align-items: center;
}

.instruction-step.reverse {
  grid-template-columns: 1fr 120px;
}

.instruction-step.reverse .step-media {
  order: 2;
}

.instruction-step.reverse .step-text {
  order: 1;
}

.step-media {
  width: 120px;
  height: 80px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.step-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-media.warning-bg {
  background: rgba(220, 38, 38, 0.1);
  font-size: 2rem;
}

.step-badge {
  display: inline-block;
  background: rgba(91, 110, 245, 0.1);
  color: var(--primary);
  padding: 2px 10px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-badge.danger {
  background: rgba(220, 38, 38, 0.1);
  color: var(--danger);
}

.step-text h4 {
  margin-bottom: 8px;
}

.step-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Comparison Table */
.comparison-table-wrapper {
  overflow-x: auto;
  margin: 32px 0;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.comparison-table th {
  background: var(--bg-soft);
  padding: 16px;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid var(--border);
}

.comparison-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table .badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
}

.comparison-table .badge.success {
  background: rgba(22, 163, 74, 0.1);
  color: var(--success);
}

.comparison-table .badge.danger {
  background: rgba(220, 38, 38, 0.1);
  color: var(--danger);
}

.comparison-table .badge.warning {
  background: rgba(217, 119, 6, 0.1);
  color: var(--warning);
}

/* Backup Features */
.backup-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 24px 0;
}

.backup-feature {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}

.backup-feature .feature-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.backup-feature h4 {
  margin-bottom: 12px;
}

.backup-feature ul,
.backup-feature ol {
  padding-left: 20px;
}

.backup-feature li {
  margin-bottom: 6px;
  color: var(--text-secondary);
}

/* Restore Methods */
.restore-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 24px 0;
}

.restore-method {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}

.restore-method h4 {
  margin-bottom: 12px;
}

.restore-method ol {
  padding-left: 20px;
}

.restore-method li {
  margin-bottom: 6px;
  color: var(--text-secondary);
}

/* FAQ Grid */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.faq-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 16px 20px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--t-fast);
}

.faq-question:hover {
  background: var(--bg-soft);
}

.faq-toggle {
  font-size: 1.2rem;
  color: var(--primary);
}

.faq-answer {
  padding: 0 20px 20px;
  display: none;
  color: var(--text-secondary);
}

.faq-card.active .faq-answer {
  display: block;
}

/* Troubleshooting Accordion */
.troubleshooting-accordion {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.trouble-item {
  border-bottom: 1px solid var(--border);
}

.trouble-item:last-child {
  border-bottom: none;
}

.trouble-question {
  width: 100%;
  padding: 16px 20px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--t-fast);
}

.trouble-question:hover {
  background: var(--bg-soft);
}

.accordion-icon {
  font-size: 0.8rem;
  color: var(--primary);
}

.trouble-answer {
  padding: 0 20px 20px;
  display: none;
  color: var(--text-secondary);
}

.trouble-item.active .trouble-answer {
  display: block;
}

/* CLI Commands */
.cli-commands {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cli-command {
  background: #1e1e2e;
  border-radius: var(--radius-md);
  padding: 16px;
}

.cli-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.cli-header code {
  color: #e5e5e5;
  font-family: var(--font-mono);
  font-size: 0.9rem;
}

.cli-command p {
  color: #abb2bf;
  font-size: 0.85rem;
}

/* Hook Items */
.hook-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 20px;
}

.hook-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.hook-header code {
  background: #1e1e2e;
  color: #e5e5e5;
  padding: 4px 8px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

.hook-type {
  background: var(--bg-soft);
  color: var(--primary);
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
}

/* Support Options */
.support-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.support-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
}

.support-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.support-card h4 {
  margin-bottom: 8px;
}

.support-card p {
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.support-card .btn {
  width: 100%;
}

/* Feedback Widget */
.feedback-widget {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  margin-top: 40px;
}

.feedback-widget p {
  margin-bottom: 16px;
  font-weight: 500;
}

.feedback-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.feedback-btn {
  padding: 8px 24px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: white;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--t-fast);
}

.feedback-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.feedback-message {
  color: var(--success);
  font-weight: 500;
}

/* Docs CTA */
.docs-cta {
  background: linear-gradient(135deg, #f0f2ff, #f8f7ff);
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ============================================
   DOWNLOAD PAGE SPECIFIC STYLES
   ============================================ */

/* Download Hero */
.download-hero {
  position: relative;
  padding: 140px 0 80px;
  background: linear-gradient(160deg, #f8f7ff 0%, #f0f2ff 100%);
  overflow: hidden;
}

.download-hero-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Download Main Card */
.download-main-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 60px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.download-main-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-primary);
}

.download-card-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.plugin-icon-large {
  width: 80px;
  height: 80px;
  background: var(--grad-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  box-shadow: 0 8px 24px rgba(91, 110, 245, 0.3);
}

.plugin-info h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.plugin-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.plugin-badges .badge {
  background: var(--bg-soft);
  color: var(--text-secondary);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
}

.plugin-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

.download-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.stat-box {
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.download-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.download-actions .btn {
  flex: 1;
  min-width: 200px;
}

.download-meta-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  padding: 24px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
}

.meta-icon {
  color: var(--success);
  font-weight: 700;
}

/* Installation Methods Grid */
.install-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.install-method-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--t-normal);
}

.install-method-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.method-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.install-method-card h3 {
  margin-bottom: 16px;
}

.method-steps {
  padding-left: 20px;
  margin-bottom: 16px;
}

.method-steps li {
  margin-bottom: 6px;
  color: var(--text-secondary);
}

.method-note {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}

.code-block.small {
  margin: 16px 0;
  padding: 12px;
}

.code-block.small code {
  display: block;
  text-align: center;
  color: #e5e5e5;
}

/* Features Compact Grid */
.features-grid-compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.compact-feature-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--t-normal);
}

.compact-feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.compact-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.compact-feature-card h4 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.compact-feature-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Requirements Card */
.requirements-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 40px 0;
  box-shadow: var(--shadow-md);
}

.requirements-header {
  margin-bottom: 24px;
}

.requirements-header h3 {
  font-size: 1.5rem;
}

.requirements-grid-detailed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.req-category h4 {
  margin-bottom: 12px;
  color: var(--text-primary);
}

.req-list {
  list-style: none;
}

.req-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.req-list .check {
  color: var(--success);
}

.req-list .arrow {
  color: var(--primary);
}

.req-list .cross {
  color: var(--danger);
}

.req-list.warning li {
  color: var(--warning);
}

/* Version Timeline */
.version-history {
  margin: 40px 0;
}

.version-timeline {
  max-width: 600px;
  margin: 0 auto;
}

.version-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 16px;
  position: relative;
  padding-left: 100px;
}

.version-badge {
  position: absolute;
  left: 20px;
  top: 20px;
  background: var(--grad-primary);
  color: white;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
}

.version-badge.current {
  background: var(--success);
}

.version-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.version-changes {
  list-style: none;
}

.version-changes li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.tag {
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
}

.tag.new {
  background: rgba(22, 163, 74, 0.1);
  color: var(--success);
}

.tag.fix {
  background: rgba(217, 119, 6, 0.1);
  color: var(--warning);
}

.tag.imp {
  background: rgba(91, 110, 245, 0.1);
  color: var(--primary);
}

/* FAQ Mini Grid */
.faq-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0 20px;
}

.faq-mini-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
}

.faq-mini-item h4 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.faq-mini-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-more-link {
  text-align: center;
  margin-top: 20px;
}

/* ============================================
   CONTACT PAGE SPECIFIC STYLES
   ============================================ */

/* Contact Hero */
.contact-hero {
  position: relative;
  padding: 140px 0 80px;
  background: linear-gradient(160deg, #f8f7ff 0%, #f0f2ff 100%);
  overflow: hidden;
}

.contact-hero-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}

/* Contact Methods Card */
.contact-methods-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-md);
}

.company-tagline {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.methods-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.method-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.method-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.method-icon {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  background: var(--bg-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.method-details {
  flex: 1;
}

.method-details h4 {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.method-details a {
  font-size: 1rem;
  color: var(--primary);
  text-decoration: none;
  display: block;
  margin-bottom: 2px;
}

.method-details a:hover {
  text-decoration: underline;
}

.method-details p {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.response-time {
  font-size: 0.75rem;
  color: var(--success);
  background: rgba(22, 163, 74, 0.1);
  padding: 2px 8px;
  border-radius: 100px;
  display: inline-block;
}

/* Before Contact Card */
.before-contact-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-md);
}

.before-contact-card h4 {
  margin: 8px 0 12px;
}

.before-contact-card p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.doc-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.doc-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--t-fast);
}

.doc-link:hover {
  background: var(--primary);
  color: white;
  transform: translateX(5px);
}

.doc-link:hover .arrow {
  color: white;
}

.link-icon {
  font-size: 1.1rem;
}

.arrow {
  margin-left: auto;
  color: var(--primary);
  transition: var(--t-fast);
}

/* Response Times Card */
.response-times-card {
  background: linear-gradient(135deg, #f8f7ff, #f0f2ff);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.response-icon {
  font-size: 2rem;
}

.response-content h4 {
  margin-bottom: 12px;
}

.response-content ul {
  list-style: none;
}

.response-content li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
  color: var(--text-secondary);
}

.response-badge {
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  min-width: 70px;
  text-align: center;
}

.response-badge.urgent {
  background: rgba(220, 38, 38, 0.1);
  color: var(--danger);
}

.response-badge.normal {
  background: rgba(91, 110, 245, 0.1);
  color: var(--primary);
}

.response-badge.feature {
  background: rgba(217, 119, 6, 0.1);
  color: var(--warning);
}

/* Contact Form Card */
.contact-form-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.contact-form-card h3 {
  margin: 8px 0 24px;
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
}

.required {
  color: var(--danger);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--t-fast);
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(91, 110, 245, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

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

.form-group input[type="file"] {
  padding: 8px;
  border: 1px dashed var(--border);
  background: var(--bg-soft);
  cursor: pointer;
}

.w-full {
  width: 100%;
}

.form-success {
  display: none;
  background: rgba(22, 163, 74, 0.1);
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-top: 16px;
}

.form-success.show {
  display: flex;
  align-items: center;
  gap: 12px;
}

.success-icon {
  font-size: 1.5rem;
}

.success-content strong {
  display: block;
  margin-bottom: 4px;
  color: var(--success);
}

.success-content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
}

.privacy-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 16px;
}

/* Contact Reasons Section */
.contact-reasons-section {
  background: var(--bg-soft);
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.reason-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: var(--t-normal);
}

.reason-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.reason-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.reason-card h4 {
  margin-bottom: 8px;
}

.reason-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   DEVELOPER PAGE SPECIFIC STYLES
   ============================================ */

/* Developer Hero */
.dev-hero {
  position: relative;
  padding: 140px 0 80px;
  background: linear-gradient(160deg, #f8f7ff 0%, #f0f2ff 100%);
  overflow: hidden;
}

.dev-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Developer Profile Card */
.developer-profile-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 60px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.developer-profile-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-primary);
}

.profile-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: start;
}

.profile-avatar-section {
  text-align: center;
}

.profile-avatar {
  width: 160px;
  height: 160px;
  background: var(--grad-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(91, 110, 245, 0.3);
}

.avatar-emoji {
  font-size: 4rem;
  filter: drop-shadow(2px 4px 4px rgba(0,0,0,0.1));
}

.profile-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.profile-badges .badge {
  background: var(--bg-soft);
  color: var(--text-secondary);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid var(--border);
}

.profile-info-section {
  padding-top: 10px;
}

.profile-name {
  font-size: 2.2rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.profile-title {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 16px;
  font-family: var(--font-mono);
}

.profile-bio {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 600px;
}

.profile-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 28px;
}

.profile-stats .stat-item {
  text-align: left;
}

.profile-stats .stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.profile-stats .stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
}

.profile-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Story & Mission Grid */
.story-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 60px;
}

.story-card,
.mission-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  transition: var(--t-normal);
}

.story-card:hover,
.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.story-card h2,
.mission-card h2 {
  font-size: 1.6rem;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.story-content p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.story-content .checklist {
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.story-content .checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
}

.story-content .checklist li:last-child {
  border-bottom: none;
}

.story-content .check {
  color: var(--success);
  font-weight: 700;
}

/* Values List */
.values-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 30px;
}

.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.value-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.value-content h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.value-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.mission-quote {
  background: var(--bg-soft);
  border-left: 4px solid var(--primary);
  padding: 20px;
  border-radius: var(--radius-md);
  margin-top: 20px;
}

.mission-quote blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.mission-quote cite {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: normal;
}

/* Company Section */
.company-section {
  background: var(--bg-soft);
}

.company-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

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

.company-info h3 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.company-info p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.company-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.detail-icon {
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

.detail-item div {
  display: flex;
  flex-direction: column;
}

.detail-item strong {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.detail-item span {
  font-size: 1rem;
  color: var(--text-primary);
}

.company-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-big {
  padding: 20px;
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  transition: var(--t-fast);
}

.stat-big:hover {
  transform: scale(1.05);
  background: white;
  box-shadow: var(--shadow-md);
}

.stat-big-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.stat-big-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Roadmap Timeline */
.roadmap-section {
  background: white;
}

.timeline-container {
  position: relative;
  max-width: 900px;
  margin: 40px auto 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-light), var(--primary), var(--secondary));
  transform: translateX(-50%);
  opacity: 0.3;
}

.roadmap-timeline {
  position: relative;
  z-index: 2;
}

.timeline-item {
  display: flex;
  margin-bottom: 40px;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item.left {
  justify-content: flex-start;
  padding-right: 50%;
}

.timeline-item.right {
  justify-content: flex-end;
  padding-left: 50%;
}

.timeline-dot {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  border: 3px solid;
  top: 20px;
  z-index: 3;
}

.timeline-item.left .timeline-dot {
  right: -10px;
}

.timeline-item.right .timeline-dot {
  left: -10px;
}

.timeline-dot.done {
  border-color: var(--success);
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.2);
}

.timeline-dot.current {
  border-color: var(--primary);
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(91, 110, 245, 0.2);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(91, 110, 245, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(91, 110, 245, 0.1); }
}

.timeline-dot.upcoming {
  border-color: var(--text-light);
  background: white;
}

.timeline-content {
  width: 80%;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  transition: var(--t-normal);
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.timeline-content.current {
  border-color: var(--primary);
  background: linear-gradient(135deg, white, rgba(91, 110, 245, 0.02));
}

.timeline-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 10px;
}

.version-badge {
  background: var(--grad-primary);
  color: white;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
}

.status-badge {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

.status-badge.released {
  background: rgba(22, 163, 74, 0.1);
  color: var(--success);
}

.status-badge.in-progress {
  background: rgba(91, 110, 245, 0.1);
  color: var(--primary);
}

.status-badge.planned {
  background: rgba(107, 114, 128, 0.1);
  color: var(--text-muted);
}

.status-badge.future {
  background: rgba(217, 119, 6, 0.1);
  color: var(--warning);
}

.timeline-content h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.timeline-content ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.timeline-content li {
  margin-bottom: 6px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.release-date {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  font-family: var(--font-mono);
}

/* Feature Request Card */
.feature-request-card {
  background: linear-gradient(135deg, #f8f7ff, #f0f2ff);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-top: 60px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.feature-request-content h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.feature-request-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.feature-request-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Open Source Section */
.oss-section {
  background: linear-gradient(135deg, #1e1e2e, #2d2d3a);
  color: white;
}

.oss-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.oss-icon {
  font-size: 5rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.oss-content {
  flex: 1;
}

.oss-content h2 {
  color: white;
  margin-bottom: 16px;
}

.oss-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.oss-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.oss-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
}

.oss-check {
  color: var(--success);
  font-weight: 700;
  font-size: 1.1rem;
}

.oss-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.oss-links .btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

.oss-links .btn-outline:hover {
  background: white;
  color: var(--primary);
  border-color: white;
}

/* Community Section */
.community-section {
  background: white;
}

/* Responsive for all pages */
@media (max-width: 1024px) {
  .profile-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .profile-avatar-section {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .profile-stats {
    justify-content: center;
  }
  
  .profile-links {
    justify-content: center;
  }
  
  .story-mission-grid {
    grid-template-columns: 1fr;
  }
  
  .company-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .timeline-line {
    display: none;
  }
  
  .timeline-item.left,
  .timeline-item.right {
    padding: 0;
    justify-content: center;
  }
  
  .timeline-item.left .timeline-dot,
  .timeline-item.right .timeline-dot {
    left: 20px;
    top: 20px;
  }
  
  .timeline-content {
    width: 100%;
    margin-left: 40px;
  }
  
  .oss-card {
    flex-direction: column;
    text-align: center;
  }
  
  .oss-grid {
    grid-template-columns: 1fr;
  }
  
  .oss-links {
    justify-content: center;
  }
  
  /* Download Page Responsive */
  .install-methods-grid,
  .features-grid-compact,
  .requirements-grid-detailed,
  .faq-mini-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .download-meta-features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Contact Page Responsive */
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .developer-profile-card {
    padding: 24px;
  }
  
  .profile-avatar {
    width: 120px;
    height: 120px;
  }
  
  .avatar-emoji {
    font-size: 3rem;
  }
  
  .profile-name {
    font-size: 1.8rem;
  }
  
  .profile-stats {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  
  .profile-links {
    flex-direction: column;
  }
  
  .profile-links .btn {
    width: 100%;
  }
  
  .company-stats {
    grid-template-columns: 1fr;
  }
  
  .feature-request-buttons {
    flex-direction: column;
  }
  
  .feature-request-buttons .btn {
    width: 100%;
  }
  
  /* Download Page Responsive */
  .install-methods-grid,
  .features-grid-compact,
  .requirements-grid-detailed,
  .faq-mini-grid,
  .download-meta-features {
    grid-template-columns: 1fr;
  }
  
  .download-card-header {
    flex-direction: column;
    text-align: center;
  }
  
  .download-actions {
    flex-direction: column;
  }
  
  .download-actions .btn {
    width: 100%;
  }
  
  .version-item {
    padding-left: 20px;
  }
  
  .version-badge {
    position: static;
    display: inline-block;
    margin-bottom: 8px;
  }
  
  /* Contact Page Responsive */
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .reasons-grid {
    grid-template-columns: 1fr;
  }
  
  .response-times-card {
    flex-direction: column;
    text-align: center;
  }
  
  /* Documentation Page Responsive */
  .docs-layout {
    grid-template-columns: 1fr;
  }
  
  .docs-sidebar {
    position: static;
    margin-bottom: 30px;
  }
  
  .quick-links {
    flex-direction: column;
  }
  
  .quick-link {
    width: 100%;
    text-align: center;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .support-options {
    grid-template-columns: 1fr;
  }
}