/* RoomCTRL Landing Page Styles */

/* ===== CSS Variables ===== */
:root {
  --color-bg-deepest: #0a0a0c;
  --color-bg-card: rgba(20, 20, 22, 0.8);
  --color-bg-elevated: rgba(30, 30, 35, 0.8);
  --color-accent: #ef4444;
  --color-accent-hover: #dc2626;
  --color-success: #10b981;
  --color-text-primary: #ffffff;
  --color-text-secondary: #a1a1aa;
  --color-text-tertiary: #71717a;
  --color-border: rgba(255, 255, 255, 0.1);
  --color-border-accent: rgba(239, 68, 68, 0.3);
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* ===== Animated Background ===== */
.bg-orbs {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.orb-1 {
  top: -20%;
  left: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.12) 0%, transparent 70%);
  animation: float1 15s ease-in-out infinite;
}

.orb-2 {
  bottom: -30%;
  right: -15%;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  animation: float2 18s ease-in-out infinite;
}

.orb-3 {
  top: 60%;
  right: 20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
  animation: float3 20s ease-in-out infinite;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.8);
  box-shadow: 0 0 20px 8px rgba(239, 68, 68, 0.5);
}

.particle-1 { top: 15%; left: 10%; width: 7px; height: 7px; animation: particle1 8s ease-in-out infinite; }
.particle-2 { top: 27%; left: 25%; width: 5px; height: 5px; animation: particle2 9.5s ease-in-out infinite; }
.particle-3 { top: 39%; left: 40%; width: 9px; height: 9px; animation: particle3 11s ease-in-out infinite; }
.particle-4 { top: 51%; left: 55%; width: 6px; height: 6px; animation: particle4 12.5s ease-in-out infinite; }
.particle-5 { top: 63%; left: 70%; width: 8px; height: 8px; animation: particle5 14s ease-in-out infinite; }
.particle-6 { top: 75%; left: 85%; width: 5px; height: 5px; animation: particle6 15.5s ease-in-out infinite; }
.particle-7 { top: 45%; left: 15%; width: 7px; height: 7px; animation: particle1 10s ease-in-out infinite; }
.particle-8 { top: 80%; left: 35%; width: 6px; height: 6px; animation: particle3 13s ease-in-out infinite; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
  white-space: nowrap;
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-text-primary);
}

.btn-ghost:hover {
  border-color: rgba(239, 68, 68, 0.5);
  background: rgba(239, 68, 68, 0.1);
}

.btn-primary {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  font-weight: 600;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(239, 68, 68, 0.5);
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: 12px;
}

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 10, 12, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 100;
}

.nav-logo {
  flex: 1;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 32px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-menu a {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.nav-menu a:hover {
  color: var(--color-text-primary);
}

.nav-buttons {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

/* ===== Hero Section ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
  padding-top: 120px;
  position: relative;
  z-index: 1;
}

.hero-logo {
  position: relative;
  margin-bottom: 24px;
}

.logo-glow {
  position: absolute;
  inset: -20px;
  border-radius: 30px;
  background: rgba(239, 68, 68, 0.2);
  filter: blur(40px);
  animation: logoPulse 3s ease-in-out infinite;
}

.hero-logo-img {
  position: relative;
  height: 180px;
  width: auto;
  filter: drop-shadow(0 0 40px rgba(239, 68, 68, 0.4));
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  max-width: 800px;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text-secondary);
  font-size: 14px;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-text-tertiary);
  animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background: rgba(239, 68, 68, 0.8);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}

/* ===== Section Headers ===== */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 16px;
}

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

/* ===== Features Section ===== */
.features {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.feature-card {
  position: relative;
  padding: 32px;
  background: rgba(20, 20, 22, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-base);
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(239, 68, 68, 0.1);
}

.feature-highlight {
  border-color: rgba(239, 68, 68, 0.3);
}

.feature-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 10px;
  background: rgba(239, 68, 68, 0.2);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: #f87171;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-highlight .feature-icon {
  background: rgba(239, 68, 68, 0.15);
}

.feature-highlight .feature-icon svg {
  stroke: #ef4444;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ===== Screenshots Section ===== */
.screenshots {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  justify-items: center;
}

.screenshots-grid .screenshot-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: 50%;
}

.screenshot-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: rgba(30, 30, 35, 0.8);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: all var(--transition-base);
  cursor: pointer;
}

.screenshot-card:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.screenshot-large {
  grid-column: span 1;
}

.screenshot-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.screenshot-placeholder svg {
  opacity: 0.3;
  stroke: rgba(239, 68, 68, 0.6);
}

.screenshot-coming {
  font-size: 12px;
  color: var(--color-text-tertiary);
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 100px;
}

.screenshot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.screenshot-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  border-radius: 0 0 16px 16px;
  font-weight: 600;
  font-size: 14px;
  color: white;
  pointer-events: none;
}

/* Screenshot Modal */
.screenshot-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.screenshot-modal.active {
  display: flex;
}

.screenshot-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.screenshot-modal-content {
  position: relative;
  max-width: 95vw;
  max-height: 95vh;
  background: rgba(20, 20, 22, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(239, 68, 68, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: row;
}

.screenshot-modal-image {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.3);
}

.screenshot-modal-image img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
}

.screenshot-modal-info {
  width: 320px;
  flex-shrink: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.screenshot-modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: white;
}

.screenshot-modal-description {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.screenshot-modal-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.screenshot-modal-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.screenshot-modal-features li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.6), 0 0 16px rgba(239, 68, 68, 0.3);
}

