:root {
  --cream: #F7F6F2;
  --beige: #EDE7DF;
  --taupe: #D8CEC3;
  --sage: #7F8F73;
  --sage-deep: #6F7F66;
  --text: #3F3A36;
  --text-secondary: #6A645E;
  --text-muted: #8A847E;
  --white: #FFFFFF;
  --overlay: rgba(45, 42, 38, 0.55);
  --radius: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --radius-pill: 999px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--cream);
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.25; }
h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h3 { font-size: 1.15rem; font-weight: 600; }

em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.mt-3{
  margin-top: 1.5rem;
}
.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-primary {
  background: var(--sage);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--sage-deep);
}
.btn-white{
  background: var(--white);
  color: var(--sage);
}
.btn-white:hover {
  background: var(--sage);
  color: var(--white);
}

.btn-card {
  background: var(--sage);
  color: var(--white);
  border-radius: var(--radius);
  margin-top: 1rem;
  padding: 0.65rem 1.25rem;
  font-size: 0.85rem;
}
.btn-card:hover { background: var(--sage-deep); }

.btn-large { padding: 1rem 2rem; font-size: 1rem; }

.btn-footer {
  background: var(--taupe);
  color: var(--text);
  margin-top: 0.5rem;
}
.btn-footer-cta {
  background: var(--sage);
  color: var(--white);
  margin-top: 1rem;
  padding: 1rem 2rem;
  font-size: 1rem;
}
.btn-footer-cta:hover {
  background: var(--sage-deep);
}

/* ---- 1. Header ---- */
.header {
  background: var(--cream);
  padding: 1.5rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  min-width: 44px;
  min-height: 44px;
  padding: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--text);
  border-radius: var(--radius);
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.header.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}
.header.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-cta-mobile { display: none !important; }
.header-cta-desktop { display: inline-block; }

.nav-overlay {
  display: none;
}

.nav {
  display: flex;
  gap: 2rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.nav a:hover { color: var(--text); }

.nav-close {
  display: none;
}

/* ---- 2. Hero (full-width image, content overlay) ---- */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  min-height: 75vh;
  max-height: 700px;
}

/* Full-width hero image (behind content) */
.hero-image-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.35) 50%, transparent 100%);
  pointer-events: none;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-placeholder {
  position: absolute;
  inset: 0;
  background-image: url(../images/MH_06412.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Content on top of hero image */
.hero-content-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 75vh;
  max-height: 700px;
  padding: 4rem 1.5rem;
}

.hero-content {
  max-width: 520px;
  text-align: left;
  margin-right: 30%;
}

.hero-content .btn-primary {
  display: inline-block;
}

.hero-content-wrap .eyebrow {
  font-size: 1rem;
  font-weight: 00;
  letter-spacing: 0.22em;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7), 0 2px 6px rgba(0, 0, 0, 0.5);
  margin-bottom: 1.25rem;
  display: block;
}

.hero-content-wrap .hero-heading,
.hero-content-wrap .hero-heading em {
  color: #fff;
 
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.hero-heading {
  margin-bottom: 1.5rem;
  color: var(--text);
}

/* ---- 3. Intro ---- */
.intro {
  background: var(--cream);
  padding: 5rem 0;
}

.intro-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.intro-heading {
  margin-bottom: 1rem;
  color: var(--text);
}

.intro-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 0;
}

.intro-with-image .intro-inner {
  max-width: 1160px;
  text-align: left;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  align-items: center;
}

.intro-with-image .intro-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.intro-with-image .intro-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-with-image .intro-heading { margin-bottom: 1.25rem; }
.intro-with-image .intro-text { margin-bottom: 1rem; }
.intro-with-image .intro-text:last-of-type { margin-bottom: 1.5rem; }

@media (max-width: 768px) {
  .intro-with-image .intro-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding: 0 1.25rem;
  }
  .intro-with-image .intro-image-wrap { max-width: 280px; margin: 0 auto; }
}

@media (max-width: 480px) {
  .intro-with-image .intro-inner { padding: 0 1rem; gap: 1.5rem; }
  .intro-with-image .intro-image-wrap { max-width: 100%; }
}

/* ---- 4. Sound familiar (layered overlap) ---- */
.sound-familiar {
  background: var(--cream);
  padding: 5rem 0;
}

.sound-outer {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 380px;
}

.sound-image-wrap {
  flex-shrink: 0;
  width: 300px;
  position: relative;
  z-index: 2;
  margin-right: -60px;
}

