/* === RESET & BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', sans-serif;
  background: #0a0f0a;
  color: #e0e0e0;
  overflow-x: hidden;
  width: 100%; max-width: 100vw;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Placeholders */
.placeholder-hero {
  width: 560px;
  background: none;
  border: none;
  border-radius: 0;
}
.placeholder-confession {
  width: 100%; height: 140px;
  background: rgba(74,222,128,0.06);
  border: 2px dashed rgba(74,222,128,0.15);
  border-radius: 12px;
  object-fit: cover;
}
.scene-label {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  color: rgba(74,222,128,0.3);
  text-align: center;
  margin-top: 8px;
  font-style: italic;
}

/* === TOP CA BAR === */
.ca-top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100001;
  background: linear-gradient(90deg, #166534 0%, #15803d 50%, #166534 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 20px;
  border-bottom: 1px solid #4ade80;
  font-family: 'Sora', sans-serif;
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 0.4s, transform 0.4s;
}
.ca-top-bar.visible {
  opacity: 1;
  transform: translateY(0);
}
.ca-top-text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #bbf7d0;
}
.ca-top-addr {
  color: #fff;
  font-weight: 900;
}
.ca-top-copy {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 14px;
  background: #4ade80;
  color: #0a0f0a;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}
.ca-top-copy:hover {
  background: #86efac;
  transform: scale(1.05);
}

/* === FLOATING PILLS === */
.pills-container {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.floating-pill {
  position: absolute;
  font-size: 20px;
  opacity: 0;
  animation: pillFall linear forwards;
  pointer-events: none;
  user-select: none;
}
@keyframes pillFall {
  0% {
    opacity: 0;
    transform: translateY(-40px) rotate(0deg);
  }
  5% {
    opacity: 0.25;
  }
  95% {
    opacity: 0.25;
  }
  100% {
    opacity: 0;
    transform: translateY(100vh) rotate(360deg);
  }
}

/* === ENTRY OVERLAY === */
.entry-overlay {
  position: fixed; inset: 0;
  z-index: 100000;
  background: #080c08;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.entry-door { text-align: center; }
.door-frame {
  will-change: transform, opacity;
  background: #111a11;
  border: 3px solid #2a4a2a;
  border-radius: 20px;
  padding: 50px 60px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 80px rgba(74,222,128,0.05);
  position: relative;
  max-width: 420px;
}
.door-sign { margin-bottom: 30px; }
.sign-icon { font-size: 48px; margin-bottom: 12px; }
.sign-title {
  font-family: 'Sora', sans-serif;
  font-size: 32px; font-weight: 900;
  color: #4ade80;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(74,222,128,0.3);
}
.sign-sub {
  font-size: 14px;
  color: #5a8a5a;
  margin-top: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.sign-hours {
  font-size: 11px;
  color: #3a6a3a;
  margin-top: 12px;
  font-style: italic;
}
.door-plaque {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  color: #4a7a4a;
  padding: 8px 16px;
  border: 1px solid #2a4a2a;
  border-radius: 6px;
  margin-bottom: 30px;
  display: inline-block;
}
.door-handle {
  display: flex; flex-direction: column;
  align-items: center; gap: 4px;
  width: 100%;
  padding: 18px 40px;
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  color: #0a0f0a;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 4px 0 #166534, 0 0 30px rgba(74,222,128,0.2);
  transition: all 0.2s;
}
.door-handle:hover { transform: translateY(-2px); box-shadow: 0 6px 0 #166534, 0 0 40px rgba(74,222,128,0.3); }
.door-handle:active { transform: translateY(2px); box-shadow: 0 2px 0 #166534; }
.handle-text {
  font-family: 'Sora', sans-serif;
  font-size: 20px; font-weight: 900;
  letter-spacing: 4px;
}
.handle-sub {
  font-size: 10px;
  opacity: 0.6;
  font-style: italic;
}

/* === NAVBAR === */
.navbar {
  position: fixed; top: 36px; left: 0; right: 0;
  z-index: 9999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 40px;
  background: rgba(10, 15, 10, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(74,222,128,0.1);
  transform: translateY(-200%);
  transition: transform 0.4s ease;
}
.navbar.visible { transform: translateY(0); }
.nav-logo {
  font-family: 'Sora', sans-serif;
  font-size: 24px; font-weight: 900;
  color: #4ade80;
  text-shadow: 0 0 10px rgba(74,222,128,0.3);
}
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 13px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  transition: color 0.3s;
}
.nav-links a:hover { color: #4ade80; }
.nav-cta {
  font-size: 13px; font-weight: 700;
  letter-spacing: 1px;
  padding: 10px 24px;
  background: #4ade80;
  color: #0a0f0a;
  border-radius: 10px;
  box-shadow: 0 3px 0 #166534;
  transition: all 0.2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 5px 0 #166534; }

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 140px 60px 80px;
  background: #0a0f0a;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(74,222,128,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: flex; align-items: center;
  justify-content: space-between; gap: 60px;
  position: relative; z-index: 2;
}
.hero-left { flex: 1; }
.hero-right { flex: 0 0 auto; }
.hero-badge {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  padding: 8px 16px;
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: 20px;
  color: #4ade80;
  margin-bottom: 24px;
}
.hero-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
}
.highlight { color: #4ade80; text-shadow: 0 0 20px rgba(74,222,128,0.3); }
.hero-sub {
  font-size: 17px; color: rgba(255,255,255,0.45);
  margin-top: 24px; line-height: 1.8;
  max-width: 520px;
}
.hero-sub strong { color: #4ade80; }
.hero-buttons { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.hero-img {
  animation: breathe 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(74,222,128,0.1));
}
@keyframes breathe {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

/* Hero CA display */
.hero-ca {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 10px 16px;
  background: rgba(74,222,128,0.06);
  border: 1px solid rgba(74,222,128,0.15);
  border-radius: 10px;
  max-width: fit-content;
}
.hero-ca-label {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.35);
}
.hero-ca-addr {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #4ade80;
  letter-spacing: 0.5px;
}
.hero-ca-copy {
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 12px;
  background: rgba(74,222,128,0.15);
  color: #4ade80;
  border: 1px solid rgba(74,222,128,0.3);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}
.hero-ca-copy:hover {
  background: #4ade80;
  color: #0a0f0a;
}

/* === BUTTONS === */
.btn {
  font-family: 'Sora', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 1px;
  padding: 14px 28px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block; text-align: center;
}
.btn-primary {
  background: #4ade80; color: #0a0f0a;
  box-shadow: 0 4px 0 #166534;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 0 #166534; }
.btn-primary:active { transform: translateY(2px); box-shadow: 0 2px 0 #166534; }
.btn-outline {
  background: transparent; color: #4ade80;
  border: 2px solid rgba(74,222,128,0.25);
}
.btn-outline:hover { border-color: #4ade80; background: rgba(74,222,128,0.08); }
.btn-big { font-size: 18px; padding: 18px 40px; }

/* Button pulse glow */
.btn-pulse {
  animation: btnPulse 2.5s ease-in-out infinite;
}
@keyframes btnPulse {
  0%, 100% {
    box-shadow: 0 4px 0 #166534, 0 0 10px rgba(74,222,128,0.15);
  }
  50% {
    box-shadow: 0 4px 0 #166534, 0 0 25px rgba(74,222,128,0.35), 0 0 50px rgba(74,222,128,0.15);
  }
}

/* === SECTIONS === */
.section { padding: 100px 60px; position: relative; overflow: hidden; }
.section-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 2; }
.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  text-align: center;
  color: #fff;
  margin-bottom: 8px;
}
.section-sub {
  text-align: center;
  font-size: 15px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 48px;
  font-style: italic;
}

/* Section background glow */
.section-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(74,222,128,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* === DIAGNOSIS CHECKLIST === */
.section-diagnosis { background: #0d120d; }
.checklist {
  display: flex; flex-direction: column; gap: 0;
  background: #111a11;
  border-radius: 16px;
  border: 1px solid rgba(74,222,128,0.1);
  overflow: hidden;
}
.check-item {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 24px;
  cursor: pointer;
  transition: background 0.2s;
  border-bottom: 1px solid rgba(74,222,128,0.06);
  user-select: none;
}
.check-item:last-child { border-bottom: none; }
.check-item:hover { background: rgba(74,222,128,0.04); }
.check-input { display: none; }
.check-box {
  width: 24px; height: 24px;
  border: 2px solid rgba(74,222,128,0.25);
  border-radius: 6px;
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s;
}
.check-input:checked + .check-box {
  background: #4ade80;
  border-color: #4ade80;
  box-shadow: 0 0 12px rgba(74,222,128,0.3);
}
.check-input:checked + .check-box::after {
  content: '\2713';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: #0a0f0a;
  font-size: 14px; font-weight: 700;
}
.check-text {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}
.check-input:checked ~ .check-text { color: #4ade80; }
.diagnosis-result {
  margin-top: 24px;
  text-align: center;
}
.result-bar {
  height: 12px;
  background: rgba(74,222,128,0.08);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 12px;
}
.result-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #4ade80, #f59e0b, #ef4444);
  border-radius: 6px;
  transition: width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.result-text {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  font-weight: 700;
}

/* === MEME STRIP === */
.meme-strip {
  width: 100%; overflow: hidden;
  background: #166534;
  padding: 14px 0;
  border-top: 2px solid #4ade80;
  border-bottom: 2px solid #4ade80;
  position: relative;
  z-index: 2;
}
.meme-strip-track {
  display: flex; width: max-content;
  animation: tickerScroll 25s linear infinite;
  gap: 0;
}
.meme-strip-track span {
  font-family: 'Sora', sans-serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: 2px;
  color: #bbf7d0;
  white-space: nowrap;
  padding: 0 24px;
}
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === THE CURE (BEFORE/AFTER) === */
.section-cure { background: #0a0f0a; }
.cure-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
}
.cure-card {
  flex: 1;
  max-width: 360px;
  background: #111a11;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(74,222,128,0.1);
  text-align: center;
}
.cure-before {
  border-color: rgba(239,68,68,0.2);
  background: linear-gradient(180deg, rgba(239,68,68,0.04) 0%, #111a11 40%);
}
.cure-after {
  border-color: rgba(74,222,128,0.3);
  background: linear-gradient(180deg, rgba(74,222,128,0.06) 0%, #111a11 40%);
  box-shadow: 0 0 30px rgba(74,222,128,0.05);
}
.cure-label {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ef4444;
  margin-bottom: 20px;
}
.cure-label-green {
  color: #4ade80;
  text-shadow: 0 0 10px rgba(74,222,128,0.3);
}
.cure-img-wrap {
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(74,222,128,0.1);
}
.cure-before .cure-img-wrap {
  border-color: rgba(239,68,68,0.2);
}
.cure-after .cure-img-wrap {
  border-color: rgba(74,222,128,0.3);
}
.cure-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cure-list {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cure-list li {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.cure-list li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: 700;
}
.cure-list-green li {
  color: rgba(255,255,255,0.7);
}
.cure-list-green li::before {
  content: '✓';
  color: #4ade80;
}
.cure-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-size: 48px;
  animation: pillBounce 2s ease-in-out infinite;
}
@keyframes pillBounce {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.2) rotate(15deg); }
}
.cure-punchline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  text-align: center;
  color: #4ade80;
  margin-top: 48px;
  text-shadow: 0 0 30px rgba(74,222,128,0.3);
}

/* === HOW TO GET $THERAPY === */
.section-howto { background: #0d120d; }
.howto-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.howto-card {
  background: #111a11;
  border-radius: 16px;
  padding: 28px 20px;
  border: 1px solid rgba(74,222,128,0.1);
  text-align: center;
  transition: all 0.3s;
  position: relative;
}
.howto-card:hover {
  transform: translateY(-4px);
  border-color: #4ade80;
  box-shadow: 0 8px 24px rgba(74,222,128,0.08);
}
.howto-step {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background: #4ade80;
  color: #0a0f0a;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(74,222,128,0.3);
}
.howto-emoji {
  font-size: 40px;
  margin: 12px 0 16px;
}
.howto-icon-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(74,222,128,0.3);
  margin: 12px auto 16px;
  display: block;
}
.howto-title {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.howto-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

/* === CONFESSIONS === */
.section-sessions { background: #0a0f0a; }
.confessions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.confession-card {
  background: #111a11;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(74,222,128,0.1);
  transition: all 0.3s;
}
.confession-card:hover {
  transform: translateY(-4px);
  border-color: #4ade80;
  box-shadow: 0 8px 24px rgba(74,222,128,0.08);
}
.confession-img {
  width: 100%; height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 14px;
  border: 1px solid rgba(74,222,128,0.1);
}
.confession-name {
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  color: #4ade80;
  margin-bottom: 10px;
}
.confession-text {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 14px;
}
.confession-tag {
  font-size: 11px;
  color: #f59e0b;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* === PRESCRIPTION (TOKENOMICS) === */
.section-treatment { background: #0d120d; }
.prescription {
  background: #111a11;
  border-radius: 20px;
  border: 2px solid rgba(74,222,128,0.15);
  overflow: hidden;
}
.rx-header {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 28px;
  background: #166534;
  color: #fff;
  flex-wrap: wrap;
}
.rx-symbol {
  font-size: 32px;
  font-weight: 900;
  color: #4ade80;
}
.rx-title {
  font-family: 'Sora', sans-serif;
  font-size: 18px; font-weight: 900;
  letter-spacing: 3px;
  color: #bbf7d0;
}
.rx-patient {
  margin-left: auto;
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.rx-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.rx-item {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid rgba(74,222,128,0.08);
  border-bottom: 1px solid rgba(74,222,128,0.08);
}
.rx-item:last-child { border-right: none; }
.rx-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 8px;
}
.rx-value {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #4ade80;
}
.rx-value.burned { color: #ef4444; }
.rx-note {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  margin-top: 8px;
  font-style: italic;
}
.rx-footer { padding: 20px 28px; text-align: center; }

/* === REVIEWS === */
.section-reviews { background: #0a0f0a; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.review-card {
  background: #111a11;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(74,222,128,0.1);
  transition: all 0.3s;
}
.review-card:hover {
  transform: translateY(-3px);
  border-color: rgba(74,222,128,0.3);
  box-shadow: 0 6px 20px rgba(74,222,128,0.06);
}
.review-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(74,222,128,0.2);
  margin-bottom: 12px;
}
.review-stars {
  font-size: 18px;
  color: #f59e0b;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.review-text {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  font-style: italic;
  margin-bottom: 12px;
}
.review-author {
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  color: #4ade80;
}

/* === CTA === */
.section-cta {
  background: #0a0f0a;
  padding: 140px 60px;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(74,222,128,0.08) 0%, transparent 60%);
  pointer-events: none;
  animation: ctaGlowPulse 4s ease-in-out infinite;
}
@keyframes ctaGlowPulse {
  0%, 100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.15);
  }
}
.cta-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.cta-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}
.cta-title .highlight { color: #4ade80; text-shadow: 0 0 30px rgba(74,222,128,0.4); }
.cta-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 36px;
  font-style: italic;
  line-height: 1.7;
}
.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.cta-ca {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(74,222,128,0.06);
  border: 1px solid rgba(74,222,128,0.15);
  border-radius: 10px;
}
.cta-ca-label {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.35);
}
.cta-ca-addr {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #4ade80;
}
.cta-ca-copy {
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 12px;
  background: rgba(74,222,128,0.15);
  color: #4ade80;
  border: 1px solid rgba(74,222,128,0.3);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}
.cta-ca-copy:hover {
  background: #4ade80;
  color: #0a0f0a;
}

/* === FOOTER === */
.footer {
  padding: 50px 60px 30px;
  background: #060a06;
  border-top: 1px solid rgba(74,222,128,0.1);
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer-logo {
  font-family: 'Sora', sans-serif;
  font-size: 32px; font-weight: 900;
  color: #4ade80;
  text-shadow: 0 0 15px rgba(74,222,128,0.3);
}
.footer-socials {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-social-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  padding: 8px 18px;
  background: rgba(74,222,128,0.06);
  border: 1px solid rgba(74,222,128,0.12);
  border-radius: 10px;
  transition: all 0.3s;
  letter-spacing: 0.5px;
}
.footer-social-link:hover {
  color: #4ade80;
  border-color: #4ade80;
  background: rgba(74,222,128,0.1);
}
.footer-ca {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(74,222,128,0.04);
  border: 1px solid rgba(74,222,128,0.1);
  border-radius: 8px;
}
.footer-ca-label {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.25);
}
.footer-ca-addr {
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #4ade80;
}
.footer-ca-copy {
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 3px 10px;
  background: rgba(74,222,128,0.15);
  color: #4ade80;
  border: 1px solid rgba(74,222,128,0.3);
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s;
}
.footer-ca-copy:hover {
  background: #4ade80;
  color: #0a0f0a;
}
.footer-disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.18);
  line-height: 1.7;
  max-width: 600px;
}
.footer-copyright {
  font-size: 11px;
  color: rgba(255,255,255,0.1);
  margin-top: 4px;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .howto-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .ca-top-bar { padding: 6px 12px; gap: 8px; }
  .ca-top-text { font-size: 10px; letter-spacing: 1px; }
  .navbar { padding: 12px 20px; top: 32px; }
  .nav-links { display: none; }
  .hero { padding: 120px 24px 60px; }
  .hero-content { flex-direction: column; text-align: center; gap: 30px; }
  .hero-right { order: -1; }
  .placeholder-hero { width: 90%; max-width: 350px; height: auto; margin: 0 auto; }
  .hero-buttons { justify-content: center; }
  .hero-sub { margin: 20px auto 0; }
  .hero-ca { margin: 20px auto 0; }
  .section { padding: 60px 24px; }
  .confessions-grid { grid-template-columns: 1fr; }
  .rx-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .door-frame { padding: 36px 30px; }
  .section-cta { padding: 80px 24px; }
  .cure-grid { flex-direction: column; align-items: center; }
  .cure-arrow { transform: rotate(90deg); padding: 10px 0; }
  .howto-grid { grid-template-columns: 1fr 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 80%; }
  .footer { padding: 40px 24px 20px; }
  .footer-socials { gap: 10px; }
}
@media (max-width: 480px) {
  .rx-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 80%; }
  .howto-grid { grid-template-columns: 1fr; }
  .cure-card { max-width: 100%; }
}
