/* ===== Variables ===== */
:root {
  --color-cream: #F5F3E8;
  --color-yellow: #EBDE2F;
  --color-yellow-dark: #D4C82A;
  --color-green: #8CBD80;
  --color-green-dark: #7AAB6E;
  --color-green-darker: #6A9E5F;
  --color-text-dark: #2D3E1F;
  --color-text-medium: #5C6F3E;
  --color-text-light: #6A7A4B;
  --container-max: 80rem;
  --container-max-sm: 72rem;
  --container-max-md: 64rem;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.5;
  color: var(--color-text-dark);
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

/* ===== Icons ===== */
.icon {
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-xs { width: 1rem; height: 1rem; }
.icon-sm { width: 1.25rem; height: 1.25rem; }
.icon-md { width: 1.5rem; height: 1.5rem; }
.icon-lg { width: 2rem; height: 2rem; }
.icon-xl { width: 2.5rem; height: 2.5rem; }

.icon-filled {
  fill: var(--color-yellow);
  stroke: var(--color-yellow);
}

.icon-brand {
  fill: currentColor;
  stroke: none;
}

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-sm { max-width: var(--container-max-sm); }
.container-md { max-width: var(--container-max-md); }

.page {
  min-height: 100vh;
  background: linear-gradient(to bottom, var(--color-cream), #fff, var(--color-cream));
}

.page__content {
  position: relative;
  z-index: 10;
}

/* ===== Background Decorations ===== */
.bg-decor {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.bg-decor__blob {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(64px);
}

.bg-decor__blob--yellow {
  top: 0;
  right: 0;
  background: rgba(235, 222, 47, 0.2);
  animation: blob-float-yellow 20s ease-in-out infinite;
}

.bg-decor__blob--green {
  bottom: 0;
  left: 0;
  background: rgba(140, 189, 128, 0.2);
  animation: blob-float-green 25s ease-in-out infinite;
}

@keyframes blob-float-yellow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(100px, 50px); }
}

@keyframes blob-float-green {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-100px, -50px); }
}

