/* =============================================
   Point Forge Pro - Website Styles
   Version: 2.0 - Production Ready
   ============================================= */

/* =============================================
   CSS Custom Properties
   ============================================= */
:root {
  /* Deep blue color palette */
  --dark-950: #050a12;
  --dark-900: #0a1628;
  --dark-850: #0d1f3c;
  --dark-800: #102a4c;
  --dark-700: #1a3a5c;
  --dark-600: #2a4a6c;
  --dark-500: #3a5a7c;

  /* Accent colors */
  --cyan-300: #67e8f9;
  --cyan-400: #22d3ee;
  --cyan-500: #06b6d4;
  --cyan-600: #0891b2;

  /* Slate colors for text */
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;

  /* Semantic colors */
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;

  /* Spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Typography */
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'SF Mono', 'Fira Code', 'Consolas', monospace;

  /* Borders & Shadows */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.3);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.3);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.3);
  --shadow-glow: 0 0 30px rgba(6, 182, 212, 0.3);
}

/* =============================================
   Base & Reset
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--dark-950);
  color: var(--slate-100);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background-color: var(--cyan-500);
  color: var(--dark-950);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--dark-900);
}

::-webkit-scrollbar-thumb {
  background: var(--dark-600);
  border-radius: 5px;
  border: 2px solid var(--dark-900);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--dark-500);
}

/* =============================================
   Animations
   ============================================= */
@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(6, 182, 212, 0.3); }
  50% { box-shadow: 0 0 40px rgba(6, 182, 212, 0.5); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.animate-ping { animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; }
.animate-float { animation: float 6s ease-in-out infinite; }
.animate-glow { animation: glow 3s ease-in-out infinite; }
.animate-fadeIn { animation: fadeIn 0.5s ease-out forwards; }
.animate-slideIn { animation: slideIn 0.5s ease-out forwards; }
.animate-pulse { animation: pulse 2s ease-in-out infinite; }

/* =============================================
   Layout
   ============================================= */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

@media (min-width: 640px) {
  .container { padding: 0 var(--space-6); }
}

@media (min-width: 1024px) {
  .container { padding: 0 var(--space-8); }
}

.container-narrow {
  max-width: 900px;
}

.container-wide {
  max-width: 1440px;
}

/* Grid System */
.grid {
  display: grid;
  gap: var(--space-6);
}

.grid-2 { grid-template-columns: repeat(1, 1fr); }
.grid-3 { grid-template-columns: repeat(1, 1fr); }
.grid-4 { grid-template-columns: repeat(2, 1fr); }
.grid-6 { grid-template-columns: repeat(2, 1fr); }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-6 { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
  .grid-6 { grid-template-columns: repeat(6, 1fr); }
}

/* =============================================
   Background Effects
   ============================================= */
.bg-pattern {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.bg-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(6, 182, 212, 0.12), transparent 50%);
}

.bg-pattern::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(26, 58, 92, 0.3) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(26, 58, 92, 0.3) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.15;
}

.glow-orb {
  position: absolute;
  border-radius: var(--radius-full);
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.6;
}

.glow-orb-cyan {
  background: radial-gradient(circle, var(--cyan-500), transparent 70%);
}

