/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

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

:root {
  --background: #faf9f7;
  --foreground: #3d3633;
  --card: #ffffff;
  --card-foreground: #3d3633;
  --primary: #b85c5c;
  --primary-foreground: #faf9f7;
  --secondary: #f5f2ef;
  --secondary-foreground: #3d3633;
  --muted: #f0ece8;
  --muted-foreground: #7a7269;
  --accent: #d4a5a5;
  --border: #e8e4df;
  --radius: 0.625rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.font-serif {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

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

.text-center { text-align: center; }
.text-balance { text-wrap: balance; }

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 249, 247, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 92, 92, 0.1);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

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

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), rgba(184, 92, 92, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary-foreground);
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
}

.logo-text span {
  color: var(--primary);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--muted-foreground);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background: #a54d4d;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(184, 92, 92, 0.3);
}

.btn-dark {
  background: var(--foreground);
  color: var(--background);
}

.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(61, 54, 51, 0.3);
}

.btn-outline {
  background: var(--card);
  color: var(--foreground);
  border: 2px solid rgba(61, 54, 51, 0.2);
}

.btn-outline:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(184, 92, 92, 0.15);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.mobile-menu-btn:hover {
  background: var(--muted);
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
  color: var(--foreground);
}

.mobile-menu {
  display: none;
  padding: 1rem;
  border-top: 1px solid rgba(184, 92, 92, 0.1);
  animation: fadeInUp 0.3s ease;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  color: var(--muted-foreground);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--primary);
}

.mobile-menu .btn {
  width: 100%;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-cta { display: block; }
  .mobile-menu-btn { display: none; }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 1rem 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-gradient-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse 80% 80% at 50% -20%, rgba(217, 119, 119, 0.15), transparent);
}

.hero-gradient-2 {
  position: absolute;
  top: 5rem;
  left: 2.5rem;
  width: 18rem;
  height: 18rem;
  background: rgba(184, 92, 92, 0.15);
  border-radius: 50%;
  filter: blur(48px);
  animation: pulseSlow 4s ease-in-out infinite;
}

.hero-gradient-3 {
  position: absolute;
  bottom: 5rem;
  right: 2.5rem;
  width: 24rem;
  height: 24rem;
  background: rgba(212, 165, 165, 0.2);
  border-radius: 50%;
  filter: blur(48px);
  animation: pulseSlow 4s ease-in-out infinite;
  animation-delay: 2s;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.floating-icon {
  position: absolute;
  opacity: 0.2;
  animation: floatRotate 8s ease-in-out infinite;
}

.floating-icon svg {
  width: 32px;
  height: 32px;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(184, 92, 92, 0.2);
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(184, 92, 92, 0.05);
  animation: fadeInUp 0.8s ease forwards;
}

.pulse-dot {
  position: relative;
  width: 8px;
  height: 8px;
}

.pulse-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--primary);
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.pulse-dot::after {
  content: '';
  position: relative;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

.hero-badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.hero h1 .highlight {
  font-style: italic;
  color: var(--primary);
  position: relative;
}

.hero h1 .highlight svg {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
}

.hero p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto 3rem;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.hero p strong {
  color: var(--foreground);
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

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

.btn .arrow {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

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

.hero-trust {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.8s;
  opacity: 0;
}

.stars {
  display: flex;
  gap: 2px;
}

.stars svg {
  width: 12px;
  height: 12px;
  fill: var(--primary);
  color: var(--primary);
}

.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8rem;
  background: linear-gradient(to top, var(--background), transparent);
}

@media (min-width: 768px) {
  .hero h1 { font-size: 4.5rem; }
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
  .hero-buttons .btn { width: auto; }
}

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

/* Reviewer Discount Section */
.reviewer-discount {
  position: relative;
  padding: 4rem 1rem;
  overflow: hidden;
}

.reviewer-discount-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(184, 92, 92, 0.1), rgba(212, 165, 165, 0.15), rgba(184, 92, 92, 0.1));
}

.reviewer-card {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(184, 92, 92, 0.2);
  border-radius: 1.5rem;
  padding: 2rem;
  max-width: 64rem;
  margin: 0 auto;
  box-shadow: 0 25px 50px -12px rgba(184, 92, 92, 0.05);
  overflow: hidden;
}

.reviewer-card-corner-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  background: linear-gradient(to bottom left, rgba(184, 92, 92, 0.1), transparent);
  border-bottom-left-radius: 100%;
}

.reviewer-card-corner-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 6rem;
  height: 6rem;
  background: linear-gradient(to top right, rgba(212, 165, 165, 0.1), transparent);
  border-top-right-radius: 100%;
}

.reviewer-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.reviewer-icon-badge {
  position: relative;
  flex-shrink: 0;
}

.reviewer-icon-glow {
  position: absolute;
  inset: 0;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  filter: blur(24px);
  opacity: 0.4;
  animation: pulseSlow 4s ease-in-out infinite;
}

.reviewer-icon {
  position: relative;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(184, 92, 92, 0.3);
}

