/* ==========================================
   PlatePlaya Marketing Site
   Gold/Yellow + Black + White color scheme
   ========================================== */

:root {
  --gold: #FFD600;
  --gold-light: #FFF176;
  --gold-dark: #F5C400;
  --black: #1A1A1A;
  --dark: #2D2D2D;
  --gray-900: #333333;
  --gray-600: #666666;
  --gray-400: #999999;
  --gray-200: #E5E5E5;
  --gray-100: #F5F5F5;
  --white: #FFFFFF;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.16);
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

.text-gold { color: var(--gold-dark); }
.text-dark { color: var(--black); }

/* ==========================================
   NAV
   ========================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--black);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.logo-img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray-600);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

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

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.9rem;
  background: var(--gold);
  color: var(--black);
}

.btn-sm:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 4px 16px rgba(255,214,0,0.4);
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,214,0,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--gray-200);
}

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

/* ==========================================
   HERO
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 130%;
  background: var(--gold);
  border-radius: 0 0 0 40%;
  transform: rotate(-8deg);
  z-index: 0;
}

.hero-bg-shape-2 {
  position: absolute;
  bottom: -40%;
  left: -15%;
  width: 50%;
  height: 80%;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.07;
  z-index: 0;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--black);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--gray-400);
  font-weight: 500;
}

/* ==========================================
   PHONE MOCKUPS
   ========================================== */
.hero-phones {
  position: relative;
  height: 640px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone {
  position: absolute;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.phone:hover {
  transform: translateY(-8px) !important;
}

.phone-frame {
  width: 260px;
  height: 530px;
  background: var(--black);
  border-radius: 36px;
  padding: 8px;
  box-shadow: var(--shadow-xl), 0 0 0 2px rgba(255,255,255,0.1) inset;
  position: relative;
  overflow: hidden;
}

.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 24px;
  background: var(--black);
  border-radius: 0 0 16px 16px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

/* Phone positions - staggered like reference */
.phone-1 {
  left: -30px;
  top: 60px;
  z-index: 1;
}

.phone-2 {
  left: 50%;
  transform: translateX(-50%);
  top: -20px;
  z-index: 3;
}

.phone-3 {
  right: -30px;
  top: 40px;
  z-index: 2;
}

/* ==========================================
   PHONE SCREEN: Browse Songs (Phone 1)
   ========================================== */
.screen-browse {
  background: var(--white);
}

.screen-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px 6px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--black);
}

.screen-status-bar.dark {
  color: var(--white);
}

.status-icons {
  font-size: 0.45rem;
  letter-spacing: 2px;
}

.screen-header-gold {
  background: var(--gold);
  padding: 20px 18px 24px;
  border-radius: 0 0 24px 24px;
}

.screen-header-gold h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--black);
  font-style: italic;
}

.screen-header-gold p {
  font-size: 0.7rem;
  color: rgba(0,0,0,0.5);
  margin-top: 2px;
}

.screen-search {
  margin: 12px 14px;
  padding: 10px 14px;
  background: var(--gray-100);
  border-radius: 10px;
  font-size: 0.7rem;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 6px;
}

.search-icon { font-size: 0.8rem; }

.song-list {
  padding: 0 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.song-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 12px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
}

.song-card.active {
  border-color: var(--gold);
  background: #FFFDE7;
}

.song-art {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  flex-shrink: 0;
}

