/* ============================================
   Cresça com Reels - Landing Page CSS
   Pure CSS (no Tailwind)
   ============================================ */

/* === CSS Variables === */
:root {
  --bg: hsl(263, 83%, 8%);
  --bg-card: hsl(263, 61%, 12%);
  --primary: hsl(264, 67%, 35%);
  --accent: hsl(24, 95%, 53%);
  --secondary: hsl(263, 63%, 16%);
  --border: hsl(263, 43%, 35%);
  --muted: hsl(263, 50%, 18%);
  --text: #ffffff;
  --text-gray-200: #e5e7eb;
  --text-gray-300: #d1d5db;
  --text-gray-400: #9ca3af;
  --pink-500: #ec4899;
  --orange-500: #f97316;
  --yellow-500: #fbbf24;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --purple-400: #c084fc;
  --purple-900: #2d1b4e;
  --purple-950: #1a0b2e;
  --radius: 1.25rem;
}

/* === Reset & Base === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--purple-950);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

button {
  border: none;
  background: none;
  font-family: inherit;
  cursor: pointer;
  color: inherit;
}

/* === Selection === */
::selection {
  background-color: var(--accent);
  color: white;
}

/* === Scrollbar === */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* === Animated Background === */
.bg-fixed {
  position: fixed;
  inset: 0;
  z-index: -10;
  background: linear-gradient(to bottom right, var(--purple-950), var(--purple-900), var(--purple-950));
}

.bg-blobs {
  position: absolute;
  inset: 0;
  opacity: 0.3;
}

.blob {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  mix-blend-mode: multiply;
  filter: blur(48px);
  animation: blob 7s infinite;
}

.blob-pink {
  top: 0;
  left: 25%;
  background: var(--pink-500);
}

.blob-orange {
  top: 0;
  right: 25%;
  background: var(--orange-500);
  animation-delay: 2s;
}

.blob-yellow {
  bottom: 0;
  left: 50%;
  background: var(--yellow-500);
  animation-delay: 4s;
}

/* === Animations === */
@keyframes blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -50px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(249, 115, 22, 0.4); }
  50% { box-shadow: 0 0 40px rgba(249, 115, 22, 0.6); }
}

@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.animate-pulse-glow {
  animation: pulse-glow 2s infinite;
}

/* === Fade-in on Scroll === */
.fade-in {
  opacity: 0;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.fade-in-up { transform: translateY(20px); }
.fade-in-down { transform: translateY(-20px); }
.fade-in-left { transform: translateX(20px); }
.fade-in-right { transform: translateX(-20px); }

.fade-in.visible {
  opacity: 1;
  transform: translate(0, 0) translateZ(0);
}

/* === Glass Card === */
.glass-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 8px 32px 0 rgba(31,38,135,0.37);
  transform: translate3d(0,0,0);
  -webkit-transform: translate3d(0,0,0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* === Gradient Text === */
.gradient-text {
  background: linear-gradient(135deg, #ec4899 0%, #f97316 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === Layout Utilities === */
.container {
  max-width: 80rem;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.container-sm { max-width: 48rem; margin: 0 auto; }
.container-md { max-width: 64rem; margin: 0 auto; }
.container-lg { max-width: 72rem; margin: 0 auto; }
.container-xl { max-width: 80rem; margin: 0 auto; }

.relative { position: relative; }

/* === Section === */
.section {
  padding: 4rem 1rem;
  position: relative;
  overflow: hidden;
}

/* === Header === */
.header {
  padding-top: 1rem;
  position: relative;
  z-index: 50;
}

.header-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  height: 3rem;
  width: auto;
}

/* === Buttons === */
.btn {
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  transition: all 0.3s;
  transform: scale(1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
}

.btn:hover {
  transform: scale(1.05);
}

.btn-primary {
  background: linear-gradient(to right, var(--pink-500), var(--orange-500), var(--yellow-500));
  color: white;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.btn-primary:hover {
  box-shadow: 0 25px 50px -12px rgba(236,72,153,0.5);
}

.btn-glass {
  background: rgba(255,255,255,0.1);
  color: white;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.05);
}

.btn-glass:hover {
  background: rgba(255,255,255,0.2);
}

.btn-full {
  width: 100%;
}

/* === Hero Section === */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  justify-items: center;
}

.hero-image-col {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  order: -1;
}

.hero-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 60px rgba(236, 72, 153, 0.2));
}

/* Video */
.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.video-facade {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  color: white;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
  cursor: pointer;
  border: none;
  width: 100%;
}

.video-facade:hover {
  background: rgba(0,0,0,0.7);
}

.video-facade-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: blur(4px);
}

.video-play-btn {
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  padding: 1rem;
  margin-bottom: 0.75rem;
  transition: all 0.3s;
}

.video-facade:hover .video-play-btn {
  background: rgba(255,255,255,0.3);
}

.video-facade span {
  font-size: 0.875rem;
  font-weight: 600;
}

.video-loading {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.6);
  color: white;
  z-index: 10;
  backdrop-filter: blur(4px);
}

