@import "tailwindcss";

@theme {
  --color-coral: #F2937C;
  --color-coral-soft: #FDDDD3;
  --color-coral-bg: #FFF5F0;
  --color-peach: #FFD4C2;
  --color-gold: #C8A24E;
  --color-gold-light: #F0D98A;
  --color-gold-pale: #FDF6E3;
  --color-choco: #3D2314;
  --color-choco-mid: #6B4A3A;
  --color-choco-light: #A08070;
  --color-terracotta: #5C3425;
  --color-cream: #FFFAF6;
  --color-cream2: #FFF3EB;
  --color-lilac: #E8D5F5;
  --color-sky: #D0EDFF;
  --color-mint: #C8F0E0;
  --color-vanilla: #FFF8E1;
  --color-baby-pink: #FFE0E6;
  --color-soft-orange: #FFE4D0;
  --font-family-playfair: 'Playfair Display', serif;
  --font-family-poppins: 'Poppins', sans-serif;
}

:root {
  /* Core brand palette */
  --coral: #F2937C;
  --coral-soft: #FDDDD3;
  --coral-bg: #FFF5F0;
  --peach: #FFD4C2;
  --gold: #C8A24E;
  --gold-light: #F0D98A;
  --gold-pale: #FDF6E3;
  --choco: #3D2314;
  --choco-mid: #6B4A3A;
  --choco-light: #A08070;
  --terracotta: #5C3425;
  --cream: #FFFAF6;
  --cream2: #FFF3EB;

  /* Pastel complements */
  --lilac: #E8D5F5;
  --sky: #D0EDFF;
  --mint: #C8F0E0;
  --vanilla: #FFF8E1;
  --baby-pink: #FFE0E6;
  --soft-orange: #FFE4D0;

  --glass: rgba(255, 255, 255, .6);
  --pill: 999px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  color: var(--choco);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased
}

h1,
h2,
h3,
.playfair {
  font-family: 'Playfair Display', serif
}

img {
  display: block;
  max-width: 100%
}

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

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

.text-center {
  text-align: center
}

section {
  padding: 6rem 0
}

/* Tag pill */
.tag {
  display: inline-block;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  padding: .45rem 1.1rem;
  border-radius: var(--pill)
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .03em;
  padding: .95rem 2.2rem;
  border-radius: var(--pill);
  border: none;
  cursor: pointer;
  transition: all .35s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  overflow: hidden
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, .2) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform .6s
}

.btn:hover::after {
  transform: translateX(100%)
}

.btn-coral {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 8px 28px rgba(242, 147, 124, .3)
}

.btn-coral:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(242, 147, 124, .4);
  background: #E8846C
}

.btn-gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 8px 28px rgba(200, 162, 78, .25)
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(200, 162, 78, .35)
}

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

.btn-outline:hover {
  background: var(--choco);
  color: #fff
}

.btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, .3);
  color: #fff
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, .12)
}

.btn-ghost {
  background: none;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: .03em;
  color: var(--coral);
  cursor: pointer;
  padding: .5rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color .3s
}

.btn-ghost:hover {
  border-color: var(--coral)
}

.btn-wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 28px rgba(37, 211, 102, .25)
}

.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(37, 211, 102, .35)
}

/* ═══ NAV ═══ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 1rem 1.5rem;
  transition: all .35s
}

nav.scrolled {
  background: rgba(255, 250, 246, .9);
  backdrop-filter: blur(20px) saturate(1.3);
  border-bottom: 1px solid rgba(61, 35, 20, .05)
}

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

.nav-logo {
  height: 60px
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center
}

.nav-links a:not(.btn) {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--choco-mid);
  transition: color .25s
}

.nav-links a:not(.btn):hover {
  color: var(--coral)
}

/* ═══ MARQUEE ═══ */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: .65rem 0;
  font-weight: 600;
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase
}

.marquee-inner {
  display: inline-flex;
  animation: mq 28s linear infinite
}

.marquee-inner span {
  padding: 0 2rem
}

@keyframes mq {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

.marquee-coral {
  background: var(--coral);
  color: #fff
}

.marquee-choco {
  background: var(--terracotta);
  color: var(--gold-light)
}

.marquee-gold {
  background: var(--gold);
  color: #fff
}

/* ═══ HERO ═══ */
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
  background-color: var(--cream)
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.25;
  mix-blend-mode: multiply;
  pointer-events: none
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .45;
  pointer-events: none;
  animation: bf 9s ease-in-out infinite alternate;
  z-index: 1
}

