*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --cream: #faf7f2;
  --blush: #f2deda;
  --rose: #d4756a;
  --deep: #8b3a3a;
  --mocha: #2c1a1a;
  --nude: #e8cfc9;
  --sage: #b5c4b1;
  --gold: #c9a96e;
  --white: #ffffff;
  --text: #3d2323;
  --muted: #7a5c5c;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

button:disabled,
a.disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: not-allowed;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 117, 106, 0.12);
  transition: all 0.4s;
}
nav.scrolled {
  padding: 14px 5%;
  background: rgba(250, 247, 242, 0.97);
  box-shadow: 0 2px 40px rgba(139, 58, 58, 0.07);
}
.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--deep);
  letter-spacing: 0.04em;
  text-decoration: none;
}
.logo span {
  color: var(--rose);
  font-style: italic;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-links a:hover {
  color: var(--rose);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}
.nav-cta {
  background: var(--rose);
  color: var(--white) !important;
  padding: 10px 26px;
  border-radius: 50px;
  transition:
    background 0.3s,
    transform 0.2s !important;
}
.nav-cta::after {
  display: none !important;
}
.nav-cta:hover {
  background: var(--deep) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--deep);
  transition: 0.3s;
  transform-origin: center;
}
.burger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  display: flex;
}
.mobile-menu a {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.3s;
}
.mobile-menu a:hover {
  color: var(--rose);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 5% 80px;
  gap: 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(242, 222, 218, 0.6) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(181, 196, 177, 0.3) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blush);
  color: var(--deep);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s ease 0.2s forwards;
}
.hero-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--rose);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.5;
  }
}
.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--mocha);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease 0.4s forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--rose);
}
.hero p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 44px;
  font-weight: 300;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s ease 0.6s forwards;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s ease 0.8s forwards;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--rose);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.2s,
    box-shadow 0.3s;
  box-shadow: 0 8px 32px rgba(212, 117, 106, 0.3);
}
.btn-primary:hover {
  background: var(--deep);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(212, 117, 106, 0.4);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--deep);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 1.5px solid var(--nude);
  cursor: pointer;
  transition:
    border-color 0.3s,
    color 0.3s,
    transform 0.2s;
}
.btn-secondary:hover {
  border-color: var(--rose);
  color: var(--rose);
  transform: translateY(-3px);
}

.hero-visual {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateX(40px);
  animation: fadeLeft 0.9s ease 0.5s forwards;
}
.hero-card-stack {
  position: relative;
}
.hero-card {
  background: var(--white);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 20px 80px rgba(44, 26, 26, 0.1);
  position: relative;
}
.hero-card-back {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 100%;
  height: 100%;
  background: var(--blush);
  border-radius: 24px;
  z-index: -1;
}
.card-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  color: white;
  margin-bottom: 20px;
}
.card-name {
  font-weight: 500;
  color: var(--mocha);
  margin-bottom: 4px;
}
.card-role {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 20px;
}
.card-earning {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--cream);
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 14px;
}
.card-earning-label {
  font-size: 0.78rem;
  color: var(--muted);
}
.card-earning-amount {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--rose);
}
.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(181, 196, 177, 0.3);
  color: #5a7355;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 50px;
}
.floating-pill {
  position: absolute;
  background: var(--white);
  border-radius: 50px;
  padding: 12px 20px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
  box-shadow: 0 8px 32px rgba(44, 26, 26, 0.12);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 1;
  animation: float 4s ease-in-out infinite;
}
.floating-pill:nth-child(2) {
  animation-delay: 1s;
}
.pill-1 {
  top: -20px;
  left: -30px;
}
.pill-2 {
  bottom: 20px;
  right: -20px;
  animation-delay: 2s !important;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* STATS BAR */
.stats-bar {
  background: var(--mocha);
  padding: 32px 5%;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
}
.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* SECTION SHARED */
section {
  padding: 100px 5%;
}
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  background: rgba(212, 117, 106, 0.1);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--mocha);
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  color: var(--rose);
}
.section-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
  font-weight: 300;
  max-width: 520px;
}

/* HOW IT WORKS */
.how {
  background: var(--white);
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 64px;
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--blush);
  position: relative;
  transition: padding-left 0.3s;
}
.step:last-child {
  border-bottom: none;
}
.step:hover {
  padding-left: 8px;
}
.step-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--nude);
  line-height: 1;
  min-width: 52px;
  transition: color 0.3s;
}
.step:hover .step-num {
  color: var(--rose);
}
.step-content h3 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--mocha);
  margin-bottom: 8px;
}
.step-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
  font-weight: 300;
}

.how-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.skill-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  border: 1px solid transparent;
}
.skill-card:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 32px rgba(212, 117, 106, 0.12);
  border-color: var(--nude);
}
.skill-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.skill-info h4 {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--mocha);
  margin-bottom: 4px;
}
.skill-info p {
  font-size: 0.8rem;
  color: var(--muted);
}
.skill-price {
  margin-left: auto;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  color: var(--rose);
  font-weight: 600;
}