.video-spinner {
  width: 2.5rem;
  height: 2.5rem;
  border: 4px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

.video-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-sound-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  color: white;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
  cursor: pointer;
  border: none;
  width: 100%;
}

.video-sound-overlay:hover {
  background: rgba(0,0,0,0.7);
}

/* Hero text */
.hero-text {
  text-align: center;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-gray-300);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.hero-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  margin-top: 1.5rem;
  justify-content: center;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.05);
  padding: 0.5rem 0.75rem;
  border-radius: 0.75rem;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.1);
  flex: 1;
  justify-content: center;
}

.stat-icon-wrap {
  padding: 0.375rem;
  border-radius: 0.5rem;
  flex-shrink: 0;
}

.stat-icon-wrap.accent {
  background: rgba(249,115,22,0.2);
}

.stat-icon-wrap.purple {
  background: rgba(168,85,247,0.2);
}

.stat-icon-wrap svg {
  width: 1rem;
  height: 1rem;
}

.stat-number {
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.stat-label-row {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.stat-dot {
  position: relative;
  display: flex;
  width: 0.375rem;
  height: 0.375rem;
}

.stat-dot-ping {
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
  position: absolute;
  display: inline-flex;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--green-400);
  opacity: 0.75;
}

.stat-dot-solid {
  position: relative;
  display: inline-flex;
  border-radius: 50%;
  width: 0.375rem;
  height: 0.375rem;
  background: var(--green-500);
}

.stat-label {
  font-size: 10px;
  color: var(--text-gray-400);
  font-weight: 500;
  white-space: nowrap;
}

/* Guarantees badge */
.guarantee-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-gray-300);
}

.guarantee-badge svg {
  width: 1rem;
  height: 1rem;
  color: var(--green-400);
  flex-shrink: 0;
}

.guarantee-badge span {
  font-size: 0.75rem;
  text-align: center;
}

/* === Niche Marquee === */
.niche-section {
  margin: 0 1rem;
  border-radius: 1.5rem;
  padding: 2rem 1rem;
  position: relative;
  z-index: 10;
}

.niche-label {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-gray-400);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.niche-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  opacity: 0.8;
  padding: 0 1rem;
}

.niche-item {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-gray-300);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.niche-item svg {
  width: 1rem;
  height: 1rem;
  color: var(--accent);
}

/* === Section Headings === */
.section-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-gray-300);
}

/* === Problem Cards (grid 2x2) === */
.grid-2x2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

/* === Feature Card === */
.feature-card {
  padding: 1.5rem;
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}

.feature-card:hover {
  border-color: rgba(236, 72, 153, 0.4);
}

.feature-card-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  background: linear-gradient(to bottom right, rgba(236,72,153,0.15), rgba(249,115,22,0.15));
  opacity: 0.15;
  filter: blur(48px);
  border-radius: 50%;
  margin-right: -4rem;
  margin-top: -4rem;
  pointer-events: none;
}

.feature-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: linear-gradient(to bottom right, rgba(236,72,153,0.4), rgba(249,115,22,0.4));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent);
}

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--text-gray-300);
  line-height: 1.7;
  font-size: 0.875rem;
}

/* === Conclusion Card === */
.conclusion-card {
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
}

.conclusion-card p {
  font-size: 1.125rem;
  color: var(--text-gray-200);
  line-height: 1.7;
}

/* === Feature Sections (Trend + Generator) === */
.feature-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.feature-image-wrap {
  flex: 1;
  position: relative;
  width: 100%;
}

