/* ============ RESET & BASE ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --orange: #FF7A1A;
  --orange-dark: #E86A0A;
  --dark: #0C0C0F;
  --ink: #14141A;
  --ink-soft: #6B6B78;
  --line: #ECECF0;
  --bg-soft: #F7F7FA;
  --cream: #FFF3EA;
  --white: #ffffff;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.01em; color: var(--ink); }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  display: inline-block;
  color: var(--orange);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-orange { background: var(--orange); color: #fff; }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }

.link-more, .link-more-sm {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  text-decoration: underline;
}

.payment-icons { display: flex; gap: 12px; font-size: 12px; font-weight: 700; color: var(--ink-soft); align-items: center; }

/* ============ HEADER ============ */
.site-header { padding: 24px 0; }
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { font-weight: 800; font-size: 14px; letter-spacing: 0.1em; color: var(--ink-soft); }
.header-icons { display: flex; gap: 12px; }
.icon-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
}

/* ============ HERO ============ */
.hero { padding: 20px 0 60px; }
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-copy h1 {
  font-size: 42px;
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero-actions { display: flex; align-items: center; gap: 24px; margin-bottom: 40px; }

.happy-customers { display: flex; align-items: center; gap: 12px; }
.avatar-stack { display: flex; }
.avatar-stack img {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  margin-left: -10px;
}
.avatar-stack img:first-child { margin-left: 0; }
.happy-customers span { font-size: 13px; color: var(--ink-soft); font-weight: 500; }

.hero-visual { position: relative; }
.hero-visual img {
  width: 100%;
  border-radius: 32px;
  height: 420px;
  object-fit: cover;
}
.floating-avatar {
  position: absolute;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
  box-shadow: 0 10px 24px -6px rgba(0,0,0,0.2);
}
.floating-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.avatar-1 { top: 20px; right: -10px; }
.avatar-2 { bottom: 60px; right: 20px; }

/* ============ UNITING SECTION ============ */
.uniting-section { background: var(--cream); padding: 64px 0; border-radius: 40px; margin: 0 24px; }
.uniting-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.speaker-visual { position: relative; display: flex; justify-content: center; }
.speaker-visual img { width: 220px; border-radius: 20px; }
.sound-wave {
  position: absolute;
  color: var(--orange);
  font-weight: 700;
  font-size: 24px;
}
.wave-1 { top: 10%; right: 10%; }
.wave-2 { bottom: 15%; left: 5%; font-size: 20px; }

.uniting-copy h2 { font-size: 32px; margin-bottom: 14px; }
.uniting-copy p { color: var(--ink-soft); font-size: 14px; max-width: 420px; margin-bottom: 28px; }

.feature-icons { display: flex; gap: 32px; }
.feature { display: flex; align-items: center; gap: 10px; }
.feature-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.feature span { font-size: 13px; font-weight: 600; }

/* ============ SOUND SECTION ============ */
.sound-section { padding: 80px 0; text-align: left; }
.sound-section h2 { font-size: 34px; max-width: 500px; margin-bottom: 48px; }

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.feature-card {
  background: var(--bg-soft);
  border-radius: 20px;
  padding: 28px;
}
.feature-num { font-size: 13px; font-weight: 700; color: var(--orange); margin-bottom: 16px; }
.feature-card h4 { font-size: 17px; margin-bottom: 10px; }
.feature-card p { font-size: 13px; color: var(--ink-soft); margin-bottom: 16px; }
.feature-link { font-size: 13px; font-weight: 600; color: var(--ink); }

.sound-footer { display: flex; align-items: center; gap: 32px; }

/* ============ TRENDING ============ */
.trending-section { padding: 64px 0; background: var(--bg-soft); }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}
.section-head h2 { font-size: 28px; }

.filter-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  background: #fff;
  color: var(--ink-soft);
  border: 1px solid var(--line);
}
.chip.active { background: var(--orange); color: #fff; border-color: var(--orange); }

.trending-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.trending-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  position: relative;
}
.trending-card img { width: 100%; height: 140px; object-fit: contain; margin-bottom: 16px; }
.discount-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}
.trending-card h4 { font-size: 15px; margin-bottom: 8px; }
.trending-price { font-size: 18px; font-weight: 700; color: var(--orange); margin-bottom: 16px; }
.trending-actions { display: flex; align-items: center; gap: 16px; }