.glow-orb-blue {
  background: radial-gradient(circle, #3b82f6, transparent 70%);
}

/* =============================================
   Typography
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: white;
}

h1 { font-size: clamp(2.5rem, 8vw, 5rem); font-weight: 900; }
h2 { font-size: clamp(1.75rem, 5vw, 3rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

.text-gradient {
  background: linear-gradient(135deg, var(--cyan-400), #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-muted { color: var(--slate-400); }
.text-small { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-center { text-align: center; }
.text-left { text-align: left; }

.font-mono { font-family: var(--font-mono); }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }

.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.05em; }
.tracking-wider { letter-spacing: 0.1em; }

/* =============================================
   Navigation
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.3s ease;
  padding: var(--space-4) 0;
}

.navbar.scrolled {
  background-color: rgba(5, 10, 18, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(6, 182, 212, 0.1);
  padding: var(--space-3) 0;
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  transition: transform 0.2s;
}

.logo:hover {
  transform: translateY(-1px);
}

.logo:hover .logo-icon {
  box-shadow: var(--shadow-glow);
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--cyan-400), var(--cyan-600));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.logo-icon svg {
  color: var(--dark-950);
}

.logo-text {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: white;
}

.logo-text span {
  color: var(--cyan-400);
}

.nav-links {
  display: none;
  align-items: center;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
}

.nav-link {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-400);
  background: none;
  border: none;
  padding: var(--space-2) 0;
  transition: color 0.2s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan-500);
  transition: width 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: white;
}

.nav-link.active::after,
.nav-link:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: flex;
  padding: var(--space-2);
  background: none;
  border: none;
  color: var(--slate-400);
}

@media (min-width: 768px) {
  .mobile-menu-btn { display: none; }
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 4rem;
  background-color: var(--dark-950);
  padding: var(--space-6);
  z-index: 90;
  overflow-y: auto;
}

.mobile-menu.open {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.mobile-menu .nav-link {
  font-size: 1.5rem;
  font-weight: 700;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--dark-800);
}

/* =============================================
   Buttons
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan-500), var(--cyan-400));
  color: var(--dark-950);
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--cyan-400), var(--cyan-300));
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: var(--dark-800);
  color: white;
  border: 1px solid var(--dark-600);
}

.btn-secondary:hover {
  background-color: var(--dark-700);
  border-color: var(--cyan-500);
}

.btn-outline {
  background: transparent;
  color: var(--cyan-400);
  border: 1px solid rgba(6, 182, 212, 0.4);
}

.btn-outline:hover {
  border-color: var(--cyan-500);
  background-color: rgba(6, 182, 212, 0.1);
}

.btn-ghost {
  background: transparent;
  color: var(--slate-400);
}

.btn-ghost:hover {
  color: white;
  background-color: rgba(255, 255, 255, 0.05);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: 1rem;
}

.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: 0.8125rem;
}

.btn-full { width: 100%; }

.btn-icon {
  padding: var(--space-3);
}

/* =============================================
   Cards
   ============================================= */
.card {
  background-color: rgba(13, 31, 60, 0.5);
  border: 1px solid var(--dark-700);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.card:hover {
  border-color: rgba(6, 182, 212, 0.3);
  background-color: rgba(16, 42, 76, 0.5);
}

.card-lg {
  padding: var(--space-8);
}

.card-interactive:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-featured {
  border-color: rgba(6, 182, 212, 0.3);
  background: linear-gradient(180deg, rgba(16, 42, 76, 0.8), rgba(13, 31, 60, 0.6));
  box-shadow: 0 0 40px rgba(6, 182, 212, 0.1);
}

/* =============================================
   Sections
   ============================================= */
.section {
  padding: var(--space-20) 0;
  position: relative;
}

.section-sm {
  padding: var(--space-12) 0;
}

.section-lg {
  padding: var(--space-24) 0;
}

.section-dark {
  background-color: var(--dark-900);
}

.section-heading {
  margin-bottom: var(--space-12);
}

.section-heading.centered {
  text-align: center;
}

.section-heading.centered .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  color: var(--slate-400);
  font-size: 1.125rem;
  line-height: 1.75;
  max-width: 42rem;
  margin-top: var(--space-4);
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  background-color: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  color: var(--cyan-400);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

/* =============================================
   Hero Section
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: var(--space-16);
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  background-color: rgba(10, 22, 40, 0.9);
  border: 1px solid rgba(6, 182, 212, 0.2);
  color: var(--slate-300);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-8);
  backdrop-filter: blur(10px);
}

.status-dot {
  position: relative;
  width: 8px;
  height: 8px;
}

.status-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-full);
  background-color: var(--cyan-400);
  opacity: 0.75;
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.status-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-full);
  background-color: var(--cyan-500);
}

.hero-title {
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin-bottom: var(--space-6);
}

.hero-description {
  font-size: 1.25rem;
  color: var(--slate-300);
  line-height: 1.75;
  max-width: 36rem;
  margin: 0 auto var(--space-10);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  max-width: 36rem;
  margin: var(--space-16) auto 0;
  padding-top: var(--space-8);
  border-top: 1px solid var(--dark-800);
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 900;
  color: var(--cyan-400);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--slate-500);
  margin-top: var(--space-1);
}

.scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  animation: float 3s ease-in-out infinite;
}

.scroll-indicator-inner {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(6, 182, 212, 0.3);
  border-radius: var(--radius-full);
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-indicator-dot {
  width: 4px;
  height: 8px;
  background-color: var(--cyan-400);
  border-radius: var(--radius-full);
  animation: float 1.5s ease-in-out infinite;
}

/* =============================================
   Feature Cards
   ============================================= */
.feature-card {
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  border: 1px solid var(--dark-700);
  background-color: rgba(13, 31, 60, 0.4);
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(6, 182, 212, 0.3);
  background-color: rgba(16, 42, 76, 0.5);
  transform: translateY(-4px);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--cyan-500), var(--cyan-600));
}