.reviewer-icon svg {
  width: 3.5rem;
  height: 3.5rem;
  color: var(--primary-foreground);
}

.reviewer-percent-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  animation: bounceSubtle 2s ease-in-out infinite;
}

.reviewer-percent-badge svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--background);
}

.reviewer-text {
  flex: 1;
  text-align: center;
}

.reviewer-stars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 1rem;
}

.reviewer-stars svg {
  width: 20px;
  height: 20px;
  fill: var(--primary);
  color: var(--primary);
  animation: starPop 0.5s ease forwards;
}

.reviewer-stars svg:nth-child(2) { animation-delay: 0.1s; }
.reviewer-stars svg:nth-child(3) { animation-delay: 0.2s; }
.reviewer-stars svg:nth-child(4) { animation-delay: 0.3s; }
.reviewer-stars svg:nth-child(5) { animation-delay: 0.4s; }

.reviewer-stars span {
  margin-left: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
}

.reviewer-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.875rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.reviewer-text p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.discount-highlight {
  position: relative;
  display: inline-block;
}

.discount-highlight span {
  font-weight: 700;
  color: var(--foreground);
  font-size: 1.25rem;
}

.discount-highlight::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(184, 92, 92, 0.3);
  border-radius: 9999px;
}

.reviewer-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.limited-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: rgba(184, 92, 92, 0.15);
  border-radius: 9999px;
  color: var(--foreground);
  font-weight: 500;
  border: 1px solid rgba(184, 92, 92, 0.2);
}

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

.discount-badge {
  flex-shrink: 0;
  position: relative;
}

.discount-badge-ring {
  position: absolute;
  inset: 0;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  border: 4px dashed rgba(184, 92, 92, 0.3);
  animation: spinSlow 20s linear infinite;
}

.discount-badge-inner {
  position: relative;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--background), var(--card), var(--secondary));
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.05);
}

.discount-badge-inner .label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.discount-badge-inner .value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1;
}

.discount-badge-inner .suffix {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  font-weight: 600;
  margin-top: 0.25rem;
}

@media (min-width: 768px) {
  .reviewer-card { padding: 3rem; }
  .reviewer-text h2 { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .reviewer-content {
    flex-direction: row;
    gap: 3rem;
  }
  .reviewer-text { text-align: left; }
  .reviewer-tags { justify-content: flex-start; }
}

/* How It Works Section */
.how-it-works {
  padding: 6rem 1rem;
  background: var(--card);
  position: relative;
  overflow: hidden;
}

.how-it-works-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at bottom, rgba(217, 119, 119, 0.05), transparent 70%);
}

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

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: var(--secondary);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.section-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

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

.steps-grid {
  display: grid;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

.step-card {
  position: relative;
  background: var(--background);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all 0.5s ease;
}

.step-card:hover {
  border-color: rgba(184, 92, 92, 0.3);
  box-shadow: 0 20px 40px rgba(184, 92, 92, 0.05);
  transform: translateY(-8px);
}

.step-number {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--foreground);
  color: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.step-icon-wrapper {
  position: relative;
  margin-bottom: 2rem;
}

.step-icon-glow {
  position: absolute;
  inset: 0;
  width: 5rem;
  height: 5rem;
  border-radius: 1rem;
  filter: blur(24px);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.step-card:hover .step-icon-glow {
  opacity: 1;
}

.step-icon-glow.pink { background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(244, 63, 94, 0.2)); }
.step-icon-glow.rose { background: linear-gradient(135deg, rgba(244, 63, 94, 0.2), rgba(251, 146, 60, 0.2)); }
.step-icon-glow.orange { background: linear-gradient(135deg, rgba(251, 146, 60, 0.2), rgba(251, 191, 36, 0.2)); }

.step-icon {
  position: relative;
  width: 5rem;
  height: 5rem;
  border-radius: 1rem;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

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

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

.step-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.step-card p {
  color: var(--muted-foreground);
  line-height: 1.7;
}

.step-connector {
  display: none;
}

@media (min-width: 768px) {
  .section-header h2 { font-size: 3.75rem; }
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .step-connector {
    display: flex;
    position: absolute;
    top: 4rem;
    left: 60%;
    width: 100%;
    align-items: center;
  }
  .step-connector-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, var(--border), rgba(184, 92, 92, 0.3), var(--border));
  }
  .step-connector svg {
    width: 16px;
    height: 16px;
    color: rgba(184, 92, 92, 0.4);
    margin-left: -8px;
  }
}

/* About Section */
.about {
  padding: 6rem 1rem;
  background: rgba(245, 242, 239, 0.5);
  position: relative;
  overflow: hidden;
}

.about-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(217, 119, 119, 0.1), transparent 60%);
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: var(--card);
  border: 1px solid rgba(184, 92, 92, 0.2);
  margin-bottom: 1.5rem;
}

.about-badge svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

.about-badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.about-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.about-header h2 span {
  color: var(--primary);
}

.about-header p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.7;
}

.values-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 4rem;
}

.value-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: rgba(184, 92, 92, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(-4px);
}

