/* ============================================
   WHATYOUREYESREVEAL.COM — HOLISTIC IRIDOLOGY
   Sovereign Keys / Trinity144k Brand
   Built: August 16, 2026 by Kairos
   Updated: August 17, 2026 — Conversion v2
   WCAG 2.1 AA Compliant | FTC/CCPA Compliant
   ============================================ */

/* ===== DESIGN TOKENS ===== */
:root {
  /* Colors */
  --void: #050305;
  --bg: #0d0d0f;
  --bg-section: #111114;
  --bg-card: #161619;
  --gold: #c9a84c;
  --gold-bright: #e8c97a;
  --gold-dim: #8b6914;
  --cream: #e8e0d0;
  --cream-bright: #f5efe0;
  --cream-dim: rgba(232, 224, 208, 0.88);  /* was 0.7 — bumped for WCAG readability */
  --teal: #4a9d9c;
  --border: rgba(201, 168, 76, 0.2);
  --border-strong: rgba(201, 168, 76, 0.4);
  --green-glow: #6bbf6b;

  /* Fonts */
  --font-display: 'Cinzel', serif;
  --font-editorial: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;

  /* Spacing */
  --container-max: 1200px;
  --container-narrow: 760px;
  --section-padding: 6rem 0;

  /* Transitions */
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background-color: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 400;  /* was 300 — too thin for readability */
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.3s var(--ease); }
a:hover { color: var(--gold-bright); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
strong { font-weight: 600; }

/* ===== ACCESSIBILITY ===== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--gold);
  color: var(--bg);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  z-index: 9999;
  transition: top 0.3s;
}
.skip-link:focus { top: 0; }

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ===== LAYOUT ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}
.container--narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: var(--section-padding); position: relative; }
.section--dark { background: var(--bg-section); }

/* ===== TYPOGRAPHY ===== */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;  /* was 0.7rem */
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  text-align: center;
}
.section-title {
  font-family: var(--font-editorial);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--cream);
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-title--cream { color: var(--cream-bright); }
.section-title--gold { color: var(--gold); font-style: italic; }
.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--cream-dim);
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3rem;
}
.section-body {
  font-family: var(--font-body);
  font-size: 1.2rem;  /* was 1.15rem */
  font-weight: 400;   /* was 300 */
  line-height: 1.85;
  color: var(--cream-dim);
  margin-bottom: 1.75rem;
}
.section-body strong { color: var(--cream); }
.section-body--gold { color: var(--gold); font-weight: 500; }
.section-body--gold-large {
  color: var(--gold);
  font-family: var(--font-editorial);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 500;
  margin-bottom: 2rem;
}

/* ===== BUTTONS ===== */
.btn-oracle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  border: 1px solid var(--gold);
  position: relative;
  overflow: hidden;
  transition: color 0.35s var(--ease);
}
.btn-oracle::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.btn-oracle:hover { color: var(--bg); }
.btn-oracle:hover::before { transform: scaleX(1); }
.btn-oracle span { position: relative; z-index: 1; }
.btn-oracle:active { transform: scale(0.98); }

.btn-oracle-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.125rem 3rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  border: 1px solid var(--gold);
  transition: all 0.35s var(--ease);
}
.btn-oracle-solid:hover {
  color: var(--gold);
  background: transparent;
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
}
.btn-oracle-solid span { position: relative; z-index: 1; }
.btn-oracle-solid:active { transform: scale(0.98); }

/* Pulse animation for primary CTAs */
.btn--pulse {
  animation: cta-pulse 2.5s ease-in-out infinite;
}
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(201, 168, 76, 0); }
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  padding: 1.25rem 2rem;
  z-index: 1000;
  animation: cookie-slide-up 0.4s var(--ease);
}
.cookie-consent__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-consent__text {
  font-size: 0.9rem;
  color: var(--cream-dim);
  line-height: 1.5;
}
.cookie-consent__text a { text-decoration: underline; }
.cookie-consent__actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-btn {
  padding: 0.5rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--border-strong);
  transition: all 0.3s var(--ease);
}
.cookie-btn--accept { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.cookie-btn--accept:hover { background: var(--gold-bright); }
.cookie-btn--decline { background: transparent; color: var(--cream-dim); }
.cookie-btn--decline:hover { color: var(--cream); border-color: var(--gold); }

@keyframes cookie-slide-up {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 13, 15, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav__logo { width: 32px; height: 32px; }
.nav__brand-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--cream);
}
.nav__tagline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.nav__cta { padding: 0.65rem 1.75rem; font-size: 0.78rem; }