.hero-text-box {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(30px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 2.5rem;
  padding: 3rem 3.5rem;
  box-shadow: 0 30px 60px rgba(242, 147, 124, 0.1)
}

.hb1 {
  width: 520px;
  height: 520px;
  background: var(--peach);
  top: -12%;
  right: -8%
}

.hb2 {
  width: 380px;
  height: 380px;
  background: var(--gold-pale);
  bottom: 0;
  left: -10%;
  animation-delay: 3s
}

.hb3 {
  width: 280px;
  height: 280px;
  background: var(--lilac);
  top: 35%;
  left: 28%;
  animation-delay: 5s;
  opacity: .3
}

@keyframes bf {
  0% {
    transform: translate(0, 0) scale(1)
  }

  100% {
    transform: translate(25px, -18px) scale(1.06)
  }
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: center
}

.hero-overline {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1.5rem
}

.hero-overline .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2.5s ease infinite
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

.hero-overline span {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--choco-mid)
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: 1.8rem;
  color: var(--choco)
}

.hero h1 .hl {
  display: inline;
  position: relative;
  color: var(--coral)
}

.hero h1 .hl::after {
  content: '';
  position: absolute;
  bottom: .1em;
  left: 0;
  right: 0;
  height: .28em;
  background: var(--peach);
  opacity: .4;
  border-radius: 4px;
  z-index: -1
}

.hero-sub {
  font-size: .98rem;
  line-height: 1.8;
  color: var(--choco-mid);
  font-weight: 300;
  max-width: 430px;
  margin-bottom: 2.5rem
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap
}

.hero-img-area {
  position: relative
}

.hero-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 2.5rem;
  box-shadow: 0 30px 80px -20px rgba(242, 147, 124, .2)
}

.sticker {
  position: absolute;
  border-radius: var(--pill);
  padding: .55rem 1.1rem;
  font-weight: 600;
  font-size: .68rem;
  box-shadow: 0 8px 28px rgba(61, 35, 20, .08);
  animation: sf 4.5s ease-in-out infinite alternate;
  white-space: nowrap
}

.s1 {
  top: 8%;
  right: -.5rem;
  background: var(--gold-pale);
  color: var(--gold);
  border: 1px solid rgba(200, 162, 78, .15);
  animation-delay: 0s
}

.s2 {
  bottom: 20%;
  left: -1.2rem;
  background: var(--baby-pink);
  color: var(--coral);
  border: 1px solid rgba(242, 147, 124, .12);
  animation-delay: 1.8s
}

.s3 {
  bottom: 5%;
  right: 8%;
  background: var(--mint);
  color: #3A7D5E;
  border: 1px solid rgba(58, 125, 94, .1);
  animation-delay: 3.5s
}

@keyframes sf {
  0% {
    transform: translateY(0) rotate(-1.5deg)
  }

  100% {
    transform: translateY(-7px) rotate(1.5deg)
  }
}

/* Gold decorative line */
.gold-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 0 auto 1rem
}

/* ═══ PAIN ═══ */
.pain {
  background: var(--terracotta);
  color: #fff;
  border-radius: 2.5rem;
  margin: 0 1rem;
  padding: 5rem 0;
  position: relative;
  overflow: hidden
}

.pain::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--coral) 0%, transparent 70%);
  opacity: .08;
  pointer-events: none
}

.pain h2 {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em
}

.pain h2 .accent {
  color: var(--peach)
}

.pain-intro {
  color: rgba(255, 255, 255, .55);
  font-weight: 300;
  font-size: .92rem;
  margin-top: .6rem;
  max-width: 480px;
  line-height: 1.7
}

.pain-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
  margin-top: 2.5rem
}

.pain-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all .35s;
  backdrop-filter: blur(4px)
}

.pain-card:hover {
  background: rgba(255, 255, 255, .1);
  transform: translateY(-4px)
}

.pain-card .em {
  font-size: 1.8rem;
  margin-bottom: .7rem
}

.pain-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: .45rem
}

.pain-card p {
  font-size: .83rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .5);
  font-weight: 300
}

/* ═══ STEPS ═══ */
.magic h2 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -.02em
}

.magic-sub {
  color: var(--choco-mid);
  font-weight: 300;
  font-size: .92rem;
  max-width: 500px;
  margin-top: .5rem;
  line-height: 1.7
}

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

.step-card {
  background: #fff;
  border: 1px solid rgba(61, 35, 20, .04);
  border-radius: 2rem;
  padding: 2.5rem 2rem;
  transition: all .35s;
  overflow: hidden;
  position: relative
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(61, 35, 20, .06)
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 2rem 2rem 0 0
}