.art-1 { background: linear-gradient(135deg, #1a1a1a, #444); }
.art-2 { background: linear-gradient(135deg, #2d2d2d, #555); }
.art-3 { background: linear-gradient(135deg, #333, #666); }
.art-4 { background: linear-gradient(135deg, #444, #777); }

.song-info { flex: 1; min-width: 0; }

.song-name {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--black);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.song-artist {
  font-size: 0.6rem;
  color: var(--gray-400);
}

.song-badge {
  font-size: 0.5rem;
  font-weight: 700;
  background: var(--gold);
  color: var(--black);
  padding: 3px 8px;
  border-radius: 20px;
  white-space: nowrap;
}

.song-check {
  font-size: 0.7rem;
  color: var(--gray-400);
}

/* ==========================================
   PHONE SCREEN: Now Playing (Phone 2)
   ========================================== */
.screen-now-playing {
  background: var(--gold);
  display: flex;
  flex-direction: column;
}

.np-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 18px 0;
}

.np-back {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--black);
  cursor: pointer;
}

.np-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--black);
}

.np-heart {
  font-size: 1.1rem;
  color: var(--black);
}

.np-album-art {
  margin: 16px auto 20px;
  width: 160px;
  height: 160px;
  background: var(--white);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.np-art-inner {
  width: 80%;
  height: 80%;
  background: linear-gradient(135deg, #1a1a1a, #333);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.np-bolt {
  font-size: 3rem;
  filter: brightness(0) saturate(100%) invert(85%) sepia(96%) saturate(500%) hue-rotate(0deg);
}

.np-song-info {
  text-align: center;
  padding: 0 18px;
}

.np-song-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--black);
}

.np-song-artist {
  font-size: 0.75rem;
  color: rgba(0,0,0,0.5);
  margin-top: 2px;
}

.np-progress {
  padding: 16px 24px 0;
}

.np-progress-bar {
  height: 4px;
  background: rgba(0,0,0,0.15);
  border-radius: 4px;
  overflow: hidden;
}

.np-progress-fill {
  height: 100%;
  width: 50%;
  background: var(--black);
  border-radius: 4px;
}

.np-times {
  display: flex;
  justify-content: space-between;
  font-size: 0.6rem;
  color: rgba(0,0,0,0.4);
  margin-top: 4px;
}

.np-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 16px 0;
}

.np-ctrl {
  font-size: 1rem;
  color: var(--black);
  cursor: pointer;
}

.np-play {
  width: 44px;
  height: 44px;
  background: var(--black);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  padding-left: 3px;
}

.np-set-btn {
  margin: 0 24px 20px;
  padding: 12px;
  background: var(--black);
  color: var(--gold);
  text-align: center;
  border-radius: 14px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

/* ==========================================
   PHONE SCREEN: Profile (Phone 3)
   ========================================== */
.screen-profile {
  background: var(--dark);
  display: flex;
  flex-direction: column;
}

.profile-header {
  text-align: center;
  padding: 8px 18px 20px;
}

.profile-avatar {
  width: 64px;
  height: 64px;
  background: var(--gold);
  border-radius: 50%;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.profile-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
}

.profile-team {
  font-size: 0.7rem;
  color: var(--gray-400);
  margin-top: 2px;
}

.profile-section {
  padding: 0 18px;
}

.profile-label {
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.profile-song-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: rgba(255,255,255,0.08);
  border-radius: 14px;
  border: 1px solid rgba(255,214,0,0.2);
}

.profile-song-art {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #1a1a1a, #444);
  border-radius: 10px;
  flex-shrink: 0;
}

.profile-song-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
}

.profile-song-artist {
  font-size: 0.6rem;
  color: var(--gray-400);
}

.profile-song-wave {
  margin-left: auto;
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 20px;
}

.profile-song-wave span {
  width: 3px;
  background: var(--gold);
  border-radius: 2px;
  animation: wave 1.2s ease-in-out infinite;
}

.profile-song-wave span:nth-child(1) { height: 30%; animation-delay: 0s; }
.profile-song-wave span:nth-child(2) { height: 70%; animation-delay: 0.15s; }
.profile-song-wave span:nth-child(3) { height: 50%; animation-delay: 0.3s; }
.profile-song-wave span:nth-child(4) { height: 90%; animation-delay: 0.45s; }
.profile-song-wave span:nth-child(5) { height: 40%; animation-delay: 0.6s; }

@keyframes wave {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.4); }
}

.profile-stats-row {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.profile-stat { text-align: center; }

.profile-stat-num {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold);
}

.profile-stat-label {
  font-size: 0.55rem;
  color: var(--gray-400);
  margin-top: 2px;
}

/* ==========================================
   SECTION STYLES
   ========================================== */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-dark);
  background: #FFF9C4;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}

.section-header h2 {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ==========================================
   FEATURES
   ========================================== */
.features {
  padding: 120px 0;
  background: var(--gray-100);
}

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

.feature-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: #FFF9C4;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ==========================================
   HOW IT WORKS
   ========================================== */
.how-it-works {
  padding: 120px 0;
}

.steps {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  width: 100%;
}

.step-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  width: 64px;
}