/* ===== Scroll Progress ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--color-yellow), var(--color-green), var(--color-yellow));
  transform-origin: left;
  transform: scaleX(0);
  z-index: 50;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  border-radius: 9999px;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: var(--color-green);
  color: #fff;
  padding: 1.75rem 2.5rem;
  font-size: 1.125rem;
  box-shadow: 0 20px 25px -5px rgba(140, 189, 128, 0.3);
}

.btn--primary:hover {
  background: var(--color-green-dark);
  box-shadow: 0 25px 50px -12px rgba(140, 189, 128, 0.5);
  transform: scale(1.05);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border: 3px solid var(--color-green);
  padding: 1.75rem 2.5rem;
  font-size: 1.125rem;
}

.btn--outline:hover {
  background: var(--color-yellow);
  color: var(--color-text-dark);
  transform: scale(1.05);
}

.btn--gradient-green {
  background: linear-gradient(to right, var(--color-green), var(--color-green-dark));
  color: #fff;
  padding: 1rem 2rem;
  font-weight: 700;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn--gradient-green:hover {
  box-shadow: 0 20px 25px -5px rgba(140, 189, 128, 0.5);
  transform: scale(1.05);
}

.btn--gradient-green-lg {
  background: linear-gradient(to right, var(--color-green), var(--color-green-dark));
  color: #fff;
  padding: 1.5rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn--gradient-green-lg:hover {
  background: linear-gradient(to right, var(--color-green-dark), var(--color-green-darker));
  box-shadow: 0 20px 25px -5px rgba(140, 189, 128, 0.5);
}

.btn--full {
  width: 100%;
  padding: 1.5rem;
}

.btn--gradient-yellow {
  background: linear-gradient(to right, var(--color-yellow), var(--color-yellow-dark));
  color: #fff;
}

.btn--gradient-yellow-green {
  background: linear-gradient(to right, var(--color-yellow), var(--color-green));
  color: #fff;
}

.btn--gradient-yellow-green:hover,
.btn--gradient-yellow:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.btn--featured {
  box-shadow: 0 10px 15px -3px rgba(235, 222, 47, 0.5);
}

/* ===== Badges ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  font-weight: 700;
}

.badge--hero {
  padding: 1rem 2rem;
  background: var(--color-yellow);
  border: 2px solid var(--color-green);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.badge--hero span {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
}

.badge--green {
  padding: 0.75rem 1.5rem;
  background: var(--color-green);
  border: 2px solid var(--color-yellow);
  margin-bottom: 1rem;
}

.badge--green span {
  color: #fff;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.badge--yellow {
  padding: 0.75rem 1.5rem;
  background: var(--color-yellow);
  border: 2px solid var(--color-green);
  margin-bottom: 1rem;
}

.badge--yellow span {
  color: var(--color-text-dark);
  font-weight: 700;
}

.badge--author {
  padding: 0.5rem 1rem;
  background: var(--color-green);
  border: 2px solid var(--color-yellow);
  margin-bottom: 1.5rem;
}

.badge--author span {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
}

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

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

.animate-on-scroll-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.animate-on-scroll-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.animate-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

.hero-animate {
  opacity: 0;
  transform: translateY(50px);
  animation: hero-fade-in 0.8s ease forwards;
}

.hero-animate--delay-1 { animation-delay: 0.2s; }
.hero-animate--delay-2 { animation-delay: 0.3s; }
.hero-animate--delay-3 { animation-delay: 0.5s; }
.hero-animate--delay-4 { animation-delay: 0.6s; }
.hero-animate--delay-5 { animation-delay: 0.7s; }

@keyframes hero-fade-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce-scroll {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes emoji-wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(10deg); }
  75% { transform: rotate(-10deg); }
}

.emoji-wiggle {
  animation: emoji-wiggle 3s ease-in-out infinite;
}

.emoji-wiggle--delay-1 { animation-delay: 0.5s; }
.emoji-wiggle--delay-2 { animation-delay: 1s; }

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

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: url('../assets/hero.jpg');
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 62, 31, 0.75);
}

.hero__content {
  position: relative;
  z-index: 10;
  padding: 5rem 0;
  text-align: center;
  max-width: 64rem;
  margin: 0 auto;
}

.hero__title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fff;
  line-height: 1.2;
}

.hero__subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.5rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}

.hero__description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 3rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce-scroll 2s ease-in-out infinite;
  animation-delay: 1s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.hero__scroll-indicator svg {
  color: var(--color-yellow);
  width: 2rem;
  height: 2rem;
}

@keyframes hero-scroll-in {
  to { opacity: 1; }
}

.hero__scroll-indicator {
  animation: bounce-scroll 2s ease-in-out 1s infinite, hero-scroll-in 0.6s ease 1s forwards;
}

/* ===== Section Common ===== */
.section {
  padding: 6rem 1.5rem;
}

.section--white { background: #fff; }
.section--cream { background: linear-gradient(to bottom, var(--color-cream), #fff); }

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

.section__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-text-dark);
}

/* ===== Vectors Section ===== */
.vectors-grid {
  display: grid;
  gap: 2rem;
}

.vector-card {
  border-radius: 1.5rem;
  border: 2px solid;
  padding: 2rem;
  backdrop-filter: blur(4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.vector-card:hover {
  transform: scale(1.05);
}

.vector-card--body {
  border-color: rgba(235, 222, 47, 0.5);
  background: rgba(235, 222, 47, 0.1);
}

.vector-card--mind {
  border-color: rgba(140, 189, 128, 0.5);
  background: rgba(140, 189, 128, 0.1);
}

.vector-card--soul {
  border-color: rgba(140, 189, 128, 0.5);
  background: linear-gradient(to bottom right, rgba(235, 222, 47, 0.1), rgba(140, 189, 128, 0.1));
}

.vector-card__header {
  text-align: center;
  margin-bottom: 2rem;
}

.vector-card__emoji {
  font-size: 3.75rem;
  margin-bottom: 1rem;
}

.vector-card__title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-text-dark);
}

.vector-card__subtitle {
  color: var(--color-text-light);
  font-size: 0.875rem;
  font-weight: 500;
}

.vector-card__features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 0.75rem;
}

.feature-item__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vector-card--body .feature-item__icon {
  background: rgba(235, 222, 47, 0.1);
  border-color: rgba(235, 222, 47, 0.5);
  color: var(--color-text-dark);
}

