/* ===== CSS Variables ===== */
:root {
  /* Colors */
  --background: hsl(30, 30%, 98%);
  --foreground: hsl(25, 20%, 20%);
  --card: hsl(30, 25%, 96%);
  --card-foreground: hsl(25, 20%, 20%);
  --muted: hsl(30, 20%, 94%);
  --muted-foreground: hsl(25, 15%, 45%);
  --border: hsl(30, 20%, 88%);
  
  /* Brand Colors */
  --rose: hsl(350, 45%, 55%);
  --rose-light: hsl(350, 40%, 75%);
  --rose-dark: hsl(350, 50%, 40%);
  --gold: hsl(38, 60%, 55%);
  --gold-light: hsl(40, 55%, 75%);
  --champagne: hsl(35, 35%, 92%);
  --cream: hsl(35, 30%, 96%);
  --charcoal: hsl(25, 20%, 20%);
  --cream-muted: hsla(35, 30%, 96%, 0.7);
  
  /* Gradients */
  --gradient-gold: linear-gradient(135deg, hsl(38, 60%, 55%), hsl(40, 65%, 65%));
  --gradient-rose: linear-gradient(135deg, hsl(350, 45%, 55%), hsl(350, 40%, 65%));
  --gradient-premium: linear-gradient(180deg, hsl(30, 30%, 98%), hsl(35, 30%, 96%));
  
  /* Shadows */
  --shadow-elegant: 0 10px 40px hsla(25, 20%, 20%, 0.08);
  --shadow-gold: 0 8px 30px hsla(38, 60%, 55%, 0.25);
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  
  /* Sizing */
  --radius: 0.75rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

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

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

/* ===== Utilities ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-gradient-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-rose {
  background: var(--gradient-rose);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gold { color: var(--gold); }
.text-rose { color: var(--rose); }
.text-cream { color: var(--cream); }
.text-muted { color: var(--muted-foreground); }
.text-foreground { color: var(--foreground); }

.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }

.font-medium { font-weight: 500; }
.font-heading { font-family: var(--font-heading); }

.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-10 { margin-top: 2.5rem; }

.bg-charcoal { background-color: var(--charcoal); }
.bg-gradient-premium { background: var(--gradient-premium); }

/* ===== Animations ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes scrollDot {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(12px); }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
  opacity: 0;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body);
}

.btn-gold {
  background: var(--gradient-gold);
  color: var(--charcoal);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px hsla(38, 60%, 55%, 0.35);
}

.btn-xl {
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
}

@media (min-width: 640px) {
  .btn-full {
    width: auto;
  }
}

.btn-icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* ===== Badge ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: hsla(38, 60%, 55%, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid hsla(38, 60%, 55%, 0.3);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 2rem;
}

.badge-icon {
  width: 1rem;
  height: 1rem;
  color: var(--gold);
}

.badge-gold {
  background: hsla(38, 60%, 55%, 0.2);
  border-color: hsla(38, 60%, 55%, 0.3);
  color: var(--gold-light);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/hero-bg.jpg') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, 
    hsla(25, 20%, 20%, 0.7),
    hsla(25, 20%, 20%, 0.5),
    hsla(25, 20%, 20%, 0.8)
  );
}

.hero-decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: float 6s ease-in-out infinite;
}

.hero-decoration-1 {
  top: 5rem;
  left: 2.5rem;
  width: 8rem;
  height: 8rem;
  background: hsla(38, 60%, 55%, 0.2);
}

.hero-decoration-2 {
  bottom: 5rem;
  right: 2.5rem;
  width: 10rem;
  height: 10rem;
  background: hsla(350, 45%, 55%, 0.2);
  animation-delay: 1s;
}

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

.hero-title {
  font-size: 2.25rem;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

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

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

.hero-subtitle {
  font-size: 1.125rem;
  color: hsla(35, 30%, 96%, 0.8);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

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

.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  font-size: 0.875rem;
  color: hsla(35, 30%, 96%, 0.6);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--gold);
  border-radius: 50%;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-mouse {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid hsla(35, 30%, 96%, 0.3);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}

.scroll-dot {
  width: 0.375rem;
  height: 0.375rem;
  background: var(--gold);
  border-radius: 50%;
  animation: scrollDot 1.5s ease-in-out infinite;
}

/* ===== Section Styles ===== */
.section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

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

.section-label {
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.875rem;
  display: block;
}

.section-title {
  font-size: 1.875rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

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

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

/* ===== Decorations ===== */
.decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.decoration-top-right {
  top: 0;
  right: 0;
  width: 16rem;
  height: 16rem;
  background: hsla(350, 45%, 55%, 0.05);
}

.decoration-bottom-left {
  bottom: 0;
  left: 0;
  width: 20rem;
  height: 20rem;
  background: hsla(38, 60%, 55%, 0.05);
}

.decoration-circles {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
}

.circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
}

.circle-1 {
  top: 5rem;
  left: 5rem;
  width: 10rem;
  height: 10rem;
  border-color: hsla(38, 60%, 55%, 0.3);
}

.circle-2 {
  bottom: 5rem;
  right: 5rem;
  width: 15rem;
  height: 15rem;
  border-color: hsla(350, 45%, 55%, 0.3);
}

.decoration-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.decoration-glow-1 {
  top: 0;
  left: 25%;
  width: 24rem;
  height: 24rem;
  background: hsla(350, 45%, 55%, 0.05);
}

.decoration-glow-2 {
  bottom: 0;
  right: 25%;
  width: 24rem;
  height: 24rem;
  background: hsla(38, 60%, 55%, 0.05);
}

.decoration-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 37.5rem;
  height: 37.5rem;
  background: hsla(38, 60%, 55%, 0.05);
}

