/* ═══════════════════════════════════════════
   ColorWave — colorwave.cc
   ═══════════════════════════════════════════ */

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #FDF8F4;
  color: #2C2C2C;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 248, 244, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(240, 228, 220, 0.6);
  transition: box-shadow 0.3s;
}
.nav.scrolled {
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #2C2C2C;
}
.nav-logo-dots {
  display: flex;
  gap: 3px;
}
.nav-logo-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.nav-logo-dots span:nth-child(1) { background: #D7897F; }
.nav-logo-dots span:nth-child(2) { background: #96C7B3; }
.nav-logo-dots span:nth-child(3) { background: #6398A9; }
.nav-logo-text {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #8C8078;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: #2C2C2C;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: linear-gradient(135deg, #D7897F, #C47A70);
  color: #fff !important;
  border-radius: 10px;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(215, 137, 127, 0.25);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(215, 137, 127, 0.35);
  color: #fff !important;
}

/* ─── Mobile menu ─── */
.nav-hamburger {
  display: none;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  background: none;
}
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #2C2C2C;
  border-radius: 2px;
  position: relative;
}
.nav-hamburger span::before,
.nav-hamburger span::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background: #2C2C2C;
  border-radius: 2px;
  left: 0;
}
.nav-hamburger span::before { top: -6px; }
.nav-hamburger span::after { top: 6px; }

/* ─── Hero ─── */
.hero {
  padding: 140px 32px 80px;
  text-align: center;
  max-width: 1120px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: #FBF0EE;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #D7897F;
  margin-bottom: 28px;
}
.hero h1 {
  font-family: 'Nunito', sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #2C2C2C;
  margin-bottom: 20px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 .gradient-text {
  background: linear-gradient(135deg, #D7897F, #6398A9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 19px;
  color: #8C8078;
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* ─── Store Badges ─── */
.store-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 64px;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: #2C2C2C;
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.store-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.store-badge-icon {
  font-size: 24px;
  line-height: 1;
}
.store-badge-text {
  text-align: left;
}
.store-badge-label {
  font-size: 10px;
  opacity: 0.7;
  line-height: 1;
  margin-bottom: 2px;
}
.store-badge-name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

/* ─── Hero Phone Mockup ─── */
.hero-phones {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  height: 520px;
}
.phone-mock {
  position: absolute;
  width: 260px;
  height: 520px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}
.phone-mock.center {
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.phone-mock.left {
  left: 50%;
  transform: translateX(-210%) rotate(-6deg);
  z-index: 2;
  opacity: 0.85;
}
.phone-mock.right {
  left: 50%;
  transform: translateX(110%) rotate(6deg);
  z-index: 2;
  opacity: 0.85;
}
.phone-notch {
  display: none;
}
.phone-screen {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Phone Screen — Library */
.screen-library {
  background: #FDF8F4;
  padding: 44px 14px 14px;
}
.screen-header {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #2C2C2C;
  margin-bottom: 12px;
  padding: 0 2px;
}
.screen-search {
  background: #F5EDE7;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 11px;
  color: #B8B4AF;
  margin-bottom: 14px;
}
.screen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.screen-card {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}
.screen-card-cover {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.screen-card-info {
  padding: 6px 8px 8px;
}
.screen-card-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 9px;
  color: #2C2C2C;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.screen-progress-bar {
  height: 3px;
  border-radius: 2px;
  background: #F3F0EC;
  overflow: hidden;
}
.screen-progress-fill {
  height: 100%;
  border-radius: 2px;
}
.screen-card-meta {
  font-size: 8px;
  color: #B5A9A0;
  margin-top: 3px;
}

/* Phone Screen — Gallery */
.screen-gallery {
  background: #FDF8F4;
  padding: 44px 10px 10px;
}
.screen-gallery-grid {
  display: flex;
  gap: 6px;
  margin-top: 12px;
}
.screen-gallery-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.screen-gallery-item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.screen-gallery-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  background: linear-gradient(135deg, var(--g1), var(--g2));
}
.screen-gallery-author {
  position: absolute;
  bottom: 4px;
  left: 6px;
  display: flex;
  align-items: center;
  gap: 3px;
}
.screen-gallery-avatar {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.screen-gallery-name {
  font-size: 7px;
  color: #fff;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* Phone Screen — Discover */
.screen-discover {
  background: #FDF8F4;
  padding: 44px 14px 14px;
}
.screen-tags {
  display: flex;
  gap: 5px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.screen-tag {
  padding: 4px 10px;
  border-radius: 14px;
  font-size: 8px;
  font-weight: 600;
  border: 1px solid #F0E4DC;
  background: #fff;
  color: #8C8078;
}
.screen-tag.active {
  background: #D7897F;
  color: #fff;
  border-color: #D7897F;
}
.screen-book-row {
  display: flex;
  gap: 8px;
  overflow: hidden;
  margin-bottom: 14px;
}
.screen-book-item {
  min-width: 75px;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.screen-book-cover {
  height: 95px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.screen-book-name {
  padding: 4px 6px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 7px;
  color: #2C2C2C;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.screen-section-label {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #2C2C2C;
  margin-bottom: 8px;
}

/* Tab bar inside phones */
.screen-tabbar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 48px;
  background: #fff;
  border-top: 1px solid #F0E4DC;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 8px;
}
.screen-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 7px;
  font-weight: 500;
  color: #B5A9A0;
}
.screen-tab.active { color: #D7897F; }
.screen-tab-icon {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: currentColor;
  opacity: 0.3;
}
.screen-tab.active .screen-tab-icon { opacity: 0.6; }

/* ─── Phone Screenshot Image ─── */
.phone-screen-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ─── Features ─── */
.features {
  max-width: 1120px;
  margin: 0 auto;
  padding: 80px 32px 40px;
}
.features-header {
  text-align: center;
  margin-bottom: 80px;
}
.features-header h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #2C2C2C;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.features-header p {
  font-size: 17px;
  color: #8C8078;
  max-width: 480px;
  margin: 0 auto;
}
.feature-row {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 100px;
}
.feature-row.reverse {
  flex-direction: row-reverse;
}
.feature-content {
  flex: 1;
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.feature-content h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #2C2C2C;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.feature-content p {
  font-size: 16px;
  color: #8C8078;
  line-height: 1.7;
  max-width: 420px;
}
.feature-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}
.feature-phone {
  width: 280px;
  height: 560px;
  position: relative;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.08));
}

/* ─── Feature phone screens ─── */
.fscreen-catalog { background: #FDF8F4; padding: 48px 16px 60px; height: 100%; overflow: hidden; }
.fscreen-catalog .fscreen-title,
.fscreen-library .fscreen-title,
.fscreen-gallery .fscreen-title,
.fscreen-wishlist .fscreen-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #2C2C2C;
  margin-bottom: 14px;
}
.fscreen-search-bar {
  background: #F5EDE7;
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 13px;
  color: #B8B4AF;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fscreen-chips { display: flex; gap: 6px; margin-bottom: 16px; overflow: hidden; }
.fscreen-chip { padding: 5px 12px; border-radius: 16px; font-size: 11px; font-weight: 600; white-space: nowrap; }
.fscreen-chip.active { background: #D7897F; color: #fff; }
.fscreen-chip.inactive { background: #fff; color: #8C8078; border: 1px solid #F0E4DC; }
.fscreen-section-title { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 14px; color: #2C2C2C; margin-bottom: 10px; }
.fscreen-books-scroll { display: flex; gap: 10px; overflow: hidden; }
.fscreen-book-card { min-width: 100px; border-radius: 14px; overflow: hidden; background: #fff; box-shadow: 0 1px 6px rgba(0,0,0,0.04); }
.fscreen-book-cover { height: 120px; display: flex; align-items: center; justify-content: center; font-size: 34px; }
.fscreen-book-info { padding: 8px 10px; }
.fscreen-book-title { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 10px; color: #2C2C2C; margin-bottom: 2px; }
.fscreen-book-author { font-size: 9px; color: #B5A9A0; }

.fscreen-library { background: #FDF8F4; padding: 48px 14px 60px; height: 100%; overflow: hidden; }
.fscreen-stats-row { display: flex; gap: 8px; margin-bottom: 16px; }
.fscreen-stat-card { flex: 1; background: #fff; border-radius: 14px; padding: 12px 10px; text-align: center; box-shadow: 0 1px 4px rgba(0,0,0,0.03); }
.fscreen-stat-number { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 20px; color: #2C2C2C; }
.fscreen-stat-label { font-size: 9px; color: #B5A9A0; margin-top: 2px; }
.fscreen-lib-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.fscreen-lib-card { border-radius: 14px; overflow: hidden; background: #fff; box-shadow: 0 1px 4px rgba(0,0,0,0.03); }
.fscreen-lib-cover { height: 90px; display: flex; align-items: center; justify-content: center; font-size: 30px; position: relative; }
.fscreen-lib-progress { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: rgba(255,255,255,0.5); }
.fscreen-lib-progress-fill { height: 100%; }
.fscreen-lib-info { padding: 6px 8px 8px; }
.fscreen-lib-name { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 9px; color: #2C2C2C; }
.fscreen-lib-meta { font-size: 8px; color: #B5A9A0; margin-top: 2px; }

.fscreen-gallery { background: #FDF8F4; padding: 48px 10px 60px; height: 100%; overflow: hidden; }
.fscreen-gallery .fscreen-title { padding: 0 4px; }
.fscreen-masonry { display: flex; gap: 6px; }
.fscreen-masonry-col { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.fscreen-masonry-item { border-radius: 12px; overflow: hidden; position: relative; }
.fscreen-masonry-img { width: 100%; display: flex; align-items: center; justify-content: center; font-size: 28px; }
.fscreen-masonry-reactions { position: absolute; bottom: 4px; right: 6px; display: flex; gap: 2px; font-size: 10px; background: rgba(255,255,255,0.85); padding: 2px 6px; border-radius: 8px; }
.fscreen-masonry-user { position: absolute; bottom: 4px; left: 6px; display: flex; align-items: center; gap: 3px; }
.fscreen-masonry-user-dot { width: 12px; height: 12px; border-radius: 50%; background: #fff; box-shadow: 0 1px 2px rgba(0,0,0,0.15); }
.fscreen-masonry-user-name { font-size: 7px; font-weight: 600; color: #fff; text-shadow: 0 1px 3px rgba(0,0,0,0.6); }

.fscreen-wishlist { background: #FDF8F4; padding: 48px 14px 60px; height: 100%; overflow: hidden; }
.fscreen-wish-item { display: flex; gap: 12px; padding: 12px; background: #fff; border-radius: 14px; margin-bottom: 8px; box-shadow: 0 1px 4px rgba(0,0,0,0.03); align-items: center; }
.fscreen-wish-cover { width: 56px; height: 72px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.fscreen-wish-info { flex: 1; min-width: 0; }
.fscreen-wish-name { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 12px; color: #2C2C2C; margin-bottom: 2px; }
.fscreen-wish-author { font-size: 10px; color: #B5A9A0; margin-bottom: 6px; }
.fscreen-wish-badge { display: inline-flex; padding: 3px 8px; border-radius: 8px; font-size: 8px; font-weight: 600; }
.fscreen-wish-heart { font-size: 18px; flex-shrink: 0; }

.fscreen-tabbar { position: absolute; bottom: 0; left: 0; right: 0; height: 52px; background: #fff; border-top: 1px solid #F0E4DC; display: flex; align-items: center; justify-content: space-around; padding: 0 12px; }
.fscreen-tab-dot { width: 5px; height: 5px; border-radius: 50%; background: #B5A9A0; }
.fscreen-tab-dot.active { background: #D7897F; }

/* ─── CTA Section ─── */
.cta-section {
  text-align: center;
  padding: 60px 32px 80px;
  max-width: 1120px;
  margin: 0 auto;
}
.cta-section h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #2C2C2C;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.cta-section p {
  font-size: 17px;
  color: #8C8078;
  margin-bottom: 32px;
}

/* ─── Footer ─── */
.footer {
  background: #2C2C2C;
  color: #fff;
  padding: 48px 32px 32px;
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-brand { max-width: 280px; }
.footer-brand-name {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-brand-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  padding-top: 24px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal-links a:hover { color: rgba(255, 255, 255, 0.7); }

/* ─── Simple Page (support, 404) ─── */
.simple-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.simple-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 32px 80px;
  text-align: center;
}
.simple-content h1 {
  font-family: 'Nunito', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #2C2C2C;
  margin-bottom: 16px;
}
.simple-content p {
  font-size: 16px;
  color: #8C8078;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 24px;
}
.simple-content a.btn {
  display: inline-flex;
  padding: 12px 28px;
  background: linear-gradient(135deg, #D7897F, #C47A70);
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(215, 137, 127, 0.25);
}
.simple-content a.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(215, 137, 127, 0.35);
}
.simple-content .email-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #fff;
  border: 1px solid #F0E4DC;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #D7897F;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.simple-content .email-link:hover {
  border-color: #D7897F;
  box-shadow: 0 2px 8px rgba(215, 137, 127, 0.15);
}
.simple-content .error-code {
  font-family: 'Nunito', sans-serif;
  font-size: 120px;
  font-weight: 800;
  background: linear-gradient(135deg, #D7897F, #6398A9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}

/* ─── Animations ─── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in { opacity: 0; animation: fadeInUp 0.8s ease forwards; }
.animate-in.delay-1 { animation-delay: 0.1s; }
.animate-in.delay-2 { animation-delay: 0.2s; }
.animate-in.delay-3 { animation-delay: 0.3s; }
.animate-in.delay-4 { animation-delay: 0.4s; }

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}
.phone-mock.center { animation: float 5s ease-in-out infinite; }

/* ─── Responsive ─── */
@media (max-width: 960px) {
  .hero h1 { font-size: 42px; }
  .hero-subtitle { font-size: 17px; }
  .feature-row { gap: 48px; }
  .feature-content h3 { font-size: 24px; }
  .features-header h2 { font-size: 34px; }
  .phone-mock.left, .phone-mock.right { display: none; }
  .hero-phones { height: 480px; }
  .phone-mock.center { width: 240px; height: 480px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 64px; left: 0; right: 0;
    background: rgba(253, 248, 244, 0.98); backdrop-filter: blur(20px);
    padding: 20px 32px; border-bottom: 1px solid #F0E4DC; gap: 16px;
  }
  .hero { padding: 110px 20px 60px; }
  .hero h1 { font-size: 34px; }
  .hero-subtitle { font-size: 16px; }
  .store-badges { flex-direction: column; align-items: center; }
  .store-badge { width: 200px; justify-content: center; }
  .features { padding: 40px 20px; }
  .features-header { margin-bottom: 48px; }
  .features-header h2 { font-size: 28px; }
  .feature-row, .feature-row.reverse { flex-direction: column; gap: 40px; margin-bottom: 64px; }
  .feature-content { text-align: center; }
  .feature-content p { margin: 0 auto; }
  .feature-phone { width: 240px; height: 480px; }
  .cta-section h2 { font-size: 28px; }
  .cta-section { padding: 40px 20px 60px; }
  .footer { padding: 32px 20px 24px; }
  .footer-inner { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal-links { justify-content: center; flex-wrap: wrap; }
  .simple-content { padding: 110px 20px 60px; }
  .simple-content .error-code { font-size: 80px; }
  .simple-content h1 { font-size: 28px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .hero-phones { height: 420px; }
  .phone-mock.center { width: 210px; height: 420px; }
}