.feature-card:hover .feature-icon svg {
  color: var(--dark-950);
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--dark-800);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.feature-icon svg {
  color: var(--cyan-400);
  transition: color 0.3s ease;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.feature-description {
  color: var(--slate-400);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* =============================================
   Screenshot Gallery
   ============================================= */
.screenshot-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--dark-700);
  transition: all 0.4s ease;
  box-shadow: var(--shadow-xl);
}

.screenshot-card:hover {
  border-color: rgba(6, 182, 212, 0.5);
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.screenshot-card img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.screenshot-card:hover img {
  transform: scale(1.03);
}

.screenshot-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--dark-950), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: var(--space-6);
}

.screenshot-card:hover .screenshot-overlay {
  opacity: 1;
}

.screenshot-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.screenshot-description {
  color: var(--slate-400);
  font-size: 0.875rem;
}

/* =============================================
   Pricing
   ============================================= */
.pricing-card {
  padding: var(--space-10);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--dark-700);
  background-color: rgba(13, 31, 60, 0.5);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
  height: 100%;
}

.pricing-card.featured {
  border-color: rgba(6, 182, 212, 0.4);
  background: linear-gradient(180deg, rgba(16, 42, 76, 0.9), rgba(13, 31, 60, 0.7));
  box-shadow: 0 0 60px rgba(6, 182, 212, 0.15);
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--cyan-500), var(--cyan-400));
  color: var(--dark-950);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-header {
  margin-bottom: var(--space-6);
}

.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-2);
}

.pricing-header p {
  color: var(--slate-500);
  font-size: 0.9375rem;
}

.pricing-price {
  margin-bottom: var(--space-8);
}

.pricing-amount {
  font-size: 3.5rem;
  font-weight: 900;
  color: white;
}

.pricing-period {
  color: var(--slate-500);
  font-size: 1rem;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  flex-grow: 1;
  margin-bottom: var(--space-8);
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 0.9375rem;
  color: var(--slate-400);
}

.pricing-card.featured .pricing-features li {
  color: var(--slate-200);
}

.pricing-features svg {
  color: var(--cyan-500);
  flex-shrink: 0;
  margin-top: 2px;
}

/* =============================================
   Documentation
   ============================================= */
.docs-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 1024px) {
  .docs-layout {
    grid-template-columns: 280px 1fr;
    gap: var(--space-12);
  }
}

.docs-sidebar {
  position: sticky;
  top: 6rem;
  height: fit-content;
}

.docs-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.docs-nav-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  color: var(--slate-400);
  background: none;
  border: none;
  text-align: left;
  transition: all 0.2s;
  width: 100%;
}

.docs-nav-item:hover {
  color: white;
  background-color: rgba(255, 255, 255, 0.05);
}

.docs-nav-item.active {
  color: var(--cyan-400);
  background-color: rgba(6, 182, 212, 0.1);
}

.docs-nav-item svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.docs-content {
  min-width: 0;
}

.docs-content h1 {
  font-size: 2.5rem;
  margin-bottom: var(--space-4);
}

.docs-content h2 {
  font-size: 1.75rem;
  margin-top: var(--space-12);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--dark-800);
}

.docs-content h3 {
  font-size: 1.25rem;
  margin-top: var(--space-8);
  margin-bottom: var(--space-4);
}

.docs-content p {
  color: var(--slate-300);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}

.docs-content ul,
.docs-content ol {
  color: var(--slate-300);
  margin-bottom: var(--space-4);
  padding-left: var(--space-6);
}

.docs-content li {
  margin-bottom: var(--space-2);
  line-height: 1.7;
}

.docs-content code {
  font-family: var(--font-mono);
  font-size: 0.875em;
  background-color: var(--dark-800);
  padding: 0.125em 0.375em;
  border-radius: var(--radius-sm);
  color: var(--cyan-400);
}

/* Keyboard Shortcut Style */
.kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.75rem;
  height: 1.75rem;
  padding: 0 var(--space-2);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  background: linear-gradient(180deg, var(--dark-700), var(--dark-800));
  border: 1px solid var(--dark-600);
  border-radius: var(--radius-sm);
  color: var(--slate-200);
  box-shadow: 0 2px 0 var(--dark-900);
}