.vector-card--mind .feature-item__icon,
.vector-card--soul .feature-item__icon {
  background: rgba(140, 189, 128, 0.1);
  border-color: rgba(140, 189, 128, 0.5);
  color: var(--color-text-dark);
}

.feature-item__title {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--color-text-dark);
}

.feature-item__desc {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

/* ===== Results Section ===== */
.results-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--color-cream), #fff);
}

.results-section__grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHBhdHRlcm4gaWQ9ImdyaWQiIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+PHBhdGggZD0iTSAxMCAwIEwgMCAwIDAgMTAiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzhDQkQ4MCIgc3Ryb2tlLW9wYWNpdHk9IjAuMSIgc3Ryb2tlLXdpZHRoPSIxIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyaWQpIi8+PC9zdmc+");
}

.results-grid {
  display: grid;
  gap: 1.5rem;
  max-width: var(--container-max-sm);
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.result-card {
  position: relative;
  border-radius: 1rem;
  padding: 2rem;
  border: 2px solid rgba(140, 189, 128, 0.3);
  backdrop-filter: blur(4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

.result-card:hover {
  border-color: var(--color-green);
  transform: scale(1.05) translateY(-10px);
}

.result-card--yellow { background: rgba(235, 222, 47, 0.1); }
.result-card--green { background: rgba(140, 189, 128, 0.1); }
.result-card--gradient { background: linear-gradient(to bottom right, rgba(140, 189, 128, 0.1), rgba(235, 222, 47, 0.1)); }

.result-card__overlay {
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.result-card:hover .result-card__overlay { opacity: 0.2; }

.result-card__overlay--yellow { background: linear-gradient(to bottom right, var(--color-yellow), var(--color-yellow-dark)); }
.result-card__overlay--green { background: linear-gradient(to bottom right, var(--color-green), var(--color-green-dark)); }
.result-card__overlay--mixed { background: linear-gradient(to bottom right, var(--color-green), var(--color-yellow)); }
.result-card__overlay--yellow-green { background: linear-gradient(to bottom right, var(--color-yellow), var(--color-green)); }

.result-card__content {
  position: relative;
  z-index: 10;
}

.result-card__icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  color: #fff;
  transition: transform 0.6s ease;
}

.result-card:hover .result-card__icon {
  transform: rotate(360deg);
}

.result-card__icon--yellow { background: linear-gradient(to bottom right, var(--color-yellow), var(--color-yellow-dark)); }
.result-card__icon--green { background: linear-gradient(to bottom right, var(--color-green), var(--color-green-dark)); }
.result-card__icon--mixed { background: linear-gradient(to bottom right, var(--color-green), var(--color-yellow)); }
.result-card__icon--yellow-green { background: linear-gradient(to bottom right, var(--color-yellow), var(--color-green)); }

.result-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--color-text-dark);
}

.result-card__desc {
  color: var(--color-text-light);
  line-height: 1.625;
}

.result-card__glow {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  filter: blur(32px);
  opacity: 0.2;
  transition: opacity 0.3s ease;
}

.result-card:hover .result-card__glow { opacity: 0.4; }

.result-card__glow--yellow { background: linear-gradient(to bottom right, var(--color-yellow), var(--color-yellow-dark)); }
.result-card__glow--green { background: linear-gradient(to bottom right, var(--color-green), var(--color-green-dark)); }
.result-card__glow--mixed { background: linear-gradient(to bottom right, var(--color-green), var(--color-yellow)); }
.result-card__glow--yellow-green { background: linear-gradient(to bottom right, var(--color-yellow), var(--color-green)); }

.results-cta {
  text-align: center;
  margin-top: 4rem;
  position: relative;
  z-index: 10;
}

.results-cta__text {
  font-size: 1.25rem;
  color: var(--color-text-medium);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

/* ===== Pricing Section ===== */
.pricing-section {
  position: relative;
  background: #fff;
}

.pricing-section__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(245,243,232,0.5), #fff, rgba(245,243,232,0.5));
}

.pricing-grid {
  display: grid;
  gap: 2rem;
  position: relative;
  z-index: 10;
}

.pricing-card {
  position: relative;
  border-radius: 1.5rem;
  border: 2px solid;
  padding: 2rem;
  backdrop-filter: blur(4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card--comfort {
  border-color: var(--color-green);
  background: rgba(140, 189, 128, 0.1);
}

.pricing-card--premium {
  border-color: var(--color-yellow);
  background: rgba(235, 222, 47, 0.1);
}

.pricing-card--vip {
  border-color: var(--color-green);
  background: linear-gradient(to bottom right, rgba(235, 222, 47, 0.1), rgba(140, 189, 128, 0.1));
}

.pricing-card--featured {
  z-index: 10;
}

.pricing-card__badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 1.5rem;
  background: linear-gradient(to right, var(--color-yellow), var(--color-yellow-dark));
  border-radius: 9999px;
  color: var(--color-text-dark);
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--color-green);
  white-space: nowrap;
}

.pricing-card__icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.pricing-card__icon {
  width: 5rem;
  height: 5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  color: #fff;
}

.pricing-card__icon--green { background: linear-gradient(to bottom right, var(--color-green), var(--color-green-dark)); }
.pricing-card__icon--yellow { background: linear-gradient(to bottom right, var(--color-yellow), var(--color-yellow-dark)); }
.pricing-card__icon--mixed { background: linear-gradient(to bottom right, var(--color-yellow), var(--color-green)); }

.pricing-card__name {
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--color-text-dark);
}