.feature-image-glow {
  position: absolute;
  inset: -4px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  border-radius: 2rem;
  filter: blur(8px);
  opacity: 0.2;
  transition: opacity 0.5s;
}

.feature-image-wrap:hover .feature-image-glow {
  opacity: 0.4;
}

.feature-image-inner {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.feature-image-inner img {
  width: 100%;
}

.feature-content {
  flex: 1;
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.feature-badge.accent {
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.2);
  color: var(--accent);
}

.feature-badge.purple {
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.3);
  color: var(--purple-400);
}

.feature-badge svg {
  width: 0.75rem;
  height: 0.75rem;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.feature-text {
  color: var(--text-gray-300);
  font-size: 1rem;
  line-height: 1.7;
}

.feature-text p {
  margin-bottom: 1.5rem;
}

.feature-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-checklist .check-icon {
  margin-top: 0.25rem;
  background: var(--primary);
  padding: 0.25rem;
  border-radius: 50%;
  color: white;
  flex-shrink: 0;
}

.feature-checklist .check-icon svg {
  width: 0.75rem;
  height: 0.75rem;
}

/* Generator mini cards */
.gen-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.gen-card {
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
}

.gen-card-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.gen-card-icon.accent {
  background: rgba(249,115,22,0.1);
}

.gen-card-icon.purple {
  background: rgba(139,92,246,0.2);
}

.gen-card-icon svg {
  width: 1rem;
  height: 1rem;
}

.gen-card h4 {
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.gen-card p {
  font-size: 0.75rem;
  color: var(--text-gray-400);
}

/* === Bonus Features === */
.bonus-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.bonus-image {
  flex: 1;
  width: 100%;
}

.bonus-image img {
  width: 100%;
  border-radius: 1rem;
}

.bonus-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.bonus-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.bonus-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.bonus-icon.purple { background: var(--primary); }
.bonus-icon.accent { background: var(--accent); }

.bonus-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: white;
}

.bonus-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.bonus-item p {
  color: var(--text-gray-400);
  line-height: 1.7;
  font-size: 0.875rem;
}

/* === How It Works === */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.step-card {
  border-radius: 1rem;
  padding: 1.5rem;
  transition: transform 0.3s;
  height: 100%;
  position: relative;
}

.step-card:hover {
  transform: scale(1.02);
}

.step-number {
  position: absolute;
  top: -1rem;
  right: 1.5rem;
  border-radius: 0.75rem;
  padding: 0.375rem 1rem;
  background: linear-gradient(to bottom right, var(--pink-500), var(--orange-500), var(--yellow-500));
  color: white;
  font-weight: 600;
  font-size: 1rem;
}

.step-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  padding-top: 0.5rem;
}

.step-card p {
  color: var(--text-gray-300);
  font-size: 1rem;
  line-height: 1.7;
}

/* === Daily Kit === */
.kit-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(to right, rgba(236,72,153,0.2), rgba(249,115,22,0.2));
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.kit-grid-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.kit-grid-bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 56rem;
  margin: 0 auto;
}

/* === Differentials === */
.diff-card {
  border-radius: 1.5rem;
  padding: 1.5rem;
}

.diff-text {
  font-size: 1.125rem;
  color: var(--text-gray-200);
  line-height: 1.7;
  text-align: center;
  margin-bottom: 1.5rem;
}

.diff-divider {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
}

.diff-change {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.diff-change-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: linear-gradient(to bottom right, var(--pink-500), var(--orange-500));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.diff-change-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.diff-change h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.diff-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.diff-metric {
  text-align: center;
  padding: 1rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.05);
}

.diff-metric svg {
  width: 1.5rem;
  height: 1.5rem;
  margin: 0 auto 0.5rem;
  color: var(--accent);
}

.diff-metric span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-gray-300);
}

/* === Feedbacks === */
.feedbacks-section {
  padding: 2rem 1rem;
}

.feedback-masonry {
  columns: 2;
  gap: 1rem;
}

.feedback-masonry > * {
  break-inside: avoid;
  margin-bottom: 1rem;
}

.feedback-item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.3s;
}

.feedback-item:hover {
  transform: scale(1.02);
}

.feedback-item img {
  width: 100%;
  height: auto;
}

