/* =============================================
   DAPITA CORE Landing — Brand Colors from Logo
   Purple #9b4dca | Cyan #5bc0de | Orange #e67e22 | Dark #0d1117
   ============================================= */
:root {
  --brand-purple: #9b4dca;
  --brand-purple-light: #b366d9;
  --brand-purple-dark: #7b3aa3;
  --brand-cyan: #5bc0de;
  --brand-cyan-light: #7dd3e8;
  --brand-cyan-dark: #3aa8c9;
  --brand-orange: #e67e22;
  --brand-orange-light: #f39c12;
  --brand-orange-dark: #d35400;
  --brand-dark: #0d1117;
  --purple-glow: rgba(155, 77, 202, 0.4);
  --cyan-glow: rgba(91, 192, 222, 0.35);
  --orange-glow: rgba(230, 126, 34, 0.35);
}

/* Light Theme */
[data-theme="light"] {
  --bg: #f5f7fa;
  --bg-secondary: #ffffff;
  --glass: rgba(255, 255, 255, 0.75);
  --glass-strong: rgba(255, 255, 255, 0.9);
  --glass-border: rgba(155, 77, 202, 0.15);
  --text: #0d1117;
  --text-secondary: #3d4852;
  --muted: #6b7685;
  --shadow: 0 8px 32px rgba(155, 77, 202, 0.1);
  --shadow-lg: 0 20px 60px rgba(155, 77, 202, 0.15);
  --card-bg: rgba(255, 255, 255, 0.6);
}

/* Dark Theme (Default) */
[data-theme="dark"] {
  --bg: #0d1117;
  --bg-secondary: #161b22;
  --glass: rgba(255, 255, 255, 0.05);
  --glass-strong: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.08);
  --text: #e6edf3;
  --text-secondary: #a8b5c4;
  --muted: #6b7685;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
  --card-bg: rgba(255, 255, 255, 0.03);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Animated Background */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(rgba(155, 77, 202, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(155, 77, 202, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.bg-glow-1 {
  width: 800px;
  height: 800px;
  background: var(--brand-purple);
  top: -300px;
  right: -200px;
  opacity: 0.15;
}

.bg-glow-2 {
  width: 600px;
  height: 600px;
  background: var(--brand-orange);
  bottom: -200px;
  left: -150px;
  opacity: 0.1;
}

.bg-glow-3 {
  width: 500px;
  height: 500px;
  background: var(--brand-cyan);
  top: 50%;
  left: 30%;
  opacity: 0.08;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* =============================================
   Header
   ============================================= */
.header {
  position: sticky;
  top: 16px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 24px;
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.brand-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--brand-cyan);
  letter-spacing: -0.5px;
}

.brand-text em {
  font-style: normal;
  color: var(--brand-orange);
}

@media (max-width: 600px) {
  .brand-text { display: none; }
}

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

.nav-link {
  padding: 10px 16px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.2s;
}

.nav-link:hover {
  color: var(--text);
  background: var(--glass);
}

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

.icon-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.2s;
}

.icon-btn:hover {
  background: var(--glass-strong);
  transform: scale(1.05);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s;
  background: var(--glass);
  color: var(--text);
  backdrop-filter: blur(10px);
}

.btn:hover {
  background: var(--glass-strong);
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-light));
  color: #fff;
  border: none;
  box-shadow: 0 4px 20px var(--orange-glow);
}

.btn-primary:hover {
  box-shadow: 0 8px 32px var(--orange-glow);
}

.btn-cyan {
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-cyan-light));
  color: #fff;
  border: none;
  box-shadow: 0 4px 20px var(--cyan-glow);
}

.btn-cyan:hover {
  background: linear-gradient(135deg, var(--brand-cyan-light), var(--brand-cyan));
  color: #fff;
  box-shadow: 0 8px 32px var(--cyan-glow);
}

.btn-purple {
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-purple-light));
  color: #fff;
  border: none;
  box-shadow: 0 4px 20px var(--purple-glow);
}

.btn-purple:hover {
  box-shadow: 0 8px 32px var(--purple-glow);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: 14px;
}

.btn-xl {
  padding: 20px 48px;
  font-size: 18px;
  border-radius: 16px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 12px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.2s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  padding: 20px;
  background: var(--glass-strong);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
}

.mobile-menu.open {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-link {
  display: block;
  padding: 14px 16px;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  border-radius: 12px;
  transition: all 0.2s;
}

.mobile-link:hover { background: var(--glass); }
.mobile-divider { height: 1px; background: var(--glass-border); margin: 12px 0; }

/* =============================================
   Hero Section
   ============================================= */
.hero {
  text-align: center;
  padding: 50px 0 40px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--brand-cyan);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.hero-title .line { display: block; }
.hero-title .cyan { color: var(--brand-cyan); }
.hero-title .orange { color: var(--brand-orange); }
.hero-title .purple { color: var(--brand-purple); }

.hero-subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.hero-subtitle .cyan { color: var(--brand-cyan); }
.hero-subtitle .orange { color: var(--brand-orange); }

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

/* Tech Showcase */
.tech-showcase {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  margin-bottom: 40px;
}

.tech-showcase-header {
  text-align: center;
}

.tech-showcase-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}

.tech-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  transition: all 0.2s;
}

.tech-card:hover {
  border-color: var(--brand-purple);
  transform: translateY(-2px);
}

.tech-icon { font-size: 28px; }
.tech-info { flex: 1; }
.tech-name { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.tech-desc { font-size: 12px; color: var(--muted); }

/* Stats Row */
.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 32px 0;
}

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