.value-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(184, 92, 92, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background 0.3s ease;
}

.value-card:hover .value-icon {
  background: rgba(184, 92, 92, 0.2);
}

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

.value-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

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

.mission-card {
  margin-top: 4rem;
  padding: 2rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  text-align: center;
}

.mission-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.mission-card p {
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .about-header h2 { font-size: 3rem; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* Categories Section */
.categories {
  padding: 6rem 1rem;
  position: relative;
  overflow: hidden;
}

.categories-bg-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 24rem;
  height: 24rem;
  background: rgba(184, 92, 92, 0.05);
  border-radius: 50%;
  filter: blur(48px);
  transform: translate(-50%, -50%);
}

.categories-bg-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20rem;
  height: 20rem;
  background: rgba(212, 165, 165, 0.05);
  border-radius: 50%;
  filter: blur(48px);
  transform: translate(50%, 50%);
}

.categories-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 4rem;
}

.category-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 1.5rem;
  overflow: hidden;
  cursor: pointer;
}

.category-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.category-card:hover .category-image {
  transform: scale(1.1);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61, 54, 51, 0.9), rgba(61, 54, 51, 0.3), transparent);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.category-card:hover .category-overlay {
  opacity: 0.9;
}

.category-hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184, 92, 92, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.category-card:hover .category-hover-overlay {
  opacity: 1;
}

.category-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--foreground);
}

.category-arrow {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
}

.category-card:hover .category-arrow {
  opacity: 1;
  transform: translateY(0);
}

.category-arrow svg {
  width: 20px;
  height: 20px;
  color: var(--background);
}

.category-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  transform: translateY(8px);
  transition: transform 0.3s ease;
}

.category-card:hover .category-content {
  transform: translateY(0);
}

.category-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.category-card:hover .category-subtitle {
  opacity: 1;
}

.category-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
}

@media (min-width: 768px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .category-title { font-size: 1.875rem; }
}

/* CTA Section */
.cta {
  padding: 6rem 1rem;
  background: var(--card);
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(217, 119, 119, 0.08), transparent 70%);
}

.cta-floating-1 {
  position: absolute;
  top: 5rem;
  left: 2.5rem;
  opacity: 0.2;
  animation: float 6s ease-in-out infinite;
}

.cta-floating-2 {
  position: absolute;
  bottom: 5rem;
  right: 2.5rem;
  opacity: 0.2;
  animation: float 6s ease-in-out infinite;
  animation-delay: 1s;
}

.cta-floating-1 svg,
.cta-floating-2 svg {
  width: 32px;
  height: 32px;
}

.cta-floating-1 svg { color: var(--primary); }
.cta-floating-2 svg { color: var(--accent); }

.cta-card {
  position: relative;
  background: linear-gradient(135deg, var(--secondary), var(--background), var(--secondary));
  border-radius: 2.5rem;
  padding: 2.5rem;
  text-align: center;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 25px 50px -12px rgba(184, 92, 92, 0.05);
  max-width: 56rem;
  margin: 0 auto;
}

.cta-corner-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 10rem;
  height: 10rem;
  background: linear-gradient(to bottom right, rgba(184, 92, 92, 0.1), transparent);
  border-bottom-right-radius: 100%;
}

.cta-corner-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  background: linear-gradient(to top left, rgba(212, 165, 165, 0.1), transparent);
  border-top-left-radius: 100%;
}

.cta-content {
  position: relative;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: var(--card);
  border: 1px solid rgba(184, 92, 92, 0.2);
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cta-badge svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
  color: var(--primary);
}

.cta-badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.cta-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.cta-card > .cta-content > p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.benefits-grid {
  display: grid;
  gap: 1rem;
  max-width: 42rem;
  margin: 0 auto 3rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  border-color: rgba(184, 92, 92, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(184, 92, 92, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

.benefit-item span {
  color: var(--foreground);
  font-weight: 500;
}

.cta-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 2rem;
}

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

.cta-buttons .btn {
  width: 100%;
  max-width: 280px;
}

.cta-note {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.green-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s ease-in-out infinite;
}

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

@media (min-width: 768px) {
  .cta-card { padding: 4rem; }
  .cta-card h2 { font-size: 3rem; }
  .cta-card h3 { font-size: 1.875rem; }
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
  .cta-buttons .btn { width: auto; }
}

/* Footer */
.footer {
  padding: 4rem 1rem;
  border-top: 1px solid var(--border);
}

.footer-info {
  background: var(--muted);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 3rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.footer-info-inner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.footer-info svg {
  width: 24px;
  height: 24px;
  color: var(--muted-foreground);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-info h4 {
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.footer-info ul {
  list-style: none;
}

.footer-info li {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  padding: 0.25rem 0;
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.footer p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 1rem;
}

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

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes floatRotate {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(5deg);
  }
  50% {
    transform: translateY(-20px) rotate(0deg);
  }
  75% {
    transform: translateY(-10px) rotate(-5deg);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseSlow {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.8;
  }
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

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

@keyframes starPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

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

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