@media (max-width: 640px) {
  .nav__tagline { display: none; }
  .nav__brand-text { font-size: 0.85rem; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6rem 2rem 4rem;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url('images/hero-bg.webp') center 30% / cover no-repeat;
  filter: brightness(0.55);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    rgba(13, 13, 15, 0.92) 0%,
    rgba(13, 13, 15, 0.7) 45%,
    rgba(13, 13, 15, 0.2) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  text-align: center;
}
.hero__label {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
}
.hero__title {
  font-family: var(--font-editorial);
  font-size: clamp(2.5rem, 6.5vw, 5.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--cream-bright);
  margin-bottom: 0;
}
.hero__subtitle {
  font-family: var(--font-editorial);
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  margin-top: 0.5rem;
  margin-bottom: 2.5rem;
}
.hero__body {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(232, 224, 208, 0.9);
  max-width: 620px;
  margin: 0 auto 2.5rem;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold-bright);
  letter-spacing: 0.05em;
}
.hero__urgency-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-glow);
  animation: urgency-pulse 2s ease-in-out infinite;
}
@keyframes urgency-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(107, 191, 107, 0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(107, 191, 107, 0); }
}

/* ===== INTRO SECTION ===== */
.section--intro { position: relative; }
.section--intro .section__bg {
  position: absolute;
  inset: 0;
  background: url('images/section-bg.webp') center / cover no-repeat;
  opacity: 0.08;
}

/* ===== IRIS REVEALS ===== */
.iris-reveals {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}
.iris-reveals__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-left: 1px solid var(--border);
  transition: border-color 0.3s var(--ease);
}
.iris-reveals__item:hover { border-left-color: var(--gold); }
.iris-reveals__icon {
  font-size: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1.5;
}
.iris-reveals__item p {
  font-size: 1.05rem;
  color: var(--cream-dim);
  line-height: 1.7;
}
.iris-reveals__item strong { color: var(--cream); }

/* ===== MID-PAGE CTA ===== */
.mid-cta {
  text-align: center;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.mid-cta__text {
  font-family: var(--font-editorial);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

/* ===== ROOT CAUSE ===== */
.section--root-cause {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-section) 100%);
  text-align: center;
}

/* ===== COMPARISON CARDS ===== */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}
.compare-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem 1.75rem;
  border-radius: 2px;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.compare-card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 4px 30px rgba(201, 168, 76, 0.08);
}
.compare-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.compare-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold-bright);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.compare-card__problem {
  font-size: 0.95rem;
  color: var(--cream-dim);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.compare-card__solution {
  font-size: 0.95rem;
  color: var(--cream);
  line-height: 1.7;
}
.compare-card__solution strong { color: var(--gold-bright); }

/* ===== COST OF WAITING ===== */
.section--cost-of-waiting {
  background: linear-gradient(180deg, var(--bg-section) 0%, var(--bg) 100%);
  text-align: center;
}
.cost-comparison {
  display: flex;
  gap: 0;
  max-width: 800px;
  margin: 2rem auto 0;
  align-items: stretch;
}
.cost-comparison__col {
  flex: 1;
  padding: 2rem;
  text-align: left;
}
.cost-comparison__col--highlight {
  background: var(--bg-card);
  border: 1px solid var(--gold);
  border-radius: 4px;
  position: relative;
}
.cost-comparison__divider {
  width: 1px;
  background: var(--border);
  margin: 1rem 0;
}
.cost-comparison__label {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}
.cost-comparison__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.cost-comparison__list li {
  font-size: 0.95rem;
  color: var(--cream-dim);
  line-height: 1.5;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.cost-comparison__list span {
  color: var(--cream);
  font-weight: 500;
  white-space: nowrap;
}
.cost-comparison__col--highlight .cost-comparison__list span {
  color: var(--gold-bright);
}
.cost-comparison__total {
  font-size: 1rem;
  color: var(--cream-dim);
  font-style: italic;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.cost-comparison__total--gold {
  color: var(--gold-bright);
  font-style: normal;
  font-size: 1.3rem;
  font-weight: 500;
}
.cost-comparison__total--gold strong {
  font-size: 1.6rem;
  color: var(--cream-bright);
}

@media (max-width: 680px) {
  .cost-comparison { flex-direction: column; }
  .cost-comparison__divider { display: none; }
}

/* ===== WHAT'S INCLUDED ===== */
.includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.includes-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  border-radius: 2px;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.includes-card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 4px 30px rgba(201, 168, 76, 0.08);
}
.includes-card--featured {
  border-color: var(--gold);
  position: relative;
}
.includes-card--featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.05), transparent);
  pointer-events: none;
}
.includes-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-bright);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.includes-card__subtitle {
  font-size: 0.9rem;
  color: var(--cream-dim);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.includes-card__list { display: flex; flex-direction: column; gap: 1.25rem; }
.includes-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.includes-card__list strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.25rem;
}
.includes-card__list p {
  font-size: 0.9rem;
  color: var(--cream-dim);
  line-height: 1.6;
}
.checkmark {
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.includes-card__note {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--gold);
  font-style: italic;
}