.pricing-card__price {
  text-align: center;
  margin-bottom: 1.5rem;
}

.pricing-card__price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-text-medium);
}

.pricing-card__price-currency {
  font-size: 1.5rem;
  color: var(--color-text-light);
}

.pricing-card__desc {
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: 2rem;
  min-height: 3rem;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.pricing-feature {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.pricing-feature__icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.pricing-feature__icon--green { background: linear-gradient(to bottom right, var(--color-green), var(--color-green-dark)); }
.pricing-feature__icon--yellow { background: linear-gradient(to bottom right, var(--color-yellow), var(--color-yellow-dark)); }
.pricing-feature__icon--mixed { background: linear-gradient(to bottom right, var(--color-yellow), var(--color-green)); }

.pricing-feature__text {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.625;
}

.pricing-card__glow {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  filter: blur(64px);
  opacity: 0.1;
}

.pricing-card__glow--green { background: linear-gradient(to bottom right, var(--color-green), var(--color-green-dark)); }
.pricing-card__glow--yellow { background: linear-gradient(to bottom right, var(--color-yellow), var(--color-yellow-dark)); }
.pricing-card__glow--mixed { background: linear-gradient(to bottom right, var(--color-yellow), var(--color-green)); }

.pricing-info {
  margin-top: 4rem;
  text-align: center;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 10;
}

.pricing-info__box {
  padding: 1.5rem;
  border-radius: 1rem;
  background: linear-gradient(to right, rgba(140, 189, 128, 0.2), rgba(235, 222, 47, 0.2));
  border: 2px solid var(--color-green);
}

.pricing-info__box p {
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
}

.pricing-info__box strong {
  color: var(--color-text-medium);
}

.pricing-info__box small {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

/* ===== Author Section ===== */
.author-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, #fff, var(--color-cream));
}

.author-section__bg {
  position: absolute;
  inset: 0;
}

.author-section__blob {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(64px);
}

.author-section__blob--yellow {
  top: 50%;
  left: 25%;
  transform: translateY(-50%);
  background: rgba(235, 222, 47, 0.1);
}

.author-section__blob--green {
  top: 33%;
  right: 25%;
  background: rgba(140, 189, 128, 0.1);
}

.author-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.author-image-wrap {
  position: relative;
}

.author-image {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 4px solid var(--color-green);
}

.author-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.author-image__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255,255,255,0.8), transparent, transparent);
}

.author-image__decor {
  position: absolute;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  filter: blur(32px);
  opacity: 0.5;
}

.author-image__decor--yellow {
  top: -1.5rem;
  right: -1.5rem;
  background: linear-gradient(to bottom right, var(--color-yellow), var(--color-yellow-dark));
}

