:root {
  --rose: #e94386;
  --plum: #8a4fd1;
  --peach: #ffb38d;
  --ink: #2d1731;
  --muted: #765d78;
  --line: rgba(138, 79, 209, 0.16);
  --white: #ffffff;
  --soft: #fff6fb;
  --shadow: 0 18px 48px rgba(95, 45, 106, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(135deg, #fff8fb 0%, #fff0f6 38%, #f6efff 72%, #fff7f0 100%);
}

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

.hero {
  min-height: 100svh;
  padding: 18px 16px 18px;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 179, 141, 0.36), transparent 30%),
    radial-gradient(circle at 10% 8%, rgba(233, 67, 134, 0.16), transparent 28%);
}

.nav,
.hero-grid,
.highlights,
.proof,
.buy-now {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-timer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(233, 67, 134, 0.12);
  border: 1px solid rgba(233, 67, 134, 0.1);
  /* transform: scale(0.85); */
  /* Slightly smaller by default for mobile */
  transform-origin: right center;
}

.timer-label {
  width: 100%;
  background: var(--rose);
  color: white;
  font-size: 0.55rem;
  font-weight: 900;
  text-align: center;
  padding: 4px 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timer-slots {
  display: flex;
  gap: 0;
  padding: 5px 8px;
}

.timer-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 32px;
  position: relative;
}

.timer-slot:not(:last-child)::after {
  content: ":";
  position: absolute;
  right: -1px;
  top: 2px;
  font-weight: 900;
  color: #eee;
  font-size: 0.8rem;
}

.timer-slot span {
  font-size: 1rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1.1;
  display: block;
  overflow: hidden;
  height: 1.1rem;
}

.timer-slot small {
  font-size: 0.45rem;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.2px;
}

@media (min-width: 720px) {
  .nav-timer {
    transform: scale(1);
    border-radius: 16px;
  }

  .timer-label {
    font-size: 0.65rem;
    padding: 6px 12px;
  }

  .timer-slots {
    padding: 8px 12px;
  }

  .timer-slot {
    min-width: 44px;
  }

  .timer-slot span {
    font-size: 1.3rem;
    height: 1.4rem;
  }

  .timer-slot small {
    font-size: 0.55rem;
  }
}

.brand,
.nav-whatsapp,
.primary-cta,
.pay-button,
.mobile-sticky-cta button {
  min-height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.brand {
  gap: 10px;
  font-size: 0.94rem;
}

.brand-mark {
  width: 100px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
}

@media (max-width: 719px) {
  .brand-mark {
    width: 80px;
  }
}

.brand-mark img {
  max-width: 100%;
}

.nav-whatsapp {
  padding: 0 16px;
  color: #0f7d52;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(15, 125, 82, 0.14);
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (max-width: 719px) {
  .hero-header {
    order: 1;
  }

  .hero-features {
    order: 2;
  }

  .hero-sidebar {
    order: 3;
  }

  .profile-proof {
    order: 4;
  }
}

.hero-header {
  padding-top: 20px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--rose);
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 14px;
  max-width: 760px;
  font-size: clamp(2.35rem, 12vw, 3rem);
  line-height: 1.2;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.headline-icons {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  vertical-align: middle;
  margin-left: 8px;
}

.icon-scissors,
.icon-sparkle {
  filter: drop-shadow(0 4px 12px rgba(233, 67, 134, 0.2));
  transition: transform 0.3s ease;
}

.icon-scissors {
  animation: float-icon 3s ease-in-out infinite;
}

.icon-sparkle {
  animation: float-icon 3s ease-in-out infinite 1.5s;
}

@keyframes float-icon {

  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-6px) rotate(4deg);
  }
}

h1:hover .icon-scissors {
  transform: rotate(-15deg) scale(1.1);
}

h1:hover .icon-sparkle {
  transform: scale(1.2) rotate(10deg);
}

.subheadline {
  max-width: 620px;
  margin-bottom: 0px;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.5;
  letter-spacing: 0.3px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 8px;
}