.stat-value {
  font-size: 36px;
  font-weight: 800;
  color: var(--brand-cyan);
  line-height: 1.2;
}

.stat-label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

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

.section-dark {
  background: var(--bg-secondary);
  margin: 0 -24px;
  padding: 80px 24px;
  border-radius: 32px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-purple);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

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

/* =============================================
   Comparison Cards
   ============================================= */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.comparison-card {
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--glass-border);
  background: var(--card-bg);
}

.comparison-card.free {
  border-color: rgba(91, 192, 222, 0.3);
}

.comparison-card.paid {
  border-color: rgba(230, 126, 34, 0.3);
  background: linear-gradient(135deg, rgba(230, 126, 34, 0.05), rgba(230, 126, 34, 0.02));
}

.comparison-header {
  text-align: center;
  margin-bottom: 24px;
}

.comparison-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 16px;
}

.comparison-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.comparison-price {
  font-size: 32px;
  font-weight: 800;
  color: var(--brand-cyan);
}

.comparison-card.paid .comparison-price {
  color: var(--brand-orange);
}

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

.comparison-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--glass-border);
  font-size: 15px;
  color: var(--text-secondary);
}

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

.comparison-list li.disabled {
  color: var(--muted);
  opacity: 0.6;
}

.comparison-list li.highlight {
  color: var(--brand-orange);
  font-weight: 600;
}

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

.feature-card {
  padding: 36px;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-purple), var(--brand-cyan));
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-purple);
}

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

.feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  background: linear-gradient(135deg, rgba(155, 77, 202, 0.15), rgba(155, 77, 202, 0.05));
  border-radius: 18px;
  margin-bottom: 24px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.feature-list li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-list li::before {
  content: '✓';
  color: var(--brand-cyan);
  font-weight: 700;
}

.feature-highlight {
  grid-column: span 1;
  background: linear-gradient(135deg, rgba(155, 77, 202, 0.08), rgba(91, 192, 222, 0.03));
  border-color: rgba(155, 77, 202, 0.25);
}

/* =============================================
   Marketplace Section
   ============================================= */
.marketplace-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.marketplace-card {
  padding: 40px;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
}

.marketplace-card.user {
  border-color: rgba(91, 192, 222, 0.3);
}

.marketplace-card.developer {
  border-color: rgba(230, 126, 34, 0.3);
}

.marketplace-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.marketplace-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}

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

.marketplace-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--glass-border);
  font-size: 15px;
  color: var(--text-secondary);
}

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

.marketplace-list strong {
  color: var(--text);
}

.marketplace-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* =============================================
   Pricing
   ============================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  padding: 40px 32px;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  position: relative;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  background: linear-gradient(135deg, rgba(155, 77, 202, 0.1), rgba(230, 126, 34, 0.05));
  border-color: var(--brand-purple);
  transform: scale(1.03);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 24px;
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-purple-light));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-price { margin-bottom: 8px; }

.pricing-amount {
  font-size: 48px;
  font-weight: 800;
  color: var(--brand-cyan);
}

.pricing-period {
  font-size: 16px;
  color: var(--muted);
}

.pricing-desc {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 32px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--glass-border);
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.pricing-features li::before {
  content: '✓';
  color: var(--brand-cyan);
  font-weight: 700;
}

.pricing-features li.disabled::before {
  content: '✗';
  color: var(--muted);
}

.pricing-features li.disabled {
  color: var(--muted);
  opacity: 0.6;
}

.pricing-features strong { color: var(--text); }

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

.pricing-note {
  margin-top: 48px;
  padding: 24px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  text-align: center;
}

.pricing-note h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--brand-orange);
}

.pricing-note p {
  color: var(--text-secondary);
  font-size: 14px;
}

/* =============================================
   Developer Section
   ============================================= */
.developer-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.developer-card {
  padding: 40px;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  text-align: center;
}

.developer-step {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-cyan));
  color: #fff;
  border-radius: 50%;
  margin: 0 auto 24px;
}

.developer-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.developer-card p {
  color: var(--text-secondary);
  font-size: 15px;
}

.developer-cta {
  text-align: center;
}

/* =============================================
   CTA Section
   ============================================= */
.cta-section {
  padding: 80px 0;
}

.cta-box {
  padding: 80px 60px;
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-purple-dark));
  border-radius: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px var(--purple-glow);
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(230,126,34,0.1) 0%, transparent 40%);
}

.cta-box h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
}

.cta-box p {
  font-size: 20px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  position: relative;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-box .btn {
  background: #fff;
  color: var(--brand-dark);
  padding: 20px 48px;
  font-size: 18px;
  position: relative;
  border: none;
}

.cta-box .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.cta-note {
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  position: relative;
}

/* =============================================
   Footer
   ============================================= */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--glass-border);
}

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

.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 13px;
  color: var(--text-secondary);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.footer-links h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  color: var(--text);
}

.footer-links a {
  display: block;
  padding: 8px 0;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--brand-cyan); }

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

.footer-bottom p {
  color: var(--muted);
  font-size: 14px;
}

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { 
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .pricing-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .developer-info { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .hide-mobile { display: none; }
  
  .comparison-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .marketplace-info { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
  
  .stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .header { padding: 12px 16px; margin-bottom: 20px; }
  .hero { padding: 30px 0; }
  .section { padding: 60px 0; }
  .section-dark { padding: 60px 16px; margin: 0 -16px; border-radius: 0; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .tech-showcase { padding: 24px; }
  .cta-box { padding: 40px 20px; }
}