.step-card:nth-child(1)::before {
  background: linear-gradient(90deg, var(--coral-soft), var(--peach))
}

.step-card:nth-child(2)::before {
  background: linear-gradient(90deg, var(--gold-pale), var(--gold-light))
}

.step-card:nth-child(3)::before {
  background: linear-gradient(90deg, var(--mint), var(--sky))
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(180deg, var(--peach), transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: .5rem
}

.step-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: .5rem;
  color: var(--choco)
}

.step-card p {
  font-size: .83rem;
  line-height: 1.7;
  color: var(--choco-mid);
  font-weight: 300
}

.magic-quote {
  margin-top: 3rem;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  font-style: italic;
  color: var(--coral)
}

/* ═══ INGREDIENTS ═══ */
.ingredients {
  background: var(--cream2);
  border-radius: 2.5rem;
  margin: 0 1rem;
  padding: 5rem 0
}

.ing-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 1.5rem 0 2rem;
  margin-top: 2rem;
  scrollbar-width: none
}

.ing-scroll::-webkit-scrollbar {
  display: none
}

.ing-track {
  display: flex;
  gap: 1rem;
  padding: 0 1.5rem;
  width: max-content;
  margin: 0 auto
}

.ing-chip {
  flex-shrink: 0;
  width: 210px;
  border-radius: 1.5rem;
  padding: 1.8rem 1.4rem;
  transition: all .3s;
  border: 1px solid rgba(61, 35, 20, .04);
  background: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center
}

.ing-chip:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(61, 35, 20, .06)
}

.ing-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-bottom: .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem
}

.ing-chip:nth-child(1) .ing-icon {
  background: var(--soft-orange)
}

.ing-chip:nth-child(2) .ing-icon {
  background: linear-gradient(135deg, #F0E0D0, #D4B8A0)
}

.ing-chip:nth-child(3) .ing-icon {
  background: var(--vanilla)
}

.ing-chip:nth-child(4) .ing-icon {
  background: var(--coral-soft)
}

.ing-chip:nth-child(5) .ing-icon {
  background: var(--lilac)
}

.ing-chip:nth-child(6) .ing-icon {
  background: var(--gold-pale)
}

.ing-chip h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: .3rem;
  color: var(--choco)
}

.ing-chip p {
  font-size: .76rem;
  line-height: 1.6;
  color: var(--choco-mid);
  font-weight: 300
}

.ing-badge {
  margin-top: 2.5rem;
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
  justify-content: center
}

.ing-badge span {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: #fff;
  padding: .45rem 1rem;
  border-radius: var(--pill);
  color: var(--choco-mid);
  border: 1px solid rgba(61, 35, 20, .05)
}

/* ═══ CATALOG ═══ */
.catalog h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -.02em
}

.size-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem
}

.size-card {
  background: #fff;
  border-radius: 1.75rem;
  padding: 2rem;
  text-align: center;
  position: relative;
  border: 2px solid transparent;
  transition: all .35s;
  overflow: hidden
}

.size-card:hover {
  border-color: var(--coral);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(242, 147, 124, .1)
}

.size-card.hot {
  border-color: var(--gold);
  background: linear-gradient(180deg, #fff 60%, var(--gold-pale))
}

.hot-tag {
  display: none;
  position: absolute;
  top: .8rem;
  right: .8rem;
  background: var(--gold);
  color: #fff;
  font-size: .55rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: var(--pill)
}

.size-card.hot .hot-tag {
  display: block
}

.size-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: .15rem;
  color: var(--choco)
}

.size-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--coral);
  line-height: 1.1
}

.size-price small {
  font-size: .8rem;
  font-weight: 400;
  color: var(--choco-light)
}

.size-use {
  font-size: .78rem;
  color: var(--choco-mid);
  font-weight: 300;
  line-height: 1.6;
  margin: 1rem 0 1.5rem;
  min-height: 3.5rem
}

.aroma-pills {
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem
}

.aroma-pill {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: #fff;
  border-radius: var(--pill);
  padding: .45rem 1rem .45rem .45rem;
  border: 1px solid rgba(61, 35, 20, .06);
  transition: all .25s;
  cursor: default
}

.aroma-pill:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(61, 35, 20, .06)
}

.aroma-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex-shrink: 0
}

.aroma-pill span {
  font-size: .76rem;
  font-weight: 500;
  color: var(--choco)
}

/* ═══ TESTIMONIALS ═══ */
.testimonials h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -.02em
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem
}

.test-card {
  border-radius: 2rem;
  padding: 2rem;
  border: 1px solid rgba(61, 35, 20, .04);
  transition: transform .3s;
  background: #fff
}

