:root {
  --background: #fdf7f3;
  --cream: #fffaf7;
  --cream-deep: #fdebe5;
  --pink: #ef737a;
  --pink-deep: #df5f69;
  --pink-soft: #ffd7d4;
  --brown: #5a2b25;
  --brown-2: #7b3f3a;
  --muted: #9b6a64;
  --gold: #c9a14a;
  --green: #8fb07a;
  --white: #ffffff;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --shadow: 0 28px 70px rgba(90, 43, 37, 0.14);
  --shadow-soft: 0 16px 42px rgba(90, 43, 37, 0.08);
  --radius-lg: 32px;
  --radius-md: 22px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--background);
  color: var(--brown);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.025;
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.petal-rain {
  position: fixed;
  inset: 0;
  z-index: 19;
  overflow: hidden;
  pointer-events: none;
}

.petal {
  position: absolute;
  top: -8vh;
  left: var(--petal-left);
  width: var(--petal-size);
  height: calc(var(--petal-size) * 0.65);
  border-radius: 80% 15% 75% 20%;
  background: linear-gradient(
    135deg,
    rgba(255, 215, 212, 0.82),
    rgba(239, 115, 122, 0.5)
  );
  opacity: var(--petal-opacity);
  filter: blur(var(--petal-blur));
  animation: petal-fall var(--petal-duration) linear var(--petal-delay) infinite;
}

@keyframes petal-fall {
  0% {
    transform: translate3d(0, -10vh, 0) rotate(0deg);
  }

  25% {
    transform: translate3d(var(--petal-drift), 25vh, 0) rotate(110deg);
  }

  50% {
    transform: translate3d(calc(var(--petal-drift) * -0.35), 52vh, 0)
      rotate(220deg);
  }

  75% {
    transform: translate3d(calc(var(--petal-drift) * 0.7), 78vh, 0)
      rotate(320deg);
  }

  100% {
    transform: translate3d(calc(var(--petal-drift) * -0.2), 110vh, 0)
      rotate(430deg);
  }
}

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

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section-pad {
  padding: 110px 0;
}

.pain-section,
.audience-section,
.steps-section,
.faq-section {
  position: relative;
}

.pain-section::before,
.audience-section::before,
.steps-section::before,
.faq-section::before {
  content: "✿";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: rgba(239, 115, 122, 0.65);
  background: var(--background);
  border-radius: 50%;
  font-size: 16px;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.pain-section::after,
.audience-section::after,
.steps-section::after,
.faq-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(calc(100% - 40px), 760px);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(239, 115, 122, 0.2) 24%,
    rgba(201, 161, 74, 0.3) 50%,
    rgba(239, 115, 122, 0.2) 76%,
    transparent
  );
  pointer-events: none;
  transform: translateX(-50%);
}

.site-header {
  width: min(calc(100% - 40px), var(--container));
  height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(239, 115, 122, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--pink);
  color: var(--white);
  font-size: 23px;
  box-shadow: 0 8px 22px rgba(223, 95, 105, 0.28);
}

.brand span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
}

