/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors - HSL */
  --background: hsl(0, 0%, 99%);
  --foreground: hsl(210, 20%, 15%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(210, 20%, 15%);
  --primary: hsl(168, 76%, 42%);
  --primary-foreground: hsl(0, 0%, 100%);
  --primary-hover: hsl(168, 76%, 35%);
  --cta-vibrant: hsl(320, 85%, 45%);
  --cta-vibrant-hover: hsl(320, 85%, 40%);
  --muted: hsl(210, 40%, 96%);
  --muted-foreground: hsl(210, 15%, 50%);
  --accent: hsl(270, 40%, 88%);
  --accent-foreground: hsl(270, 50%, 25%);
  --destructive: hsl(0, 84%, 60%);
  --destructive-foreground: hsl(0, 0%, 100%);
  --border: hsl(210, 30%, 88%);
  
  /* Design Tokens */
  --bg-green-soft: hsl(168, 40%, 95%);
  --shadow-soft: 0 4px 20px hsla(210, 20%, 15%, 0.08);
  --shadow-card: 0 8px 30px hsla(210, 20%, 15%, 0.12);
  --shadow-hover: 0 12px 40px hsla(168, 76%, 42%, 0.2);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  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-weight: 600;
  line-height: 1.2;
}

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

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

.min-h-screen {
  min-height: 100vh;
}

/* Gradient Backgrounds */
.gradient-hero {
  background: linear-gradient(180deg, hsl(168, 60%, 85%) 0%, hsl(0, 0%, 100%) 100%);
}

.gradient-testimonials {
  background: linear-gradient(90deg, hsl(168, 50%, 80%) 0%, hsl(168, 60%, 90%) 50%, hsl(168, 50%, 80%) 100%);
}

.gradient-card {
  background: linear-gradient(145deg, hsl(0, 0%, 100%) 0%, hsl(210, 55%, 98%) 100%);
}

.bg-green-soft {
  background-color: var(--bg-green-soft);
}

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

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scale-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fade-in {
  animation: fade-in 0.6s ease-out;
}

.animate-slide-up {
  animation: slide-up 0.8s ease-out;
}

.animate-scale-in {
  animation: scale-in 0.4s ease-out;
}

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

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

.logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.logo {
  width: 100%;
  max-width: 20rem;
}

.sub-headline {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 32rem;
  margin: 0 auto 1rem;
}

.event-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.event-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.event-item .icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.separator {
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background-color: var(--primary);
}

.price-card {
  background-color: var(--card);
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
  max-width: 28rem;
  margin: 0 auto 1rem;
}

.price-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.old-price {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  text-decoration: line-through;
}

.new-price {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
}

.bonus-text {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--cta-vibrant);
  margin: 0;
}

.cta-container {
  padding-top: 0.5rem;
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.btn-cta {
  background-color: var(--cta-vibrant);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-card);
}

.btn-cta:hover {
  background-color: var(--cta-vibrant-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.bonus-card {
  background-color: hsla(270, 40%, 88%, 0.3);
  border: 2px solid var(--accent);
  border-radius: 0.75rem;
  padding: 1rem;
  max-width: 32rem;
  margin: 0 auto 1rem;
}

.bonus-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--accent-foreground);
}

.bonus-header .icon {
  width: 1.25rem;
  height: 1.25rem;
}

.bonus-header p {
  font-weight: 600;
  margin: 0;
}

.bonus-subtext {
  font-size: 0.875rem;
  margin-top: 0.25rem;
  color: hsla(270, 50%, 25%, 0.8);
}

.countdown-section {
  padding-top: 0.5rem;
  margin-bottom: 1rem;
}

.countdown-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.countdown-timer {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--card);
  border-radius: 0.5rem;
  padding: 0.5rem;
  box-shadow: var(--shadow-card);
  min-width: 60px;
}

.countdown-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.countdown-unit-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

.trust-badge {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Quote Section */
.quote-section {
  padding: 2rem 0;
  background-color: hsla(270, 40%, 88%, 0.1);
}

.quote-container {
  max-width: 64rem;
  margin: 0 auto;
}

.quote-card {
  background-color: hsla(0, 0%, 100%, 0.5);
  border-left: 4px solid var(--primary);
  border-radius: 0 0.75rem 0.75rem 0;
  padding: 2rem 2.5rem;
  box-shadow: var(--shadow-soft);
}

.quote-text {
  font-size: 1rem;
  color: var(--foreground);
  font-style: italic;
  line-height: 1.8;
  text-align: center;
  margin: 0;
}

/* Method Section */
.method-section {
  padding: 3rem 0;
  background-color: var(--background);
}

.section-content {
  max-width: 72rem;
  margin: 0 auto;
}

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

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 32rem;
  margin: 0 auto;
}

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