.test-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(61, 35, 20, .05)
}

.test-card::before {
  content: '';
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  margin-bottom: 1.2rem
}

.test-card:nth-child(1)::before {
  background: linear-gradient(90deg, var(--coral-soft), var(--baby-pink))
}

.test-card:nth-child(2)::before {
  background: linear-gradient(90deg, var(--gold-pale), var(--gold-light))
}

.test-card:nth-child(3)::before {
  background: linear-gradient(90deg, var(--sky), var(--mint))
}

.test-stars {
  font-size: .7rem;
  color: var(--gold);
  letter-spacing: .05em;
  margin-bottom: .7rem
}

.test-text {
  font-size: .88rem;
  line-height: 1.75;
  font-weight: 300;
  color: var(--choco);
  margin-bottom: 1.2rem
}

.test-author {
  display: flex;
  align-items: center;
  gap: .6rem
}

.test-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem
}

.test-name {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--choco)
}

.test-city {
  font-size: .62rem;
  color: var(--choco-light)
}

.trust-row {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 3rem
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--choco-mid);
  background: var(--cream2);
  padding: .5rem 1rem;
  border-radius: var(--pill);
  border: 1px solid rgba(61, 35, 20, .04)
}

.trust-pill .material-symbols-outlined {
  font-size: .9rem;
  color: var(--gold)
}

/* ═══ B2B ═══ */
.b2b {
  background: var(--terracotta);
  color: #fff;
  border-radius: 2.5rem;
  margin: 0 1rem;
  padding: 5rem 0;
  position: relative;
  overflow: hidden
}

.b2b::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  opacity: .06;
  pointer-events: none
}

.b2b h2 {
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.1
}

.b2b h2 .accent {
  color: var(--peach)
}

.b2b-sub {
  color: rgba(255, 255, 255, .55);
  font-weight: 300;
  font-size: .92rem;
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 2.5rem
}

.b2b-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  margin-bottom: 2.5rem
}

.b2b-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 1.5rem;
  padding: 1.8rem;
  text-align: left;
  transition: all .3s
}

.b2b-card:hover {
  background: rgba(255, 255, 255, .1);
  transform: translateY(-3px)
}

.b2b-card .em {
  font-size: 1.6rem;
  margin-bottom: .5rem
}

.b2b-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: .25rem
}

.b2b-card p {
  font-size: .78rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, .5);
  font-weight: 300
}

/* ═══ FAQ ═══ */
.faq h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -.02em
}

.faq-list {
  max-width: 680px;
  margin: 2.5rem auto 0
}

.faq-item {
  border-bottom: 1px solid rgba(61, 35, 20, .06)
}

.faq-q {
  padding: 1.3rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 1rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--choco);
  transition: color .2s
}

.faq-q:hover {
  color: var(--coral)
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform .3s;
  font-weight: 300;
  line-height: 1
}

.faq-item.open .faq-icon {
  transform: rotate(45deg)
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  font-size: .83rem;
  line-height: 1.75;
  color: var(--choco-mid);
  font-weight: 300
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 1.3rem
}

/* ═══ FINAL CTA ═══ */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: 7rem 0
}

.fblob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .35;
  pointer-events: none
}

.fb1 {
  width: 420px;
  height: 420px;
  background: var(--peach);
  top: -20%;
  left: 8%
}

.fb2 {
  width: 300px;
  height: 300px;
  background: var(--gold-pale);
  bottom: -10%;
  right: 12%
}

.final-cta h2 {
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.1
}

.final-cta h2 .accent {
  color: var(--coral)
}

.final-sub {
  font-size: .95rem;
  color: var(--choco-mid);
  font-weight: 300;
  max-width: 460px;
  margin: 1rem auto 2.5rem;
  line-height: 1.75
}

.guarantee {
  margin-top: 1.5rem;
  font-size: .73rem;
  color: var(--choco-light);
  display: flex;
  align-items: center;
  gap: .35rem;
  justify-content: center
}

/* ═══ FOOTER ═══ */
footer {
  position: relative;
  overflow: hidden;
  padding: 4rem 1.5rem 0;
  border-top: 1px solid rgba(61, 35, 20, .05)
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap
}

.footer-brand {
  max-width: 260px
}

.footer-brand img {
  height: 80px;
  margin-bottom: 1rem
}

.footer-brand p {
  font-size: .73rem;
  color: var(--choco-light);
  line-height: 1.65;
  font-weight: 300
}

.footer-cols {
  display: flex;
  gap: 3.5rem;
  flex-wrap: wrap
}