.shortcut-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) var(--space-4);
  background-color: rgba(13, 31, 60, 0.3);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-2);
}

.shortcut-keys {
  display: flex;
  gap: var(--space-1);
}

.shortcut-action {
  color: var(--slate-400);
  font-size: 0.875rem;
}

/* =============================================
   File Formats
   ============================================= */
.format-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}

@media (min-width: 640px) {
  .format-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
  .format-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
  .format-grid { grid-template-columns: repeat(6, 1fr); }
}

.format-item {
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  border: 1px solid var(--dark-700);
  background-color: rgba(13, 31, 60, 0.3);
  text-align: center;
  transition: all 0.3s ease;
}

.format-item:hover {
  border-color: var(--cyan-500);
  background-color: rgba(6, 182, 212, 0.1);
  transform: translateY(-2px);
}

.format-ext {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cyan-400);
}

.format-name {
  font-size: 0.6875rem;
  color: var(--slate-500);
  margin-top: var(--space-1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* =============================================
   System Requirements
   ============================================= */
.requirements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .requirements-grid { grid-template-columns: repeat(4, 1fr); }
}

.requirement-item {
  text-align: center;
  padding: var(--space-6);
  background-color: rgba(13, 31, 60, 0.3);
  border-radius: var(--radius-lg);
  border: 1px solid var(--dark-700);
}

.requirement-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--dark-800);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
}

.requirement-icon svg {
  color: var(--cyan-400);
}

.requirement-label {
  font-size: 0.75rem;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-1);
}

.requirement-value {
  font-size: 1rem;
  font-weight: 600;
  color: white;
}

/* =============================================
   Tables
   ============================================= */
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--dark-700);
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.table th,
.table td {
  padding: var(--space-4);
  text-align: left;
  border-bottom: 1px solid var(--dark-800);
}

.table th {
  background-color: var(--dark-850);
  font-weight: 600;
  color: var(--slate-300);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.table td {
  color: var(--slate-400);
}

.table tr:hover td {
  background-color: rgba(6, 182, 212, 0.05);
}

.table tr:last-child td {
  border-bottom: none;
}

/* =============================================
   Tabs
   ============================================= */
.tabs {
  display: flex;
  gap: var(--space-1);
  border-bottom: 1px solid var(--dark-700);
  margin-bottom: var(--space-6);
  overflow-x: auto;
}

.tab {
  padding: var(--space-3) var(--space-6);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--slate-400);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
  transition: all 0.2s;
}

.tab:hover {
  color: white;
}

.tab.active {
  color: var(--cyan-400);
  border-bottom-color: var(--cyan-500);
}

/* =============================================
   Alerts & Notices
   ============================================= */
.alert {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-6);
}

.alert-icon {
  flex-shrink: 0;
}

.alert-info {
  background-color: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  color: var(--cyan-400);
}

.alert-warning {
  background-color: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--warning);
}

.alert-success {
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--success);
}

/* =============================================
   Footer
   ============================================= */
.footer {
  background-color: var(--dark-950);
  border-top: 1px solid var(--dark-800);
  padding: var(--space-16) 0;
  position: relative;
  z-index: 20;
}

.footer-grid {
  display: grid;
  gap: var(--space-10);
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-brand {
  max-width: 280px;
}

.footer-brand p {
  color: var(--slate-500);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-top: var(--space-4);
}

.footer-column h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-4);
  color: white;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--slate-500);
  font-size: 0.9375rem;
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--cyan-400);
}

.footer-link svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.footer-bottom {
  margin-top: var(--space-12);
  padding-top: var(--space-8);
  border-top: 1px solid var(--dark-800);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  color: var(--slate-600);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: var(--space-6);
}

.footer-legal a {
  color: var(--slate-500);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--cyan-400);
}

/* =============================================
   Utility Classes
   ============================================= */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.hidden { display: none !important; }
.block { display: block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: var(--space-2); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }

.w-full { width: 100%; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }

.mx-auto { margin-left: auto; margin-right: auto; }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

.p-4 { padding: var(--space-4); }
.p-6 { padding: var(--space-6); }
.p-8 { padding: var(--space-8); }
.py-2 { padding-top: var(--space-2); padding-bottom: var(--space-2); }
.py-4 { padding-top: var(--space-4); padding-bottom: var(--space-4); }
.px-4 { padding-left: var(--space-4); padding-right: var(--space-4); }
.px-6 { padding-left: var(--space-6); padding-right: var(--space-6); }