.carousel-arrows { display: flex; justify-content: flex-end; gap: 10px; }
.carousel-arrows button, .nav-arrows button {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 14px;
}

/* ============ ENJOYABLE SECTION ============ */
.enjoyable-section { padding: 24px; }
.enjoyable-inner {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  min-height: 440px;
  display: flex;
  align-items: center;
  padding: 0 !important;
}
.enjoyable-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.enjoyable-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12,12,15,0.75) 0%, rgba(12,12,15,0.1) 60%);
}
.enjoyable-copy { position: relative; z-index: 2; padding: 48px; max-width: 420px; }
.enjoyable-copy h2 { color: #fff; font-size: 32px; margin-bottom: 14px; }
.enjoyable-copy p { color: rgba(255,255,255,0.8); font-size: 14px; margin-bottom: 28px; }
.enjoyable-actions { display: flex; align-items: center; gap: 24px; }
.enjoyable-actions .payment-icons { color: rgba(255,255,255,0.7); }

/* ============ TESTIMONIALS ============ */
.testimonials-section { padding: 80px 0; text-align: left; }
.testimonials-section h2 { font-size: 30px; max-width: 480px; margin-bottom: 40px; }

.testimonial-carousel {
  display: flex;
  align-items: center;
  gap: 24px;
}
.testimonial-photo {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  width: 320px;
  height: 380px;
}
.testimonial-photo.small { width: 180px; height: 240px; }
.testimonial-photo img { width: 100%; height: 100%; object-fit: cover; }
.play-btn {
  position: absolute;
  bottom: 20px; left: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}

.testimonial-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  background: var(--orange);
  padding: 20px 14px;
  border-radius: 16px;
}
.testimonial-nav .stars { color: #fff; font-size: 12px; writing-mode: vertical-rl; }
.nav-arrows { display: flex; flex-direction: column; gap: 8px; }
.nav-arrows button { background: rgba(255,255,255,0.2); color: #fff; }

.testimonial-names { display: flex; gap: 140px; margin-top: 20px; font-weight: 600; font-size: 14px; }

/* ============ WHAT YOU GET ============ */
.whatyouget-section { padding: 64px 0; background: var(--bg-soft); }
.whatyouget-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.wyg-visual {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  display: flex;
  justify-content: center;
}
.wyg-visual img { width: 220px; }

.wyg-copy h2 { font-size: 32px; margin-bottom: 14px; }
.wyg-copy > p { color: var(--ink-soft); font-size: 14px; margin-bottom: 20px; max-width: 420px; }

.wyg-list { list-style: none; margin-bottom: 28px; }
.wyg-list li {
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  padding-left: 24px;
}
.wyg-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.wyg-actions { display: flex; gap: 14px; margin-bottom: 20px; }

/* ============ TRUST SECTION ============ */
.trust-section { padding: 48px 0; }
.trust-row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.trust-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.trust-item span { font-size: 13px; font-weight: 600; color: var(--ink-soft); }

/* ============ FOOTER ============ */
.site-footer { background: var(--dark); padding: 32px 0; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.site-footer .logo { color: #fff; }
.footer-search { display: flex; gap: 10px; background: #1C1C22; padding: 6px; border-radius: 999px; }
.footer-search input {
  border: none;
  background: transparent;
  outline: none;
  color: #fff;
  padding: 8px 16px;
  font-size: 13px;
  font-family: inherit;
  min-width: 200px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-inner, .uniting-inner, .whatyouget-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .feature-cards, .trending-carousel { grid-template-columns: repeat(2, 1fr); }
  .testimonial-carousel { flex-wrap: wrap; justify-content: center; }
  .testimonial-names { gap: 60px; justify-content: center; }
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .uniting-section { margin: 0 12px; padding: 40px 20px; border-radius: 24px; }
  .hero-copy h1 { font-size: 30px; }
  .feature-cards, .trending-carousel { grid-template-columns: 1fr; }
  .sound-footer { flex-direction: column; align-items: flex-start; gap: 16px; }
  .enjoyable-copy { padding: 32px; }
  .trust-row { justify-content: center; }
  .footer-inner { flex-direction: column; }
}