.author-image__decor--green {
  bottom: -1.5rem;
  left: -1.5rem;
  background: linear-gradient(to bottom right, var(--color-green), var(--color-green-dark));
}

.author-info__name {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-text-dark);
}

.author-info__alias {
  font-size: 1.5rem;
  color: var(--color-green);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.author-info__items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.author-info__item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.author-info__item svg:first-child {
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.author-info__item svg.yellow { color: var(--color-yellow); }
.author-info__item svg.green { color: var(--color-green); }

.author-quote {
  position: relative;
  padding: 1.5rem;
  border-radius: 1rem;
  background: linear-gradient(to right, rgba(235, 222, 47, 0.2), rgba(140, 189, 128, 0.2));
  border: 2px solid var(--color-green);
  transition: transform 0.3s ease;
}

.author-quote:hover {
  transform: scale(1.02);
}

.author-quote svg {
  color: var(--color-green);
  opacity: 0.7;
  margin-bottom: 0.75rem;
}

.author-quote blockquote {
  font-size: 1.125rem;
  color: var(--color-text-dark);
  font-style: italic;
  font-weight: 500;
}

.author-quote__footer {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-quote__line {
  height: 4px;
  width: 3rem;
  background: linear-gradient(to right, var(--color-green), var(--color-yellow));
  border-radius: 4px;
}

.author-quote__name {
  font-size: 0.875rem;
  color: var(--color-text-medium);
  font-weight: 700;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
  position: relative;
  background: #fff;
}

.testimonials-section__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--color-cream), #fff, var(--color-cream));
}

.testimonials-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 10;
}

.testimonial-card {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  background: #fff;
  backdrop-filter: blur(4px);
  border: 2px solid rgba(140, 189, 128, 0.3);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--color-green);
  transform: translateY(-10px);
}

.testimonial-card__image {
  position: relative;
  height: 16rem;
  overflow: hidden;
}

.testimonial-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.testimonial-card:hover .testimonial-card__image img {
  transform: scale(1.1);
}

.testimonial-card__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #fff, rgba(255,255,255,0.5), transparent);
}

.testimonial-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  color: #fff;
}

.testimonial-card__badge--yellow { background: linear-gradient(to bottom right, var(--color-yellow), var(--color-yellow-dark)); }
.testimonial-card__badge--green { background: linear-gradient(to bottom right, var(--color-green), var(--color-green-dark)); }
.testimonial-card__badge--mixed { background: linear-gradient(to bottom right, var(--color-yellow), var(--color-green)); }

.testimonial-card__body {
  padding: 1.5rem;
}

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

.testimonial-card__quote-icon {
  color: var(--color-green);
  opacity: 0.3;
  margin-bottom: 0.75rem;
}

.testimonial-card__text {
  font-size: 1.125rem;
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.625;
  font-weight: 500;
}

.testimonial-card__author {
  color: var(--color-text-medium);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.testimonial-card__title {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.testimonial-card__hover-overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.testimonial-card:hover .testimonial-card__hover-overlay { opacity: 0.05; }

.testimonial-card__hover-overlay--yellow { background: linear-gradient(to bottom right, var(--color-yellow), var(--color-yellow-dark)); }
.testimonial-card__hover-overlay--green { background: linear-gradient(to bottom right, var(--color-green), var(--color-green-dark)); }
.testimonial-card__hover-overlay--mixed { background: linear-gradient(to bottom right, var(--color-yellow), var(--color-green)); }

.testimonials-cta {
  text-align: center;
  position: relative;
  z-index: 10;
}

.testimonials-cta__text {
  font-size: 1.25rem;
  color: var(--color-text-medium);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

/* ===== Footer ===== */
.footer {
  position: relative;
  padding: 4rem 1.5rem;
  border-top: 4px solid var(--color-green);
}

.footer__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--color-cream), #fff);
}

.footer__grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 10;
}

.footer__brand h3 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-text-medium);
}

.footer__brand p {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

.footer__brand-heart {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-green);
}

.footer__brand-heart span {
  font-size: 0.875rem;
  color: var(--color-text-medium);
}

.footer__heading {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--color-text-dark);
  font-weight: 700;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-text-light);
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: var(--color-green);
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.footer__social-link:hover {
  transform: scale(1.1);
}