.feedback-sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, transparent, transparent, rgba(255,255,255,0.1));
  opacity: 0;
  transition: opacity 0.3s;
}

.feedback-item:hover .feedback-sheen {
  opacity: 1;
}

/* === Pricing === */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.plan-card {
  border-radius: 1.5rem;
  padding: 1.5rem;
  position: relative;
}

.plan-card.featured {
  border: 1px solid rgba(236,72,153,0.4);
  box-shadow: 0 25px 50px -12px rgba(236,72,153,0.2);
}

.plan-card.basic {
  border: 1px solid rgba(255,255,255,0.05);
  opacity: 0.9;
  transition: opacity 0.3s;
}

.plan-card.basic:hover {
  opacity: 1;
}

.plan-tag {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: white;
  border-radius: 9999px;
  background: linear-gradient(to right, var(--pink-500), var(--orange-500));
  box-shadow: 0 10px 15px -3px rgba(236,72,153,0.3);
  white-space: nowrap;
}

.plan-discount {
  position: absolute;
  top: -1.5rem;
  right: -0.5rem;
  width: 4rem;
  height: 4rem;
}

.plan-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 12rem;
  height: 12rem;
  background: linear-gradient(to bottom right, rgba(236,72,153,0.1), rgba(249,115,22,0.1));
  border-radius: 50%;
  filter: blur(48px);
  z-index: -1;
}

.plan-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-gray-200);
  margin-bottom: 0.5rem;
}

.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.plan-price-value {
  font-size: 2.5rem;
  font-weight: 700;
}

