/* ============================================
   MELOGRAM — style.css
   ============================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --pink: #D4145A;
  --pink-light: #F7567C;
  --pink-pale: #FFF0F5;
  --pink-bg: #FEF5F8;
  --char: #3D3553;
  --text: #5A5070;
  --muted: #9E98B8;
  --white: #FFFFFF;
  --purple: #6B5C8E;
  --purple-soft: #8E7CB5;
  --purple-bg: #F3EFFA;
  --indigo: #4A3F6B;
  --indigo-soft: #7A6FA5;
  --shadow: 0 4px 24px rgba(212, 20, 90, 0.10);
  --shadow-card: 0 2px 16px rgba(60, 20, 60, 0.08);
  --radius: 20px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #FEF8FA;
  color: var(--char);
  overflow-x: hidden;
}

/* ── NAV ── */

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 249, 252, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 20, 90, 0.09);
  box-shadow: 0 2px 20px rgba(212, 20, 90, 0.06);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: auto;
  gap: 20px; /* controls space between links + button */
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-svg {
  height: 100px;
  width: auto;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--pink);
}

/* ── BUTTONS ── */

.btn-primary {
  background: var(--pink);
  color: #fff;
  border: none;
  padding: 12px 26px;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(212, 20, 90, 0.30);
  white-space: nowrap;
}

.btn-primary:hover {
  background: #b8104e;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(212, 20, 90, 0.38);
}

.btn-outline {
  width: 100%;
  background: transparent;
  color: var(--pink);
  border: 2px solid var(--pink);
  padding: 10px 16px;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
  background: var(--pink);
  color: white;
}

/* ── HERO ── */

.hero-section {
  overflow: hidden;
  padding-top: 0;
  margin-top: 0;
  background: #FEF8FA;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px 0;
  gap: 0;
}

.hero-left {
  position: relative;
  z-index: 2;
}

.hero-left::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 20, 90, 0.08), transparent 70%);
  z-index: -1;
}

.hero-left > *:first-child {
  margin-top: 10px;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-illustration {
  width: 100%;
}

.hero-art {
  width: 125%;
  height: auto;
  display: block;
}

/* Disable old decorative elements */
.hero-right--burst,
.hero-burst,
.hero-ribbon,
.hero-ribbon-1,
.hero-ribbon-2,
.hero-ribbon-3,
.hero-confetti,
.hero-confetti-1,
.hero-confetti-2,
.hero-confetti-3,
.hero-confetti-4,
.deco,
.deco-1,
.deco-2,
.deco-3,
.deco-4,
.deco-5 {
  display: none !important;
}

/* ── SONG CARD ── */

.song-card {
  position: absolute;
  background: transparent;
  border-radius: 0;
  padding: 0;
  width: auto;
  box-shadow: none;
  z-index: 3;
  animation: none;
}

.song-card--hero {
  position: absolute;
  top: 19%;
  left: 54.5%;
  transform: translateX(-50%) rotate(6deg);
  width: 395px;
  max-width: 85%;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 26px;
  padding: 20px 22px;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow:
    0 14px 30px rgba(80, 17, 72, 0.14),
    0 4px 10px rgba(0, 0, 0, 0.03);
}

.song-card--hero::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 26px;
  box-shadow: inset 0 -6px 18px rgba(0, 0, 0, 0.06);
  pointer-events: none;
}

.song-card--hero::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 78%;
  height: 26px;
  background: radial-gradient(
    ellipse at center,
    rgba(66, 18, 60, 0.16) 0%,
    rgba(66, 18, 60, 0) 72%
  );
  filter: blur(8px);
  z-index: -1;
}

.sc-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.sc-kicker,
.sc-label {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #d4145a;
  margin-bottom: 0;
}

.sc-chip {
  display: inline-flex;
  align-items: center;
  background: #ef1d72;
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(212, 20, 90, 0.16);
}

.song-card--hero .sc-title {
  font-size: 1.95rem;
  line-height: 1.02;
  font-weight: 700;
  color: #2A2A3A;
  margin-bottom: 26px;
  letter-spacing: -0.04em;
  max-width: 290px;
}

