:root {
  --primary: #5f084b;
  --primary-dark: #3a052e;
  --secondary: #283131;
  --accent: #fe9bba;
  --bg-dark-green: #2f3d3c;
  --bg-pink-light: #fff5f8;
  --bg-body: var(--bg-pink-light);
  --bg-surface: #ffffff;
  --bg-input: #f3f4f6;
  --text-main: #283131;
  --text-muted: #685259;
  --accent-mint: #e0f2f1;
  --accent-purple: #f3e5f5;
  --accent-rose: #fce4ec;
  --shadow-sm: 0 1px 2px 0 rgba(40, 49, 49, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(40, 49, 49, 0.1),
    0 2px 4px -1px rgba(40, 49, 49, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(40, 49, 49, 0.1),
    0 4px 6px -2px rgba(40, 49, 49, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(40, 49, 49, 0.1),
    0 10px 10px -5px rgba(40, 49, 49, 0.04);
  --font-sans: "Cardo", "Inter", Georgia, serif;
  --font-heading: "Comic Neue", "Poppins", sans-serif;
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-full: 9999px;
  --container-width: 1200px;
  --header-height: 80px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-sans);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
  background-size: 24px 24px;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}
.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--secondary);
  line-height: 1.3;
  letter-spacing: -0.01em;
  font-weight: 700;
}
h1 {
  font-size: 2.25rem;
  font-weight: 700;
}
h1 em {
  font-style: normal;
  color: var(--primary);
  position: relative;
  font-weight: 700;
}
h2 {
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
}
h3 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
p {
  font-family: var(--font-sans);
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.75;
  font-size: 1.0625rem;
}
.stat-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #fe9bba 0%, #ff85a3 100%);
  color: #121212;
  padding: 0.875rem 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(254, 155, 186, 0.3);
}
.stat-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.stat-banner .stat-number {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}
.stat-banner .stat-text {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  font-style: italic;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00c853 0%, #00a843 100%);
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 1.25rem 3rem;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 20px rgba(0, 200, 83, 0.35);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 200, 83, 0.5);
  background: linear-gradient(135deg, #00a843 0%, #008833 100%);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-main);
  font-weight: 500;
  padding: 0.875rem 1.5rem;
  transition: color 0.2s;
}
.btn-secondary:hover {
  color: var(--primary);
}
.btn-secondary i {
  width: 1.25rem;
  height: 1.25rem;
}
.vsl-section {
  padding: 3rem 0 5rem;
  background: var(--bg-body);
  text-align: center;
}
.vsl-header {
  margin-bottom: 2rem;
}
.vsl-header .section-title {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  color: var(--secondary);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
.vsl-header .section-subtitle {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  color: var(--text-muted);
}
.vsl-container {
  max-width: 800px;
  margin: 0 auto 2rem;
}
.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: black;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sound-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.sound-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}
.sound-button {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.sound-button.pulsing {
  animation: pulse-button 2s infinite;
}
@keyframes pulse-button {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
.progress-container {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 10;
  pointer-events: none;
}
.progress-bar {
  height: 100%;
  width: 0%;
  background-color: var(--primary);
  transition: width 0.3s linear;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}
.vsl-cta {
  margin-top: 2rem;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00c853 0%, #00a843 100%);
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 1.25rem 3rem;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 20px rgba(0, 200, 83, 0.35);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 200, 83, 0.5);
  background: linear-gradient(135deg, #00a843 0%, #008833 100%);
}
.pulse-animation {
  animation: pulse-glow 2s ease-in-out infinite;
}
@media (max-width: 768px) {
  .vsl-section {
    padding: 2rem 0 4rem;
  }
  .vsl-header .section-title {
    font-size: 1.5rem;
  }
}
.hero-section {
  padding: 0 0 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero-section {
    padding: 4rem 0 2rem;
  }
}
.hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(95, 8, 75, 0.03) 50%,
    transparent 70%
  );
  animation: beamRotate 20s linear infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes beamRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.hero-content {
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.stat-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(
    135deg,
    rgba(254, 155, 186, 0.15),
    rgba(95, 8, 75, 0.1)
  );
  border: 2px solid rgba(254, 155, 186, 0.3);
  border-radius: var(--radius-lg);
  padding: 1.25rem 2rem;
  margin-bottom: 2rem;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 0.15rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: var(--text-main);
  text-shadow: 0 2px 10px rgba(254, 155, 186, 0.3);
}
.hero-content h1 {
  font-size: 1.75rem;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  color: var(--secondary);
  font-weight: 700;
}
.hero-subheadline {
  font-size: 1.1875rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.7;
}
.hero-subheadline strong {
  color: var(--primary);
  font-weight: 600;
}
.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2.5rem 0 2rem;
}
@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.35);
  }
  50% {
    box-shadow: 0 6px 30px rgba(0, 200, 83, 0.6);
  }
}
.hero-cta-group .btn-primary {
  animation: pulse-glow 2s ease-in-out infinite;
}
.cta-guarantee {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 1rem;
}
.cta-guarantee span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-media {
  margin-top: 4rem;
  position: relative;
  border-radius: var(--radius-lg);
}
.media-container {
  background: var(--bg-surface);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.1);
  padding: 1rem 1rem 0 1rem;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}