.feature-list li {
  color: var(--ink);
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
  font-size: 16px;
}

.feature-check {
  width: 20px;
  height: 20px;
  background: #dcfce3;
  color: #166534;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.urgency-text {
  margin-bottom: 24px;
  color: var(--rose);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.3px;
}

.hero-actions {
  display: grid;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
}

.primary-cta,
.pay-button {
  width: 100%;
  border: 0;
  padding: 15px 20px;
  color: var(--white);
  background: linear-gradient(135deg, var(--rose), var(--plum));
  box-shadow: 0 18px 32px rgba(138, 79, 209, 0.28);
  cursor: pointer;
  font-size: 16px;
  animation: pulse-btn 2s infinite;
  transition: transform 0.2s, box-shadow 0.2s;
}

.primary-cta:hover,
.pay-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 38px rgba(138, 79, 209, 0.38);
}

@keyframes pulse-btn {
  0% {
    box-shadow: 0 0 0 0 rgba(233, 67, 134, 0.4);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(233, 67, 134, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(233, 67, 134, 0);
  }
}

.pay-button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.trust-line {
  color: #6e426d;
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.6px;
}

.profile-proof,
.lead-panel,
.highlight-grid article,
.review-card {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.profile-proof {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 24px;
}

.avatar-stack {
  display: flex;
  flex-shrink: 0;
}

.avatar-stack span,
.review-avatar {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 2px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--peach), var(--rose), var(--plum));
}

.avatar-stack span+span {
  margin-left: -10px;
}

.profile-proof p,
.lead-panel p,
.highlight-grid p,
.review-head p,
.review-card>p,
.buy-content p {
  color: var(--muted);
  line-height: 1.48;
}

.profile-proof p,
.review-head p {
  margin: 2px 0 0;
  font-size: 0.86rem;
}