.sc-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--char);
  margin-bottom: 3px;
}

.sc-desc {
  font-size: 0.76rem;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.45;
}

/* ── MINI PLAYER ── */

.mini-player,
.mini-player--hero {
  display: flex;
  align-items: center;
  gap: 14px;
}

.play-sm,
.mini-player--hero .play-sm {
  width: 72px;
  height: 72px;
  background: var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 30px rgba(212, 20, 90, 0.28);
  flex-shrink: 0;
  cursor: pointer;
}

.play-sm svg,
.mini-player--hero .play-sm svg {
  width: 22px;
  height: 22px;
  fill: white;
  margin-left: 4px;
}

.wv-sm,
.mini-player--hero .wv-sm {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 4px;
  height: 42px;
}

.wv-sm .wb,
.mini-player--hero .wv-sm .wb {
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff84b2 0%, #d4145a 100%);
  opacity: 0.65;
  animation: wa 1.2s ease-in-out infinite;
}

.time-sm,
.mini-player--hero .time-sm {
  font-size: 1rem;
  font-weight: 700;
  color: #7e7a99;
}

@keyframes wa {
  0%,
  100% {
    transform: scaleY(1);
  }

  50% {
    transform: scaleY(0.35);
  }
}

/* ── HERO TEXT ── */

.hero-title {
  font-family: "brushberry-script", sans-serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.18;
  letter-spacing: 0;
  margin-bottom: 8px;
  color: var(--char);
  font-weight: 400;
}

.hero-title em {
  color: #d4145a;
  font-style: normal;
}

.hero-sub {
  max-width: 620px;
  font-size: 1.12rem;
  line-height: 1.65;
  color: #4A4A5E;
  margin-top: 30px;
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.hero-proof {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 12px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  font-size: 0.82rem;
  border-radius: 999px;
  margin-bottom: 28px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(212, 20, 90, 0.18);
  box-shadow: 0 4px 12px rgba(212, 20, 90, 0.06);
  color: var(--text);
}

.hero-cta {
  padding: 20px 38px;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 16px 40px rgba(212, 20, 90, 0.35);
}

.hero-example-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--pink);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s, transform 0.15s;
  margin-top: 14px;
}

.hero-example-play {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--pink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(212, 20, 90, 0.30);
  transition: background 0.15s, transform 0.15s;
}

.hero-example-play svg {
  width: 12px;
  height: 12px;
  margin-left: 2px;
}

.hero-example-label {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.hero-example-link:hover {
  color: #b8104e;
}

.hero-example-link:hover .hero-example-play {
  background: #b8104e;
  transform: scale(1.05);
}

/* ── TRUST BAR ── */

.trust-bar {
  background: white;
  border-top: 1px solid rgba(61, 53, 83, 0.08);
  border-bottom: 1px solid rgba(61, 53, 83, 0.08);
  padding: 20px 40px;
  box-shadow: 0 2px 12px rgba(61, 53, 83, 0.04);
}

.trust-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: nowrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 12px;
  transition: background 0.2s;
}

.trust-item:hover {
  background: var(--pink-pale);
}