/* FEATURES */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 64px;
}
.feature-card {
  background: var(--white);
  border-radius: 24px;
  padding: 36px 32px;
  border: 1px solid var(--blush);
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(44, 26, 26, 0.1);
  border-color: transparent;
}
.feature-card:hover::before {
  transform: scaleX(1);
}
.feature-icon {
  font-size: 2rem;
  margin-bottom: 24px;
  display: block;
}
.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--mocha);
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--muted);
  font-weight: 300;
}

/* PAIN POINTS */
.pain {
  background: var(--mocha);
  position: relative;
  overflow: hidden;
}
.pain::before {
  content: '"';
  position: absolute;
  top: -80px;
  left: 3%;
  font-family: "Cormorant Garamond", serif;
  font-size: 40rem;
  color: rgba(255, 255, 255, 0.02);
  line-height: 1;
  pointer-events: none;
}
.pain .section-title {
  color: var(--cream);
}
.pain .section-sub {
  color: rgba(255, 255, 255, 0.5);
}
.pain .section-tag {
  color: var(--gold);
  background: rgba(201, 169, 110, 0.15);
}
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 64px;
}
.pain-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px;
  transition:
    background 0.3s,
    transform 0.3s;
}
.pain-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-4px);
}
.pain-before {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 12px;
}
.pain-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.3;
  margin-bottom: 20px;
}
.pain-after {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--gold);
  font-weight: 400;
}
.pain-after::before {
  content: "→";
}

/* TESTIMONIALS */
.testimonials {
  background: var(--blush);
}
.swiper {
  margin-top: 64px;
  padding-bottom: 48px !important;
}
.swiper-slide {
  height: auto;
}
.testimonial-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px 36px;
  height: 100%;
}
.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}
.stars span {
  color: var(--gold);
  font-size: 1rem;
}
.testimonial-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--mocha);
  margin-bottom: 28px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  color: white;
  flex-shrink: 0;
}
.t-name {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--mocha);
}
.t-role {
  font-size: 0.78rem;
  color: var(--muted);
}
.swiper-pagination-bullet {
  background: var(--rose) !important;
}
.swiper-pagination-bullet-active {
  width: 24px !important;
  border-radius: 4px !important;
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 64px;
  align-items: start;
}
.price-card {
  background: var(--white);
  border-radius: 28px;
  padding: 40px 36px;
  border: 1px solid var(--blush);
  position: relative;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(44, 26, 26, 0.1);
}
.price-card.featured {
  background: var(--mocha);
  border-color: transparent;
  transform: scale(1.04);
  box-shadow: 0 24px 80px rgba(44, 26, 26, 0.25);
}
.price-card.featured:hover {
  transform: scale(1.04) translateY(-6px);
}
.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rose);
  color: white;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  white-space: nowrap;
}
.price-tier {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.price-card.featured .price-tier {
  color: rgba(255, 255, 255, 0.4);
}
.price-amount {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--mocha);
  line-height: 1;
  margin-bottom: 4px;
}
.price-card.featured .price-amount {
  color: var(--cream);
}
.price-period {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 32px;
}
.price-card.featured .price-period {
  color: rgba(255, 255, 255, 0.4);
}
.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.price-features li {
  font-size: 0.88rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-card.featured .price-features li {
  color: rgba(255, 255, 255, 0.75);
}
.price-features li::before {
  content: "✓";
  width: 20px;
  height: 20px;
  background: rgba(212, 117, 106, 0.12);
  color: var(--rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}
.price-card.featured .price-features li::before {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold);
}
.btn-price {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  border: 1.5px solid var(--nude);
  color: var(--deep);
}
.btn-price:hover {
  border-color: var(--rose);
  color: var(--rose);
}
.btn-price.primary {
  background: var(--rose);
  border-color: var(--rose);
  color: white;
}
.btn-price.primary:hover {
  background: #c0655a;
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, var(--deep) 0%, var(--mocha) 100%);
  text-align: center;
  padding: 120px 5%;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(212, 117, 106, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.cta-section .section-title {
  color: var(--cream);
  max-width: 640px;
  margin: 0 auto 20px;
}
.cta-section .section-sub {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 auto 48px;
  text-align: center;
}
.cta-section .section-tag {
  color: var(--gold);
  background: rgba(201, 169, 110, 0.15);
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s;
}
.btn-cta-outline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
  transform: translateY(-3px);
}

/* FOOTER */
footer {
  background: var(--mocha);
  padding: 64px 5% 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-brand .logo {
  display: block;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.35);
  max-width: 240px;
}
.footer-col h4 {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-col ul a:hover {
  color: var(--rose);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 140px;
  }
  .hero p {
    margin: 0 auto 44px;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-visual {
    max-width: 440px;
    margin: 0 auto;
  }
  .how-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .price-card.featured {
    transform: none;
  }
  .price-card.featured:hover {
    transform: translateY(-6px);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .burger {
    display: flex;
  }
  .hero {
    padding: 120px 5% 60px;
  }
  .hero h1 {
    font-size: 2.6rem;
  }
  .stats-bar {
    gap: 32px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .pain-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  section {
    padding: 72px 5%;
  }
  body {
    cursor: auto;
  }
  .cursor,
  .cursor-ring {
    display: none;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .stats-bar {
    flex-direction: column;
    gap: 24px;
    padding: 48px 5%;
  }
}