.mockup-placeholder {
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border-radius: var(--radius-lg);
}
.how-it-works,
.target-audience,
.what-you-get,
.social-proof,
.faq-section,
.final-cta {
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .how-it-works,
  .target-audience,
  .what-you-get,
  .social-proof,
  .faq-section,
  .final-cta {
    padding: 5rem 0;
  }
}
.how-it-works {
  background: var(--bg-surface);
  border-top: 1px solid var(--bg-input);
}
.emotional-section {
  background: #121212;
  color: white;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.emotional-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .emotional-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
.emotional-images {
  position: relative;
}
.image-collage {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.collage-main {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.brand-text {
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.3);
  white-space: nowrap;
}
.emotional-content {
  text-align: left;
}
.emotional-content h2 {
  font-size: 2.25rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: white;
  text-align: left;
  font-weight: 700;
}
.emotional-highlight {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}
.emotional-cta-text {
  font-size: 1.375rem;
  line-height: 1.5;
  margin-bottom: 2.5rem;
  color: white;
  font-weight: 600;
}
.btn-emotional {
  display: inline-block;
  background: linear-gradient(135deg, #00c853 0%, #00a843 100%);
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
  padding: 1.125rem 3.5rem;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 25px rgba(0, 200, 83, 0.4);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-emotional:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(0, 200, 83, 0.6);
  background: linear-gradient(135deg, #00a843 0%, #008833 100%);
}
@media (max-width: 767px) {
  .emotional-content h2 {
    font-size: 1.75rem;
    text-align: center;
  }
  .emotional-content {
    text-align: center;
  }
  .brand-text {
    display: none;
  }
}
.habits-section {
  background: #fff5f8;
  padding: 5rem 0;
  position: relative;
}
.habits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .habits-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
.habits-content {
  text-align: left;
}
.habits-content h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--secondary);
  text-align: left;
  font-weight: 700;
}
.habits-intro {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}
.habits-intro strong {
  color: var(--primary);
  font-weight: 600;
}
.habits-highlight {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--text-main);
  font-weight: 400;
}
.habits-highlight strong {
  color: var(--secondary);
  font-weight: 700;
}
.habits-cta-text {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: var(--text-main);
}
.habits-cta-text strong {
  color: #00c853;
  font-weight: 700;
}
.btn-habits {
  display: inline-block;
  background: linear-gradient(135deg, #00c853 0%, #00a843 100%);
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
  padding: 1.125rem 3.5rem;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 25px rgba(0, 200, 83, 0.4);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-habits:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(0, 200, 83, 0.6);
  background: linear-gradient(135deg, #00a843 0%, #008833 100%);
}
.habits-images {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.planner-showcase {
  position: relative;
  max-width: 450px;
}
.showcase-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  margin: 32px 0 32px 0;
}
.page-badge {
  position: absolute;
  bottom: -10px;
  right: -10px;
  background: #fe9bba;
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3;
  box-shadow: 0 4px 15px rgba(254, 155, 186, 0.4);
}
.brand-label {
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: rgba(95, 8, 75, 0.15);
  text-align: center;
}
@media (max-width: 767px) {
  .habits-content h2 {
    font-size: 2rem;
    text-align: center;
  }
  .habits-content {
    text-align: center;
  }
  .brand-label {
    display: none;
  }
  .page-badge {
    width: 70px;
    height: 70px;
    font-size: 0.75rem;
  }
}
.results-section {
  background: white;
  padding: 5rem 0;
  text-align: center;
}
.results-section h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--secondary);
  font-weight: 700;
}
.results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .results-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
.results-column {
  display: flex;
  justify-content: center;
  align-items: center;
}
.results-img {
  width: 100%;
  max-width: 550px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.results-img:hover {
  transform: translateY(-5px);
}
.results-cta {
  margin-top: 2rem;
}
.btn-results {
  display: inline-block;
  background: linear-gradient(135deg, #00c853 0%, #00a843 100%);
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
  padding: 1.125rem 3.5rem;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 25px rgba(0, 200, 83, 0.4);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-results:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(0, 200, 83, 0.6);
  background: linear-gradient(135deg, #00a843 0%, #008833 100%);
}
@media (max-width: 767px) {
  .results-section h2 {
    font-size: 2rem;
  }
}
.target-section {
  background: white;
  padding: 5rem 0;
  text-align: center;
}
.target-section h2 {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  margin-bottom: 3rem;
  color: var(--secondary);
  font-weight: 700;
  line-height: 1.2;
}
.target-section h2 i {
  font-family: "Cardo", serif;
  font-weight: 400;
  font-style: italic;
}
.target-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .target-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
.target-card {
  background: var(--bg-pink-light);
  color: var(--text-main);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: left;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.target-card:hover {
  transform: translateY(-5px);
}
.target-icon-box {
  background: white;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.target-icon-box i {
  width: 24px;
  height: 24px;
  stroke: var(--text-main);
  stroke-width: 2px;
}
.target-card h3 {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 400;
  color: #555;
  margin-bottom: 0.5rem;
}
.target-card p {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--text-main);
  font-weight: 700;
  margin: 0;
}
.testimonials-dark {
  background: #121212;
  color: white;
  padding: 5rem 0;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.testimonials-dark h2 {
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
  color: white;
  font-weight: 700;
  line-height: 1.2;
}
.testimonials-subtitle {
  font-size: 1.375rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}
.testimonials-description {
  font-size: 1.125rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}
.testimonials-description strong {
  color: white;
  font-weight: 600;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.testimonial-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}
.testimonial-image-card:hover {
  transform: translateY(-5px);
}
.testimonial-image-card img {
  width: 100%;
  height: auto;
  display: block;
}
.testimonials-cta {
  text-align: center;
  margin-top: 3rem;
}
.btn-testimonials {
  display: inline-block;
  background: linear-gradient(135deg, #00c853 0%, #00a843 100%);
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
  padding: 1.125rem 3.5rem;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 25px rgba(0, 200, 83, 0.4);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-testimonials:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(0, 200, 83, 0.6);
  background: linear-gradient(135deg, #00a843 0%, #008833 100%);
}
@media (max-width: 767px) {
  .target-section h2,
  .testimonials-dark h2 {
    font-size: 2rem;
  }
  .testimonials-subtitle {
    font-size: 1.125rem;
  }
}
.bonus-books-section {
  background: #121212;
  padding: 5rem 0;
  color: white;
}
.bonus-books-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .bonus-books-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
.bonus-books-visual h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #fe9bba;
  font-weight: 700;
  line-height: 1.2;
}
.bonus-mockup {
  position: relative;
}
.bonus-mockup img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.bonus-books-card {
  background: white;
  color: var(--text-main);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
.bonus-books-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--secondary);
  font-weight: 700;
}
.bonus-description {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: var(--text-main);
}
.bonus-description strong {
  color: var(--primary);
  font-weight: 600;
}
.bonus-highlight {
  background: linear-gradient(135deg, #fff5f8, #ffe8f0);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  margin-bottom: 2rem;
  border-left: 4px solid #fe9bba;
}
.bonus-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: #fe9bba;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.bonus-text {
  display: block;
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}
.bonus-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}
.bonus-features li {
  padding: 0.75rem 0;
  font-size: 1rem;
  color: var(--text-main);
  border-bottom: 1px solid #f0f0f0;
}
.bonus-features li:last-child {
  border-bottom: none;
}
.btn-bonus-books {
  display: inline-block;
  width: 100%;
  background: linear-gradient(135deg, #00c853 0%, #00a843 100%);
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 1.125rem 2rem;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 25px rgba(0, 200, 83, 0.4);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}
.btn-bonus-books:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(0, 200, 83, 0.6);
  background: linear-gradient(135deg, #00a843 0%, #008833 100%);
}
@media (max-width: 767px) {
  .bonus-books-visual h2 {
    font-size: 2rem;
    text-align: center;
  }
  .bonus-mockup {
    text-align: center;
  }
  .bonus-books-card {
    padding: 2rem 1.5rem;
  }
  .bonus-number {
    font-size: 2rem;
  }
}
.steps-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
.step-card {
  padding: 2rem;
  background: var(--bg-body);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: border-color 0.2s;
}
.step-card:hover {
  border-color: var(--accent);
}
.step-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.5;
  margin-bottom: 1rem;
  display: block;
}
.step-icon {
  width: 3rem;
  height: 3rem;
  background: white;
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}
.target-audience {
  background: var(--bg-body);
}
.audience-grid {
  display: grid;
  gap: 1.5rem;
}
.audience-card {
  background: var(--bg-surface);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.audience-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.audience-card:hover::before {
  opacity: 1;
}
@media (min-width: 768px) {
  .audience-card {
    padding: 2.5rem 2rem;
  }
}
.card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(95, 8, 75, 0.1),
    rgba(95, 8, 75, 0.05)
  );
  color: var(--primary);
}
.card-icon svg,
.card-icon i {
  width: 2rem;
  height: 2rem;
}
.audience-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  color: var(--secondary);
  font-weight: 600;
}
.audience-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.audience-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted);
}
.audience-card ul li:last-child {
  margin-bottom: 0;
}
.audience-card i,
.audience-card svg {
  color: #00c853;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 0.125rem;
}
@media (hover: hover) and (pointer: fine) {
  .audience-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(95, 8, 75, 0.1);
  }
}
.planners-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.planner-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .planner-card:hover {
    transform: translateY(-4px);
  }
  .planner-card:hover .planner-mockup {
    box-shadow: var(--shadow-xl);
  }
}
.planner-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.planner-info h3 svg {
  color: var(--primary);
}
.planner-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.planner-info li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 0.875rem;
  line-height: 1.6;
}
.planner-info li::before {
  content: "❤";
  position: absolute;
  left: 0;
  top: 0;
  color: #fe9bba;
  font-size: 1.25rem;
  line-height: 1.4;
}
.planner-mockup {
  background: var(--bg-input);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}