.trust-icon {
  width: 32px;
  height: 32px;
  background: var(--pink-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.trust-val {
  font-weight: 700;
  color: var(--char);
}

/* ── SECTIONS ── */

section {
  padding: 80px 40px;
}

.section-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  background: rgba(212, 20, 90, 0.08);
  border: 1px solid rgba(212, 20, 90, 0.15);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.section-title {
  font-family: "brushberry-script", sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 700;
  color: var(--char);
  letter-spacing: 0;
  line-height: 1.2;
  margin-bottom: 10px;
  margin-top: 10px;
}

.section-sub {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.65;
}

.centered-sub {
  max-width: 480px;
  margin: 0 auto;
}

/* ── EXAMPLES ── */

.examples {
  background: #FFF4F7;
}

.examples-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

/* Heart icon inside the "Hear it for yourself" pill */
.section-tag-icon {
  padding-left: 8px;
  gap: 8px;
}

.section-tag-svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Split title: "Listen to an" sans-serif + "example" in script */
.section-title-split {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.05;
  color: var(--char);
}

.section-title-split em {
  font-family: "brushberry-script", sans-serif;
  color: var(--pink);
  font-weight: 700;
  font-style: normal;
  margin-left: 6px;
}

.examples-sub {
  margin: 12px 0 0;
  color: #6b6580;
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 540px;
}

/* Sparkle / chevron icons inside the primary button */
.btn-with-icons {
  padding: 14px 26px;
}

.btn-sparkle,
.btn-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-chevron {
  width: 16px;
  height: 16px;
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ex-card {
  background: #fffafb;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(60, 20, 60, 0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}

.ex-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(60, 20, 60, 0.13);
}

.ex-img {
  width: 100%;
  height: 180px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.35s ease;
}

.ex-img-1 {
  background-image: url('https://melogram.co.uk/img/ex_img1.webp');
}

.ex-img-2 {
  background-image: url('https://melogram.co.uk/img/ex_img2.webp');
}

.ex-img-3 {
  background-image: url('img/ex_img3_new.png');
  filter: brightness(1.22) saturate(0.82) contrast(0.94);
}

.ex-body {
  padding: 18px 20px 20px;
}

.ex-title {
  font-family: "brushberry-script", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--char);
  margin-bottom: 13px;
}

.audio-player {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--pink-pale);
  border-radius: 100px;
  padding: 7px 12px;
  margin-bottom: 12px;
  cursor: pointer;
}

.play-btn {
  width: 30px;
  height: 30px;
  background: var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(212, 20, 90, 0.35);
}

.play-btn svg {
  width: 10px;
  height: 10px;
  fill: white;
  margin-left: 2px;
}

.waveform {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 2px;
  height: 22px;
  min-width: 0;
  overflow: hidden;
}

.waveform .wb {
  width: 3px;
  background: var(--pink);
  border-radius: 2px;
  opacity: 0.3;
  transition: opacity 0.3s;
}

.audio-player:hover .wb {
  opacity: 0.5;
}

.audio-player:focus-visible {
  outline: 3px solid rgba(184, 16, 78, 0.28);
  outline-offset: 3px;
}

.audio-player.is-playing .play-btn {
  background: #b8104e;
}

.audio-player.is-playing .wb {
  opacity: 0.78;
  animation-name: waveformPulse;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  transform-origin: center;
}

@keyframes waveformPulse {
  0%,
  100% {
    transform: scaleY(0.45);
  }
  50% {
    transform: scaleY(1.18);
  }
}

.audio-time {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
}

.ex-genre {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--pink);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.gdot {
  width: 6px;
  height: 6px;
  background: var(--pink);
  border-radius: 50%;
}

.examples-bird {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

.examples-bird-img {
  width: 200px;
  height: auto;
}

.examples-caption {
  text-align: center;
  margin-top: 28px;
  font-size: 0.86rem;
  color: var(--muted);
  font-style: italic;
}

/* ── Feature panel (under examples) ── */
.feature-panel {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  margin-top: 32px;
  padding: 28px 36px;
  background: #FFF0F5;
  border: 1px solid rgba(212, 20, 90, 0.08);
  border-radius: 22px;
}

.feature-panel-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.feature-panel-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #FCE0EA;
  color: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-panel-icon svg {
  width: 26px;
  height: 26px;
}

.feature-panel-text h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--pink);
  line-height: 1.2;
}

.feature-panel-text p {
  margin: 0;
  font-size: 0.92rem;
  color: #5b4a55;
  line-height: 1.45;
}

.feature-panel-divider {
  width: 1px;
  height: 56px;
  background: rgba(212, 20, 90, 0.18);
}

@media (max-width: 760px) {
  .feature-panel {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 22px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .feature-panel-divider {
    width: 60%;
    height: 1px;
    justify-self: center;
  }
}

/* ── HOW IT WORKS ── */

.how {
  background: white;
  position: relative;
}

.how::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(61, 53, 83, 0.06);
}