/* ===== TESTIMONIALS ===== */
.section--testimonials { text-align: center; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  border-radius: 2px;
  transition: border-color 0.3s var(--ease);
}
.testimonial-card:hover { border-color: var(--border-strong); }
.testimonial-card__stars {
  color: var(--gold-bright);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.testimonial-card__quote {
  font-family: var(--font-editorial);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.7;
  color: var(--cream);
  margin-bottom: 1.25rem;
}
.testimonial-card__author {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.testimonials__note {
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: var(--gold-dim);
  font-style: italic;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== GUARANTEE BOX ===== */
.section--guarantee {
  background: var(--bg-section);
  padding: 4rem 0;
}
.guarantee-box {
  background: var(--bg-card);
  border: 1px solid var(--gold);
  border-radius: 4px;
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
}
.guarantee-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.04), transparent);
  pointer-events: none;
}
.guarantee-box__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-bright);
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}
.guarantee-box__items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: left;
  max-width: 560px;
  margin: 0 auto;
}
.guarantee-box__items p {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--cream-dim);
  line-height: 1.7;
}
.guarantee-box__items .checkmark {
  font-size: 1.1rem;
  margin-top: 2px;
}

/* ===== PROCESS STEPS ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.process-step {
  position: relative;
  padding-top: 1rem;
}
.process-step__number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}
.process-step__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.process-step__body {
  font-size: 0.95rem;
  color: var(--cream-dim);
  line-height: 1.7;
}

/* ===== MEET MELODY ===== */
.section--meet-melody {
  background: var(--bg-section);
}
.meet-melody {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}
.meet-melody__image img {
  width: 100%;
  border-radius: 2px;
  border: 1px solid var(--border);
}
.meet-melody__content { padding-top: 1rem; }
.meet-melody__content .section-label,
.meet-melody__content .section-title { text-align: left; }
.meet-melody__credential {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.certifications { margin-top: 2rem; }
.certifications__title {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 1rem;
}
.certifications__grid {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.cert-card {
  flex: 1;
  min-width: 150px;
  max-width: 200px;
}
.cert-card img {
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
  border-radius: 2px;
  margin-bottom: 0.5rem;
}
.cert-card p {
  font-size: 0.78rem;
  color: var(--cream-dim);
  text-align: center;
}
.certifications__note {
  font-size: 0.85rem;
  color: var(--cream-dim);
  font-style: italic;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .meet-melody { grid-template-columns: 1fr; }
  .meet-melody__image { max-width: 400px; margin: 0 auto; }
  .meet-melody__content .section-label,
  .meet-melody__content .section-title { text-align: center; }
}

/* ===== PRICING ===== */
.section--pricing {
  text-align: center;
}
.pricing__urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  font-size: 0.95rem;
  color: var(--gold-bright);
  font-weight: 400;
}
.pricing__urgency-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-glow);
  animation: urgency-pulse 2s ease-in-out infinite;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.pricing-card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 4px 40px rgba(201, 168, 76, 0.1);
}
.pricing-card--popular { border-color: var(--gold); }
.pricing-card--featured { border-color: var(--gold-bright); }
.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  white-space: nowrap;
}
.pricing-card--featured .pricing-card__badge { background: var(--gold-bright); }
.pricing-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-bright);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  padding-top: 0.5rem;
}
.pricing-card__price {
  font-family: var(--font-editorial);
  font-size: 3rem;
  font-weight: 500;
  color: var(--cream-bright);
  margin-bottom: 1rem;
}
.pricing-card__desc {
  font-size: 0.95rem;
  color: var(--cream-dim);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.pricing-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}