.sound-image-wrap .img-placeholder {
  width: 100%;
}

.img-sound-lifestyle {
  aspect-ratio: 3 / 4;
}

.img-placeholder {
  background-image: url(../images/pooja.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
}

.img-lifestyle {
  width: 100%;
  aspect-ratio: 1;
}

.img-portrait {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3 / 4;
}

.rounded { border-radius: var(--radius-lg); }

.sound-green-block {
  flex: 1;
  min-width: 0;
  max-width: 480px;
  margin-left: 2rem;
  padding: 2.5rem 2.75rem;
  background: var(--sage);
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
}

.sound-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin: 0 0 1.25rem;
}

.sound-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 300;
}

.sound-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.sound-list li:last-child { margin-bottom: 0; }

.sound-list .arrow {
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
}

/* ---- 5. About ---- */
.about {
  background: var(--cream);
  padding: 5rem 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-greeting {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.5rem;
}

.about-heading {
  margin-bottom: 1rem;
  color: var(--text);
}

.about-text {
  font-size: 1.02rem;
  color: var(--text-secondary);
  margin: 0 0 1.5rem;
  line-height: 1.75;
}

.about-image-wrap {
  display: flex;
  justify-content: flex-end;
}

/* ---- 6. Services (card slider) ---- */
.services {
  background: var(--beige);
  padding: 5rem 0;
}

.services-inner {
  text-align: center;
}

.section-heading {
  margin-bottom: 0.5rem;
}

.services-inner .section-heading { margin-bottom: 2.5rem; }

.services-slider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
}

.slider-btn {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid var(--taupe);
  background: rgba(255, 255, 255, 0.6);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.slider-btn:hover {
  background: var(--white);
  color: var(--text);
}

.slider-arrow {
  font-size: 1rem;
  line-height: 1;
}

.services-track {
  flex: 1;
  min-width: 0;
  display: flex;
  gap: 1.75rem;
  padding: 0.25rem 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.services-track::-webkit-scrollbar {
  display: none;
}

.service-card {
  flex: 0 0 calc((100% - 2 * 1.75rem) / 3);
  min-width: 280px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: left;
  box-shadow: 0 2px 12px rgba(63, 58, 54, 0.06);
}

.service-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.65;
}

/* ---- 7. How it works ---- */
.how-works {
  background: var(--cream);
  padding: 5rem 0;
}

.how-works-inner {
  text-align: center;
}

.how-works-sub {
  margin: 0 0 2.5rem;
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}

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

.step-card {
  background: var(--beige);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--sage);
  color: var(--white);
  border-radius: 50%;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.step-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

/* ---- 8. Final CTA (full-width image) ---- */
.final-cta {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100vw;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background: #6F7F66;
  background-size: cover;
  background-position: center;
}

.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
}

.final-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3rem 1.5rem;
}

.final-heading {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.final-heading em { color: var(--white); }

.final-sub {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  margin: 0 0 1.5rem;
  font-weight: 400;
}

.final-cta .btn-primary {
  background: var(--sage);
  color: var(--white);
}
.final-cta .btn-primary:hover {
  background: var(--sage-deep);
}

/* ---- 9. Footer ---- */
.footer {
  background: var(--cream);
  color: var(--text);
  padding: 3.5rem 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
}

.footer-col h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.footer-community p,
.footer-brand .footer-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0 0 1rem;
  line-height: 1.6;
}

.newsletter-form input {
  width: 100%;
  max-width: 260px;
  padding: 0.7rem 1rem;
  border: 1px solid var(--taupe);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
}

.newsletter-form input::placeholder {
  color: var(--text-muted);
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  margin: 0 0 0.4rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.social-links a {
  color: var(--text);
}

.social-links a:hover { text-decoration: underline; }

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.95rem;
}

.footer-nav a {
  color: var(--text);
}

.footer-nav a:hover { text-decoration: underline; }

.footer-legal {
  border-top: 1px solid var(--taupe);
  padding: 1.25rem 1.5rem;
  text-align: center;
}

.footer-legal p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}


.sound-familiar {
  background: #f7f6f2;
  padding: 50px 0;
  overflow: hidden; /* IMPORTANT */
}

.sound-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  min-height: 420px;
}

/* IMAGE */
.sound-image {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 360px;
  height: 420px;
  z-index: 2;
}

.sound-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
}

