/* Ninshoma - Bold, Confident, Modern */
/* Inspired by Preply, Babbel, Duolingo's best elements */

:root {
  /* Brand Colors */
  --purple: #7C6FFF;
  --blue: #5B9BFF;
  --coral: #FF8B94;
  --yellow: #FFC759;
  --green: #10B981;

  /* Neutrals */
  --bg-light: #FAFBFC;
  --white: #FFFFFF;
  --text-dark: #1A1A2E;
  --text-gray: #6B7280;
  --text-light: #9CA3AF;
  --border: #E5E7EB;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-3xl: 96px;
  --space-4xl: 128px;

  /* Typography */
  --font-heading: 'Poppins', -apple-system, system-ui, sans-serif;
  --font-body: 'Inter', -apple-system, system-ui, sans-serif;

  /* Effects */
  --gradient-purple-blue: linear-gradient(135deg, var(--purple) 0%, var(--blue) 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 48px rgba(0, 0, 0, 0.16);

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-light);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: var(--transition);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-dark);
  text-decoration: none;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-gray);
  text-decoration: none;
  transition: color var(--transition);
}

.nav a:hover {
  color: var(--purple);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-purple-blue);
  color: white;
  box-shadow: 0 4px 12px rgba(124, 111, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(124, 111, 255, 0.4);
}

.btn-secondary {
  background: white;
  color: var(--text-dark);
  border: 2px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--purple);
  color: var(--purple);
  transform: translateY(-2px);
}

.btn-huge {
  padding: 16px 40px;
  font-size: 17px;
  font-weight: 700;
  border-radius: 14px;
}

.btn-full {
  width: 100%;
}

/* ============================================
   HERO SECTION - BOLD & CONFIDENT
   ============================================ */
.hero-bold {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--space-lg) 0 var(--space-md);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(124, 111, 255, 0.08) 0%,
    rgba(91, 155, 255, 0.05) 50%,
    rgba(250, 251, 252, 1) 100%);
  z-index: -1;
}

.hero-content-center {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-title-massive {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
}

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

.hero-subtitle-large {
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.5;
  color: var(--text-gray);
  margin-bottom: var(--space-xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-group {
  margin-bottom: var(--space-sm);
  margin-top: var(--space-sm);
}

.cta-note {
  margin-top: var(--space-sm);
  font-size: 14px;
  color: var(--text-light);
}

/* Hero NOT FOR YOU Section */
.hero-not-for-you {
  max-width: 900px;
  margin: var(--space-md) auto var(--space-sm);
  padding: var(--space-lg);
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(45, 45, 68, 0.95) 100%);
  border: 3px solid var(--coral);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
}

.hero-not-title {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  text-align: center;
  margin-bottom: var(--space-sm);
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.hero-not-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
}

.hero-not-item {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 139, 148, 0.3);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  transition: all var(--transition);
  text-align: center;
  line-height: 1.3;
}

.hero-not-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--coral);
  transform: scale(1.05);
}

.hero-but-if {
  padding: 12px 16px;
  background: rgba(124, 111, 255, 0.2);
  border: 2px solid var(--purple);
  border-radius: 14px;
  text-align: center;
}

.hero-but-if p {
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.4;
  color: white;
  margin: 0;
}

.hero-but-if strong {
  color: var(--yellow);
  font-weight: 700;
}

.hero-highlight {
  background: var(--gradient-purple-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  font-size: clamp(15px, 2vw, 18px);
}

/* App Preview with Real Screenshots */
.app-preview-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: var(--space-2xl) 0 var(--space-xl) 0;
  overflow: visible;
}

.screenshots-carousel {
  display: flex;
  gap: var(--space-xl);
  padding: var(--space-xl) var(--space-lg);
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--purple) var(--bg-light);
}

.screenshots-carousel::-webkit-scrollbar {
  height: 8px;
}

.screenshots-carousel::-webkit-scrollbar-track {
  background: var(--bg-light);
  border-radius: 10px;
}

.screenshots-carousel::-webkit-scrollbar-thumb {
  background: var(--purple);
  border-radius: 10px;
}

.screenshot-item {
  position: relative;
  flex: 0 0 280px;
  scroll-snap-align: center;
  transition: all var(--transition);
}

.screenshot-item.featured {
  flex: 0 0 320px;
  transform: scale(1.05);
}

