/* Base Styles & Variables */
:root {
  --forest: #0f2a1f;
  --cream: #f5f1e6;
  --gold: #c7a86b;
  --black: #1a1a1a;
  --stone-100: #f5f5f4;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn-primary:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(199, 168, 107, 0.3);
}

.btn-secondary {
  background: rgba(245, 241, 230, 0.05);
  color: var(--cream);
  border-color: rgba(245, 241, 230, 0.4);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(245, 241, 230, 0.1);
}

.btn-gold {
  width: 100%;
  padding: 1.25rem 2rem;
  background: linear-gradient(135deg, #c7a86b 0%, #a8904d 50%, #c7a86b 100%);
  color: var(--forest);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0.75rem;
  box-shadow: 0 0 30px rgba(199, 168, 107, 0.4), 0 10px 40px rgba(199, 168, 107, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-gold:hover {
  transform: scale(1.02);
}

.btn-gold:active {
  transform: scale(0.98);
}

.btn.with-arrow svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Section Labels */
.section-label {
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .section-label {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('hero-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(15, 42, 31, 0.7) 50%, #0f2a1f 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin: 0 auto;
  padding: 4rem 1rem;
  text-align: center;
}

@media (min-width: 640px) {
  .hero-content {
    padding: 5rem 1.5rem;
  }
}

.hero-headline {
  font-size: 1.875rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .hero-headline {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 768px) {
  .hero-headline {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-headline {
    font-size: 3.75rem;
  }
}

.hero-subheadline {
  font-size: 1rem;
  color: rgba(245, 241, 230, 0.9);
  max-width: 42rem;
  margin: 0 auto 2rem;
  line-height: 1.7;
  padding: 0 0.5rem;
}

@media (min-width: 640px) {
  .hero-subheadline {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 768px) {
  .hero-subheadline {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    gap: 1rem;
  }
  
  .hero-buttons .btn {
    width: auto;
    padding: 1.5rem 2rem;
  }
}

.hero-buttons .btn {
  width: 100%;
}

.scroll-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(245, 241, 230, 0.6);
  animation: bounce 2s infinite;
}

@media (min-width: 640px) {
  .scroll-indicator {
    bottom: 2rem;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ==================== IDENTIFICATION ==================== */
.identification {
  background: linear-gradient(to bottom, var(--cream), var(--stone-100));
  padding: 4rem 0;
}

@media (min-width: 640px) {
  .identification {
    padding: 5rem 0;
  }
}

@media (min-width: 768px) {
  .identification {
    padding: 8rem 0;
  }
}

.identification .container {
  max-width: 64rem;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .section-header {
    margin-bottom: 4rem;
  }
}

.section-title {
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.section-title.dark {
  color: var(--forest);
}

@media (min-width: 640px) {
  .section-title {
    font-size: 1.875rem;
    margin-bottom: 1rem;
  }
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-subtitle {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
}

.section-subtitle.gold {
  color: var(--gold);
}

@media (min-width: 640px) {
  .section-subtitle {
    font-size: 1.5rem;
  }
}

@media (min-width: 768px) {
  .section-subtitle {
    font-size: 1.875rem;
  }
}

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

@media (min-width: 640px) {
  .painpoints-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
  }
}

.painpoint-card {
  background: linear-gradient(180deg, rgba(15, 42, 31, 0.08) 0%, rgba(199, 168, 107, 0.08) 100%);
  border: 1px solid rgba(15, 42, 31, 0.15);
  border-radius: 0.5rem;
  padding: 1.25rem;
  text-align: center;
}

@media (min-width: 640px) {
  .painpoint-card {
    padding: 1.5rem;
  }
}

.painpoint-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(15, 42, 31, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  color: var(--forest);
}

@media (min-width: 640px) {
  .painpoint-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
  }
}

.painpoint-title {
  font-size: 1rem;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .painpoint-title {
    font-size: 1.125rem;
  }
}

.painpoint-desc {
  color: rgba(15, 42, 31, 0.7);
  font-size: 0.875rem;
  line-height: 1.6;
}

.quote-box {
  background: linear-gradient(135deg, rgba(15, 42, 31, 0.06) 0%, rgba(199, 168, 107, 0.1) 100%);
  border: 1px solid rgba(15, 42, 31, 0.15);
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
}

@media (min-width: 640px) {
  .quote-box {
    padding: 2rem;
  }
}

@media (min-width: 768px) {
  .quote-box {
    padding: 3rem;
  }
}

.quote-text {
  font-size: 1rem;
}

.quote-text.light {
  color: rgba(15, 42, 31, 0.8);
}

.quote-text.bold {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--forest);
  margin-top: 0.5rem;
}

@media (min-width: 640px) {
  .quote-text {
    font-size: 1.125rem;
  }
  .quote-text.bold {
    font-size: 1.25rem;
  }
}

@media (min-width: 768px) {
  .quote-text {
    font-size: 1.25rem;
  }
  .quote-text.bold {
    font-size: 1.5rem;
  }
}

/* ==================== METHOD ==================== */
.method {
  background: linear-gradient(to bottom, var(--stone-100), var(--cream));
  padding: 4rem 0;
}

@media (min-width: 640px) {
  .method {
    padding: 5rem 0;
  }
}

@media (min-width: 768px) {
  .method {
    padding: 8rem 0;
  }
}

.method .container {
  max-width: 64rem;
}

.method-badge {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

@media (min-width: 640px) {
  .method-badge {
    width: 5rem;
    height: 5rem;
    margin-bottom: 1.5rem;
  }
}

.method-badge span {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold);
}

@media (min-width: 640px) {
  .method-badge span {
    font-size: 1.875rem;
  }
}

.method-title {
  font-size: 1.5rem;
  color: var(--forest);
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .method-title {
    font-size: 1.875rem;
    margin-bottom: 1rem;
  }
}

@media (min-width: 768px) {
  .method-title {
    font-size: 2.25rem;
  }
}

.method-subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  color: rgba(15, 42, 31, 0.7);
}

@media (min-width: 640px) {
  .method-subtitle {
    font-size: 1.125rem;
  }
}

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

@media (min-width: 640px) {
  .method-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .method-grid {
    gap: 2rem;
  }
}

.method-card {
  border-radius: 0.5rem;
  padding: 1.25rem;
}

@media (min-width: 640px) {
  .method-card {
    padding: 2rem;
  }
}

.method-card.get {
  background: linear-gradient(180deg, rgba(15, 42, 31, 0.1) 0%, rgba(199, 168, 107, 0.08) 100%);
  border: 1px solid rgba(15, 42, 31, 0.15);
}

.method-card.dont-get {
  background: linear-gradient(180deg, rgba(15, 42, 31, 0.06) 0%, rgba(15, 42, 31, 0.02) 100%);
  border: 1px solid rgba(15, 42, 31, 0.1);
}

.method-card h3 {
  font-size: 1.125rem;
  color: var(--forest);
  margin-bottom: 1.25rem;
  text-align: center;
}

@media (min-width: 640px) {
  .method-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
}

.method-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .method-card ul {
    gap: 1rem;
  }
}

.method-card li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .method-card li {
    font-size: 1rem;
  }
}

.method-card.get li {
  color: rgba(15, 42, 31, 0.8);
}

.method-card.dont-get li {
  color: rgba(15, 42, 31, 0.5);
}

.method-check {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .method-check {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.method-check.green {
  background: rgba(199, 168, 107, 0.2);
}

.method-check.green::after {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  background: var(--gold);
  border-radius: 50%;
}

.method-check.red {
  background: rgba(127, 29, 29, 0.1);
}

.method-check.red::after {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  background: rgba(248, 113, 113, 0.7);
  border-radius: 50%;
}

/* ==================== PREMIUM BANNER ==================== */
.premium-banner {
  position: relative;
  padding: 4rem 0;
  background: linear-gradient(180deg, #0a1f15 0%, #0f2a1f 50%, #0a1f15 100%);
  overflow: hidden;
}

@media (min-width: 768px) {
  .premium-banner {
    padding: 6rem 0;
  }
}

.premium-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c7a86b' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.premium-glow {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background: radial-gradient(circle at 20% 50%, rgba(199, 168, 107, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(199, 168, 107, 0.05) 0%, transparent 50%);
}

.premium-banner .section-header {
  position: relative;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .premium-banner .section-header {
    margin-bottom: 4rem;
  }
}

.premium-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .premium-title {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .premium-title {
    font-size: 3rem;
  }
}

.gold-text {
  position: relative;
  color: var(--gold);
}

.premium-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 42rem;
  margin: 0 auto;
  font-weight: 300;
  letter-spacing: 0.025em;
}

@media (min-width: 768px) {
  .premium-subtitle {
    font-size: 1.25rem;
  }
}

.offer-wrapper {
  position: relative;
  max-width: 64rem;
  margin: 0 auto;
}

.social-badge {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  z-index: 20;
}

@media (min-width: 768px) {
  .social-badge {
    top: -2rem;
    right: -2rem;
  }
}

.social-badge > div {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #c7a86b 0%, #a08555 50%, #c7a86b 100%);
  box-shadow: 0 8px 32px rgba(199, 168, 107, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
  .social-badge > div {
    width: 7rem;
    height: 7rem;
  }
}

.badge-inner {
  position: absolute;
  inset: 0.25rem;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #0f2a1f 0%, #1a3d2c 100%);
  border: 2px solid rgba(199, 168, 107, 0.3);
}

.badge-inner svg {
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.badge-number {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
}

@media (min-width: 768px) {
  .badge-number {
    font-size: 0.875rem;
  }
}

.badge-label {
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.2;
}

@media (min-width: 768px) {
  .badge-label {
    font-size: 0.75rem;
  }
}

.offer-card {
  position: relative;
  background: linear-gradient(145deg, rgba(15, 42, 31, 0.95) 0%, rgba(20, 55, 40, 0.9) 100%);
  border: 1px solid rgba(199, 168, 107, 0.15);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(199, 168, 107, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
  .offer-card {
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .offer-card {
    padding: 3rem;
  }
}

.offer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

.offer-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.offer-header h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
}

@media (min-width: 768px) {
  .offer-header h3 {
    font-size: 1.25rem;
  }
}

.offer-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-icon.green {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
}

.offer-icon.red {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
}

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

.offer-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .offer-list li {
    font-size: 1rem;
  }
}

.offer-list.strikethrough li {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: line-through;
  text-decoration-color: rgba(255, 255, 255, 0.3);
}

.check-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.125rem;
}

.check-icon.green {
  background: rgba(34, 197, 94, 0.2);
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
}

.check-icon.green::after {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  background: #4ade80;
  border-radius: 50%;
}

.check-icon.red {
  background: rgba(239, 68, 68, 0.15);
}

.check-icon.red::after {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  background: rgba(248, 113, 113, 0.8);
  border-radius: 50%;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 3rem;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
  }
}

.benefit-card {
  position: relative;
  background: linear-gradient(145deg, rgba(15, 42, 31, 0.6) 0%, rgba(20, 55, 40, 0.4) 100%);
  border: 1px solid rgba(199, 168, 107, 0.1);
  border-radius: 0.75rem;
  padding: 1.25rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .benefit-card {
    padding: 1.5rem;
  }
}

.benefit-card:hover {
  background: linear-gradient(145deg, rgba(199, 168, 107, 0.08) 0%, rgba(15, 42, 31, 0.6) 100%);
}

.benefit-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(199, 168, 107, 0.15) 0%, rgba(199, 168, 107, 0.05) 100%);
  border: 1px solid rgba(199, 168, 107, 0.2);
  color: var(--gold);
}

.benefit-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .benefit-card h4 {
    font-size: 1.125rem;
  }
}

.benefit-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ==================== TRANSFORMATION ==================== */
.transformation {
  position: relative;
  padding: 4rem 0;
  background: linear-gradient(to bottom, #061510 0%, #0f2a1f 30%, #0f2a1f 100%);
}

@media (min-width: 640px) {
  .transformation {
    padding: 5rem 0;
  }
}

@media (min-width: 768px) {
  .transformation {
    padding: 8rem 0;
  }
}

.transformation .container {
  max-width: 72rem;
}

.transformation-title {
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .transformation-title {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 768px) {
  .transformation-title {
    font-size: 2.25rem;
  }
}

.transformation-subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  color: rgba(245, 241, 230, 0.7);
  max-width: 42rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .transformation-subtitle {
    font-size: 1.125rem;
  }
}

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

@media (min-width: 640px) {
  .transformation-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .transformation-grid {
    gap: 2rem;
  }
}

.transformation-card {
  background: rgba(245, 241, 230, 0.08);
  border: 1px solid rgba(199, 168, 107, 0.2);
  border-radius: 0.5rem;
  padding: 1.25rem;
  display: flex;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .transformation-card {
    padding: 2rem;
    gap: 1rem;
  }
}

.transformation-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(199, 168, 107, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

@media (min-width: 640px) {
  .transformation-icon {
    width: 3rem;
    height: 3rem;
  }
}

.transformation-content h3 {
  font-size: 1.125rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .transformation-content h3 {
    font-size: 1.25rem;
  }
}

.transformation-content p {
  color: rgba(245, 241, 230, 0.7);
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (min-width: 640px) {
  .transformation-content p {
    font-size: 1rem;
  }
}

.transformation-cta {
  text-align: center;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .transformation-cta {
    margin-top: 3rem;
  }
}

.transformation-cta .btn {
  font-size: 0.875rem;
  padding: 1rem 2rem;
}

@media (min-width: 640px) {
  .transformation-cta .btn {
    font-size: 1rem;
    padding: 1.125rem 2.5rem;
  }
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
  position: relative;
  padding: 4rem 0;
  background: linear-gradient(to bottom, #061510 0%, #0f2a1f 30%, #0f2a1f 100%);
}

@media (min-width: 640px) {
  .testimonials {
    padding: 5rem 0;
  }
}

@media (min-width: 768px) {
  .testimonials {
    padding: 8rem 0;
  }
}

.testimonials .container {
  max-width: 64rem;
}

.testimonials-title {
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .testimonials-title {
    font-size: 1.875rem;
    margin-bottom: 1rem;
  }
}

@media (min-width: 768px) {
  .testimonials-title {
    font-size: 2.25rem;
  }
}

.testimonials-subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: rgba(245, 241, 230, 0.6);
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .testimonials-subtitle {
    font-size: 1rem;
  }
}

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

@media (min-width: 640px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(199, 168, 107, 0.12) 0%, rgba(15, 42, 31, 0.4) 100%);
  border: 1px solid rgba(199, 168, 107, 0.2);
  border-radius: 0.5rem;
  padding: 1.25rem;
}

@media (min-width: 640px) {
  .testimonial-card {
    padding: 2rem;
  }
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.stars svg {
  width: 0.875rem;
  height: 0.875rem;
}

@media (min-width: 640px) {
  .stars svg {
    width: 1rem;
    height: 1rem;
  }
}

.testimonial-card blockquote {
  color: rgba(245, 241, 230, 0.9);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .testimonial-card blockquote {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
  }
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .testimonial-author {
    gap: 1rem;
  }
}

.avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(199, 168, 107, 0.3);
}

@media (min-width: 640px) {
  .avatar {
    width: 3.5rem;
    height: 3.5rem;
  }
}

.author-name {
  color: var(--cream);
  font-weight: 500;
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .author-name {
    font-size: 1rem;
  }
}

.author-location {
  color: rgba(245, 241, 230, 0.5);
  font-size: 0.75rem;
}

@media (min-width: 640px) {
  .author-location {
    font-size: 0.875rem;
  }
}

/* ==================== PRICING BANNER ==================== */
.pricing-banner {
  position: relative;
  padding: 4rem 0;
  background: linear-gradient(180deg, #061510 0%, #0f2a1f 40%, #0a1a14 100%);
  overflow: hidden;
}

@media (min-width: 768px) {
  .pricing-banner {
    padding: 6rem 0;
  }
}

.pricing-glow {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background: radial-gradient(circle at 50% 30%, rgba(199, 168, 107, 0.12) 0%, transparent 50%);
}

.pricing-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c7a86b' fill-opacity='0.4'%3E%3Cpath d='M20 20h20v20H20V20zM0 0h20v20H0V0z'/%3E%3C/g%3E%3C/svg%3E");
}

.pricing-card {
  position: relative;
  max-width: 36rem;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(18, 50, 38, 0.98) 0%, rgba(12, 35, 26, 0.95) 100%);
  border: 1px solid rgba(199, 168, 107, 0.12);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.6), 0 30px 60px -15px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(199, 168, 107, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.05), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  transform: perspective(1000px) rotateX(2deg);
}

@media (min-width: 768px) {
  .pricing-card {
    padding: 3rem;
  }
}

.pricing-inner-glow {
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  background: radial-gradient(ellipse at top center, rgba(199, 168, 107, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.pricing-content {
  position: relative;
  text-align: center;
}

.limited-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, rgba(199, 168, 107, 0.15) 0%, rgba(199, 168, 107, 0.05) 100%);
  border: 1px solid rgba(199, 168, 107, 0.25);
  margin-bottom: 2rem;
  color: var(--gold);
}

.limited-badge span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .limited-badge span {
    font-size: 0.875rem;
  }
}

.pricing-info {
  margin-bottom: 1.5rem;
}

.old-price {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .old-price {
    font-size: 1.25rem;
  }
}

.price-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .price-label {
    font-size: 1.125rem;
  }
}

.main-price {
  position: relative;
  display: inline-block;
}

.main-price span {
  font-size: 3.75rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.3), 0 0 80px rgba(199, 168, 107, 0.2), 0 4px 8px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .main-price span {
    font-size: 4.5rem;
  }
}

@media (min-width: 1024px) {
  .main-price span {
    font-size: 6rem;
  }
}

.savings {
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.025em;
  color: rgba(199, 168, 107, 0.9);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .savings {
    font-size: 1rem;
  }
}

.pricing-divider {
  width: 4rem;
  height: 1px;
  margin: 0 auto 2rem;
  background: linear-gradient(90deg, transparent 0%, rgba(199, 168, 107, 0.4) 50%, transparent 100%);
}

.psychological-copy {
  font-size: 1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  max-width: 28rem;
  margin: 0 auto 2.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .psychological-copy {
    font-size: 1.125rem;
  }
}

.trust-indicators {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.trust-indicators span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ==================== TRUST ==================== */
.trust {
  background: linear-gradient(to bottom, var(--cream), var(--stone-100));
  padding: 3rem 0;
}

@media (min-width: 640px) {
  .trust {
    padding: 4rem 0;
  }
}

@media (min-width: 768px) {
  .trust {
    padding: 6rem 0;
  }
}

.trust .container {
  max-width: 64rem;
}

.trust-quote {
  background: linear-gradient(135deg, rgba(199, 168, 107, 0.12) 0%, rgba(15, 42, 31, 0.08) 100%);
  border: 1px solid rgba(15, 42, 31, 0.15);
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .trust-quote {
    padding: 2rem;
    margin-bottom: 3rem;
  }
}

@media (min-width: 768px) {
  .trust-quote {
    padding: 3rem;
  }
}

.trust-headline {
  font-size: 1.25rem;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .trust-headline {
    font-size: 1.5rem;
  }
}

@media (min-width: 768px) {
  .trust-headline {
    font-size: 1.875rem;
  }
}

.trust-subheadline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--gold);
}

