@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Manrope:wght@300;400;500;600;700&display=swap");

:root {
  --font-body: "Manrope", system-ui, -apple-system, sans-serif;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  background: #faf7f2;
  color: #2d3b2d;
  line-height: 1.7;
  font-family: var(--font-body);
}

/* Landing page styles (scoped by .landing-page) */
.landing-page {
  font-family: var(--font-body), "Manrope", system-ui, -apple-system, sans-serif;
  background: #faf7f2;
  color: #2d3b2d;
  line-height: 1.7;
  overflow-x: hidden;
}
.landing-page * {
  box-sizing: border-box;
}
.landing-page .content {
  position: relative;
  z-index: 10;
}
.landing-page .bg-shapes {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.landing-page .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}
.landing-page .shape-1 {
  width: 600px;
  height: 600px;
  background: #9db4a0;
  top: -200px;
  right: -100px;
  animation: float 20s ease-in-out infinite;
}
.landing-page .shape-2 {
  width: 400px;
  height: 400px;
  background: #d4a574;
  bottom: 10%;
  left: -100px;
  animation: float 25s ease-in-out infinite reverse;
}
.landing-page .shape-3 {
  width: 300px;
  height: 300px;
  background: #c4b8a8;
  top: 50%;
  right: 10%;
  animation: float 18s ease-in-out infinite;
}
@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.05);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}
.landing-page nav {
  position: fixed;
  inset: 0 0 auto 0;
  padding: 1.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(250, 247, 242, 0.95), transparent);
  backdrop-filter: blur(10px);
}
.landing-page .logo {
  font-family: var(--font-display), "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #2d3b2d;
  letter-spacing: 0.02em;
}
.landing-page .logo span {
  color: #7a9b7d;
}
.landing-page .nav-cta {
  background: #2d3b2d;
  color: #faf7f2;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.landing-page .nav-cta:hover {
  background: #7a9b7d;
  transform: translateY(-2px);
}
.landing-page .hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 4rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
}
.landing-page .hero-content {
  max-width: 700px;
}
.landing-page .hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(157, 180, 160, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  color: #7a9b7d;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease;
}
.landing-page .hero-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #9db4a0;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}
.landing-page h1 {
  font-family: var(--font-display), "Cormorant Garamond", serif;
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.1s both;
}
.landing-page h1 em {
  font-style: italic;
  color: #7a9b7d;
}
.landing-page .hero-subtitle {
  font-size: 1.2rem;
  color: #5a6b5a;
  margin-bottom: 2.5rem;
  max-width: 520px;
  animation: fadeInUp 0.8s ease 0.2s both;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.landing-page .hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: #2d3b2d;
  color: #faf7f2;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.4s ease;
  animation: fadeInUp 0.8s ease 0.3s both;
}
.landing-page .hero-cta:hover {
  background: #7a9b7d;
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(45, 59, 45, 0.2);
}
.landing-page .hero-cta svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}
.landing-page .hero-cta:hover svg {
  transform: translateX(5px);
}
.landing-page .philosophy {
  padding: 8rem 4rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.landing-page .philosophy-quote {
  font-family: var(--font-display), "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-style: italic;
  color: #5a6b5a;
  line-height: 1.5;
  position: relative;
}
.landing-page .philosophy-quote::before,
.landing-page .philosophy-quote::after {
  content: "\"";
  font-size: 4rem;
  color: #9db4a0;
  opacity: 0.5;
  position: absolute;
  font-family: var(--font-display), "Cormorant Garamond", serif;
}
.landing-page .philosophy-quote::before {
  top: -2rem;
  left: -1rem;
}
.landing-page .philosophy-quote::after {
  bottom: -3rem;
  right: -1rem;
}
.landing-page .features {
  padding: 6rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}
.landing-page .section-header {
  text-align: center;
  margin-bottom: 5rem;
}
.landing-page .section-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #7a9b7d;
  margin-bottom: 1rem;
}
.landing-page h2 {
  font-family: var(--font-display), "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
}
.landing-page .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.landing-page .feature-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid rgba(157, 180, 160, 0.2);
  transition: all 0.4s ease;
}
.landing-page .feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(45, 59, 45, 0.1);
  border-color: #9db4a0;
}
.landing-page .feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(157, 180, 160, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #7a9b7d;
}
.landing-page .feature-card h3 {
  font-family: var(--font-display), "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
}
.landing-page .feature-card p {
  color: #5a6b5a;
  font-size: 0.95rem;
}
.landing-page .modes {
  padding: 8rem 4rem;
  background: linear-gradient(180deg, transparent, rgba(157, 180, 160, 0.15), transparent);
}
.landing-page .modes-container {
  max-width: 1100px;
  margin: 0 auto;
}
.landing-page .modes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}
.landing-page .mode-card {
  padding: 3rem;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
}
.landing-page .mode-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.9;
  z-index: 0;
}
.landing-page .mode-general::before {
  background: linear-gradient(135deg, #fff 0%, #f5f7f5 100%);
}
.landing-page .mode-reflection::before {
  background: linear-gradient(135deg, #2d3b2d 0%, #3d4f3d 100%);
}
.landing-page .mode-card > * {
  position: relative;
  z-index: 1;
}
.landing-page .mode-label {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.landing-page .mode-general .mode-label {
  background: rgba(157, 180, 160, 0.15);
  color: #7a9b7d;
}
.landing-page .mode-reflection .mode-label {
  background: rgba(255, 255, 255, 0.15);
  color: #faf7f2;
}
.landing-page .mode-card h3 {
  font-family: var(--font-display), "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.landing-page .mode-reflection h3,
.landing-page .mode-reflection p {
  color: #faf7f2;
}
.landing-page .mode-card p {
  line-height: 1.8;
}
.landing-page .mode-general p {
  color: #5a6b5a;
}
.landing-page .mode-triggers {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.landing-page .mode-trigger {
  font-size: 0.8rem;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  font-style: italic;
}
.landing-page .mode-general .mode-trigger {
  background: rgba(157, 180, 160, 0.2);
  color: #7a9b7d;
}
.landing-page .mode-reflection .mode-trigger {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(250, 247, 242, 0.8);
}
.landing-page .how-it-works {
  padding: 8rem 4rem;
  max-width: 1000px;
  margin: 0 auto;
}
.landing-page .steps {
  margin-top: 4rem;
}
.landing-page .step {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(157, 180, 160, 0.15);
}
.landing-page .step:last-child {
  border-bottom: none;
}
.landing-page .step-number {
  font-family: var(--font-display), "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 400;
  color: #9db4a0;
  line-height: 1;
  min-width: 80px;
}
.landing-page .step-content h3 {
  font-family: var(--font-display), "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.landing-page .step-content p {
  color: #5a6b5a;
}
.landing-page .cta-section {
  padding: 8rem 4rem;
  text-align: center;
}
.landing-page .cta-container {
  max-width: 700px;
  margin: 0 auto;
  background: #2d3b2d;
  border-radius: 40px;
  padding: 5rem 4rem;
  position: relative;
  overflow: hidden;
}
.landing-page .cta-container::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: #9db4a0;
  border-radius: 50%;
  opacity: 0.1;
  filter: blur(60px);
}
.landing-page .cta-container h2 {
  color: #faf7f2;
  margin-bottom: 1rem;
}
.landing-page .cta-container p {
  color: rgba(250, 247, 242, 0.7);
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}
.landing-page .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: #faf7f2;
  color: #2d3b2d;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.4s ease;
}
.landing-page .cta-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.landing-page .cta-button svg {
  width: 22px;
  height: 22px;
}
.landing-page footer {
  padding: 3rem 4rem;
  text-align: center;
  color: #5a6b5a;
  font-size: 0.9rem;
}
.landing-page footer a {
  color: #7a9b7d;
  text-decoration: none;
}
.landing-page footer a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .landing-page nav {
    padding: 1rem 1.5rem;
  }
  .landing-page .hero {
    padding: 6rem 1.5rem 3rem;
  }
  .landing-page .philosophy,
  .landing-page .features,
  .landing-page .modes,
  .landing-page .how-it-works,
  .landing-page .cta-section {
    padding: 4rem 1.5rem;
  }
  .landing-page .modes-grid {
    grid-template-columns: 1fr;
  }
  .landing-page .step {
    flex-direction: column;
    gap: 1rem;
  }
  .landing-page .step-number {
    font-size: 3rem;
  }
  .landing-page .cta-container {
    padding: 3rem 2rem;
    border-radius: 24px;
  }
}

/* Testimonials Section */
.landing-page .testimonials {
  padding: 6rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

.landing-page .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.landing-page .testimonial-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(125, 155, 125, 0.15);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.landing-page .testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(45, 59, 45, 0.08);
  border-color: rgba(125, 155, 125, 0.3);
}

.landing-page .testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #2d3b2d;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.landing-page .testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.landing-page .testimonial-author strong {
  font-size: 0.95rem;
  color: #2d3b2d;
  font-weight: 600;
}

.landing-page .testimonial-author span {
  font-size: 0.85rem;
  color: #7a9b7d;
}

/* Comparison Section */
.landing-page .comparison {
  padding: 6rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.landing-page .comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
  margin-top: 3rem;
}

.landing-page .comparison-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.landing-page .comparison-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
}

.landing-page .comparison-content h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 0 0 0.5rem 0;
  color: #2d3b2d;
}

.landing-page .comparison-content p {
  margin: 0;
  font-size: 0.95rem;
  color: #5a6b5a;
  line-height: 1.6;
}

/* ROI Section */
.landing-page .roi-section {
  padding: 6rem 4rem;
  background: linear-gradient(135deg, rgba(157, 180, 160, 0.1), rgba(212, 165, 116, 0.1));
  border-top: 1px solid rgba(125, 155, 125, 0.15);
  border-bottom: 1px solid rgba(125, 155, 125, 0.15);
}

.landing-page .roi-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.landing-page .roi-container h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2d3b2d;
}

.landing-page .roi-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.landing-page .roi-stat {
  text-align: center;
}

.landing-page .roi-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: #7a9b7d;
  margin-bottom: 1rem;
}

.landing-page .roi-stat p {
  font-size: 1.05rem;
  color: #5a6b5a;
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

/* CTA Note */
.landing-page .cta-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #7a9b7d;
  font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .landing-page .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .landing-page .comparison-grid {
    grid-template-columns: 1fr;
  }
  
  .landing-page .roi-stats {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .landing-page .roi-number {
    font-size: 3rem;
  }
}