.screenshot-image {
  width: 100%;
  height: auto;
  border-radius: 32px;
  box-shadow: 0 20px 60px rgba(124, 111, 255, 0.3);
  border: 8px solid #1A1A2E;
  background: #000;
  transition: all var(--transition);
}

.screenshot-item:hover .screenshot-image {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(124, 111, 255, 0.4);
}

.screenshot-caption {
  text-align: center;
  margin-top: var(--space-md);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-gray);
}

/* Floating Badges */
.preview-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow-lg);
  animation: float 3s ease-in-out infinite;
}

.badge-1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.badge-2 {
  top: 40%;
  right: 5%;
  animation-delay: 1s;
}

.badge-3 {
  bottom: 20%;
  left: 5%;
  animation-delay: 2s;
}

.badge-icon {
  font-size: 20px;
}

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

/* ============================================
   NOT FOR YOU SECTION - CONTROVERSIAL
   ============================================ */
.not-for-you-section {
  background: linear-gradient(135deg, #1A1A2E 0%, #2D2D44 100%);
  color: white;
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.not-for-you-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><text x="10" y="50" font-size="40" opacity="0.03" fill="white">✗</text></svg>');
  opacity: 0.1;
  pointer-events: none;
}

.not-for-you-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.not-for-you-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin-bottom: var(--space-xl);
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.not-for-you-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.not-for-you-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 139, 148, 0.3);
  border-radius: 16px;
  text-align: left;
  transition: all var(--transition);
}

.not-for-you-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--coral);
  transform: translateY(-4px);
}

.not-icon {
  font-size: 24px;
  color: var(--coral);
  font-weight: 700;
  flex-shrink: 0;
}

.not-for-you-item p {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.but-if-you-want {
  padding: var(--space-xl);
  background: rgba(124, 111, 255, 0.15);
  border: 2px solid var(--purple);
  border-radius: 20px;
  margin-top: var(--space-xl);
}

.but-if-you-want p {
  font-size: 20px;
  line-height: 1.6;
  color: white;
  margin: 0;
}

.but-if-you-want strong {
  color: var(--yellow);
  font-weight: 700;
}

.highlight-text {
  background: var(--gradient-purple-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 22px;
}

/* ============================================
   SOCIAL PROOF STRIP
   ============================================ */
.social-proof {
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--space-xl) 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  text-align: center;
}

.proof-label {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.proof-value {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
}

/* ============================================
   COMPARISON SECTION
   ============================================ */
.different-section {
  padding: var(--space-4xl) 0;
  background: var(--bg-light);
}

.section-header-centered {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-3xl);
}

.section-header-centered h2 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--text-dark);
}

.section-header-centered p {
  font-size: 20px;
  color: var(--text-gray);
  line-height: 1.6;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
  max-width: 900px;
  margin: 0 auto;
}

.comparison-card {
  padding: var(--space-xl);
  border-radius: 24px;
  border: 2px solid var(--border);
  background: white;
}

.comparison-card.new-way {
  background: linear-gradient(135deg,
    rgba(124, 111, 255, 0.05),
    rgba(91, 155, 255, 0.05));
  border-color: var(--purple);
  border-width: 3px;
}

.comparison-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
}

.comparison-header h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
}

.comparison-icon {
  font-size: 32px;
}

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

.comparison-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: var(--space-md);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
}

.old-way .comparison-list li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: var(--coral);
  font-weight: 700;
}

.new-way .comparison-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* Real Examples Section */
.real-examples-section {
  margin-top: var(--space-3xl);
  padding-top: var(--space-3xl);
  border-top: 2px solid var(--border);
}

.examples-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  text-align: center;
  margin-bottom: var(--space-2xl);
  color: var(--text-dark);
  background: var(--gradient-purple-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  max-width: 1100px;
  margin: 0 auto;
}

.example-card {
  padding: var(--space-xl);
  background: white;
  border: 2px solid var(--border);
  border-radius: 20px;
  text-align: center;
  transition: all var(--transition);
  cursor: default;
}

.example-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--purple);
  background: linear-gradient(135deg,
    rgba(124, 111, 255, 0.03),
    rgba(91, 155, 255, 0.03));
}

.example-icon {
  font-size: 48px;
  margin-bottom: var(--space-md);
  display: block;
}

.example-card h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.example-card p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.5;
}

/* ============================================
   LANGUAGES SECTION
   ============================================ */
.languages-visual {
  padding: var(--space-4xl) 0;
  background: white;
}