.how-header {
  text-align: center;
  margin-bottom: 52px;
}

.how-header .section-title em {
  color: var(--pink);
  font-style: normal;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.how-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(61, 53, 83, 0.08);
  box-shadow:
    0 4px 20px rgba(61, 53, 83, 0.07),
    0 1px 3px rgba(0, 0, 0, 0.03);
  transition: transform 0.25s, box-shadow 0.25s;
  text-align: left;
  padding: 0;
}

.how-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 16px 40px rgba(61, 53, 83, 0.11),
    0 2px 8px rgba(0, 0, 0, 0.04);
}

.how-card-body {
  padding: 20px 24px 28px;
}

.how-icon {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  border-radius: 0;
  margin: 0;
}

.how-icon-1 {
  background-image: url('img/step1-img.webp');
}

.how-icon-2 {
  background-image: url('img/step2-img.webp');
}

.how-icon-3 {
  background-image: url('img/step3-img.webp');
}

.how-icon-wrap {
  position: relative;
}

.step-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.step-circle {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 0 0 4px #fff, 0 4px 12px rgba(212, 20, 90, 0.3);
  z-index: 2;
}

.how-card-body {
  padding-top: 32px;
}

.how-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--char);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.step-rule {
  display: block;
  width: 38px;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
  opacity: 0.55;
  margin-top: 14px;
}

.how-card p {
  font-size: 0.86rem;
  color: var(--text);
  line-height: 1.65;
}

.how-caption {
  text-align: center;
  margin-top: 32px;
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
}

.how-caption-pill-wrap {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.how-caption-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fffafd;
  border: 1px solid rgba(212, 20, 90, 0.10);
  border-radius: 999px;
  padding: 9px 22px 9px 16px;
  font-size: 0.92rem;
  color: #5b4a55;
  font-weight: 500;
}

.how-caption-heart {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Burst marks flanking CTA buttons */
.cta-burst {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  pointer-events: none;
}

.cta-burst-left { margin-right: -8px; }
.cta-burst-right { margin-left: -8px; }

.cta-burst svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.how-bird {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

.how-bird-img {
  width: 140px;
  height: auto;
}


.how-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 18px;
}

.how-cta .btn-primary {
  width: fit-content;
}
/* ── PRICING ── */

.pricing {
  background: #FFF4F7;
}

.pricing-header {
  text-align: center;
  margin-bottom: 52px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 940px;
  margin: 0 auto;
}

.p-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}

.p-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(60, 20, 60, 0.13);
}

.p-card.featured {
  background: linear-gradient(155deg, #2e163a 0%, #1a0c25 100%);
  transform: scale(1.04);
  box-shadow:
    0 20px 60px rgba(40, 10, 50, 0.35),
    0 4px 12px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.p-card.featured:hover {
  transform: scale(1.04) translateY(-5px);
}

.p-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pink);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.p-tier {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pink);
  margin-bottom: 8px;
}

.p-card.featured .p-tier {
  color: rgba(255, 255, 255, 0.55);
}

.p-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--char);
  letter-spacing: -0.04em;
  margin-bottom: 4px;
  line-height: 1;
}

.p-card.featured .p-price {
  color: white;
}

.p-price span {
  font-size: 1rem;
  font-weight: 500;
  vertical-align: super;
  letter-spacing: 0;
}

.p-desc {
  font-size: 0.83rem;
  color: var(--muted);
  margin-bottom: 22px;
  line-height: 1.5;
}

.p-card.featured .p-desc {
  color: rgba(255, 255, 255, 0.50);
}

.p-divider {
  height: 1px;
  background: rgba(212, 20, 90, 0.09);
  margin-bottom: 18px;
}

.p-card.featured .p-divider {
  background: rgba(255, 255, 255, 0.09);
}

.p-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}

.p-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.84rem;
  color: var(--text);
  line-height: 1.4;
}

.p-card.featured .p-features li {
  color: rgba(255, 255, 255, 0.78);
}