.decoration-radial {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50rem;
  height: 50rem;
  background: radial-gradient(circle, hsla(38, 60%, 55%, 0.1), hsla(350, 45%, 55%, 0.05), transparent);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

/* ===== Cards ===== */
.card {
  background: var(--card);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-elegant);
  border: 1px solid hsla(30, 20%, 88%, 0.5);
}

.card-large {
  padding: 2rem;
  max-width: 56rem;
  margin: 0 auto;
}

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

.highlight-box {
  background: hsla(35, 35%, 92%, 0.5);
  border-radius: 0.75rem;
  padding: 1.5rem;
  border-left: 4px solid var(--gold);
}

/* ===== Benefits List ===== */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
  transition: background 0.3s ease;
}

.benefit-item:hover {
  background: hsla(35, 35%, 92%, 0.3);
}

.benefit-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--gradient-rose);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.benefit-item p {
  font-weight: 500;
  padding-top: 0.5rem;
}

/* ===== Audience Section ===== */
.audience-grid {
  display: grid;
  gap: 1rem;
  max-width: 56rem;
  margin: 0 auto;
}

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

.audience-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: hsla(35, 30%, 96%, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid hsla(35, 30%, 96%, 0.1);
  border-radius: 0.75rem;
  padding: 1.25rem;
  transition: background 0.3s ease;
}

.audience-item:hover {
  background: hsla(35, 30%, 96%, 0.1);
}

.check-icon {
  width: 2rem;
  height: 2rem;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-icon svg {
  width: 1rem;
  height: 1rem;
  color: var(--charcoal);
}

.audience-item p {
  color: hsla(35, 30%, 96%, 0.9);
  font-weight: 500;
}

.quote-box {
  margin-top: 4rem;
  text-align: center;
}

.quote-box > div,
.quote-box {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(to right, hsla(350, 45%, 55%, 0.2), hsla(38, 60%, 55%, 0.2));
  backdrop-filter: blur(8px);
  border: 1px solid hsla(350, 45%, 55%, 0.3);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
}

.heart-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--rose-light);
  flex-shrink: 0;
}

.quote-box p {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--cream);
  font-style: italic;
}

@media (min-width: 768px) {
  .quote-box p { font-size: 1.25rem; }
}

/* ===== Stats Grid ===== */
.stats-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

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

.stat-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-elegant);
  border: 1px solid hsla(30, 20%, 88%, 0.5);
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

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

.stat-label {
  color: var(--muted-foreground);
}

/* ===== Market Section ===== */
.market-content {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .market-content { grid-template-columns: 1fr 1fr; }
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sparkle-icon {
  width: 1rem;
  height: 1rem;
  color: var(--gold);
}

.market-cta-card {
  background: var(--charcoal);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}

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

.market-cta-icon {
  width: 4rem;
  height: 4rem;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.market-cta-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--charcoal);
}

.market-cta-card h3 {
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 1rem;
}