.step-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.step-line {
  width: 2px;
  height: 40px;
  background: var(--gray-200);
  margin: 12px 0 12px 31px;
}

/* ==========================================
   SOCIAL PROOF
   ========================================== */
.social-proof {
  padding: 80px 0 120px;
  background: var(--gray-100);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--black);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* ==========================================
   DOWNLOAD / CTA
   ========================================== */
.download {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.download-bg-shape {
  position: absolute;
  top: -30%;
  left: -10%;
  width: 120%;
  height: 160%;
  background: var(--gold);
  border-radius: 40px;
  transform: rotate(-3deg);
  z-index: 0;
}

.download .container {
  position: relative;
  z-index: 1;
}

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

.download-content h2 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--black);
}

.download-content p {
  font-size: 1.1rem;
  color: rgba(0,0,0,0.6);
  margin-bottom: 36px;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--black);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.store-btn.coming-soon {
  opacity: 0.85;
  cursor: default;
  pointer-events: none;
}

.store-icon {
  font-size: 1.6rem;
}

.store-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.store-small {
  font-size: 0.65rem;
  color: var(--gray-400);
  line-height: 1;
}

.store-big {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 64px 0 32px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--gray-400);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 64px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
}

.footer-col a {
  display: block;
  text-decoration: none;
  color: var(--gray-400);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--gray-600);
}

/* ==========================================
   ANIMATIONS
   ========================================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 { font-size: 3rem; }
  .hero-subtitle { margin: 0 auto 36px; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }

  .hero-phones {
    height: 500px;
    margin-top: 40px;
  }

  .phone-frame {
    width: 200px;
    height: 410px;
    border-radius: 28px;
  }

  .phone-notch {
    width: 80px;
    height: 20px;
  }

  .phone-1 { left: 0; top: 40px; }
  .phone-2 { top: -10px; }
  .phone-3 { right: 0; top: 30px; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: repeat(2, 1fr); }
  .section-header h2 { font-size: 2.2rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }

  .hero { padding: 100px 0 60px; }
  .hero-text h1 { font-size: 2.4rem; }

  .hero-phones { height: 420px; }

  .phone-frame {
    width: 160px;
    height: 330px;
    border-radius: 22px;
    padding: 5px;
  }

  .phone-notch { width: 60px; height: 16px; }
  .phone-screen { border-radius: 18px; }

  .phone-1 { left: -10px; top: 40px; }
  .phone-3 { right: -10px; top: 30px; }

  .screen-header-gold h3 { font-size: 0.9rem; }
  .screen-header-gold p { font-size: 0.6rem; }
  .screen-search { font-size: 0.6rem; padding: 8px 10px; margin: 8px 10px; }
  .song-card { padding: 6px; gap: 6px; }
  .song-art { width: 28px; height: 28px; }
  .song-name { font-size: 0.6rem; }
  .song-artist { font-size: 0.5rem; }
  .song-badge { font-size: 0.4rem; padding: 2px 6px; }

  .np-album-art { width: 100px; height: 100px; margin: 10px auto 14px; }
  .np-song-name { font-size: 0.85rem; }
  .np-set-btn { margin: 0 16px 12px; padding: 8px; font-size: 0.6rem; }

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

  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }

  .footer-links { gap: 32px; }

  .download-content h2 { font-size: 2.2rem; }

  .hero-bg-shape {
    width: 100%;
    height: 50%;
    top: auto;
    bottom: 0;
    right: -20%;
    border-radius: 40% 0 0 0;
  }
}

@media (max-width: 480px) {
  .hero-text h1 { font-size: 2rem; }
  .hero-subtitle { font-size: 1rem; }

  .hero-phones { height: 360px; }

  .phone-frame {
    width: 130px;
    height: 270px;
    border-radius: 18px;
    padding: 4px;
  }

  .phone-notch { width: 50px; height: 12px; border-radius: 0 0 10px 10px; }
  .phone-screen { border-radius: 14px; }

  .hero-stats { gap: 24px; }
  .stat-number { font-size: 1.4rem; }

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

  .store-btn { padding: 12px 20px; }
}