.hero-banner-img {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-banner-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

/* .hero-banner-img:hover img {
  transform: scale(1.03);
} */

.lead-panel {
  /*position: sticky;*/
  top: 12px;
  z-index: 3;
  padding: 18px;
  border-radius: 28px;
}

.offer-chip {
  width: fit-content;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #8c2858;
  font-size: 0.78rem;
  font-weight: 900;
  background: #ffe0ef;
}

.lead-panel h2,
.section-heading h2,
.buy-content h2 {
  margin-bottom: 8px;
  font-size: clamp(1.55rem, 7vw, 2rem);
  line-height: 1.08;
}

.lead-form {
  display: grid;
  gap: 12px;
}

.lead-form label {
  display: grid;
  gap: 6px;
  color: #5d365f;
  font-size: 0.88rem;
  font-weight: 800;
}

.lead-form em {
  color: var(--muted);
  font-style: normal;
  font-weight: 600;
}

.lead-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0 14px;
  color: var(--ink);
  font: inherit;
  font-size: 16px !important;
  /* Prevents iOS auto-zoom */
  background: rgba(255, 255, 255, 0.86);
  outline: 0;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.lead-form input:focus {
  border-color: rgba(233, 67, 134, 0.56);
  box-shadow: 0 0 0 4px rgba(233, 67, 134, 0.12);
}

.lead-form span {
  font-weight: 700;
  letter-spacing: 0.3px;
}

.form-error {
  min-height: 18px;
  margin: 0;
  color: #b4234e !important;
  font-size: 0.86rem;
  font-weight: 700;
}

.lead-form small {
  color: var(--muted);
  text-align: center;
}

.secure-info {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 4px;
  line-height: 1.4;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 4px;
  flex-wrap: wrap;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
}

.trust-badge-item svg {
  width: 14px;
  height: 14px;
}

.trust-badge-item:nth-child(1) svg {
  stroke: #0f7d52;
  /* Green */
}

.trust-badge-item:nth-child(2) svg {
  stroke: #e94386;
  /* Rose */
}

.trust-badge-item:nth-child(3) svg {
  stroke: #8a4fd1;
  /* Plum */
}

.icon-shield {
  color: #0f7d52;
  flex-shrink: 0;
  margin-top: 2px;
}

.highlights,
.proof,
.buy-now {
  padding: 32px 16px;
}

.section-heading {
  max-width: 660px;
  margin-bottom: 20px;
}

.highlight-grid,
.video-grid,
.review-grid {
  display: grid;
  gap: 14px;
}

.video-showcase {
  padding: 32px 16px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.video-grid {
  gap: 24px;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.video-card {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  border-radius: 28px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.video-card:hover {
  border-color: var(--rose);
  box-shadow: 0 15px 35px rgba(233, 67, 134, 0.15);
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  background: #1a0b1c;
  overflow: hidden;
}

.video-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-live {
  background: rgba(233, 67, 134, 0.85);
  display: flex;
  align-items: center;
  gap: 6px;
}

.badge-live::before {
  content: "";
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  animation: pulse-live 1.5s infinite;
}

@keyframes pulse-live {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.badge-event {
  background: rgba(138, 79, 209, 0.85);
}

.badge-review {
  background: rgba(15, 125, 82, 0.85);
}

.video-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
  background-size: 24px;
  background-position: center 55%;
  background-repeat: no-repeat;
  opacity: 0.8;
  transition: all 0.3s ease;
  pointer-events: none;
}

.video-card:hover .video-wrapper::after {
  transform: translate(-50%, -50%) scale(1.15);
  background-color: var(--rose);
  opacity: 1;
  border-color: transparent;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.highlights-layout {
  display: grid;
  gap: 32px;
}

.highlights-image {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.highlights-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.highlight-grid article {
  min-height: 170px;
  padding: 18px;
  border-radius: 24px;
}

.highlight-grid span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 14px;
  color: var(--white);
  font-weight: 900;
  background: linear-gradient(135deg, var(--peach), var(--rose));
}

.highlight-grid h3,
.review-card strong {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.schedule-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(233, 67, 134, 0.15);
  border-radius: 20px;
  padding: 18px 20px;
  margin-bottom: 28px;
  box-shadow: 0 10px 30px rgba(233, 67, 134, 0.08);
  display: flex;
  align-items: center;
  gap: 18px;
  transition: all 0.3s ease;
}

.schedule-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 15px 35px rgba(233, 67, 134, 0.12);
}

.schedule-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--rose), var(--plum));
  color: white;
  border-radius: 16px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(233, 67, 134, 0.25);
}

.schedule-info h4 {
  margin: 0;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--muted);
  font-weight: 700;
}