.triad-card {
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
  text-align: center;
}

.triad-card:hover {
  box-shadow: var(--shadow-hover);
}

.card-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  background-color: hsla(168, 76%, 42%, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.triad-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.card-description {
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 1rem;
}

.card-details {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
}

.comparison-section {
  margin-top: 2rem;
}

.comparison-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

.comparison-grid {
  display: grid;
  gap: 1rem;
  max-width: 56rem;
  margin: 0 auto;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  background-color: var(--card);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-soft);
  padding: 1.5rem;
}

.comparison-wrong,
.comparison-right {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

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

.comparison-icon.wrong {
  background-color: hsla(0, 84%, 60%, 0.1);
}

.comparison-icon.wrong svg {
  width: 1rem;
  height: 1rem;
  color: var(--destructive);
}

.comparison-icon.right {
  background-color: hsla(168, 76%, 42%, 0.1);
}

.comparison-icon.right svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
}

.comparison-wrong p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.comparison-right p {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

/* Pillars Section */
.pillars-section {
  padding: 3rem 0;
}

.pillars-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pillar-card {
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}

.pillar-card:hover {
  box-shadow: var(--shadow-hover);
}

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

.pillar-number {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: var(--cta-vibrant);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.pillar-icon {
  width: 4rem;
  height: 4rem;
  background-color: hsla(168, 76%, 42%, 0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.pillar-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.pillar-content p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Mentor Section */
.mentor-section {
  padding: 3rem 0;
  background-color: hsla(270, 40%, 88%, 0.2);
}

.section-content-narrow {
  max-width: 72rem;
  margin: 0 auto;
}

.mentor-image-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
  position: relative;
}

.mentor-image-glow {
  position: absolute;
  inset: 0;
  background-color: hsla(168, 76%, 42%, 0.1);
  border-radius: 50%;
  filter: blur(2rem);
}

.mentor-image {
  position: relative;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  box-shadow: var(--shadow-hover);
  object-fit: cover;
}

.mentor-content {
  max-width: 48rem;
  margin: 0 auto;
}

.mentor-intro {
  margin-bottom: 1.5rem;
}

.mentor-intro h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.mentor-title {
  font-size: 1.125rem;
  color: var(--primary);
  font-weight: 600;
}

.mentor-bio {
  margin-bottom: 1.5rem;
}

.mentor-bio p {
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.highlight-age {
  font-weight: 700;
  color: var(--primary);
  border: 1px solid hsla(168, 76%, 42%, 0.3);
  background-color: hsla(168, 76%, 42%, 0.05);
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
}

.credentials-grid {
  display: grid;
  gap: 1rem;
  padding-top: 1rem;
}

.credential-card {
  display: flex;
  gap: 0.75rem;
  background-color: var(--card);
  border-radius: 0.5rem;
  padding: 1rem;
  box-shadow: var(--shadow-soft);
}

.credential-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: hsla(168, 76%, 42%, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.credential-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.credential-text h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.credential-text p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.mentor-quote {
  background-color: hsla(168, 76%, 42%, 0.05);
  border-left: 4px solid var(--primary);
  border-radius: 0 0.75rem 0.75rem 0;
  padding: 1.5rem;
  margin-top: 2rem;
}

.mentor-quote p {
  font-size: 0.875rem;
  color: var(--foreground);
  font-weight: 600;
  font-style: italic;
  text-align: center;
  margin: 0;
}

.mentor-action-image {
  margin-top: 2.5rem;
  position: relative;
}

.action-image {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: var(--shadow-hover);
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  bottom: -0.75rem;
  right: -0.75rem;
  background-color: white;
  border-radius: 0.75rem;
  box-shadow: 0 4px 20px hsla(210, 20%, 15%, 0.15);
  padding: 0.75rem;
  text-align: center;
}

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

.badge-label {
  font-size: 0.625rem;
  color: var(--muted-foreground);
  white-space: nowrap;
}

/* Testimonials Section */
.testimonials-section {
  padding: 3rem 0;
}

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

.testimonial-card {
  background-color: var(--card);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.star {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.testimonial-image {
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 1rem;
}

.testimonial-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.testimonial-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.testimonial-divider {
  height: 1px;
  background-color: var(--border);
  margin-bottom: 1rem;
}

.testimonial-author p {
  color: var(--foreground);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.testimonial-result {
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 500;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Objections Section */
.objections-section {
  padding: 3rem 0;
}

.final-cta {
  text-align: center;
  margin-bottom: 3rem;
}

.final-cta-card {
  background-color: hsla(270, 40%, 88%, 0.3);
  border: 2px solid var(--accent);
  border-radius: 1rem;
  padding: 2rem;
  max-width: 32rem;
  margin: 0 auto;
}

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

.final-cta-card p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.btn-cta-large {
  background-color: var(--primary);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  padding: 1.25rem 2rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-card);
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
}

.btn-cta-large:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.for-you-section {
  margin-bottom: 3rem;
}

.for-you-header {
  text-align: center;
  margin-bottom: 2rem;
}

.for-you-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  background-color: hsla(168, 76%, 42%, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.for-you-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.for-you-header h2 {
  font-size: 2rem;
  font-weight: 700;
}

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

.for-you-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background-color: var(--card);
  border-radius: 0.75rem;
  padding: 1.25rem;
  box-shadow: var(--shadow-soft);
}

.check-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: hsla(168, 76%, 42%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.125rem;
}

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

.for-you-item p {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.myths-section {
  margin-bottom: 3rem;
}

.myths-header {
  text-align: center;
  margin-bottom: 2rem;
}

.myths-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  background-color: hsla(0, 84%, 60%, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.myths-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--destructive);
}

.myths-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.myths-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 32rem;
  margin: 0 auto;
}

.myths-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}

.myth-card {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
  background: linear-gradient(145deg, hsl(0, 0%, 100%) 0%, hsl(210, 55%, 98%) 100%);
}

.myth-card:hover {
  box-shadow: var(--shadow-hover);
}

.myth-header {
  background-color: hsla(0, 84%, 60%, 0.1);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.myth-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: hsla(0, 84%, 60%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.myth-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--destructive);
}

.myth-header p {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--foreground);
  margin: 0;
}

.myth-content {
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.truth-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: hsla(168, 76%, 42%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.25rem;
}

.truth-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.truth-text {
  flex: 1;
}

.truth-label {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.truth-text p:last-child {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin: 0;
}

/* Registration Section */
.registration-section {
  padding: 3rem 0;
  background-color: var(--background);
}

.registration-container {
  max-width: 32rem;
  margin: 0 auto;
}

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

.registration-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  background-color: hsla(168, 76%, 42%, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.registration-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.registration-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.registration-header p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.registration-card {
  border-radius: 1.5rem;
  padding: 2rem 2.5rem;
  box-shadow: var(--shadow-hover);
  text-align: center;
}

.btn-registration {
  background-color: var(--primary);
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
  padding: 1.25rem 2rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-card);
  width: 100%;
  margin-bottom: 1.5rem;
}

.btn-registration:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.trust-badges {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  justify-content: center;
  margin-bottom: 0.75rem;
}

.trust-item:last-child {
  margin-bottom: 0;
}

.trust-check {
  color: var(--primary);
}

/* Footer */
.footer {
  background-color: hsla(210, 20%, 15%, 0.05);
  padding: 2rem 0;
  text-align: center;
}

.footer-content {
  max-width: 64rem;
  margin: 0 auto;
}

.footer-title {
  margin-bottom: 1rem;
}

.footer-brand {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-copyright {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--primary);
  text-decoration: underline;
  transition: var(--transition-smooth);
  font-weight: 500;
}

.footer-links a:hover {
  color: hsla(168, 76%, 35%, 1);
  text-decoration: underline;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Responsive Design */
@media (min-width: 768px) {
  .logo {
    max-width: 24rem;
  }

  .sub-headline {
    font-size: 1.5rem;
  }

  .separator {
    display: block;
  }

  .section-header h2 {
    font-size: 3rem;
  }

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

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

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

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

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .countdown-unit {
    min-width: 80px;
    padding: 1rem;
  }

  .countdown-value {
    font-size: 2.5rem;
  }

  .countdown-unit-label {
    font-size: 0.875rem;
  }

  .experience-badge {
    bottom: -1rem;
    right: -1rem;
    padding: 1rem;
  }

  .badge-number {
    font-size: 2rem;
  }

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

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

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