.market-cta-card .text-cream-muted {
  color: var(--cream-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.market-cta-highlight {
  background: hsla(38, 60%, 55%, 0.1);
  border: 1px solid hsla(38, 60%, 55%, 0.3);
  border-radius: 0.75rem;
  padding: 1rem;
}

.market-cta-highlight p {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--gold);
}

/* ===== Speakers Section ===== */
.speakers-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

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

@media (min-width: 1024px) {
  .speakers-grid { grid-template-columns: repeat(3, 1fr); }
}

.speaker-card {
  background: hsla(35, 30%, 96%, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid hsla(35, 30%, 96%, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: background 0.3s ease;
}

.speaker-card:hover {
  background: hsla(35, 30%, 96%, 0.1);
}

.speaker-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.speaker-card:hover .speaker-icon {
  transform: scale(1.1);
}

.speaker-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--cream);
}

.speaker-icon.bg-blue { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.speaker-icon.bg-rose { background: var(--gradient-rose); }
.speaker-icon.bg-purple { background: linear-gradient(135deg, #a855f7, #9333ea); }
.speaker-icon.bg-emerald { background: linear-gradient(135deg, #10b981, #059669); }
.speaker-icon.bg-gold { background: var(--gradient-gold); }
.speaker-icon.bg-gold svg { color: var(--charcoal); }

.speaker-name {
  font-size: 1.25rem;
  color: var(--cream);
  margin-bottom: 0.25rem;
}

.speaker-role {
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.speaker-desc {
  color: hsla(35, 30%, 96%, 0.6);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.speaker-topics {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.topic {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: hsla(35, 30%, 96%, 0.8);
  font-size: 0.875rem;
}

.topic-dot {
  width: 0.375rem;
  height: 0.375rem;
  background: var(--gold);
  border-radius: 50%;
}

/* ===== Curriculum Section ===== */
.curriculum-grid {
  display: grid;
  gap: 1rem;
  max-width: 64rem;
  margin: 0 auto;
}

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

@media (min-width: 1024px) {
  .curriculum-grid { grid-template-columns: repeat(3, 1fr); }
}

.curriculum-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--card);
  border-radius: 0.75rem;
  padding: 1.25rem;
  box-shadow: var(--shadow-elegant);
  border: 1px solid hsla(30, 20%, 88%, 0.5);
  transition: all 0.3s ease;
}

.curriculum-item:hover {
  box-shadow: 0 15px 50px hsla(25, 20%, 20%, 0.12);
  transform: translateY(-4px);
}

.curriculum-icon {
  width: 3rem;
  height: 3rem;
  background: var(--gradient-rose);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.curriculum-item p {
  font-weight: 500;
  font-size: 0.875rem;
}

.curriculum-quote {
  margin-top: 4rem;
  text-align: center;
}

.curriculum-quote-inner {
  display: inline-block;
  background: var(--charcoal);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
}

.curriculum-quote p {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--cream);
}

/* ===== Testimonials Section ===== */
.testimonials-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

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

.testimonial-card {
  background: hsla(35, 30%, 96%, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid hsla(35, 30%, 96%, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
}

.testimonial-quote-icon {
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-quote-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--charcoal);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  padding-top: 0.5rem;
}

.testimonial-stars svg {
  width: 1rem;
  height: 1rem;
  color: var(--gold);
}

.testimonial-text {
  color: hsla(35, 30%, 96%, 0.8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

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

.author-avatar {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--gradient-rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-weight: 700;
  font-size: 0.875rem;
}

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

.author-role {
  color: hsla(35, 30%, 96%, 0.6);
  font-size: 0.875rem;
}

/* ===== Event Details Section ===== */
.details-grid {
  display: grid;
  gap: 1rem;
  max-width: 56rem;
  margin: 0 auto;
}

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

@media (min-width: 1024px) {
  .details-grid { grid-template-columns: repeat(4, 1fr); }
}

.detail-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-elegant);
  border: 1px solid hsla(30, 20%, 88%, 0.5);
}

.detail-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--gradient-rose);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.detail-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: white;
}

.detail-label {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.detail-value {
  font-family: var(--font-heading);
  font-size: 1.125rem;
}

/* ===== Pricing Section ===== */
.pricing-card {
  background: linear-gradient(to bottom, hsla(35, 30%, 96%, 0.1), hsla(35, 30%, 96%, 0.05));
  backdrop-filter: blur(8px);
  border: 1px solid hsla(38, 60%, 55%, 0.3);
  border-radius: 1.5rem;
  padding: 2rem;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

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

.pricing-text {
  color: hsla(35, 30%, 96%, 0.8);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.pricing-highlight {
  color: var(--cream);
  font-weight: 500;
  margin-bottom: 2.5rem;
}

.pricing-benefits {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

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

.pricing-benefit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: hsla(35, 30%, 96%, 0.05);
  border-radius: 0.75rem;
  padding: 1rem;
}

.pricing-benefit svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
}

.pricing-benefit span {
  color: hsla(35, 30%, 96%, 0.8);
  font-size: 0.875rem;
}

.urgency-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: var(--rose-light);
}

.urgency-message svg {
  width: 1rem;
  height: 1rem;
}

.urgency-message span {
  font-size: 0.875rem;
  font-weight: 500;
}

/* ===== Guarantee Section ===== */
.guarantee-card {
  background: var(--card);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-elegant);
  border: 1px solid hsla(38, 60%, 55%, 0.2);
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

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

.guarantee-icon {
  width: 5rem;
  height: 5rem;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.guarantee-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--charcoal);
}

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

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

.guarantee-text {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.guarantee-text strong {
  color: var(--foreground);
}

.guarantee-highlight {
  font-weight: 500;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.guarantee-italic {
  color: var(--muted-foreground);
  font-style: italic;
}

/* ===== Final CTA Section ===== */
.section-final {
  padding-bottom: 0;
}

.final-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.final-title {
  font-size: 1.875rem;
  color: var(--cream);
  margin-bottom: 2rem;
}

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

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

.final-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
  color: hsla(35, 30%, 96%, 0.8);
  font-size: 1.125rem;
}

.final-text .font-medium {
  color: var(--cream);
}

.final-highlight {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 2.5rem;
}

/* ===== Footer ===== */
.footer {
  margin-top: 5rem;
  padding: 2rem 0;
  border-top: 1px solid hsla(35, 30%, 96%, 0.1);
}

.footer p {
  text-align: center;
  color: hsla(35, 30%, 96%, 0.4);
  font-size: 0.875rem;
}