.p-features li::before {
  content: '✓';
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--pink);
  background: var(--pink-pale);
  width: 19px;
  height: 19px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.p-card.featured .p-features li::before {
  background: rgba(212, 20, 90, 0.18);
  color: #FF7BAA;
}

.p-features li {
  position: relative;
  display: block;
  padding-left: 34px;
  min-height: 24px;
}

.p-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: -1px;
  width: 24px;
  height: 24px;
  margin-top: 0;
}

.p-features li::after {
  position: absolute;
  left: 0;
  top: -1px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--pink);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
}

.p-card.featured .p-features li::after {
  color: #FF7BAA;
}

.p-features li[data-feature-icon="music"] { --feature-symbol: '♪'; }
.p-features li[data-feature-icon="edit"] { --feature-symbol: '✎'; }
.p-features li[data-feature-icon="star"] { --feature-symbol: '☆'; }
.p-features li[data-feature-icon="share"] { --feature-symbol: '↗'; }
.p-features li[data-feature-icon="download"] { --feature-symbol: '↓'; }
.p-features li[data-feature-icon="heart"] { --feature-symbol: '♡'; }
.p-features li[data-feature-icon="card"] { --feature-symbol: '▣'; }

.p-features li::after {
  content: var(--feature-symbol, '•');
}

.btn-p-outline {
  width: 100%;
  background: transparent;
  color: var(--pink);
  border: 2px solid rgba(212, 20, 90, 0.25);
  padding: 11px 16px;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: border-color 0.2s, color 0.2s;
}

.btn-p-outline:hover {
  border-color: var(--pink);
}

.btn-p-full {
  width: 100%;
  background: var(--pink);
  color: white;
  border: none;
  padding: 13px 16px;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  box-shadow: 0 6px 20px rgba(212, 20, 90, 0.42);
  transition: background 0.2s, transform 0.15s;
}

.btn-p-full:hover {
  background: #b8104e;
  transform: translateY(-1px);
}

/* ── TESTIMONIALS ── */

.testimonials {
  background: white;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 46px;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}

.t-card {
  background: #fff;
  border-radius: 22px;
  padding: 28px 30px 26px;
  border: 1px solid rgba(212, 20, 90, 0.10);
  box-shadow: 0 4px 24px rgba(61, 53, 83, 0.05);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}

.t-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(212, 20, 90, 0.10);
}

.t-quote {
  display: block;
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 0.7;
  color: var(--pink);
  margin-bottom: 2px;
}

.t-heart {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(212, 20, 90, 0.08);
  border: none;
  color: var(--pink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  padding: 0;
}

.t-heart svg {
  width: 18px;
  height: 18px;
}

.t-heart:hover {
  background: var(--pink);
  color: #fff;
}

.t-text {
  font-size: 0.97rem;
  color: var(--char);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.t-text::before {
  content: '\201C';
}

.t-text::after {
  content: '\201D';
}

.t-divider {
  height: 1px;
  background: rgba(212, 20, 90, 0.15);
  margin: 0 0 18px;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.t-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.t-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--char);
}

.t-label {
  font-size: 0.82rem;
  color: var(--pink);
  margin-top: 2px;
}

/* Hand-drawn underline beneath an em (used on testimonials title) */
.title-underline {
  position: relative;
  display: inline-block;
}

.title-underline::after {
  content: '';
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: -4px;
  height: 8px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 8' preserveAspectRatio='none'><path d='M2 5 Q 20 1 40 4 T 80 4 T 118 3' fill='none' stroke='%23D4145A' stroke-width='2.4' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

/* ── CTA BAND ── */

.cta-band {
  background: #FFF4F7;
  padding: 80px 40px;
}

.cta-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  background: #fffafc;
  border-radius: 28px;
  padding: 48px 52px 28px;
  box-shadow:
    0 2px 0 rgba(212, 20, 90, 0.06),
    0 12px 50px rgba(212, 20, 90, 0.10),
    0 2px 8px rgba(0, 0, 0, 0.03);
  position: relative;
}

.cta-emoji {
  font-size: 2.8rem;
  display: block;
  margin-bottom: 18px;
  width: 100%;
}

.cta-bird img {
  width: 240px;
  height: auto;
  display: block;
  margin: 0 auto -8px;
}

.cta-inner h2 {
  font-family: "brushberry-script", sans-serif;
  font-size: clamp(2.4rem, 4.4vw, 3.4rem);
  font-weight: 700;
  color: var(--char);
  letter-spacing: 0;
  margin-bottom: 14px;
  line-height: 1.1;
}

.cta-inner em {
  color: var(--pink);
  font-style: normal;
}

.cta-inner p {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 28px;
  line-height: 1.65;
}

.cta-highlight {
  color: var(--pink);
  font-weight: 700;
}

/* Three feature highlights row */
.cta-features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.cta-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 20, 90, 0.08);
  color: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-feature-icon svg {
  width: 22px;
  height: 22px;
}