.brand small {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.header-cta {
  border: 1px solid rgba(90, 43, 37, 0.14);
  border-radius: 999px;
  padding: 10px 19px;
  font-size: 13px;
  font-weight: 700;
  transition: 0.25s ease;
}

.header-cta:hover {
  background: var(--brown);
  color: var(--white);
}

.hero {
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
  position: relative;
  padding: 54px 0 96px;
  overflow: hidden;
}

.hero::before {
  content: "FLORIDO";
  position: absolute;
  right: -45px;
  top: 40%;
  transform: rotate(90deg);
  font-family: var(--serif);
  font-size: clamp(80px, 11vw, 170px);
  color: rgba(239, 115, 122, 0.045);
  letter-spacing: 0.08em;
  line-height: 1;
}

.hero-flower {
  position: absolute;
  color: rgba(239, 115, 122, 0.09);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.hero-flower-one {
  top: -90px;
  left: -75px;
  font-size: 300px;
  transform: rotate(-18deg);
}

.hero-flower-two {
  right: 3%;
  top: 16%;
  color: rgba(201, 161, 74, 0.08);
  font-size: 140px;
  transform: rotate(22deg);
}

.hero-flower-three {
  bottom: -65px;
  left: 41%;
  font-size: 190px;
  transform: rotate(10deg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 72px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pink-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

.eyebrow.light {
  color: var(--pink-soft);
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.035em;
  overflow-wrap: anywhere;
}

.hero h1 {
  font-size: clamp(33px, 3.8vw, 52px);
  max-width: 720px;
}

.hero h1 em {
  color: var(--pink-deep);
  font-style: italic;
  font-weight: 500;
}

.hero-lead {
  max-width: 610px;
  margin: 26px 0 22px;
  font-size: 18px;
  color: var(--brown-2);
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 30px;
  font-size: 13px;
  font-weight: 700;
}

.hero-features i {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(143, 176, 122, 0.2);
  color: #50743e;
  font-style: normal;
  margin-right: 4px;
}

.button {
  min-height: 59px;
  border-radius: 16px;
  padding: 15px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.035em;
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--pink-deep));
  box-shadow: 0 18px 36px rgba(223, 95, 105, 0.29);
}

.button-primary:hover {
  box-shadow: 0 22px 42px rgba(223, 95, 105, 0.38);
}

.button-note {
  margin: 10px 0 0 18px;
  color: var(--muted);
  font-size: 11px;
}

.hero-visual {
  position: relative;
  padding: 24px 0 42px;
}

.image-frame {
  position: relative;
  border-radius: 46% 46% 28px 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 590px;
  background: var(--pink-soft);
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: inherit;
  pointer-events: none;
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
  object-position: center 48%;
}

.price-sticker {
  position: absolute;
  right: 22px;
  top: 38px;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: var(--brown);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: rotate(7deg);
  box-shadow: 0 15px 30px rgba(90, 43, 37, 0.25);
  border: 1px dashed rgba(255, 255, 255, 0.45);
  outline: 4px solid var(--brown);
  outline-offset: 3px;
}

.price-sticker small {
  font-size: 10px;
}

.price-sticker strong {
  font-family: var(--serif);
  font-size: 23px;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(15px);
  border-radius: 18px;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 11px;
  box-shadow: var(--shadow-soft);
  z-index: 2;
}

.floating-card-top {
  left: -50px;
  top: 140px;
}

.floating-card-bottom {
  right: -35px;
  bottom: 18px;
}

.floating-card strong,
.floating-card small {
  display: block;
  line-height: 1.25;
}

.floating-card strong {
  font-size: 12px;
}

.floating-card small {
  color: var(--muted);
  font-size: 10px;
}

.mini-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--pink-soft);
  color: var(--pink-deep);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading.centered {
  text-align: center;
  margin-inline: auto;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading h2,
.pain-intro h2,
.audience-copy h2,
.authority-copy h2,
.faq-heading h2,
.offer-recap h2 {
  font-size: clamp(36px, 4.2vw, 56px);
}

.section-heading p,
.audience-copy > p,
.faq-heading > p {
  color: var(--muted);
  margin-top: 18px;
  max-width: 650px;
}

.social-proof {
  background: var(--cream-deep);
  position: relative;
}

.social-proof .section-heading {
  max-width: 980px;
}

.social-proof::after {
  content: "✿";
  position: absolute;
  right: 7vw;
  top: 65px;
  color: rgba(239, 115, 122, 0.18);
  font-size: 90px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 18px;
}

.proof-card {
  border-radius: 22px;
  padding: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transform: rotate(-1.5deg);
}

.proof-card:nth-child(even) {
  transform: rotate(1.5deg);
}

.proof-card.featured {
  transform: translateY(-20px) rotate(1deg);
}

.proof-placeholder {
  min-height: 260px;
  border: 1px dashed rgba(90, 43, 37, 0.2);
  border-radius: 16px;
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(145deg, #fff, #fff8f5);
}

.proof-placeholder::before {
  content: "“";
  font-family: var(--serif);
  color: var(--pink);
  font-size: 74px;
  line-height: 0.7;
}

.proof-placeholder span {
  color: var(--pink-deep);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.14em;
}

.proof-placeholder strong {
  margin: 12px 0;
  font-family: var(--serif);
  line-height: 1.3;
}

.proof-placeholder small {
  color: var(--muted);
}

.production-note {
  max-width: 700px;
  margin: 34px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
}

.gallery-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.gallery-section::before {
  content: "";
  position: absolute;
  inset: auto -12vw 0 auto;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  background: rgba(255, 215, 212, 0.26);
  pointer-events: none;
}

.gallery-section .section-heading p {
  margin-inline: auto;
}

.image-carousel {
  position: relative;
  width: 100%;
  margin-inline: auto;
  padding: 0 0 46px;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: grab;
  touch-action: pan-y;
}

.carousel-viewport.is-dragging {
  cursor: grabbing;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.carousel-viewport.is-dragging .carousel-track {
  transition: none;
}

.carousel-slide {
  flex: 0 0 calc((100% - 40px) / 3);
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--cream-deep);
  box-shadow: var(--shadow-soft);
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}

.carousel-control {
  position: absolute;
  top: auto;
  bottom: 0;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--brown);
  box-shadow: var(--shadow-soft);
  font: inherit;
  font-size: 18px;
  cursor: pointer;
  transition: 0.2s ease;
}

.carousel-control:hover {
  background: var(--pink-deep);
  transform: translateY(-2px);
}

.carousel-control:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
}

.carousel-prev {
  left: calc(50% - 112px);
}

.carousel-next {
  right: calc(50% - 112px);
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.carousel-dot {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 50%;
  background: rgba(90, 43, 37, 0.22);
  cursor: pointer;
  transition: 0.2s ease;
}

.carousel-dot.is-active {
  width: 30px;
  border-radius: 999px;
  background: var(--pink-deep);
}

.pain-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
}

.pain-intro h2 em {
  color: var(--pink-deep);
  font-weight: 500;
}

.pain-intro p {
  margin-top: 22px;
  color: var(--muted);
}

.thoughts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.thoughts blockquote {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.35;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.thoughts blockquote:nth-child(2),
.thoughts blockquote:nth-child(4) {
  transform: translateY(28px);
}

.thoughts blockquote::after {
  content: "";
  width: 20px;
  height: 20px;
  background: inherit;
  position: absolute;
  bottom: -8px;
  left: 30px;
  transform: rotate(45deg);
}

.shelf-shift {
  margin-top: 110px;
  background: var(--brown);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 52px;
  display: grid;
  grid-template-columns: 160px 1fr 190px;
  gap: 38px;
  align-items: center;
  box-shadow: var(--shadow);
}

.shelf-label {
  color: var(--pink-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.shelf-copy p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.shelf-copy h3 {
  font-size: 24px;
  margin-top: 12px;
}

.text-link {
  color: var(--pink-soft);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  text-align: right;
}

.method-section {
  background: var(--white);
}

.method-section .section-heading {
  margin-inline: auto;
  text-align: center;
}

.method-section .section-heading .eyebrow {
  justify-content: center;
}

.method-section .section-heading p {
  margin-inline: auto;
}

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

.deliverable-card {
  background: var(--background);
  min-height: 330px;
  padding: 34px;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(90, 43, 37, 0.06);
  transition: 0.25s ease;
}

.deliverable-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.deliverable-card.large {
  grid-row: span 2;
  min-height: 680px;
  background:
    linear-gradient(180deg, rgba(90, 43, 37, 0.08), rgba(90, 43, 37, 0.84)),
    url("/assets/hero-brigadeiros.webp") center/cover;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.deliverable-card.large p {
  color: rgba(255, 255, 255, 0.82);
}

.deliverable-card.large strong {
  color: var(--pink-soft);
  margin-top: 18px;
  font-size: 13px;
}

.card-number {
  position: absolute;
  right: 25px;
  top: 20px;
  color: rgba(90, 43, 37, 0.14);
  font-family: var(--serif);
  font-size: 38px;
}

.large .card-number {
  color: rgba(255, 255, 255, 0.25);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--pink-soft);
  color: var(--pink-deep);
  display: grid;
  place-items: center;
  font-size: 23px;
  margin-bottom: 50px;
}

.large .card-icon {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  margin-bottom: 22px;
}

.deliverable-card h3 {
  font-size: 25px;
  margin-bottom: 15px;
}

.deliverable-card p {
  color: var(--muted);
  font-size: 14px;
}

.bonus-section {
  background: var(--brown);
  color: var(--white);
}

.bonus-heading {
  max-width: 720px;
  margin-bottom: 50px;
}

.bonus-heading h2 {
  font-size: clamp(38px, 5vw, 60px);
}

.bonus-list {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.bonus-item {
  display: grid;
  grid-template-columns: 130px 1fr 80px;
  gap: 45px;
  align-items: center;
  padding: 30px 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.bonus-number {
  color: var(--pink-soft);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 800;
}

.bonus-item h3 {
  font-size: 24px;
  margin-bottom: 7px;
}

.bonus-item p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.bonus-value {
  text-align: right;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 20px;
}

.audience-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.audience-copy h2 {
  font-size: clamp(32px, 3.5vw, 47px);
}

.check-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.check-list li {
  padding: 22px;
  background: var(--white);
  border-radius: 16px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  gap: 12px;
  box-shadow: var(--shadow-soft);
}

.check-list span {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(143, 176, 122, 0.18);
  color: #557943;
}

.identify-note {
  margin-top: 40px;
  background: var(--pink-soft);
  padding: 20px;
  border-radius: 14px;
  text-align: center;
  font-family: var(--serif);
  font-size: 20px;
}

.guarantee-section {
  padding-top: 0;
}

.guarantee-card {
  background: var(--cream-deep);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 48px;
  align-items: center;
  padding: 52px 70px;
}

.guarantee-seal {
  width: 165px;
  height: 165px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--pink);
  outline: 6px solid var(--white);
  box-shadow: var(--shadow-soft);
  transform: rotate(-5deg);
}

.guarantee-seal span {
  font-family: var(--serif);
  color: var(--pink-deep);
  font-size: 65px;
  line-height: 0.8;
}

.guarantee-seal strong {
  text-transform: uppercase;
  font-size: 15px;
}

.guarantee-seal small {
  color: var(--muted);
  font-size: 10px;
}

.guarantee-card h2 {
  font-size: clamp(36px, 4vw, 50px);
  margin-bottom: 15px;
}

.guarantee-card p {
  max-width: 710px;
  color: var(--brown-2);
}

.offer-section {
  background: linear-gradient(180deg, var(--white), var(--cream-deep));
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.value-list {
  list-style: none;
  margin-top: 40px;
}

.value-list li,
.total-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}

.value-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(90, 43, 37, 0.1);
  color: var(--brown-2);
  font-size: 14px;
}

.value-list strong {
  color: var(--muted);
  text-decoration: line-through;
}

.total-line {
  padding-top: 22px;
  font-weight: 800;
}

.total-line strong {
  font-family: var(--serif);
  font-size: 27px;
}

.checkout-card {
  background: var(--brown);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 45px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.checkout-card::after {
  content: "✿";
  position: absolute;
  right: -25px;
  top: -40px;
  font-size: 160px;
  color: rgba(255, 255, 255, 0.035);
}

.offer-tag {
  display: inline-block;
  color: var(--brown);
  background: var(--gold);
  padding: 7px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.old-price {
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.main-price {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 8px auto 4px;
  line-height: 1;
}

.main-price small {
  margin: 12px 7px 0 0;
  font-size: 20px;
}

.main-price strong {
  font-family: var(--serif);
  font-size: 94px;
  letter-spacing: -0.07em;
}

.main-price span {
  font-family: var(--serif);
  font-size: 35px;
  margin-top: 13px;
}

.installments {
  color: var(--pink-soft);
  margin: 0 0 30px;
  font-weight: 700;
}

.button-full {
  width: 100%;
}

.secure-notes {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 9px;
  margin: 17px 0 24px;
  color: rgba(255, 255, 255, 0.72);
}

.foundation-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  text-align: left;
}

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

.steps-section .section-heading {
  max-width: 1000px;
}

.step-card {
  padding: 40px 32px;
  border: 1px solid rgba(90, 43, 37, 0.1);
  border-radius: var(--radius-md);
  position: relative;
}

.step-card > span {
  color: var(--pink);
  font-family: var(--serif);
  font-size: 45px;
}

.step-card h3 {
  font-size: 25px;
  margin: 25px 0 10px;
}

.step-card p {
  color: var(--muted);
  font-size: 13px;
}

.authority-section {
  background: var(--white);
}

.authority-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: 100px;
}

.authority-portrait {
  position: relative;
}

.portrait-placeholder {
  min-height: 520px;
  border-radius: 48% 48% 22px 22px;
  background: linear-gradient(150deg, var(--pink-soft), var(--cream-deep));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(90, 43, 37, 0.18);
}

.portrait-placeholder span {
  font-family: var(--serif);
  font-size: 100px;
  color: rgba(90, 43, 37, 0.22);
}

.portrait-placeholder small {
  color: var(--muted);
}

.portrait-flower {
  position: absolute;
  right: -35px;
  bottom: 15px;
  width: 105px;
  height: 105px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  font-size: 52px;
  box-shadow: var(--shadow);
}

.authority-copy p {
  margin-top: 18px;
  color: var(--brown-2);
}

.authority-stat {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(90, 43, 37, 0.12);
  display: flex;
  align-items: center;
  gap: 20px;
}

.authority-stat strong {
  color: var(--pink-deep);
  font-family: var(--serif);
  font-size: 28px;
}

.authority-stat span {
  max-width: 260px;
  color: var(--muted);
  font-size: 12px;
}

.closing-card {
  background: var(--pink-deep);
  color: var(--white);
  padding: 70px;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing-card::before,
.closing-card::after {
  content: "✿";
  position: absolute;
  color: rgba(255, 255, 255, 0.08);
  font-size: 130px;
}

.closing-card::before {
  left: -25px;
  bottom: -35px;
}

.closing-card::after {
  right: -20px;
  top: -45px;
}

.closing-card h2 {
  font-size: clamp(38px, 5vw, 58px);
}

.paths-grid {
  max-width: 850px;
  margin: 45px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.path {
  background: rgba(90, 43, 37, 0.25);
  border-radius: 20px;
  padding: 28px;
  text-align: left;
}

.path.positive {
  background: var(--white);
  color: var(--brown);
}

.path span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 10px;
  font-weight: 800;
  margin-bottom: 18px;
}

.path.positive span {
  background: var(--pink-soft);
  color: var(--pink-deep);
}

.path p {
  font-size: 13px;
}

.closing-line {
  color: var(--pink-soft);
  font-size: 13px;
  font-weight: 700;
}

.closing-card h3 {
  font-size: clamp(26px, 3vw, 35px);
  max-width: 700px;
  margin: 12px auto 28px;
}

.button-light {
  background: var(--white);
  color: var(--pink-deep);
  box-shadow: 0 18px 36px rgba(90, 43, 37, 0.18);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 100px;
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 40px;
}

.faq-heading h2 {
  font-size: clamp(32px, 3.5vw, 47px);
}

.accordion details {
  border-bottom: 1px solid rgba(90, 43, 37, 0.13);
}

.accordion summary {
  list-style: none;
  padding: 22px 0;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary span {
  color: var(--pink);
  font-family: var(--sans);
  font-weight: 400;
  transition: transform 0.2s ease;
}

.accordion details[open] summary span {
  transform: rotate(45deg);
}

.accordion details p {
  color: var(--muted);
  font-size: 14px;
  padding: 0 45px 22px 0;
}

footer {
  background: var(--brown);
  color: var(--white);
  padding: 55px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px 35px;
}

.footer-brand {
  grid-row: span 2;
}

.footer-brand small,
.footer-inner > small,
.footer-inner > p {
  color: rgba(255, 255, 255, 0.5);
}

.footer-inner > p,
.footer-inner > small {
  text-align: right;
  font-size: 10px;
}

.mobile-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 980px) {
  .hero-grid,
  .pain-grid,
  .audience-grid,
  .offer-grid,
  .authority-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 55px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-features {
    justify-content: center;
  }

  .button-note {
    margin-left: 0;
  }

  .hero-visual {
    width: min(100%, 620px);
    margin: auto;
  }

  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }

  .proof-card.featured {
    transform: rotate(1deg);
  }

  .shelf-shift {
    grid-template-columns: 1fr;
  }

  .text-link {
    text-align: left;
  }

  .deliverables-grid {
    grid-template-columns: 1fr 1fr;
  }

  .deliverable-card.large {
    grid-row: auto;
    grid-column: span 2;
    min-height: 540px;
  }

  .image-carousel {
    padding-bottom: 46px;
  }

  .carousel-slide {
    flex-basis: calc((100% - 20px) / 2);
  }

  .audience-grid,
  .authority-grid,
  .faq-grid {
    gap: 55px;
  }

  .faq-heading {
    position: static;
  }

  .authority-portrait {
    max-width: 500px;
    margin-inline: auto;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 78px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section-pad {
    padding: 68px 0;
  }

  .site-header {
    width: calc(100% - 28px);
    height: 72px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 38px 0 66px;
  }

  .hero::before {
    right: -90px;
    top: 58%;
    font-size: 92px;
  }

  .hero-grid {
    gap: 38px;
  }

  .hero h1 {
    font-size: 31px;
  }

  .hero-lead {
    font-size: 16px;
    margin-top: 20px;
  }

  .hero-features {
    align-items: center;
    flex-direction: column;
    gap: 8px;
  }

  .button {
    width: 100%;
    padding-inline: 16px;
    gap: 10px;
    min-height: 56px;
  }

  .button span {
    flex: 0 0 auto;
  }

  .image-frame,
  .image-frame img {
    min-height: 410px;
  }

  .hero-visual {
    display: grid;
    gap: 12px;
    padding-bottom: 0;
  }

  .floating-card {
    position: static;
    width: 100%;
    justify-content: center;
    border-radius: 14px;
  }

  .floating-card-top {
    left: auto;
    top: auto;
  }

  .floating-card-bottom {
    right: auto;
  }

  .price-sticker {
    width: 98px;
    height: 98px;
  }

  .proof-grid,
  .thoughts,
  .deliverables-grid,
  .check-list,
  .steps-grid,
  .paths-grid {
    grid-template-columns: 1fr;
  }

  .proof-placeholder {
    min-height: 220px;
  }

  .proof-card,
  .proof-card.featured,
  .proof-card:nth-child(even) {
    transform: none;
  }

  .image-carousel {
    padding: 0 0 42px;
  }

  .carousel-slide {
    flex-basis: 100%;
    aspect-ratio: 4 / 5;
  }

  .carousel-control {
    width: 42px;
    height: 42px;
  }

  .carousel-prev {
    left: calc(50% - 94px);
  }

  .carousel-next {
    right: calc(50% - 94px);
  }

  .thoughts blockquote:nth-child(2),
  .thoughts blockquote:nth-child(4) {
    transform: none;
  }

  .shelf-shift {
    margin-top: 70px;
    padding: 34px 26px;
    border-radius: 24px;
  }

  .deliverable-card.large {
    grid-column: auto;
    min-height: 500px;
  }

  .deliverable-card {
    min-height: auto;
  }

  .bonus-item {
    grid-template-columns: 1fr auto;
    gap: 12px 20px;
  }

  .bonus-number {
    grid-column: span 2;
  }

  .bonus-value {
    align-self: start;
  }

  .guarantee-card {
    grid-template-columns: 1fr;
    padding: 42px 26px;
    text-align: center;
  }

  .guarantee-seal {
    margin: auto;
  }

  .checkout-card {
    padding: 35px 24px;
    border-radius: 24px;
  }

  .main-price strong {
    font-size: 78px;
  }

  .main-price span {
    font-size: 29px;
  }

  .secure-notes {
    flex-direction: column;
    align-items: center;
  }

  .portrait-placeholder {
    min-height: 430px;
  }

  .authority-stat {
    align-items: flex-start;
  }

  .closing-card {
    padding: 52px 22px;
  }

  .accordion summary {
    font-size: 18px;
    line-height: 1.25;
  }

  .accordion details p {
    padding-right: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 72px;
  }

  .footer-brand {
    justify-content: center;
    grid-row: auto;
    margin-bottom: 20px;
  }

  .footer-inner > p,
  .footer-inner > small {
    text-align: center;
  }

  .mobile-cta {
    position: fixed;
    z-index: 30;
    bottom: 10px;
    left: 10px;
    right: 10px;
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px 10px 18px;
    border-radius: 16px;
    color: var(--white);
    background: rgba(90, 43, 37, 0.96);
    box-shadow: 0 15px 35px rgba(90, 43, 37, 0.3);
    backdrop-filter: blur(14px);
  }

  .mobile-cta span {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
  }

  .mobile-cta small {
    color: var(--pink-soft);
    font-size: 9px;
    text-transform: uppercase;
  }

  .mobile-cta strong {
    font-family: var(--serif);
    font-size: 18px;
  }

  .mobile-cta b {
    background: var(--pink);
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 11px;
    text-transform: uppercase;
    white-space: nowrap;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .site-header {
    width: calc(100% - 24px);
  }

  .brand {
    gap: 8px;
  }

  .brand small {
    font-size: 9px;
    letter-spacing: 0.07em;
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .section-heading h2,
  .pain-intro h2,
  .audience-copy h2,
  .authority-copy h2,
  .faq-heading h2,
  .offer-recap h2 {
    font-size: 30px;
  }

  .hero h1 {
    font-size: 29px;
  }

  .hero-lead,
  .section-heading p,
  .audience-copy > p,
  .faq-heading > p {
    font-size: 15px;
  }

  .image-frame,
  .image-frame img {
    min-height: 370px;
  }

  .carousel-dots {
    gap: 8px;
  }

  .checkout-card {
    padding: 32px 18px;
  }

  .main-price strong {
    font-size: 68px;
  }

  .main-price span {
    font-size: 25px;
  }

  .closing-card {
    padding: 44px 18px;
  }

  .mobile-cta {
    left: 8px;
    right: 8px;
    bottom: 8px;
    min-height: 58px;
    padding: 9px 9px 9px 14px;
  }

  .mobile-cta strong {
    font-size: 16px;
  }

  .mobile-cta b {
    padding: 9px 11px;
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .petal-rain {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