/* GREEN BOX – EDGE BLEED */
.sound-content {
  position: relative;
  margin-left: 220px;

  /* KEY PART */
  width: calc(100vw - 220px);
  max-width: none;

  background: #7f8f73;
  border-radius: 36px 0 0 36px; /* RIGHT SIDE FLAT */
  padding: 64px 120px 64px 220px;
  color: #ffffff;
}

/* TEXT */
.sound-content h2 {
  font-family: serif;
  font-size: 34px;
  margin-bottom: 32px;
}

.sound-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sound-content li {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.sound-content .arrow {
  font-size: 18px;
}

.sound-content p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
  max-width: 720px;
}
.how-it-works {
  background: #f7f6f2;
  padding: 120px 0;
}

.how-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Eyebrow */
.eyebrow {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a847e;
}

/* Title */
.how-title {
  font-family: serif;
  font-size: 42px;
  line-height: 1.3;
  max-width: 900px;
  margin: 24px auto 80px;
  color: #3f3a36;
}

.how-title em {
  font-style: italic;
}

/* Steps layout */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

/* Card */
.step {
  position: relative;
  background: #ede7df;
  border-radius: 28px;
  padding: 72px 32px 40px;
}

/* Number circle */
.step-number {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  background: #d5955e;
  color: #ffffff;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Card title */
.step h3 {
  font-family: serif;
  font-size: 26px;
  margin-bottom: 16px;
  color: #d5955e;
}

/* Card text */
.step p {
  font-size: 15px;
  line-height: 1.6;
  color: #6a645e;
  margin: 0;
}

/* ============================================
   Responsive — whole project
   ============================================ */

@media (max-width: 900px) {
  .container { padding: 0 1.25rem; }

  .hero-content {
    margin-right: 15%;
    max-width: 420px;
  }

  .sound-wrapper {
    min-height: 360px;
  }
  .sound-image {
    width: 280px;
    height: 320px;
  }
  .sound-content {
    margin-left: 180px;
    width: calc(100vw - 180px);
    padding: 48px 48px 48px 180px;
  }
  .sound-content h2 { font-size: 28px; }

  .how-container { padding: 0 1.25rem; }
  .how-title { font-size: 32px; margin-bottom: 48px; }
  .steps { gap: 32px; }
  .step { padding: 56px 24px 32px; }
  .step h3 { font-size: 22px; }
}

@media (max-width: 768px) {
  /* Header & mobile sidebar menu */
  .menu-toggle { display: flex; }
  .header-cta-desktop { display: none !important; }
  .header-cta-mobile { display: inline-block !important; }

  .header-inner {
    flex-wrap: nowrap;
    gap: 1rem;
  }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(63, 58, 54, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    pointer-events: none;
  }
  body.nav-open .nav-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 88vw);
    max-width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 5rem 1.5rem 2rem;
    background: var(--cream);
    box-shadow: -8px 0 32px rgba(63, 58, 54, 0.12);
    z-index: 101;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    border-left: 1px solid var(--taupe);
  }
  body.nav-open .nav {
    transform: translateX(0);
  }
  .nav-close {
    display: flex;
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--text);
    border-radius: var(--radius);
  }
  .nav-close:hover {
    background: var(--beige);
  }
  .nav-close span {
    position: absolute;
    width: 20px;
    height: 2px;
    background: currentColor;
  }
  .nav-close span:nth-child(1) { transform: rotate(45deg); }
  .nav-close span:nth-child(2) { transform: rotate(-45deg); }
  .nav a {
    font-size: 1.05rem;
    padding: 0.85rem 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    border-bottom: 1px solid var(--taupe);
  }
  .nav a:last-of-type {
    border-bottom: none;
    margin-top: 0.5rem;
  }
  .nav .btn {
    justify-content: center;
    margin-top: 0.25rem;
    padding: 0.9rem 1.25rem;
    text-align: center;
    white-space: normal;
    line-height: 1.4;
  }
  .logo img { width: 200px; max-width: 100%; }

  /* Hero */
  .hero-inner { min-height: 60vh; max-height: 500px; }
  .hero-content-wrap {
    min-height: 60vh;
    max-height: 500px;
    padding: 2.5rem 1.25rem;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .hero-content {
    margin-right: 0;
    max-width: 100%;
    text-align: center;
  }
  .hero-content .btn-primary {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-content-wrap .eyebrow { font-size: 0.85rem; letter-spacing: 0.15em; }
  .hero-heading { font-size: clamp(1.5rem, 5vw, 2rem); margin-bottom: 1.25rem; }

  /* Intro */
  .intro { padding: 3rem 0; }
  .intro-heading { font-size: 1.5rem; }
  .intro-text { font-size: 1rem; }

  /* Sound familiar — stack on mobile */
  .sound-familiar { padding: 3rem 0; overflow: visible; }
  .sound-wrapper {
    max-width: 100%;
    min-height: auto;
    display: flex;
    flex-direction: column;
    padding: 0 1.25rem;
  }
  .sound-image {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 360px;
    height: 280px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
  }
  .sound-image img { border-radius: var(--radius-lg); }
  .sound-content {
    position: relative;
    margin-left: 0;
    width: 100%;
    max-width: 100%;
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-lg);
    margin-top: -2rem;
    z-index: 2;
  }
  .sound-content h2 { font-size: 1.6rem; margin-bottom: 1.25rem; }
  .sound-content li { margin-bottom: 1rem; }
  .sound-content p { max-width: none; }

  /* About */
  .about { padding: 3rem 0; }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-image-wrap { justify-content: center; }
  .about-content { order: -1; text-align: center; }
  .about-text { text-align: center; }

  /* Services */
  .services { padding: 3rem 0; }
  .services-inner .section-heading { margin-bottom: 1.5rem; }
  .services-slider { gap: 0.5rem; }
  .services-track {
    padding: 0.25rem 0.25rem 0.5rem;
    gap: 1rem;
  }
  .service-card {
    flex: 0 0 calc(100% - 1rem);
    min-width: calc(100% - 1rem);
    padding: 1.5rem;
  }
  .slider-btn { width: 2.5rem; height: 2.5rem; }

  /* How it works */
  .how-it-works { padding: 3rem 0; }
  .how-container { padding: 0 1.25rem; }
  .how-title { font-size: 1.5rem; margin: 1rem auto 2.5rem; line-height: 1.35; }
  .steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .step { padding: 3rem 1.5rem 2rem; }
  .step-number { width: 48px; height: 48px; top: -24px; font-size: 1.1rem; }
  .step h3 { font-size: 1.25rem; }
  .step p { font-size: 0.95rem; }

  /* Final CTA */
  .final-cta { min-height: 320px; }
  .final-cta-content { padding: 2rem 1.25rem; }
  .final-heading { font-size: 1.5rem; margin-bottom: 0.5rem; }
  .final-sub { font-size: 0.95rem; margin-bottom: 1.25rem; }
  .final-cta .btn-large { padding: 0.85rem 1.5rem; font-size: 0.95rem; }

  /* Footer */
  .footer { padding: 2.5rem 0 0; }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 1.5rem;
    text-align: center;
  }
  .footer-community .newsletter-form input { max-width: 100%; }
  .footer-brand img { margin: 0 auto; display: block; }
  .social-links { justify-content: center; }
  .footer-nav { align-items: center; }
  .footer-legal { padding: 1rem 1.25rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }

  .logo img { width: 180px; min-width: 0; }
  .hero-inner { min-height: 55vh; }
  .hero-content-wrap { min-height: 55vh; padding: 2rem 1rem; }
  .hero-heading { font-size: 1.35rem; }
  .intro { padding: 2.5rem 0; }
  .intro-heading { font-size: 1.35rem; }

  .sound-familiar { padding: 2.5rem 0; }
  .sound-image { height: 400px; max-width: 100%; margin-bottom: 10px; }
  .sound-content { padding: 2rem 1.25rem; margin-top: 0rem; }
  .sound-content h2 { font-size: 1.4rem; }

  .about { padding: 2.5rem 0; }
  .about-heading { font-size: 1.35rem; }
  .services { padding: 2.5rem 0; }
  .how-it-works { padding: 2.5rem 0; }
  .how-title { font-size: 1.3rem; margin-bottom: 2rem; }
  .step { padding: 2.5rem 1.25rem 1.5rem; }
  .final-cta { min-height: 280px; }
  .final-heading { font-size: 1.35rem; }
  .btn { padding: 0.75rem 1.5rem; font-size: 0.85rem; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
  .btn-large { padding: 0.85rem 1.25rem; font-size: 0.9rem; }
}

@media (max-width: 360px) {
  .container { padding: 0 0.75rem; }
  .logo img { width: 160px; }
  .hero-heading { font-size: 1.25rem; }
  .intro-heading { font-size: 1.25rem; }
  .sound-content { padding: 1.5rem 1rem; }
  .how-title { font-size: 1.2rem; }
  .final-cta { min-height: 260px; }
  .final-cta-content { padding: 1.5rem 1rem; }
}