.cta-feature-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--char);
  line-height: 1.2;
}

.cta-feature-sub {
  font-size: 0.82rem;
  color: var(--text);
  margin-top: 2px;
}

.cta-feature-divider {
  width: 1px;
  height: 36px;
  background: rgba(212, 20, 90, 0.18);
}

.cta-button-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 32px;
}

.cta-send-btn {
  font-size: 1.05rem;
  padding: 16px 36px;
}

/* Bottom trust band */
.cta-trust-band {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  background: #FFF0F5;
  border-radius: 16px;
  padding: 16px 24px;
  flex-wrap: wrap;
}

.cta-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 0.92rem;
}

.cta-trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--pink);
  flex-shrink: 0;
}

.cta-trust-divider {
  width: 1px;
  height: 22px;
  background: rgba(212, 20, 90, 0.20);
}

/* ── FOOTER ── */

footer {
  background: var(--char);
  color: rgba(255, 255, 255, 0.55);
  padding: 40px;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.footer-logo-img {
  height: 90px;
  width: auto;
  display: block;
}

.footer-logo {
  font-family: "brushberry-script", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
}

.footer-logo span {
  color: var(--pink-light);
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 0.83rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-copy {
  font-size: 0.78rem;
}

/* ── SCROLL REVEAL ── */

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].visible {
  opacity: 1;
  transform: none;
}

[data-d="1"] {
  transition-delay: 0.10s;
}

[data-d="2"] {
  transition-delay: 0.20s;
}

[data-d="3"] {
  transition-delay: 0.30s;
}

/* Hamburger — hidden on desktop, revealed in mobile query */

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--char);
  border-radius: 2px;
}

/* ============================================
   RESPONSIVE — TABLET (max 1100px)
   ============================================ */

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: unset;
    padding-bottom: 0;
  }

  .hero-left {
    text-align: center;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    align-items: center;
  }

  .hero-right {
    min-height: 400px;
  }

  .hero-illustration {
    max-width: 520px;
    margin: 0 auto;
    height: auto;
  }

  .hero-art {
    max-height: 60vw;
  }
}

/* ============================================
   RESPONSIVE — MOBILE (max 900px)
   ============================================ */