.screenshot-modal-disclaimer {
  margin-top: auto;
  padding-top: 20px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

.screenshot-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 10;
}

.screenshot-modal-close:hover {
  background: rgba(239, 68, 68, 0.6);
  border-color: rgba(239, 68, 68, 0.5);
}

@media (max-width: 900px) {
  .screenshot-modal-content {
    flex-direction: column;
    max-height: 90vh;
    overflow-y: auto;
  }
  
  .screenshot-modal-image {
    padding: 16px;
  }
  
  .screenshot-modal-info {
    width: 100%;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
  }
}

/* ===== Pricing Section ===== */
.pricing {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.pricing .container {
  max-width: 800px;
}

.pricing-card {
  position: relative;
  background: rgba(20, 20, 22, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(239, 68, 68, 0.3);
  padding: 48px;
  overflow: hidden;
}

.pricing-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.5), transparent);
}

.pricing-header {
  text-align: center;
  margin-bottom: 32px;
}

.pricing-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(239, 68, 68, 0.15);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: #f87171;
  margin-bottom: 16px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}

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

.period {
  font-size: 1.25rem;
  color: var(--color-text-tertiary);
}

.pricing-note {
  font-size: 1rem;
  color: var(--color-text-secondary);
  margin-top: 8px;
}

.pricing-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--color-text-secondary);
}

.pricing-feature svg {
  flex-shrink: 0;
  margin-top: 2px;
}

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

.pricing-fine-print {
  font-size: 14px;
  color: var(--color-text-tertiary);
  margin-top: 12px;
}

.pricing-comparison {
  text-align: center;
  margin-top: 32px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
}

.pricing-comparison p {
  color: var(--color-text-secondary);
  font-size: 15px;
  margin: 0;
}

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

/* ===== FAQ Section ===== */
.faq {
  padding: 80px 0;
  position: relative;
}

.faq-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.faq-item {
  background: rgba(30, 30, 35, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  transition: all var(--transition-base);
  flex: 0 1 calc(33.333% - 16px);
  min-width: 300px;
  max-width: 400px;
}

.faq-item:hover {
  background: rgba(40, 40, 45, 0.7);
  border-color: rgba(255, 255, 255, 0.12);
}

.faq-question {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 12px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.faq-question::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.5);
}

.faq-answer {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
  padding-left: 20px;
}

.faq-answer a {
  color: var(--color-accent);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.faq-answer a:hover {
  text-decoration: underline;
}

/* ===== Final CTA Section ===== */
.final-cta {
  padding: 80px 24px;
  position: relative;
  z-index: 1;
}

.final-cta .container {
  max-width: 700px;
  text-align: center;
  padding: 64px;
  background: rgba(239, 68, 68, 0.08);
  border-radius: 32px;
  border: 1px solid rgba(239, 68, 68, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.15) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.final-cta h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
}

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

.final-cta .btn {
  position: relative;
}

/* ===== Footer ===== */
.footer {
  padding: 48px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 1;
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  height: 50px;
  width: auto;
  opacity: 0.8;
}

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--color-text-tertiary);
  font-size: 14px;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-text-primary);
}

.footer-copyright {
  font-size: 12px;
  color: var(--color-text-tertiary);
}

/* ===== Animations ===== */
@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-40px, 20px) scale(1.1); }
  66% { transform: translate(30px, -30px) scale(0.9); }
}

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

@keyframes particle1 {
  0%, 100% { transform: translate(0, 0); opacity: 0.9; }
  50% { transform: translate(100px, 50px); opacity: 0.7; }
}

@keyframes particle2 {
  0%, 100% { transform: translate(0, 0); opacity: 0.85; }
  50% { transform: translate(-80px, -40px); opacity: 0.6; }
}

@keyframes particle3 {
  0%, 100% { transform: translate(0, 0); opacity: 0.8; }
  50% { transform: translate(60px, -60px); opacity: 1; }
}

@keyframes particle4 {
  0%, 100% { transform: translate(0, 0); opacity: 0.7; }
  50% { transform: translate(-50px, 70px); opacity: 0.9; }
}

@keyframes particle5 {
  0%, 100% { transform: translate(0, 0); opacity: 0.8; }
  50% { transform: translate(40px, 40px); opacity: 1; }
}

@keyframes particle6 {
  0%, 100% { transform: translate(0, 0); opacity: 0.6; }
  50% { transform: translate(-70px, -30px); opacity: 0.9; }
}

@keyframes logoPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(12px); opacity: 0.3; }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .navbar {
    padding: 12px 16px;
  }

  .nav-logo img {
    height: 32px;
  }

  .nav-menu {
    display: none;
  }

  .hero {
    padding: 24px 16px;
    padding-top: 100px;
  }

  .hero-logo-img {
    height: 120px;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn-large {
    width: 100%;
  }

  .hero-note {
    width: 100%;
    justify-content: center;
  }

  .scroll-indicator {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .screenshots-grid {
    grid-template-columns: 1fr;
  }

  .screenshots-grid .screenshot-card:last-child:nth-child(odd) {
    max-width: 100%;
  }

  .pricing-card {
    padding: 32px 24px;
  }

  .price {
    font-size: 3rem;
  }

  .pricing-features {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .faq-item {
    flex: 0 1 100%;
    max-width: 100%;
  }

  .final-cta .container {
    padding: 40px 24px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

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