.pricing-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: var(--cream-dim);
  line-height: 1.5;
}
.pricing-card__credit {
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--gold);
  font-style: italic;
}
.pricing-card__btn { width: 100%; justify-content: center; margin-top: auto; }
.pricing__payment-note {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--cream-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* ===== FAQ ===== */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--cream);
  text-align: left;
  transition: color 0.3s var(--ease);
}
.faq-item__question:hover { color: var(--gold); }
.faq-item__question[aria-expanded="true"] { color: var(--gold); }
.faq-item__icon {
  font-size: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.3s var(--ease);
}
.faq-item__question[aria-expanded="true"] .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer {
  padding: 0 0 1.5rem 0;
  overflow: hidden;
}
.faq-item__answer p {
  font-size: 1rem;
  color: var(--cream-dim);
  line-height: 1.7;
}

/* ===== FINAL CTA ===== */
.section--final-cta {
  text-align: center;
  background: linear-gradient(180deg, var(--bg-section) 0%, var(--bg) 100%);
}
.section--final-cta .section-title { margin-bottom: 0.5rem; }
.section--final-cta .section-title--gold { margin-bottom: 1.5rem; }
.final-cta__urgency {
  font-size: 0.95rem;
  color: var(--gold-bright);
  margin-bottom: 2.5rem;
  font-weight: 500;
}
.final-cta__actions { margin-bottom: 2rem; }
.final-cta__contact {
  font-size: 0.95rem;
  color: var(--cream-dim);
}
.final-cta__contact a { color: var(--gold); text-decoration: underline; }

/* ===== FOOTER ===== */
.footer {
  background: var(--void);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem 2rem;
}
.footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  text-align: center;
}
.footer__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.footer__logo { width: 24px; height: 24px; }
.footer__brand span {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.08em;
}
.footer__tagline {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.footer__subtitle {
  font-size: 0.78rem;
  color: var(--cream-dim);
  margin-bottom: 1.5rem;
}
.footer__links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.footer__links a {
  font-size: 0.82rem;
  color: var(--cream-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s var(--ease);
}
.footer__links a:hover { color: var(--gold); }
.footer__disclaimer {
  font-size: 0.78rem;
  color: rgba(232, 224, 208, 0.5);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}
.footer__disclaimer a { color: var(--gold-dim); text-decoration: underline; }
.footer__copyright {
  font-size: 0.78rem;
  color: rgba(232, 224, 208, 0.35);
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  :root { --section-padding: 4rem 0; }
  .hero { min-height: 90vh; padding: 5rem 1.5rem 3rem; }
  .hero__title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero__subtitle { font-size: clamp(1.5rem, 5vw, 2.25rem); }
  .hero__body { font-size: 1.05rem; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn-oracle,
  .hero__actions .btn-oracle-solid { width: 100%; max-width: 300px; }
  .iris-reveals { grid-template-columns: 1fr; }
  .includes-grid, .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 400px; }
  .compare-grid { grid-template-columns: 1fr; max-width: 400px; }
  .guarantee-box { padding: 2rem 1.5rem; }
  .footer__links { gap: 1rem; }
}

@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
  .certifications__grid { flex-direction: column; align-items: center; }
  .cert-card { max-width: 250px; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .btn--pulse { animation: none; }
  .hero__urgency-dot, .pricing__urgency-dot { animation: none; }
}

/* ===== PRINT ===== */
@media print {
  .nav, .cookie-consent, .hero__bg, .hero__overlay, .section__bg { display: none; }
  body { color: #000; background: #fff; }
  .section { padding: 2rem 0; }
}