.schedule-info p {
  margin: 4px 0 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.highlight-grid-pro {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  border-color: rgba(233, 67, 134, 0.3);
}

.highlight-check {
  width: 20px;
  height: 20px;
  background: #dcfce3;
  color: #166534;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-text {
  font-size: 0.876rem;
  font-weight: 600;
  color: #444;
  line-height: 1.4;
}

.review-card {
  padding: 16px;
  border-radius: 24px;
}

.review-head {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.stars {
  margin-bottom: 10px;
  color: #ff9f1c;
  font-size: 1.1rem;
  letter-spacing: 0;
}

.buy-now {
  padding-bottom: 120px;
}

.buy-card {
  position: relative;
  overflow: hidden;
  padding: 42px 24px;
  border-radius: 42px;
  color: var(--white);
  background:
    linear-gradient(165deg, var(--ink) 0%, #3e1f44 100%);
  box-shadow:
    0 30px 60px rgba(45, 23, 49, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  text-align: center;
}

.buy-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  margin: 0 auto;
}

.buy-description {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  line-height: 1.6;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.price-old {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
  font-size: 1.2rem;
  font-weight: 600;
}

.price-new {
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 900;
  text-shadow: 0 0 20px rgba(233, 67, 134, 0.4);
}

.price-off {
  padding: 4px 10px;
  background: var(--rose);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.urgency-tracker {
  max-width: 320px;
  margin: 0 auto 36px;
}

.tracker-text {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.92rem;
}

.tracker-text strong {
  color: var(--peach);
}

.progress-track {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  overflow: hidden;
}

.progress-thumb {
  height: 100%;
  background: linear-gradient(90deg, var(--rose), var(--plum));
  border-radius: 99px;
  box-shadow: 0 0 15px var(--rose);
  animation: pulse-progress 2s infinite ease-in-out;
}

@keyframes pulse-progress {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.8;
  }
}

.buy-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 380px;
  min-height: 62px;
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: var(--white);
  background: var(--rose);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(233, 67, 134, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.buy-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(233, 67, 134, 0.45);
}

.buy-cta svg {
  transition: transform 0.2s ease;
}

.buy-cta:hover svg {
  transform: translateX(4px);
}

.buy-trust-footer {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}

.buy-visuals {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.decor-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  opacity: 0.2;
  filter: blur(80px);
}

.blob-1 {
  top: -150px;
  right: -150px;
  background: radial-gradient(circle, var(--rose) 0%, transparent 70%);
  animation: blob-float 15s infinite alternate ease-in-out;
}

.blob-2 {
  bottom: -150px;
  left: -150px;
  background: radial-gradient(circle, var(--plum) 0%, transparent 70%);
  animation: blob-float 18s infinite alternate-reverse ease-in-out;
}

@keyframes blob-float {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(-80px, 80px) scale(1.2);
  }
}

@media (min-width: 720px) {
  .buy-card {
    padding: 80px 40px;
  }

  .buy-description {
    font-size: 1.35rem;
    margin-bottom: 40px;
  }

  .price-new {
    font-size: 4.5rem;
  }

  .buy-cta {
    min-height: 72px;
    font-size: 1.35rem;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 2.08rem;
  }

  .brand span:last-child {
    max-width: 160px;
  }

  .mobile-sticky-cta span {
    font-size: 0.9rem;
  }

  .price-new {
    font-size: 2.5rem;
  }
}

.mobile-sticky-cta {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 10px 10px 16px;
  border: 2px solid rgba(233, 67, 134, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 -5px 40px rgba(233, 67, 134, 0.15), 0 14px 34px rgba(45, 23, 49, 0.18);
  backdrop-filter: blur(16px);
  transform: translateY(140%);
  transition: transform 180ms ease;
}

.mobile-sticky-cta.is-visible {
  transform: translateY(0);
}

.mobile-sticky-cta span {
  color: var(--ink);
  font-weight: 900;
}

.mobile-sticky-cta button {
  min-height: 42px;
  padding: 0 20px;
  color: var(--white);
  background: linear-gradient(135deg, var(--rose), var(--plum));
  border: none;
  outline: none;
  font-size: 15px;
  animation: pulse-btn 2s infinite;
}

.highlight-grid h3 {
  margin-bottom: 8px;
  font-size: 15px;
}

.highlight-grid p {
  margin-bottom: 0;
  font-size: 14px;
}

.highlight-grid article {
  min-height: 170px;
  padding: 14px;
  border-radius: 24px;
}

h1 {
  font-size: 1.85rem;
}

@media (min-width: 720px) {

  h1 {
    font-size: 3rem;
  }

  .hero {
    padding: 24px 28px 24px;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) 410px;
    align-items: start;
    gap: 32px;
    padding-top: 24px;
  }

  .hero-actions {
    grid-template-columns: max-content 1fr;
  }

  .primary-cta,
  .pay-button {
    width: auto;
  }

  .trust-line {
    text-align: left;
  }

  .hero-header {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-features {
    grid-column: 1;
    grid-row: 2;
  }

  .profile-proof {
    grid-column: 1;
    grid-row: 3;
  }

  .hero-sidebar {
    grid-column: 2;
    grid-row: 1 / span 3;
  }

  .lead-panel {
    padding: 24px;
  }

  .highlights-layout {
    grid-template-columns: 440px 1fr;
    align-items: center;
  }

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

  .review-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mobile-sticky-cta {
    display: none;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 1.75rem;
  }

  .brand span:last-child {
    max-width: 130px;
  }

  .mobile-sticky-cta span {
    font-size: 0.9rem;
  }
}