.footer-col h5 {
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem
}

.footer-col a {
  display: block;
  font-size: .76rem;
  color: var(--choco-mid);
  font-weight: 300;
  margin-bottom: .4rem;
  transition: color .2s
}

.footer-bottom {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  padding: 2rem 0 1.5rem;
  border-top: 1px solid rgba(61, 35, 20, .05);
  font-size: .66rem;
  color: var(--choco-light);
  text-align: center
}

.footer-credit-row {
  display: flex;
  justify-content: center;
  padding: 0 0 1.5rem
}

/* Dev Credit (Inline SVG version Premium) */
.dev-credit {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  transition: all .35s cubic-bezier(.4, 0, .2, 1)
}

.dev-credit span {
  font-size: .76rem;
  font-weight: 300;
  letter-spacing: .05em;
  color: var(--choco-mid);
  transition: color .35s
}

.dev-logo-svg {
  width: auto;
  height: 28px;
  display: block;
  color: var(--gold);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1), color .35s
}

.dev-credit:focus-visible {
  outline: 2px solid var(--coral);
  border-radius: 4px;
  padding: 2px
}

.dev-credit:hover span {
  color: var(--choco)
}

.dev-credit:hover .dev-logo-svg {
  color: var(--coral);
  transform: translateY(-2px) scale(0.93)
}

/* ═══ ANIMATIONS & DEGRADATION ═══ */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .7s cubic-bezier(.4, 0, .2, 1), transform .7s cubic-bezier(.4, 0, .2, 1)
}

html.js .reveal {
  opacity: 0;
  transform: translateY(28px)
}

html.js .reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

.rd1 {
  transition-delay: .12s
}

.rd2 {
  transition-delay: .22s
}

.rd3 {
  transition-delay: .32s
}

.rd4 {
  transition-delay: .42s
}

/* ═══ FLOATING ACTION BUTTONS (FAB) ═══ */
.fab {
  position: fixed;
  z-index: 90;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  box-shadow: 0 10px 25px rgba(61, 35, 20, 0.15);
  transition: all .3s cubic-bezier(.4, 0, .2, 1)
}

.fab:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 35px rgba(61, 35, 20, 0.25)
}

.fab:focus-visible {
  outline: 4px solid var(--peach)
}

.fab-wa {
  bottom: 1.5rem;
  right: 1.5rem;
  background: #25D366;
  color: #fff
}

.fab-wa:hover {
  background: #22be5c
}

.fab-top {
  bottom: 5.8rem;
  right: 1.5rem;
  cursor: pointer;
  background: var(--gold);
  border: none;
  color: #fff;
  width: 46px;
  height: 46px;
  opacity: 1;
  visibility: visible
}

.fab-top:hover {
  background: #D4AF37
}

.fab-top.hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  pointer-events: none
}

/* Hamburger Base */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--choco);
  cursor: pointer;
  z-index: 101;
  padding: .5rem;
  transition: all .2s
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--coral);
  border-radius: 4px
}

/* ═══ RESPONSIVE ═══ */
@media(max-width:768px) {
  .hero .container {
    grid-template-columns: 1fr
  }

  .hero-text-box {
    padding: 2.5rem 1.5rem;
    margin: 0
  }

  .hero h1 {
    font-size: clamp(2.3rem, 9vw, 3.2rem)
  }

  .hero-img-area {
    order: -1
  }

  .s1 {
    right: .5rem;
    top: 5%
  }

  .s2 {
    left: .5rem
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 1rem
  }

  /* Mobile Menu */
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 85%;
    max-width: 380px;
    background: rgba(255, 250, 246, 0.95);
    backdrop-filter: blur(30px) saturate(1.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    padding: 2rem;
    box-shadow: -15px 0 40px rgba(61, 35, 20, 0.08);
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
    z-index: 9999 !important;
    align-items: center
  }

  .nav-links.open {
    transform: translateX(0)
  }

  .nav-links a:not(.btn) {
    display: block;
    font-size: 1.3rem;
    text-align: center
  }

  .nav-links .btn {
    width: 100%;
    justify-content: center;
    padding: 1.1rem;
    font-size: 1rem
  }

  body.menu-active {
    overflow: hidden
  }

  .pain,
  .b2b,
  .ingredients {
    border-radius: 1.5rem;
    margin: 0 .5rem
  }

  section {
    padding: 4rem 0
  }

  .b2b-grid,
  .pain-cards {
    grid-template-columns: 1fr
  }

  .size-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem
  }
}

@media(max-width:480px) {
  .size-grid {
    grid-template-columns: 1fr
  }
}