.plan-price-period {
  color: var(--text-gray-300);
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.plan-price-annual {
  font-size: 0.85rem;
  color: var(--text-gray-300);
  margin-top: -1.5rem;
  margin-bottom: 1.5rem;
}

.plan-savings {
  color: var(--green-400);
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.plan-desc {
  color: var(--text-gray-300);
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.plan-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.plan-feature-check {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: linear-gradient(to right, var(--pink-500), var(--orange-500));
  display: flex;
  align-items: center;
  justify-content: center;
}

.plan-feature-check svg {
  width: 0.75rem;
  height: 0.75rem;
  color: white;
}

.plan-feature span {
  color: var(--text-gray-200);
  font-size: 0.875rem;
}

.plan-note {
  text-align: center;
  color: var(--text-gray-400);
  font-size: 0.75rem;
  margin-top: 0.75rem;
}

/* Guarantees bar */
.guarantees-bar {
  border-radius: 1.5rem;
  padding: 1.5rem;
  margin-top: 1.5rem;
  border: 1px solid rgba(255,255,255,0.05);
}

.guarantees-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.guarantee-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.guarantee-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--green-400);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.guarantee-item p {
  color: var(--text-gray-300);
  line-height: 1.7;
  font-size: 0.875rem;
}

.guarantee-item strong {
  color: white;
}

/* === For Who === */
.personas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.persona-card {
  border-radius: 1rem;
  padding: 1.25rem;
  text-align: center;
  transition: transform 0.3s;
}

.persona-card:hover {
  transform: scale(1.02);
}

.persona-card svg {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 0.75rem;
  color: var(--accent);
}

.persona-card p {
  color: var(--text-gray-200);
  font-weight: 500;
  line-height: 1.7;
  font-size: 0.875rem;
}

/* === FAQ === */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border-radius: 1rem;
  overflow: hidden;
}

.faq-btn {
  width: 100%;
  padding: 1rem 1.25rem;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s;
  font-size: 1rem;
  font-weight: 600;
}

.faq-btn:hover {
  background: rgba(255,255,255,0.05);
}

.faq-btn svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.faq-btn .chevron-open {
  color: var(--accent);
}

.faq-btn .chevron-closed {
  color: var(--text-gray-400);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
  opacity: 0;
}

.faq-answer.open {
  opacity: 1;
}

.faq-answer-inner {
  padding: 0 1.25rem 1rem;
  color: var(--text-gray-300);
  line-height: 1.7;
  font-size: 0.875rem;
}

/* === Final CTA === */
.final-cta {
  text-align: center;
}

.final-cta h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.final-cta p {
  color: var(--text-gray-300);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.final-guarantee {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-gray-400);
}

.final-guarantee svg {
  width: 1rem;
  height: 1rem;
  color: var(--green-400);
}

.final-guarantee span {
  font-size: 0.75rem;
}

/* === Footer === */
.footer {
  text-align: center;
  position: relative;
  z-index: 10;
}

.footer-divider {
  width: 90%;
  margin: 0 auto;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 9999px;
}

.footer-inner {
  padding: 2.5rem 1rem;
  max-width: 80rem;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: var(--text-gray-200);
  font-weight: 500;
  font-size: 0.75rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-copy {
  color: var(--text-gray-400);
  font-size: 0.75rem;
}

/* === SVG Icon sizing === */
.icon-sm { width: 1rem; height: 1rem; }
.icon-md { width: 1.25rem; height: 1.25rem; }
.icon-lg { width: 1.5rem; height: 1.5rem; }
.icon-xl { width: 2rem; height: 2rem; }

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* sm: 640px */
@media (min-width: 640px) {
  .section {
    padding: 6rem 1.5rem;
  }

  .header-logo {
    height: 4rem;
  }

  .hero {
    min-height: 100vh;
    padding: 2rem 1.5rem 4rem;
  }

  .hero-title {
    font-size: 1.875rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }

  .hero-cta-row {
    flex-direction: row;
    justify-content: center;
  }

  .video-facade span,
  .video-sound-overlay span {
    font-size: 1.125rem;
  }

  .video-play-btn {
    padding: 1.5rem;
  }

  .video-spinner {
    width: 3rem;
    height: 3rem;
  }

  .stat-card {
    flex: none;
    justify-content: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
  }

  .stat-icon-wrap {
    padding: 0.5rem;
  }

  .stat-icon-wrap svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  .stat-number {
    font-size: 1.25rem;
  }

  .stat-dot {
    width: 0.5rem;
    height: 0.5rem;
  }

  .stat-dot-solid {
    width: 0.5rem;
    height: 0.5rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .niche-section {
    margin: 0 1.5rem;
    padding: 2.5rem 1rem;
  }

  .niche-label {
    margin-bottom: 1.5rem;
    letter-spacing: 0.2em;
  }

  .niche-list {
    gap: 1.5rem 3rem;
  }

  .niche-item {
    font-size: 1.125rem;
  }

  .niche-item svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  .section-heading {
    margin-bottom: 4rem;
  }

  .section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .section-subtitle {
    font-size: 1.125rem;
  }

  .feature-card {
    padding: 2rem;
  }

  .feature-card-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1.5rem;
  }

  .feature-card-icon svg {
    width: 1.75rem;
    height: 1.75rem;
  }

  .feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }

  .feature-card p {
    font-size: 1rem;
  }

  .conclusion-card {
    padding: 2rem;
  }

  .conclusion-card p {
    font-size: 1.25rem;
  }

  .feature-badge {
    padding: 0.375rem 1rem;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
  }

  .feature-badge svg {
    width: 1rem;
    height: 1rem;
  }

  .feature-title {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
  }

  .feature-text {
    font-size: 1.125rem;
  }

  .feature-checklist {
    gap: 1.25rem;
  }

  .feature-checklist .check-icon svg {
    width: 1rem;
    height: 1rem;
  }

  .gen-cards {
    grid-template-columns: 1fr 1fr;
  }

  .gen-card {
    padding: 1.25rem;
  }

  .gen-card-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .gen-card-icon svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  .gen-card h4 {
    font-size: 1rem;
  }

  .gen-card p {
    font-size: 0.875rem;
  }

  .bonus-icon {
    width: 3.5rem;
    height: 3.5rem;
  }

  .bonus-icon svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .bonus-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .bonus-item p {
    font-size: 1rem;
  }

  .step-card {
    padding: 2.5rem;
  }

  .step-number {
    top: -1.25rem;
    right: 2rem;
    border-radius: 1rem;
    padding: 0.5rem 1.25rem;
    font-size: 1.125rem;
  }

  .step-card h3 {
    font-size: 1.5rem;
  }

  .step-card p {
    font-size: 1.125rem;
  }

  .diff-card {
    padding: 2rem;
    border-radius: 1.5rem;
  }

  .diff-text {
    font-size: 1.25rem;
  }

  .diff-change-icon {
    width: 4rem;
    height: 4rem;
  }

  .diff-change-icon svg {
    width: 2rem;
    height: 2rem;
  }

  .diff-change h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .diff-metric svg {
    width: 2rem;
    height: 2rem;
  }

  .diff-metric span {
    font-size: 0.875rem;
  }

  .plan-card {
    padding: 2rem;
  }

  .plan-tag {
    top: -1rem;
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
  }

  .plan-discount {
    top: -2rem;
    right: -1rem;
    width: 5rem;
    height: 5rem;
  }

  .plan-name {
    font-size: 1.5rem;
  }

  .plan-price-value {
    font-size: 3rem;
  }

  .plan-price-period {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .plan-savings, .plan-desc {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .plan-features {
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .plan-feature-check {
    width: 1.5rem;
    height: 1.5rem;
  }

  .plan-feature-check svg {
    width: 1rem;
    height: 1rem;
  }

  .plan-feature span {
    font-size: 1.125rem;
  }

  .plan-note {
    font-size: 0.875rem;
  }

  .guarantees-bar {
    padding: 2rem;
    margin-top: 2.5rem;
  }

  .guarantee-item svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .guarantee-item p {
    font-size: 1rem;
  }

  .persona-card {
    padding: 1.5rem;
  }

  .persona-card svg {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
  }

  .persona-card p {
    font-size: 1rem;
  }

  .faq-btn {
    padding: 1.25rem 1.5rem;
    font-size: 1.125rem;
  }

  .faq-btn svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .faq-answer-inner {
    padding: 0 1.5rem 1.25rem;
    font-size: 1rem;
  }

  .final-cta h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
  }

  .final-cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }

  .final-guarantee {
    margin-top: 2rem;
  }

  .final-guarantee span {
    font-size: 0.875rem;
  }

  .footer-links {
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .footer-links a {
    font-size: 0.875rem;
  }

  .footer-copy {
    font-size: 0.875rem;
  }

  .footer-inner {
    padding: 3rem 1rem;
  }

  .guarantee-badge span {
    font-size: 0.875rem;
  }

  .guarantee-badge svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  .feedbacks-section {
    padding: 3rem 1.5rem;
  }
}

/* md: 768px */
@media (min-width: 768px) {
  .grid-2x2 {
    grid-template-columns: 1fr 1fr;
  }

  .feature-row {
    flex-direction: row;
    gap: 3rem;
  }

  .feature-row.reverse {
    flex-direction: row-reverse;
  }

  .bonus-row {
    flex-direction: row;
    gap: 3rem;
  }

  .diff-change {
    flex-direction: row;
    text-align: left;
  }

  .diff-metrics {
    grid-template-columns: repeat(3, 1fr);
  }

  .feedback-masonry {
    columns: 3;
  }

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

  .guarantees-list {
    flex-direction: row;
    align-items: center;
  }

  .guarantee-item {
    flex: 1;
  }

  .kit-grid-top {
    grid-template-columns: 1fr 1fr;
  }

  .section-title {
    font-size: 3rem;
  }
}

/* lg: 1024px */
@media (min-width: 1024px) {
  .section {
    padding: 6rem 2rem;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    justify-items: start;
  }

  .hero-text {
    text-align: left;
    max-width: unset;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-image-col {
    justify-content: flex-end;
    order: 0;
  }

  .hero-img {
    max-width: 100%;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .hero-cta-row {
    justify-content: flex-start;
  }

  .hero-stats {
    justify-content: flex-start;
  }

  .niche-section {
    margin: 0 2rem;
  }

  .feature-row {
    gap: 6rem;
  }

  .feature-title {
    font-size: 3rem;
  }

  .bonus-row {
    gap: 5rem;
  }

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

  .kit-grid-top {
    grid-template-columns: repeat(3, 1fr);
  }

  .feedback-masonry {
    columns: 4;
  }

  .pricing-grid {
    grid-template-columns: minmax(0, 480px);
    justify-content: center;
    gap: 2.5rem;
  }

  .plan-card {
    padding: 2.5rem;
  }

  .plan-price-value {
    font-size: 3.75rem;
  }

  .guarantees-bar {
    padding: 3rem;
  }

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

  .diff-card {
    padding: 3rem;
  }

  .diff-text {
    font-size: 1.5rem;
  }
}

/* Hero text stays centered at all sizes */