.footer__social-link svg {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
}

.footer__social-link--yellow {
  background: linear-gradient(to bottom right, var(--color-yellow), var(--color-yellow-dark));
  color: var(--color-text-dark);
}

.footer__social-link--green {
  background: linear-gradient(to bottom right, var(--color-green), var(--color-green-dark));
  color: #fff;
}

.footer__social-link--mixed {
  background: linear-gradient(to bottom right, var(--color-yellow), var(--color-green));
  color: #fff;
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 2px solid var(--color-green);
  text-align: center;
  color: var(--color-text-light);
  font-size: 0.875rem;
  position: relative;
  z-index: 10;
}

/* ===== Mission Section ===== */
.mission-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, #fff, var(--color-cream));
}

.mission-section__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(235, 222, 47, 0.15), transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(140, 189, 128, 0.15), transparent 50%);
}

.mission-card {
  position: relative;
  z-index: 10;
  max-width: 48rem;
  margin: 0 auto;
  padding: 3rem;
  border-radius: 1.5rem;
  background: linear-gradient(to right, rgba(235, 222, 47, 0.15), rgba(140, 189, 128, 0.15));
  border: 2px solid var(--color-green);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.mission-card__icon {
  color: var(--color-green);
  margin: 0 auto 1.5rem;
  opacity: 0.8;
}

.mission-card__text {
  font-size: 1.25rem;
  line-height: 1.75;
  color: var(--color-text-dark);
  font-weight: 500;
}

/* ===== Video Testimonials Section ===== */
.video-section {
  position: relative;
  background: #fff;
}

.video-section__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--color-cream), #fff, var(--color-cream));
}

.video-carousel {
  position: relative;
  z-index: 10;
  max-width: 48rem;
  margin: 0 auto;
}

.video-carousel__viewport {
  overflow: hidden;
  border-radius: 1.5rem;
  border: 4px solid var(--color-green);
  box-shadow: 0 25px 50px -12px rgba(140, 189, 128, 0.3);
  background: #000;
}

.video-carousel__track {
  display: flex;
  transition: transform 0.4s ease;
}

.video-carousel__slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.video-carousel__slide video {
  width: 100%;
  display: block;
  max-height: 70vh;
  object-fit: contain;
  background: #000;
}

.video-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(to bottom right, var(--color-green), var(--color-green-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 20;
}

.video-carousel__btn:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 15px 25px -5px rgba(140, 189, 128, 0.5);
}

.video-carousel__btn--prev {
  left: -1rem;
}

.video-carousel__btn--next {
  right: -1rem;
}

.video-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.video-carousel__dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: rgba(140, 189, 128, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.video-carousel__dot.is-active {
  background: var(--color-green);
  transform: scale(1.25);
}

.video-carousel__dot:hover {
  background: var(--color-green-dark);
}

.video-carousel__counter {
  text-align: center;
  margin-top: 0.75rem;
  color: var(--color-text-light);
  font-size: 0.875rem;
  font-weight: 500;
}

/* ===== Responsive ===== */
@media (min-width: 640px) {
  .hero__buttons {
    flex-direction: row;
  }

  .hero__subtitle {
    font-size: 1.5rem;
  }

  .hero__description {
    font-size: 1.25rem;
  }
}

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

  .section__title {
    font-size: 3.75rem;
  }

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

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

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

  .pricing-card--featured {
    transform: scale(1.1);
    box-shadow: 0 25px 50px -12px rgba(235, 222, 47, 0.3);
  }

  .pricing-card--featured:hover {
    transform: scale(1.1) translateY(-10px);
  }

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

  .author-info__name {
    font-size: 3rem;
  }

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

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

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

  .mission-card__text {
    font-size: 1.5rem;
  }
}

@media (max-width: 640px) {
  .video-carousel__btn {
    width: 2.5rem;
    height: 2.5rem;
  }

  .video-carousel__btn--prev {
    left: 0.5rem;
  }

  .video-carousel__btn--next {
    right: 0.5rem;
  }

  .mission-card {
    padding: 2rem 1.5rem;
  }

  .mission-card__text {
    font-size: 1.125rem;
  }
}