@media (min-width: 640px) {
  .trust-subheadline {
    font-size: 1.25rem;
  }
}

@media (min-width: 768px) {
  .trust-subheadline {
    font-size: 1.5rem;
  }
}

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

@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.trust-badge {
  background: linear-gradient(180deg, rgba(15, 42, 31, 0.06) 0%, rgba(199, 168, 107, 0.06) 100%);
  border: 1px solid rgba(15, 42, 31, 0.1);
  border-radius: 0.5rem;
  padding: 1rem;
  text-align: center;
}

@media (min-width: 640px) {
  .trust-badge {
    padding: 1.5rem;
  }
}

.trust-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(15, 42, 31, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
  color: var(--forest);
}

@media (min-width: 640px) {
  .trust-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 0.75rem;
  }
}

.trust-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.125rem;
}

@media (min-width: 640px) {
  .trust-label {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
  }
}

.trust-desc {
  font-size: 0.75rem;
  color: rgba(15, 42, 31, 0.6);
  display: none;
}

@media (min-width: 640px) {
  .trust-desc {
    display: block;
  }
}

/* ==================== FINAL CTA ==================== */
.final-cta {
  position: relative;
  padding: 4rem 0;
  background: linear-gradient(to bottom, #061510 0%, #0f2a1f 40%, #0f2a1f 100%);
}

@media (min-width: 640px) {
  .final-cta {
    padding: 5rem 0;
  }
}

@media (min-width: 768px) {
  .final-cta {
    padding: 8rem 0;
  }
}

.final-cta .container {
  max-width: 48rem;
  text-align: center;
}

.final-headline {
  font-size: 1.5rem;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .final-headline {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 768px) {
  .final-headline {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .final-headline {
    font-size: 3rem;
  }
}

.final-subheadline {
  font-size: 1rem;
  color: rgba(245, 241, 230, 0.7);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .final-subheadline {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }
}

@media (min-width: 768px) {
  .final-subheadline {
    font-size: 1.25rem;
  }
}

.final-emphasis {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .final-emphasis {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 768px) {
  .final-emphasis {
    font-size: 1.5rem;
  }
}

.final-cta .btn-primary {
  width: 100%;
  padding: 1.25rem 2rem;
}

@media (min-width: 640px) {
  .final-cta .btn-primary {
    width: auto;
    padding: 1.5rem 2.5rem;
    font-size: 1.125rem;
  }
}

.final-note {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: rgba(245, 241, 230, 0.4);
}

@media (min-width: 640px) {
  .final-note {
    margin-top: 2rem;
    font-size: 0.875rem;
  }
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--black);
  padding: 1.5rem 0;
}

@media (min-width: 640px) {
  .footer {
    padding: 2rem 0;
  }
}

.footer .container {
  max-width: 64rem;
  text-align: center;
}

.footer p {
  font-size: 0.75rem;
  color: rgba(245, 241, 230, 0.4);
}

@media (min-width: 640px) {
  .footer p {
    font-size: 0.875rem;
  }
}