.rounded { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-full); }

.border { border: 1px solid var(--dark-700); }
.border-cyan { border-color: rgba(6, 182, 212, 0.3); }

.bg-dark-800 { background-color: var(--dark-800); }
.bg-dark-850 { background-color: var(--dark-850); }
.bg-dark-900 { background-color: var(--dark-900); }

.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }

.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }

.relative { position: relative; }
.absolute { position: absolute; }
.sticky { position: sticky; }

.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-50 { z-index: 50; }

.transition { transition: all 0.2s ease; }

.cursor-pointer { cursor: pointer; }

.select-none { user-select: none; }

/* =============================================
   Accessibility - Focus States
   ============================================= */
:focus-visible {
  outline: 2px solid var(--cyan-400);
  outline-offset: 2px;
}

.btn:focus-visible {
  outline: 2px solid var(--cyan-400);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.2);
}

.nav-link:focus-visible,
.docs-nav-item:focus-visible,
.footer-link:focus-visible {
  outline: 2px solid var(--cyan-400);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* Skip to content link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--cyan-500);
  color: var(--dark-950);
  padding: var(--space-2) var(--space-4);
  z-index: 1000;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Responsive visibility */
@media (min-width: 640px) {
  .sm\:block { display: block; }
  .sm\:hidden { display: none; }
  .sm\:flex { display: flex; }
}

@media (min-width: 768px) {
  .md\:block { display: block; }
  .md\:hidden { display: none; }
  .md\:flex { display: flex; }
  .md\:grid { display: grid; }
}

@media (min-width: 1024px) {
  .lg\:block { display: block; }
  .lg\:hidden { display: none; }
  .lg\:flex { display: flex; }
  .lg\:grid { display: grid; }
}

/* =============================================
   Mobile Optimizations (max-width: 768px)
   ============================================= */
