/* ============================================
   Pop Storage Landing Page - Dark Terminal Theme
   Accent: Emerald Green (#10B981)
   Background: Near-black (#0A0A0A)
   ============================================ */

/* CSS Variables */
:root {
  --bg-primary: #0A0A0A;
  --bg-secondary: #0D0D0D;
  --bg-elevated: #141414;
  --text-primary: #FFFFFF;
  --text-secondary: #A3A3A3;
  --text-muted: #6B6B6B;
  --accent: #10B981;
  --accent-hover: #059669;
  --accent-glow: rgba(16, 185, 129, 0.3);
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: 12px;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.landing-page {
  min-height: 100vh;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* ============================================
   NAVIGATION
   ============================================ */

.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: backdrop-filter 0.3s ease, background-color 0.3s ease, padding 0.3s ease;
}

.landing-nav.scrolled {
  backdrop-filter: blur(16px);
  background-color: rgba(10, 10, 10, 0.8);
  padding: 1rem 0;
  border-bottom: 1px solid var(--glass-border);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.logo-icon {
  color: var(--accent);
  width: 24px;
  height: 24px;
}

.logo-text {
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  cursor: pointer;
  transition: color 0.2s ease;
  font-family: inherit;
}

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

.nav-cta {
  background-color: var(--accent);
  color: var(--bg-primary);
  border: none;
  padding: 0.625rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
  font-family: inherit;
}

.nav-cta:hover {
  background-color: var(--accent-hover);
  transform: translateY(-1px);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  font-size: 3.75rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-title-accent {
  background: linear-gradient(135deg, var(--accent) 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--bg-primary);
  border: none;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
  box-shadow: 0 0 20px var(--accent-glow);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 30px var(--accent-glow);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  font-family: inherit;
}

.btn-secondary:hover {
  border-color: var(--accent);
  background-color: rgba(16, 185, 129, 0.05);
}

.hero-note {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Hero Code Demo */
.hero-code-demo {
  background-color: var(--bg-elevated);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.code-block-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--glass-border);
}

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

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

.dot-red {
  background-color: #EF4444;
}

.dot-yellow {
  background-color: #F59E0B;
}

.dot-green {
  background-color: var(--accent);
}

.code-title {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.code-block-content {
  padding: 1.5rem;
  overflow-x: auto;
}

.code-pre {
  margin: 0;
  font-family: 'Monaco', 'Menlo', 'Courier New', monospace;
  font-size: 0.875rem;
  line-height: 1.7;
}

.code-pre code {
  color: var(--text-primary);
}

.code-comment {
  color: #6B7280;
}

.code-keyword {
  color: #A78BFA;
}

.code-flag {
  color: #F59E0B;
}

.code-string {
  color: var(--accent);
}

.code-operator {
  color: var(--text-secondary);
}

.code-url {
  color: #60A5FA;
  text-decoration: underline;
}

/* Hero Glows */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  pointer-events: none;
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: var(--accent);
  top: -200px;
  right: -200px;
}

.hero-glow-2 {
  width: 400px;
  height: 400px;
  background: var(--accent);
  bottom: -100px;
  left: -100px;
}

/* ============================================
   SOCIAL PROOF
   ============================================ */

.social-proof {
  padding: 2rem 2rem;
  background-color: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.social-proof-container {
  max-width: 1280px;
  margin: 0 auto;
}

.social-proof-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.social-proof-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.social-proof-divider {
  width: 1px;
  height: 24px;
  background-color: var(--glass-border);
}

.social-proof-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.rating-stars {
  display: flex;
  gap: 0.25rem;
  color: var(--accent);
}

.rating-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.social-proof-count {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* ============================================
   SECTION STYLES
   ============================================ */

section {
  padding: 6rem 2rem;
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.title-accent {
  color: var(--accent);
}

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

/* ============================================
   GLASS CARD EFFECT
   ============================================ */

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  transition: border-color 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

.glass-card:hover {
  border-color: rgba(16, 185, 129, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.step-card {
  padding: 2rem;
  text-align: center;
  position: relative;
}

.step-number {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(16, 185, 129, 0.2);
  line-height: 1;
  margin-bottom: 1rem;
}

.step-icon-wrapper {
  display: inline-flex;
  padding: 1rem;
  background-color: rgba(16, 185, 129, 0.1);
  border-radius: 1rem;
  margin-bottom: 1.5rem;
}

.step-icon {
  color: var(--accent);
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.step-description {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

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

.feature-card {
  padding: 2rem;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-icon-wrapper {
  display: inline-flex;
  padding: 0.75rem;
  background-color: rgba(16, 185, 129, 0.1);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

.feature-icon {
  color: var(--accent);
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-description {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ============================================
   SECURITY SECTION
   ============================================ */

.security-section {
  background-color: var(--bg-secondary);
}

.security-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
}

.security-card {
  padding: 1.5rem;
}

.security-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.security-icon-wrapper {
  display: inline-flex;
  padding: 0.5rem;
  background-color: rgba(16, 185, 129, 0.1);
  border-radius: 0.5rem;
  flex-shrink: 0;
}

.security-icon {
  color: var(--accent);
}

.security-card-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.security-card-description {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing-toggle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.toggle-label {
  font-size: 0.9375rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.toggle-label.active {
  color: var(--text-primary);
  font-weight: 600;
}

.toggle-badge {
  background-color: var(--accent);
  color: var(--bg-primary);
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.pricing-toggle {
  position: relative;
  width: 60px;
  height: 32px;
  background-color: var(--bg-elevated);
  border: 1px solid var(--glass-border);
  border-radius: 9999px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.toggle-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background-color: var(--text-secondary);
  border-radius: 50%;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.toggle-slider.annual {
  transform: translateX(28px);
  background-color: var(--accent);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.pricing-card {
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.popular {
  border-color: var(--accent);
  background: rgba(16, 185, 129, 0.05);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent);
  color: var(--bg-primary);
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.pricing-card-header {
  text-align: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 2rem;
}

.pricing-plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.pricing-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.pricing-value {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  margin: 0 0.25rem;
}

.pricing-period {
  font-size: 1rem;
  color: var(--text-secondary);
}

.pricing-annual-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.pricing-description {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.feature-check {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.pricing-cta {
  width: 100%;
  padding: 1rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  font-family: inherit;
}

.pricing-cta.primary {
  background-color: var(--accent);
  color: var(--bg-primary);
  border: none;
}

.pricing-cta.primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
}

.pricing-cta.secondary {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
}

.pricing-cta.secondary:hover {
  border-color: var(--accent);
  background-color: rgba(16, 185, 129, 0.05);
}

/* ============================================
   CODE SHOWCASE
   ============================================ */

.code-showcase {
  background-color: var(--bg-secondary);
}

.code-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
}

.code-showcase-wrapper {
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.code-tabs {
  display: flex;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--glass-border);
  overflow-x: auto;
}

.code-tab {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
  white-space: nowrap;
  font-family: inherit;
}

.code-tab:hover {
  color: var(--text-primary);
  background-color: rgba(255, 255, 255, 0.05);
}

.code-tab.active {
  color: var(--accent);
  background-color: rgba(16, 185, 129, 0.1);
}

.code-content {
  background-color: var(--bg-elevated);
}

.code-javascript {
  color: var(--text-primary);
  white-space: pre-wrap;
}

.code-note {
  max-width: 900px;
  margin: 2rem auto 0;
  padding: 1.5rem;
  text-align: center;
}

.code-note p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.code-note strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  overflow: hidden;
  transition: transform 0.2s ease;
}

.faq-item:hover {
  transform: translateX(4px);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.125rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
  font-family: inherit;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  flex-shrink: 0;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.faq-icon.rotated {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer.expanded {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ============================================
   FINAL CTA
   ============================================ */

.final-cta {
  position: relative;
  padding: 8rem 2rem;
  overflow: hidden;
}

.final-cta-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.final-cta-content {
  padding: 4rem 3rem;
  text-align: center;
}

.final-cta-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.final-cta-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.final-cta-button {
  background-color: var(--accent);
  color: var(--bg-primary);
  border: none;
  padding: 1.25rem 3rem;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
  box-shadow: 0 0 30px var(--accent-glow);
}

.final-cta-button:hover {
  background-color: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 0 50px var(--accent-glow);
}

.final-cta-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.2;
  pointer-events: none;
}

.cta-glow-1 {
  width: 500px;
  height: 500px;
  background: var(--accent);
  top: -150px;
  right: -150px;
}

.cta-glow-2 {
  width: 500px;
  height: 500px;
  background: var(--accent);
  bottom: -150px;
  left: -150px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--glass-border);
  padding: 4rem 2rem 2rem;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: inline-flex;
  padding: 0.5rem;
  color: var(--text-secondary);
  transition: color 0.2s ease, background-color 0.2s ease;
  border-radius: 0.5rem;
}

.social-link:hover {
  color: var(--accent);
  background-color: rgba(16, 185, 129, 0.1);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-links-title {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-block;
}

.footer-link:hover {
  color: var(--accent);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  text-align: center;
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-title {
    font-size: 3rem;
  }

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

  .footer-main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    gap: 1rem;
  }

  .nav-link {
    display: none;
  }

  .hero-section {
    padding: 6rem 1.5rem 3rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  section {
    padding: 4rem 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

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

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

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

  .code-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .final-cta-title {
    font-size: 2.25rem;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
  }
}

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

  .pricing-toggle-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Lucide SVG sizing (replaces <i data-lucide>) */
.landing-page .lucide {
  flex-shrink: 0;
}

.nav-logo .lucide,
.footer-logo .lucide {
  width: 24px;
  height: 24px;
}

.btn-primary .lucide,
.btn-secondary .lucide {
  width: 18px;
  height: 18px;
}

.rating-stars .lucide {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.step-icon-wrapper .lucide {
  width: 32px;
  height: 32px;
}

.feature-icon-wrapper .lucide {
  width: 24px;
  height: 24px;
}

.security-badge .lucide,
.code-badge .lucide {
  width: 20px;
  height: 20px;
}

.security-icon-wrapper .lucide {
  width: 20px;
  height: 20px;
}

.pricing-badge .lucide {
  width: 14px;
  height: 14px;
}

.feature-check {
  width: 18px;
  height: 18px;
}

.faq-icon.lucide {
  width: 20px;
  height: 20px;
}

.final-cta-button .lucide {
  width: 20px;
  height: 20px;
}

.social-link .lucide {
  width: 20px;
  height: 20px;
}