@media (max-width: 900px) {
  /* ── Nav ── */
  nav {
    height: 64px;
    padding: 0 20px;
  }

  .logo-svg {
    height: 56px;
  }

  .nav-links,
  .nav-cta-desktop {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  /* ── Hero ── */
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 36px 24px 0;
    gap: 0;
  }

  .hero-left {
    text-align: center;
    order: 1;
  }

  .hero-right {
    order: 2;
    width: 100%;
    min-height: 0;
    justify-content: center;
    margin-top: 16px;
  }

  .hero-tag {
    margin: 0 auto 16px;
    font-size: 0.75rem;
  }

  .hero-title {
    font-size: clamp(2.6rem, 11vw, 4rem);
    line-height: 1;
    max-width: 100%;
    margin-bottom: 14px;
  }

  .hero-sub {
    max-width: 100%;
    margin: 0 auto 22px;
    font-size: 1rem;
    line-height: 1.5;
    font-style: italic;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-cta {
    padding: 14px 32px;
    font-size: 1rem;
  }

  .hero-illustration {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }

  .hero-art {
    width: 100%;
    height: auto;
    display: block;
  }

  /* ── Trust bar ── */
  .trust-bar {
    padding: 20px;
    margin: 0 16px;
    border-radius: 18px;
  }

  .trust-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 12px;
    max-width: 100%;
    flex-wrap: unset;
  }

  .trust-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    font-size: 0.82rem;
  }

  .trust-icon {
    font-size: 1.3rem;
  }

  .trust-val {
    font-size: 1rem;
  }

  /* ── General sections ── */
  section {
    padding: 48px 20px;
  }

  .section-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  /* ── Examples ── */
  .examples {
    padding: 48px 0;
  }

  .examples-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 0 20px 24px;
  }

  .examples-header .btn-primary {
    display: none;
  }

  /* Carousel */
  .examples-grid-wrap {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* side padding lets first card sit inset and reveals peek of next */
    padding: 0 20px 20px;
  }

  .examples-grid-wrap::-webkit-scrollbar {
    display: none;
  }

  .examples-grid {
    display: flex;
    flex-direction: row;
    grid-template-columns: unset;
    gap: 16px;
    flex-wrap: nowrap;
    /* right padding creates the trailing gap after last card */
    padding-right: 20px;
  }

  .ex-card {
    scroll-snap-align: center;
    /* 80vw wide minus side padding = card fills view with a peek on each side */
    width: calc(100vw - 60px);
    max-width: 340px;
    min-width: 260px;
    flex-shrink: 0;
    flex-direction: column;
  }

  .ex-img {
    height: 180px;
    border-radius: 16px 16px 0 0;
  }

  /* ── How it works ── */
  .how {
    padding: 48px 20px;
  }

  .how-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .how-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    overflow: hidden;
    border-radius: 18px;
    min-height: 140px;
  }

  .how-card-body {
    flex: 1;
    padding: 20px 16px;
    order: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .how-icon-wrap {
    width: 120px;
    min-width: 120px;
    order: 2;
    flex-shrink: 0;
  }

  .how-icon {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 0 18px 18px 0;
  }

  .step-circle {
    bottom: auto;
    top: 8px;
    left: auto;
    right: 8px;
    transform: none;
    width: 26px;
    height: 26px;
    font-size: 0.68rem;
  }

  .step-rule {
    display: none;
  }

  .how-card h3 {
    font-size: 1.3rem;
    margin-bottom: 6px;
  }

  .how-card p {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .step-label {
    font-size: 0.7rem;
    margin-bottom: 6px;
  }

  .how-cta {
    margin-top: 28px;
    text-align: center;
  }

  /* ── Pricing ── */
  .pricing {
    padding: 48px 20px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 380px;
    margin: 0 auto;
  }

  /* Base card reset */
  .p-card {
    padding: 0;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(60, 20, 60, 0.10);
    border: none;
  }

  .p-card.featured {
    transform: none;
    box-shadow: 0 8px 36px rgba(40, 10, 50, 0.30);
  }

  /* Coloured accent bar across the top of each card */
  .p-card::before {
    content: '';
    display: block;
    height: 5px;
    background: linear-gradient(90deg, #f5a7c0, var(--pink));
    border-radius: 0;
  }

  .p-card.featured::before {
    background: linear-gradient(90deg, #d4145a, #ff4d8f);
  }

  /* Card inner padding */
  .p-card > *:not(.p-badge) {
    padding-left: 22px;
    padding-right: 22px;
  }

  .p-card > .p-tier {
    padding-top: 18px;
  }

  .p-card > .btn-p-outline,
  .p-card > .btn-p-full {
    padding-left: 22px;
    padding-right: 22px;
    padding-bottom: 22px;
  }

  /* Light tints for non-featured cards */
  .p-card:not(.featured) {
    background: #FFFBFC;
  }

  /* Tier label */
  .p-tier {
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    margin-bottom: 6px;
    text-align: center;
  }

  /* Price */
  .p-price {
    font-size: 3rem;
    margin-bottom: 6px;
    text-align: center;
  }

  .p-price span {
    font-size: 1.3rem;
  }

  /* Description */
  .p-desc {
    font-size: 0.87rem;
    line-height: 1.45;
    margin-bottom: 14px;
  }

  /* Divider */
  .p-divider {
    margin: 0 0 14px;
  }

  /* Show first 3 features, hide the rest */
  .p-features {
    display: flex;
    margin-bottom: 18px;
    gap: 8px;
  }

  .p-features li {
    font-size: 0.82rem;
  }

  .p-features li:nth-child(n + 4) {
    display: none;
  }

  /* Badge stays positioned absolutely */
  .p-badge {
    font-size: 0.62rem;
    padding: 4px 14px;
    top: -1px;
    border-radius: 0 0 10px 10px;
    left: 50%;
  }

  /* Buttons — full width, pill, proper tap size */
  .btn-p-outline {
    display: block;
    width: calc(100% - 44px);
    margin: 0 22px 22px;
    padding: 13px 16px;
    border-radius: 100px;
    font-size: 0.92rem;
    border: 2px solid var(--pink);
    color: var(--pink);
    font-weight: 700;
    background: transparent;
    text-align: center;
    cursor: pointer;
  }

  .btn-p-full {
    display: block;
    width: calc(100% - 44px);
    margin: 0 22px 22px;
    padding: 14px 16px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 700;
    background: var(--pink);
    color: white;
    box-shadow: 0 6px 20px rgba(212, 20, 90, 0.40);
    cursor: pointer;
    border: none;
  }

  /* ── Testimonials ── */
  .testi-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* ── CTA Band ── */
  @media (max-width: 900px) {
  @media (max-width: 900px) {
  .cta-band {
    background: #fff4f7;
    padding: 26px 16px 36px;
    margin: 0;
  }

  .cta-inner {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 16px;
    align-items: center;
    background: #fff;
    border-radius: 24px;
    padding: 18px 18px 18px 14px;
    box-shadow: 0 10px 30px rgba(212,20,90,0.10);
    text-align: left;
  }

  .cta-inner::before,
  .cta-inner::after,
  .cta-emoji {
    display: none;
  }

  .cta-bird {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cta-bird img {
    width: 120px;
    max-width: none;
    height: auto;
    display: block;
  }

  .cta-content {
    padding: 0;
  }

  .cta-content h2 {
    font-family: "brushberry-script", sans-serif;
    font-size: 2.8rem;
    line-height: 0.92;
    margin-bottom: 8px;
    color: var(--char);
  }

  .cta-content p {
    font-size: 0.98rem;
    line-height: 1.45;
    margin-bottom: 14px;
    color: #675d7f;
  }

  .cta-content .btn-primary {
    min-height: 50px;
    padding: 0 22px;
    font-size: 0.96rem;
  }

  .cta-small {
    justify-content: flex-start;
    font-size: 0.76rem;
    margin-top: 10px;
    line-height: 1.4;
  }

  /* New CTA features + trust band stack vertically on mobile */
  .cta-inner {
    display: block;
    text-align: center;
    padding: 28px 20px 16px;
  }

  .cta-content {
    padding: 0;
  }

  .cta-features {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 22px;
  }

  .cta-feature {
    justify-content: center;
  }

  .cta-feature-divider {
    display: none;
  }

  .cta-trust-band {
    flex-direction: column;
    gap: 10px;
    padding: 14px 18px;
  }

  .cta-trust-divider {
    display: none;
  }

  .cta-button-row {
    margin-bottom: 22px;
  }
}

  /* ── Footer ── */
  footer {
    padding: 32px 20px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 10px 16px;
    justify-content: center;
  }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ============================================ */

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .ex-card {
    width: 80vw;
    min-width: 220px;
  }

  .pricing-grid {
    gap: 8px;
  }

  .p-card {
    padding: 14px 10px;
  }

  .p-price {
    font-size: 1.4rem;
  }

  .cta-bird {
    width: 80px;
  }
}