@media (max-width: 768px) {
  /* CRITICAL: Prevent horizontal overflow */
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
  }

  * {
    max-width: 100%;
  }

  /* Container - proper mobile padding */
  .container {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    max-width: 100%;
  }

  /* Typography - readable on mobile */
  h1 {
    font-size: 1.75rem;
    line-height: 1.15;
    word-wrap: break-word;
  }
  h2 {
    font-size: 1.5rem;
    line-height: 1.2;
  }
  h3 {
    font-size: 1.25rem;
    line-height: 1.25;
  }
  h4 {
    font-size: 1.1rem;
  }

  /* Section padding */
  .section {
    padding: 3rem 0;
  }

  .section-lg {
    padding: 4rem 0;
  }

  .section-heading {
    margin-bottom: 2rem;
  }

  .section-subtitle {
    font-size: 0.9375rem;
    line-height: 1.6;
  }

  /* Navigation */
  .navbar {
    padding: 0.75rem 0;
  }

  .logo-icon {
    width: 2rem;
    height: 2rem;
  }

  .logo-text {
    font-size: 1rem;
  }

  .mobile-menu {
    top: 3.25rem;
    padding: 1.5rem 20px;
  }

  .mobile-menu .nav-link {
    font-size: 1.125rem;
    padding: 1rem 0;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  /* Hero Section - completely redesigned for mobile */
  .hero {
    min-height: auto;
    padding-top: 5rem;
    padding-bottom: 3rem;
  }

  .hero-content {
    padding: 0;
  }

  .hero-badge {
    font-size: 0.6rem;
    padding: 0.375rem 0.75rem;
    margin-bottom: 1.25rem;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    padding: 0 0.5rem;
  }

  .hero-description {
    font-size: 0.9375rem;
    line-height: 1.55;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
    color: var(--slate-400);
  }

  .hero-buttons {
    width: 100%;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    max-width: 100%;
  }

  .stat {
    padding: 0.5rem 0.25rem;
  }

  .stat-value {
    font-size: 1.125rem;
  }

  .stat-label {
    font-size: 0.625rem;
    line-height: 1.3;
  }

  /* Scroll indicator - hide */
  .scroll-indicator {
    display: none;
  }

  /* Buttons - better touch targets */
  .btn {
    padding: 0.875rem 1.25rem;
    font-size: 0.9375rem;
    min-height: 48px;
    border-radius: 0.5rem;
  }

  .btn-lg {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .btn-sm {
    padding: 0.625rem 1rem;
    font-size: 0.8125rem;
    min-height: 40px;
  }

  /* Grids - single column on mobile */
  .grid {
    gap: 1rem;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .grid-6 {
    grid-template-columns: 1fr;
  }

  /* Feature Cards */
  .feature-card {
    padding: 1.25rem;
  }

  .feature-icon {
    width: 2.75rem;
    height: 2.75rem;
    margin-bottom: 1rem;
    border-radius: 0.625rem;
  }

  .feature-icon svg {
    width: 20px;
    height: 20px;
  }

  .feature-title {
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
  }

  .feature-description {
    font-size: 0.875rem;
    line-height: 1.55;
  }

  /* Cards */
  .card {
    padding: 1.25rem;
    border-radius: 0.75rem;
  }

  .card-lg {
    padding: 1.5rem;
  }

  /* Screenshot Cards */
  .screenshot-card {
    border-radius: 0.75rem;
  }

  .screenshot-card:hover {
    transform: none;
  }

  .screenshot-overlay {
    opacity: 1;
    background: linear-gradient(to top, var(--dark-950), transparent 70%);
    padding: 1rem;
  }

  .screenshot-title {
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }

  .screenshot-description {
    font-size: 0.8125rem;
  }

  /* Pricing Cards */
  .pricing-card {
    padding: 1.5rem;
    border-radius: 1rem;
  }

  .pricing-badge {
    top: -12px;
    font-size: 0.6875rem;
    padding: 0.375rem 0.75rem;
  }

  .pricing-header h3 {
    font-size: 1.25rem;
  }

  .pricing-header p {
    font-size: 0.875rem;
  }

  .pricing-amount {
    font-size: 2.25rem;
  }

  .pricing-period {
    font-size: 0.875rem;
  }

  .pricing-features {
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .pricing-features li {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  .pricing-features svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }

  /* File Formats Grid */
  .format-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .format-item {
    padding: 0.75rem 0.5rem;
    border-radius: 0.5rem;
  }

  .format-item:hover {
    transform: none;
  }

  .format-ext {
    font-size: 0.8125rem;
  }

  .format-name {
    font-size: 0.5rem;
    margin-top: 0.25rem;
  }

  /* Requirements Grid */
  .requirements-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .requirement-item {
    padding: 1rem;
    border-radius: 0.625rem;
  }

  .requirement-icon {
    width: 2.25rem;
    height: 2.25rem;
    margin-bottom: 0.75rem;
    border-radius: 0.5rem;
  }

  .requirement-icon svg {
    width: 18px;
    height: 18px;
  }

  .requirement-label {
    font-size: 0.5625rem;
  }

  .requirement-value {
    font-size: 0.8125rem;
  }

  /* Tables - stacked layout, NO horizontal scroll */
  .table-wrapper {
    border-radius: 0.5rem;
    overflow: hidden;
  }

  .table {
    font-size: 0.8125rem;
  }

  .table th,
  .table td {
    padding: 0.625rem 0.75rem;
    word-wrap: break-word;
    white-space: normal;
    vertical-align: top;
  }

  .table th {
    font-size: 0.6875rem;
  }

  /* Docs Layout */
  .docs-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .docs-sidebar {
    position: relative;
    top: 0;
  }

  .docs-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .docs-nav-item {
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
    flex: 0 0 auto;
  }

  .docs-content h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .docs-content h2 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

  .docs-content h3 {
    font-size: 1.0625rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .docs-content p {
    font-size: 0.9375rem;
    line-height: 1.65;
  }

  .docs-content ul,
  .docs-content ol {
    padding-left: 1.25rem;
  }

  .docs-content li {
    font-size: 0.9375rem;
    line-height: 1.55;
  }

  .docs-content code {
    font-size: 0.8125em;
    padding: 0.125rem 0.375rem;
    word-break: break-word;
  }

  /* Keyboard Shortcuts */
  .kbd {
    min-width: 1.5rem;
    height: 1.5rem;
    padding: 0 0.375rem;
    font-size: 0.6875rem;
  }

  .shortcut-row {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem;
    text-align: left;
  }

  .shortcut-keys {
    order: 1;
  }

  .shortcut-action {
    order: 0;
    font-size: 0.8125rem;
  }

  /* Tabs - wrap instead of scroll */
  .tabs {
    flex-wrap: wrap;
    gap: 0.25rem;
    border-bottom: none;
    margin-bottom: 1rem;
  }

  .tab {
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
    border: 1px solid var(--dark-700);
    border-radius: 0.375rem;
    margin-bottom: 0;
  }

  .tab.active {
    border-color: var(--cyan-500);
    background-color: rgba(6, 182, 212, 0.1);
  }

  /* Alerts */
  .alert {
    padding: 1rem;
    flex-direction: row;
    gap: 0.75rem;
    font-size: 0.875rem;
    border-radius: 0.5rem;
  }

  .alert-icon svg {
    width: 18px;
    height: 18px;
  }

  /* Badge */
  .badge {
    font-size: 0.625rem;
    padding: 0.25rem 0.5rem;
  }

  /* Footer */
  .footer {
    padding: 2.5rem 0 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-brand .logo {
    justify-content: center;
  }

  .footer-brand p {
    font-size: 0.875rem;
  }

  .footer-column h4 {
    font-size: 0.8125rem;
    margin-bottom: 0.75rem;
  }

  .footer-links {
    align-items: center;
    gap: 0.625rem;
  }

  .footer-link {
    font-size: 0.875rem;
    padding: 0.25rem 0;
    justify-content: center;
  }

  .footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    flex-direction: column;
    gap: 1rem;
  }

  .footer-copyright {
    font-size: 0.8125rem;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
    gap: 1.5rem;
  }

  .footer-legal a {
    font-size: 0.8125rem;
  }

  /* Background effects - reduce for performance */
  .bg-pattern::before {
    opacity: 0.6;
  }

  .bg-pattern::after {
    background-size: 40px 40px;
    opacity: 0.08;
  }

  .glow-orb {
    opacity: 0.25;
    filter: blur(50px);
  }

  /* Disable hover transforms on touch devices */
  .feature-card:hover,
  .card-interactive:hover,
  .format-item:hover {
    transform: none;
  }

  /* Better text spacing */
  p {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* Utility overrides */
  .flex-col { flex-direction: column; }
  .gap-8 { gap: 1.5rem; }
  .gap-6 { gap: 1rem; }

  .mt-12 { margin-top: 2rem; }
  .mt-8 { margin-top: 1.5rem; }
  .mb-8 { margin-bottom: 1.5rem; }

  .p-8 { padding: 1.25rem; }
  .p-6 { padding: 1rem; }
  .px-6 { padding-left: 1rem; padding-right: 1rem; }
}

/* =============================================
   Small Mobile (max-width: 480px)
   ============================================= */
@media (max-width: 480px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }

  .hero-title {
    font-size: 1.625rem;
  }

  .hero-description {
    font-size: 0.875rem;
  }

  .hero-stats {
    gap: 0.375rem;
  }

  .stat-value {
    font-size: 1rem;
  }

  .stat-label {
    font-size: 0.5625rem;
  }

  .btn {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }

  .btn-lg {
    padding: 0.875rem 1.25rem;
  }

  .feature-card {
    padding: 1rem;
  }

  .feature-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .feature-title {
    font-size: 1rem;
  }

  .feature-description {
    font-size: 0.8125rem;
  }

  .pricing-card {
    padding: 1.25rem;
  }

  .pricing-amount {
    font-size: 2rem;
  }

  .format-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.375rem;
  }

  .format-item {
    padding: 0.625rem 0.375rem;
  }

  .format-ext {
    font-size: 0.75rem;
  }

  .requirements-grid {
    gap: 0.5rem;
  }

  .requirement-item {
    padding: 0.875rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .footer {
    padding: 2rem 0 1.5rem;
  }

  .footer-grid {
    gap: 1.5rem;
  }
}

/* =============================================
   Extra Small Mobile (max-width: 360px)
   ============================================= */
@media (max-width: 360px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero-title {
    font-size: 1.375rem;
  }

  .hero-badge {
    font-size: 0.5rem;
  }

  .stat-value {
    font-size: 0.875rem;
  }

  .stat-label {
    font-size: 0.5rem;
    letter-spacing: 0;
  }

  .format-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-amount {
    font-size: 1.75rem;
  }

  .pricing-features li {
    font-size: 0.8125rem;
  }

  .requirements-grid {
    grid-template-columns: 1fr;
  }

  .footer-legal {
    flex-direction: column;
    gap: 0.75rem;
  }
}