.planner-mockup .mockup-box {
  background: rgba(255, 255, 255, 0.9);
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  color: var(--primary);
}
.bonus-exclusive {
  background: var(--accent-mint);
  text-align: center;
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .bonus-exclusive {
    padding: 5rem 0;
  }
}
.bonus-box {
  margin-top: 2rem;
  background-color: #f0fdf4;
  border: 1px dashed var(--primary);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
}
@media (min-width: 768px) {
  .bonus-box {
    padding: 2rem;
  }
}
.bonus-title {
  display: block;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .bonus-title {
    font-size: 1.1rem;
  }
}
.bonus-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 800px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .bonus-card {
    padding: 3rem 2rem;
  }
}
.bonus-badge {
  background: var(--primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  margin: 1rem 0;
}
.social-proof {
  background: var(--bg-body);
  overflow: hidden;
}
.testimonials-carousel {
  overflow: hidden;
  position: relative;
  margin-top: 2rem;
}
.testimonials-track {
  display: flex;
  gap: 2rem;
  animation: scroll 30s linear infinite;
  width: fit-content;
}
@media (hover: hover) {
  .testimonials-track:hover {
    animation-play-state: paused;
  }
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 1rem));
  }
}
.testimonial-card {
  background: var(--bg-surface);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  min-width: 350px;
  max-width: 350px;
  flex-shrink: 0;
}
.user-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.avatar {
  width: 3rem;
  height: 3rem;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.rating {
  color: #f59e0b;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}
.offer-section {
  background: #121212;
  padding: 5rem 0;
}
@media (max-width: 400px) {
  .offer-badge {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    white-space: normal;
    width: 90%;
    line-height: 1.2;
    text-align: center;
  }
}
.offer-card {
  background: #1e1e1e;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  padding: 3rem 1.5rem 2.5rem;
  text-align: center;
  border: 2px solid rgba(254, 155, 186, 0.2);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}
.offer-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fe9bba;
  color: #121212;
  padding: 0.625rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.8125rem;
  box-shadow: 0 4px 20px rgba(254, 155, 186, 0.4);
  white-space: nowrap;
  letter-spacing: 0.025em;
  z-index: 10;
}
.offer-card h2 {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  font-size: 1.75rem;
  color: white;
  padding: 0 0.5rem;
}
@media (max-width: 400px) {
  .offer-card h2 {
    font-size: 1.5rem;
  }
}
.offer-list {
  text-align: left;
  margin: 0 auto 2.5rem;
  max-width: 100%;
  padding: 0;
  list-style: none;
}
.offer-list li {
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9375rem;
  line-height: 1.6;
  position: relative;
}
.offer-list li::before {
  content: "";
  width: 24px;
  height: 24px;
  background: #fe9bba;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(254, 155, 186, 0.3);
}
.offer-list li::after {
  content: "✓";
  position: absolute;
  left: 6px;
  color: #121212;
  font-weight: 700;
  font-size: 0.875rem;
}
.offer-list li:last-child {
  border-bottom: none;
}
.offer-list i,
.offer-list svg {
  display: none;
}
.price-container {
  margin: 2.5rem 0;
  padding: 1.5rem 0;
  border-top: 2px solid var(--bg-input);
  border-bottom: 2px solid var(--bg-input);
  text-align: center;
}
.price-old {
  text-decoration: line-through;
  color: var(--accent-rose);
  font-size: 1rem;
  display: block;
  margin-bottom: 0.5rem;
}
.price-new {
  font-size: 3.5rem;
  font-weight: 800;
  color: #00c853;
  line-height: 1;
  margin: 0.75rem 0;
  display: block;
}
.price-sub {
  display: block;
  color: var(--accent-rose);
  font-weight: 500;
  font-size: 0.9375rem;
  margin-top: 0.5rem;
}
.guarantee-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
  padding: 0 0.5rem;
}
.guarantee-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--accent-rose);
  white-space: nowrap;
}
.guarantee-badges i,
.guarantee-badges svg {
  width: 16px;
  height: 16px;
  color: #00c853;
}
.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #00c853 0%, #00a843 100%);
  color: white;
  font-weight: 700;
  padding: 1.125rem 2.5rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(0, 200, 83, 0.3);
  transition: all 0.3s ease;
  font-size: 1rem;
  text-align: center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  line-height: 1.4;
}
.cta-button:hover {
  background: linear-gradient(135deg, #00a843 0%, #008833 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 200, 83, 0.4);
}
.offer-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--bg-input);
}
.offer-footer p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0.5rem 0;
  text-align: center;
}
@media (min-width: 768px) {
  .offer-card {
    padding: 4rem 3rem 3rem;
  }
  .offer-card h2 {
    font-size: 2rem;
  }
  .price-new {
    font-size: 4.5rem;
  }
  .cta-button {
    max-width: 450px;
    font-size: 1.0625rem;
  }
  .guarantee-badges {
    gap: 1.5rem;
  }
}
.guarantee-section {
  background: var(--accent-mint);
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .guarantee-section {
    padding: 5rem 0;
  }
}
.guarantee-box {
  background: var(--bg-surface);
  border: 2px dashed var(--primary);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .guarantee-box {
    padding: 3rem;
  }
}
.guarantee-icon {
  color: var(--primary);
  margin-bottom: 1rem;
}
.guarantee-highlight {
  font-weight: 600;
  color: var(--primary);
  margin-top: 1rem;
  display: block;
}
.faq-section {
  background-color: #f9f9f9;
  padding: 5rem 0;
}
.faq-item {
  border-bottom: 1px solid var(--bg-input);
}
.faq-question {
  width: 100%;
  padding: 1.5rem 0;
  text-align: left;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--text-main);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: var(--text-muted);
  transition: max-height 0.3s ease;
}
.faq-answer.open {
  padding-bottom: 1.5rem;
  max-height: 300px;
}
.btn-primary,
.btn-emotional,
.btn-testimonials,
.btn-bonus-books,
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #6fdc8c 0%, #4db66a 100%);
  color: white;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 1.25rem 2.5rem;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(77, 182, 106, 0.4);
  white-space: normal;
  line-height: 1.2;
  text-align: center;
  width: auto;
  min-height: 3.5rem;
  max-width: 100%;
  text-decoration: none;
  cursor: pointer;
  border: none;
}
@media (max-width: 767px) {
  .btn-primary,
  .btn-emotional,
  .btn-testimonials,
  .btn-bonus-books,
  .cta-button {
    padding: 1rem 1.5rem;
    font-size: 0.9375rem;
    width: 100%;
  }
}
.btn-primary:hover,
.btn-emotional:hover,
.btn-testimonials:hover,
.btn-bonus-books:hover,
.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(77, 182, 106, 0.6);
  background: linear-gradient(90deg, #4db66a 0%, #3da05e 100%);
}
.cta-button {
  width: 100%;
  max-width: 500px;
}
.bonus-books-section {
  padding: 5rem 0;
  background-color: var(--bg-pink-light);
}
.bonus-books-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .bonus-books-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
.bonus-books-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.bonus-books-visual h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--secondary);
  line-height: 1.2;
  margin-bottom: 2rem;
}
.bonus-books-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
}
.bonus-books-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.bonus-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.bonus-highlight {
  background: var(--bg-pink-light);
  padding: 1.5rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
  border: 2px dashed var(--accent);
}
.bonus-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.bonus-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.bonus-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}
.bonus-features li {
  margin-bottom: 0.8rem;
  font-size: 1rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  font-weight: 500;
}
.final-cta {
  background: #121212;
  color: white;
  text-align: center;
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .final-cta {
    padding: 5rem 0;
  }
}
.final-cta h2 {
  color: white;
}
.final-cta p {
  color: rgba(255, 255, 255, 0.8);
}
.final-cta .cta-button {
  background: #fe9bba;
  color: #121212;
  font-weight: 700;
}
.final-cta .cta-button:hover {
  background: #ff85a3;
  box-shadow: 0 6px 25px rgba(254, 155, 186, 0.5);
}
footer {
  background: white;
  padding: 4rem 0;
  border-top: 1px solid var(--bg-input);
  font-size: 0.875rem;
  color: var(--text-muted);
}
.footer-grid {
  display: grid;
  gap: 2rem;
}
.footer-col h3 {
  color: var(--text-main);
  margin-bottom: 1rem;
}
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--bg-input);
  text-align: center;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(95, 8, 75, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(95, 8, 75, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(95, 8, 75, 0);
  }
}
.pulse-animation {
  animation: pulse 2s infinite;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .testimonials-track {
    animation: none;
  }
  .hero-section::before {
    animation: none;
  }
}
@media (min-width: 768px) {
  h1 {
    font-size: 4rem;
  }
  h2 {
    font-size: 2.5rem;
  }
  .nav-links {
    display: flex;
  }
  .hero-cta-group {
    flex-direction: row;
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .audience-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .planner-card {
    grid-template-columns: 1fr 1fr;
  }
  .planner-card:nth-child(even) {
    direction: rtl;
  }
  .planner-card:nth-child(even) .planner-info {
    direction: ltr;
  }
}
@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .container {
    width: 100%;
  }
}
.glow-content-section {
  padding: 5rem 0;
  background-color: #fefefe;
}
.section-title {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 2.5rem;
  margin-bottom: 4rem;
  color: var(--secondary);
  line-height: 1.2;
}
.section-title i {
  font-family: var(--font-fancy, "Cardo", serif);
  font-weight: 400;
  font-style: italic;
  font-size: 2.7rem;
}
.glow-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .glow-grid {
    grid-template-columns: 1fr 1fr;
  }
  .glow-card--wide {
    grid-column: span 2;
  }
}
.glow-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}
.glow-card:hover {
  transform: translateY(-5px);
}
.glow-dark {
  background-color: var(--bg-dark-green);
  color: #fff;
  padding: 2rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.glow-light {
  background-color: var(--bg-pink-light);
  color: var(--text-main);
}
.glow-grad-bg {
  background: linear-gradient(
      135deg,
      rgba(47, 61, 60, 0.95),
      rgba(47, 61, 60, 0.85)
    ),
    url("assets/images/texture.png");
  background-size: cover;
}
.glow-card--wide {
  flex-direction: column-reverse;
  align-items: center;
  padding: 0;
}
@media (min-width: 768px) {
  .glow-card--wide {
    flex-direction: row;
    padding: 0;
    height: 350px;
  }
  .glow-reverse-desktop {
    flex-direction: row-reverse;
  }
  .glow-card-text {
    flex: 0 0 40%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .glow-card-media {
    flex: 1;
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  .glow-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}
@media (max-width: 767px) {
  .glow-card--wide {
    flex-direction: column-reverse;
  }
  .glow-card-text {
    padding: 2rem;
  }
  .glow-card-media {
    width: 100%;
    height: 250px;
  }
  .glow-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.glow-badge {
  display: inline-block;
  padding: 6px 16px;
  font-family: var(--font-sans);
  font-style: italic;
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  width: fit-content;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.glow-badge--dark {
  background-color: var(--bg-dark-green);
  color: #fff;
}
.glow-badge--white {
  background-color: #fff;
  color: var(--text-main);
}
.glow-list {
  list-style: none;
  padding: 0;
}
.glow-list li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.9;
}
.glow-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-weight: bold;
}
.glow-text-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
}
.glow-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}
.glow-card-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
  height: 100%;
}
.glow-thumb {
  width: 100px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .glow-thumb {
    width: 80px;
    height: 100px;
  }
  .glow-card {
    min-height: 200px;
  }
}
/* Platforms Card */
.platforms-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 0.75rem 1.75rem;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.platforms-text {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 600;
}

.platforms-logos {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.platform-logo {
  height: 22px;
  width: auto;
  display: block;
  opacity: 1;
  transition: transform 0.2s ease;
}

.platform-logo:hover {
  transform: scale(1.1);
}

/* Platforms Card inside Offer Card (Dark) */
.offer-card .platforms-card {
  background: rgba(255, 255, 255, 0.05); /* Subtle dark background */
  border: 1px solid rgba(255, 255, 255, 0.15); /* Light border */
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.offer-card .platforms-text {
  color: rgba(255, 255, 255, 0.9); /* Light text */
}

/* Mobile Responsive - Platforms Card */
@media (max-width: 767px) {
  .platforms-card {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 24px;
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .platforms-logos {
    gap: 1.5rem;
  }
}