.section-title-simple {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  text-align: center;
  margin-bottom: var(--space-3xl);
  color: var(--text-dark);
}

.language-region {
  margin-bottom: var(--space-3xl);
}

.region-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-gray);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.languages-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: var(--space-md);
  max-width: 1100px;
  margin: 0 auto;
}

.lang-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: var(--space-md) var(--space-lg);
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all var(--transition);
  cursor: pointer;
}

.lang-flag {
  font-size: 32px;
  line-height: 1;
}

.lang-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
}

.lang-item:hover {
  background: linear-gradient(135deg,
    rgba(124, 111, 255, 0.1),
    rgba(91, 155, 255, 0.1));
  border-color: var(--purple);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-bold {
  padding: var(--space-4xl) 0;
  background: var(--bg-light);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  max-width: 1100px;
  margin: 0 auto;
}

.price-card {
  position: relative;
  padding: var(--space-xl);
  background: white;
  border: 2px solid var(--border);
  border-radius: 24px;
  transition: all var(--transition);
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.price-card.featured {
  background: linear-gradient(135deg,
    rgba(124, 111, 255, 0.05),
    rgba(91, 155, 255, 0.05));
  border-color: var(--purple);
  border-width: 3px;
}

.popular-flag {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: var(--gradient-purple-blue);
  color: white;
  font-size: 13px;
  font-weight: 700;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.price-header h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: var(--space-xl);
}

.price-amount .currency {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-gray);
}

.price-amount .amount {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 900;
  background: var(--gradient-purple-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-amount .period {
  font-size: 18px;
  color: var(--text-gray);
}

.price-features {
  list-style: none;
  margin-bottom: var(--space-xl);
}

.price-features li {
  position: relative;
  padding-left: 28px;
  margin-bottom: var(--space-sm);
  font-size: 16px;
  color: var(--text-dark);
}

.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 18px;
}

/* ============================================
   DOWNLOAD CTA
   ============================================ */
.download-cta {
  padding: var(--space-4xl) 0;
  background: var(--gradient-purple-blue);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  margin-bottom: var(--space-md);
  color: white;
}

.cta-content p {
  font-size: 20px;
  margin-bottom: var(--space-xl);
  color: rgba(255, 255, 255, 0.9);
}

.download-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  color: white;
  text-decoration: none;
  transition: all var(--transition);
}

.store-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.store-icon {
  width: 40px;
  height: 40px;
}

.store-text {
  text-align: left;
}

.store-label {
  font-size: 12px;
  opacity: 0.9;
}

.store-name {
  font-size: 20px;
  font-weight: 700;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--text-dark);
  color: white;
  padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
  align-items: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-brand img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.footer-brand span {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: var(--space-lg);
  justify-content: flex-end;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 15px;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .hero-title-massive {
    font-size: 48px;
  }

  .hero-subtitle-large {
    font-size: 18px;
  }

  .btn-huge {
    padding: 16px 32px;
    font-size: 16px;
  }

  .hero-not-for-you {
    padding: var(--space-lg);
    margin: var(--space-2xl) auto var(--space-xl);
  }

  .hero-not-title {
    font-size: 22px;
  }

  .hero-not-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .hero-not-item {
    font-size: 14px;
    padding: var(--space-sm) var(--space-md);
  }

  .hero-but-if {
    padding: var(--space-md);
  }

  .hero-but-if p {
    font-size: 16px;
  }

  .hero-highlight {
    font-size: 17px;
  }

  .screenshots-carousel {
    flex-direction: column;
    align-items: center;
  }

  .screenshot-item {
    width: 240px;
  }

  .screenshot-item.featured {
    transform: scale(1);
  }

  .floating-badge {
    display: none;
  }

  .not-for-you-grid {
    grid-template-columns: 1fr;
  }

  .not-for-you-title {
    font-size: 28px;
  }

  .but-if-you-want p {
    font-size: 18px;
  }

  .highlight-text {
    font-size: 19px;
  }

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

  .examples-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .example-card {
    padding: var(--space-lg);
  }

  .example-icon {
    font-size: 36px;
  }

  .example-card h4 {
    font-size: 18px;
  }

  .languages-showcase {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }

  .lang-flag {
    font-size: 24px;
  }

  .lang-name {
    font-size: 14px;
  }

  .region-title {
    font-size: 20px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    flex-direction: column;
    gap: var(--space-sm);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
