/* ============================================
   NEURAL RESET METHOD™ — Premium Style System
   ============================================ */

/* --- VARIABLES --- */
:root {
    color-scheme: dark;
    --bg-primary: #0a0a14;
    --bg-secondary: #0f0f1e;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --gold: #c9a84c;
    --gold-light: #e8d48b;
    --gold-dark: #a08030;
    --purple: #7c6fe0;
    --purple-light: #a59bf0;
    --text-primary: #ffffff;
    --text-secondary: #9a9ab0;
    --text-muted: #6a6a80;
    --border: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(201, 168, 76, 0.3);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--gold-light);
}

::selection {
    background: rgba(201, 168, 76, 0.3);
    color: var(--text-primary);
}

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

ul {
    list-style: none;
}

/* --- SKIP LINK --- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 10000;
    padding: 12px 24px;
    background: var(--gold);
    color: var(--bg-primary);
    font-weight: 600;
    font-size: 14px;
    border-radius: 0 0 var(--radius) var(--radius);
    text-decoration: none;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 0;
    color: var(--bg-primary);
}

/* --- UTILITIES --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
    background: rgba(10, 10, 20, 0.78);
}

.section-dark {
    background: rgba(15, 15, 30, 0.85);
}

.section-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    text-align: center;
}

h2 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 60px;
    font-size: 17px;
    line-height: 1.8;
}

.trademark {
    font-size: 0.5em;
    vertical-align: super;
    color: var(--gold);
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 60px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0a0a14;
    box-shadow: 0 4px 24px rgba(201, 168, 76, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201, 168, 76, 0.45);
    color: #0a0a14;
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-large {
    padding: 20px 48px;
    font-size: 17px;
}

/* --- HEADER --- */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
}

#header.scrolled {
    background: rgba(10, 10, 20, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text-primary);
    text-transform: uppercase;
}

.logo:hover {
    color: var(--text-primary);
}

.logo span {
    color: var(--gold);
    font-size: 12px;
    vertical-align: super;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color var(--transition);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-cta {
    padding: 10px 28px;
    background: transparent;
    border: 1px solid var(--gold);
    border-radius: 60px;
    color: var(--gold) !important;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all var(--transition);
}

.nav-cta:hover {
    background: var(--gold);
    color: #0a0a14 !important;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* --- HERO --- */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
    background: transparent;
}

#neural-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(10,10,20,0.2) 0%, rgba(10,10,20,0.7) 70%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid var(--border-gold);
    border-radius: 60px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 32px;
    background: rgba(201, 168, 76, 0.05);
}

#hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(40px, 7vw, 76px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

#hero h1 em {
    font-style: italic;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.trust-item {
    text-align: center;
}

.trust-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
}

.trust-label {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
}

.scroll-indicator span {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--text-muted);
    border-bottom: 2px solid var(--text-muted);
    transform: rotate(45deg);
    margin: 0 auto;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.5; }
    50% { transform: rotate(45deg) translateY(8px); opacity: 1; }
}

/* --- PROBLEM SECTION --- */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.problem-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: all var(--transition);
}

.problem-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.problem-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    color: var(--purple-light);
}

.problem-icon svg {
    width: 100%;
    height: 100%;
}

.problem-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.problem-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

.problem-bridge {
    text-align: center;
    padding: 48px 0 0;
    border-top: 1px solid var(--border);
}

.problem-bridge p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.problem-bridge .highlight-text {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--text-primary);
    font-weight: 600;
}

.problem-bridge .highlight-text em {
    color: var(--gold);
    font-style: italic;
}

/* --- METHOD SECTION --- */
.method-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.pillar {
    text-align: center;
    padding: 48px 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.02);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.pillar:hover {
    border-color: var(--border-gold);
    transform: translateY(-6px);
}

.pillar:hover::before {
    opacity: 1;
}

.pillar-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: rgba(201, 168, 76, 0.15);
    position: absolute;
    top: 16px;
    right: 24px;
}

.pillar-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    color: var(--gold);
}

.pillar-icon svg {
    width: 100%;
    height: 100%;
}

.pillar h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 600;
}

.pillar p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
}

.method-quote {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 48px 0;
    border-top: 1px solid var(--border);
}

.method-quote blockquote {
    font-family: var(--font-heading);
    font-size: 24px;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.method-quote cite {
    font-style: normal;
    font-size: 14px;
    color: var(--gold);
    letter-spacing: 1px;
}

/* --- BENEFITS --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefit-item {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--radius);
    transition: all var(--transition);
}

.benefit-item:hover {
    background: var(--bg-card);
    transform: translateY(-4px);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
}

.benefit-icon.gold {
    color: var(--gold);
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
}

.benefit-item h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.benefit-item p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* --- HOW IT WORKS --- */
.steps-container {
    max-width: 700px;
    margin: 60px auto 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 32px;
}

.step-number {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-primary);
}

.step-content h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 600;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
}

.step-line {
    width: 2px;
    height: 48px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    margin-left: 31px;
}

/* --- TESTIMONIALS --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: all var(--transition);
}

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

.stars {
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 4px;
    margin-bottom: 16px;
}

.testimonial-card > p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 15px;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-muted);
}

/* --- PRICING --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.04);
}

/* POPULAR CARD */
.pricing-card.popular {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.04);
    transform: scale(1.03);
    box-shadow: 0 0 60px rgba(201, 168, 76, 0.1);
}

.pricing-card.popular:hover {
    transform: scale(1.03) translateY(-6px);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-primary);
    padding: 6px 24px;
    border-radius: 60px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    white-space: nowrap;
}

/* ELITE CARD */
.pricing-card.elite {
    border-color: var(--gold);
    background: linear-gradient(180deg, rgba(201, 168, 76, 0.08) 0%, rgba(201, 168, 76, 0.02) 100%);
    box-shadow: 0 0 80px rgba(201, 168, 76, 0.08);
}

.elite-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1a1a2e, #2a2a4e);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 6px 24px;
    border-radius: 60px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    white-space: nowrap;
}

.pricing-tier {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.pricing-duration {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.pricing-price {
    margin-bottom: 8px;
    line-height: 1;
}

.pricing-price .currency {
    font-size: 24px;
    font-weight: 600;
    vertical-align: top;
    margin-right: 2px;
    color: var(--text-secondary);
}

.pricing-price .amount {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
}

.pricing-price .vat {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

.pricing-tagline {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 28px;
    font-style: italic;
}

.pricing-features {
    text-align: left;
    margin-bottom: 32px;
    flex-grow: 1;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    gap: 10px;
    align-items: flex-start;
    line-height: 1.5;
}

.pricing-features .check {
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-features .check.gold {
    color: var(--gold-light);
    text-shadow: 0 0 8px rgba(201, 168, 76, 0.5);
}

.btn-pricing {
    width: 100%;
    padding: 16px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-primary);
    border-radius: 60px;
    font-size: 15px;
    font-weight: 600;
}

.btn-pricing:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-popular {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-primary);
    border: none;
}

.btn-popular:hover {
    color: var(--bg-primary);
    box-shadow: 0 4px 24px rgba(201, 168, 76, 0.4);
}

.btn-elite {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-primary);
    border: none;
}

.btn-elite:hover {
    color: var(--bg-primary);
    box-shadow: 0 4px 24px rgba(201, 168, 76, 0.4);
}

.pricing-guarantee {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 16px;
}

.pricing-limited {
    font-size: 12px;
    color: var(--gold);
    margin-top: 8px;
    font-weight: 500;
}

.pricing-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 15px;
}

.pricing-note a {
    color: var(--gold);
}

/* --- PAYMENT STRIP (Pricing Section) --- */
.pricing-payment-strip {
    text-align: center;
    padding: 32px 0;
    margin-bottom: 24px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.pricing-payment-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--text-muted);
}

.pricing-payment-inner strong {
    color: var(--text-secondary);
}

.lock-icon {
    width: 16px;
    height: 16px;
    color: var(--gold);
}

.pricing-payment-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pricing-payment-icons svg {
    width: 48px;
    height: 30px;
    border-radius: 4px;
    opacity: 0.7;
    transition: opacity var(--transition);
}

.pricing-payment-icons svg:hover {
    opacity: 1;
}

/* --- DOCTOR ENDORSEMENT --- */
.endorsement-section {
    padding: 60px 0;
    z-index: 1;
    background: rgba(10, 10, 20, 0.88);
    border-bottom: 1px solid var(--border);
}

.endorsement-card {
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 48px;
    background: linear-gradient(135deg, rgba(80, 140, 255, 0.04), rgba(124, 111, 224, 0.04));
    border: 1px solid rgba(80, 140, 255, 0.15);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.endorsement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(80, 140, 255, 0.5), var(--gold), rgba(80, 140, 255, 0.5), transparent);
}

.endorsement-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    min-width: 200px;
}

.doctor-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(80, 140, 255, 0.3);
    box-shadow: 0 0 30px rgba(80, 140, 255, 0.15), 0 0 60px rgba(80, 140, 255, 0.05);
    position: relative;
}

.doctor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-avatar-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(15, 15, 40, 0.9), rgba(20, 20, 50, 0.9));
}

.doctor-avatar-fallback svg {
    width: 80px;
    height: 80px;
}

.doctor-credentials {
    text-align: center;
}

.doctor-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.doctor-title {
    display: block;
    font-size: 12px;
    color: rgba(80, 140, 255, 0.8);
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.doctor-affiliation {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.doctor-badges {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.credential-badge {
    padding: 4px 12px;
    border-radius: 60px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(80, 140, 255, 0.25);
    color: rgba(80, 140, 255, 0.8);
    background: rgba(80, 140, 255, 0.05);
}

.endorsement-right {
    position: relative;
    flex: 1;
}

.endorsement-quote-mark {
    font-family: var(--font-heading);
    font-size: 80px;
    line-height: 1;
    color: rgba(80, 140, 255, 0.15);
    position: absolute;
    top: -20px;
    left: -8px;
}

.endorsement-quote {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.endorsement-quote strong {
    color: var(--text-primary);
    font-style: normal;
}

.endorsement-verification {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(80, 140, 255, 0.7);
    font-weight: 500;
}

.verified-icon {
    width: 16px;
    height: 16px;
    color: rgba(80, 140, 255, 0.8);
}

@media (max-width: 768px) {
    .endorsement-card {
        flex-direction: column;
        padding: 32px 24px;
        text-align: center;
        gap: 24px;
    }

    .endorsement-left {
        min-width: auto;
    }

    .endorsement-quote-mark {
        position: static;
        margin-bottom: -30px;
    }

    .endorsement-quote {
        font-size: 15px;
    }

    .endorsement-verification {
        justify-content: center;
    }
}

/* --- QUICK PACKAGES PREVIEW --- */
#quick-packages {
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
    z-index: 1;
    background: rgba(10, 10, 20, 0.8);
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.quick-card {
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-decoration: none;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.quick-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    background: var(--bg-card-hover);
}

.quick-card.quick-popular {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.04);
}

.quick-card.quick-popular:hover {
    background: rgba(201, 168, 76, 0.08);
}

.quick-card.quick-elite {
    border-color: var(--gold);
    background: linear-gradient(180deg, rgba(201, 168, 76, 0.06) 0%, rgba(201, 168, 76, 0.02) 100%);
}

.quick-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-primary);
    padding: 3px 12px;
    border-radius: 60px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.quick-badge-elite {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}

.quick-tier {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.quick-duration {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.quick-price {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.quick-price span {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
    font-family: var(--font-body);
}

.quick-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
    min-height: 42px;
}

.quick-cta {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.5px;
    transition: all var(--transition);
}

.quick-card:hover .quick-cta {
    color: var(--gold-light);
    letter-spacing: 1px;
}

/* Payment methods bar under quick packages */
.payment-methods-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.payment-label {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.payment-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.payment-icon {
    width: 52px;
    height: 34px;
    border-radius: 4px;
    overflow: hidden;
    opacity: 0.6;
    transition: opacity var(--transition);
}

.payment-icon:hover {
    opacity: 1;
}

.payment-icon svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 1024px) {
    .quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .quick-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .payment-methods-bar {
        flex-direction: column;
        gap: 12px;
    }
}

/* --- COMPARISON TABLE --- */
.table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 800px;
}

.comparison-table th,
.comparison-table td {
    padding: 14px 16px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.comparison-table th {
    background: rgba(255, 255, 255, 0.03);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    position: sticky;
    top: 60px;
    z-index: 2;
}

.comparison-table th small {
    display: block;
    color: var(--gold);
    font-weight: 700;
    margin-top: 4px;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.02);
    min-width: 160px;
}

.comparison-table td {
    color: var(--text-muted);
}

.comparison-table .highlight-col {
    background: rgba(201, 168, 76, 0.05);
    color: var(--text-primary);
}

.comparison-table .elite-col {
    background: rgba(201, 168, 76, 0.08);
    color: var(--gold-light);
    font-weight: 500;
}

.comparison-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

.comparison-table tbody tr:hover td.highlight-col {
    background: rgba(201, 168, 76, 0.08);
}

.comparison-table tbody tr:hover td.elite-col {
    background: rgba(201, 168, 76, 0.12);
}

/* --- BRAIN MAPPING SERVICE --- */
#brain-mapping {
    background: rgba(10, 10, 20, 0.85);
    overflow: hidden;
}

.brain-mapping-wrapper {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.bm-visual {
    position: sticky;
    top: 120px;
    text-align: center;
}

.bm-brain-icon {
    width: 240px;
    height: 240px;
    margin: 0 auto 32px;
    position: relative;
}

.bm-brain-icon::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    bottom: -20px;
    left: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 111, 224, 0.15) 0%, transparent 70%);
    animation: brainPulse 3s ease-in-out infinite;
}

@keyframes brainPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.08); opacity: 1; }
}

.bm-brain-icon svg {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.bm-wave-labels {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.bm-wave {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
}

.bm-wave-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--wave-color);
    flex-shrink: 0;
    box-shadow: 0 0 8px var(--wave-color);
}

.bm-wave-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    min-width: 75px;
}

.bm-wave-desc {
    font-size: 12px;
    color: var(--text-muted);
}

.bm-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.bm-price-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 40px;
    background: linear-gradient(135deg, rgba(124, 111, 224, 0.12), rgba(80, 140, 255, 0.08));
    border: 1px solid rgba(124, 111, 224, 0.3);
    border-radius: var(--radius-lg);
    align-self: flex-start;
    position: relative;
    overflow: hidden;
}

.bm-price-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #7c6fe0, #508cff, #c9a84c, transparent);
}

.bm-price-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--purple-light);
    margin-bottom: 8px;
}

.bm-price {
    line-height: 1;
}

.bm-currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-secondary);
    vertical-align: top;
}

.bm-amount {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    color: var(--text-primary);
}

.bm-price-sub {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 8px;
}

.bm-heading {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
}

.bm-heading br + * {
    color: var(--gold);
}

.bm-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.bm-what-you-get h4,
.bm-conditions h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--gold);
}

.bm-what-you-get ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bm-what-you-get li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.bm-what-you-get li:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(124, 111, 224, 0.3);
    transform: translateX(4px);
}

.bm-check {
    color: var(--purple-light);
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.bm-what-you-get li strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.bm-what-you-get li span {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.bm-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bm-tag {
    padding: 6px 16px;
    border-radius: 60px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(124, 111, 224, 0.25);
    color: var(--purple-light);
    background: rgba(124, 111, 224, 0.06);
    transition: all var(--transition);
}

.bm-tag:hover {
    border-color: rgba(124, 111, 224, 0.5);
    background: rgba(124, 111, 224, 0.12);
    transform: translateY(-2px);
}

.bm-cta-area {
    text-align: center;
    padding: 32px;
    background: linear-gradient(135deg, rgba(124, 111, 224, 0.08), rgba(201, 168, 76, 0.06));
    border: 1px solid rgba(124, 111, 224, 0.2);
    border-radius: var(--radius-lg);
}

.bm-cta {
    background: linear-gradient(135deg, #7c6fe0, #508cff) !important;
    color: white !important;
    box-shadow: 0 4px 24px rgba(124, 111, 224, 0.4);
}

.bm-cta:hover {
    box-shadow: 0 8px 40px rgba(124, 111, 224, 0.5);
    transform: translateY(-2px);
}

.bm-guarantee {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 16px;
}

.bm-quote-block {
    text-align: center;
    padding: 24px;
    border-left: 3px solid var(--purple);
    background: rgba(124, 111, 224, 0.04);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.bm-quote-block p {
    font-family: var(--font-heading);
    font-size: 18px;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .brain-mapping-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bm-visual {
        position: static;
        max-width: 350px;
        margin: 0 auto;
    }

    .bm-brain-icon {
        width: 180px;
        height: 180px;
    }

    .bm-price-badge {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .bm-brain-icon {
        width: 150px;
        height: 150px;
    }

    .bm-heading {
        font-size: 22px;
    }

    .bm-amount {
        font-size: 44px;
    }

    .bm-what-you-get li {
        padding: 12px;
    }

    .bm-cta-area {
        padding: 20px;
    }

    .bm-tags {
        gap: 6px;
    }

    .bm-tag {
        font-size: 11px;
        padding: 5px 12px;
    }
}

/* --- FAQ --- */
.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 500;
    color: var(--text-primary);
    text-align: left;
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-icon {
    font-size: 24px;
    color: var(--gold);
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding-bottom: 24px;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
}

/* --- FINAL CTA --- */
.cta-block {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(124, 111, 224, 0.08));
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
}

.cta-block h2 {
    margin-bottom: 16px;
}

.cta-block p {
    color: var(--text-secondary);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-muted);
}

/* --- FOOTER --- */
#footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
    background: rgba(10, 10, 20, 0.95);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 16px;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 14px;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.footer-disclaimer {
    margin-bottom: 24px;
}

.footer-disclaimer p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-copy {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy p {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    color: var(--text-muted);
    transition: color var(--transition);
}

.footer-social a:hover {
    color: var(--gold);
}

/* --- MOBILE NAV OVERLAY --- */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 20, 0.98);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 36px;
    cursor: pointer;
}

.mobile-nav-overlay ul {
    text-align: center;
}

.mobile-nav-overlay li {
    margin-bottom: 24px;
}

.mobile-nav-overlay a {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--text-primary);
    font-weight: 600;
}

.mobile-nav-overlay a:hover {
    color: var(--gold);
}

.mobile-nav-overlay .btn {
    font-family: var(--font-body);
    font-size: 16px;
    margin-top: 16px;
}

/* --- SCROLL ANIMATIONS --- */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="zoom-in"] {
    transform: scale(0.95);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .pricing-card.popular {
        transform: none;
    }

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

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

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

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }

    .method-pillars {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .trust-bar {
        gap: 20px;
    }

    .trust-divider {
        display: none;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .step {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .step-line {
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-copy {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .cta-block {
        padding: 48px 24px;
    }

    .cta-trust {
        flex-direction: column;
        gap: 12px;
    }

    .comparison-table {
        font-size: 12px;
    }

    .method-quote blockquote {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    #hero h1 {
        font-size: 36px;
    }

    .hero-badge {
        font-size: 9px;
        letter-spacing: 2px;
        padding: 6px 16px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .pricing-price .amount {
        font-size: 44px;
    }

    .section {
        padding: 60px 0;
    }

    .section-dark {
        padding: 60px 0;
    }

    .logo {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .pillar {
        padding: 32px 20px;
    }

    .pillar-number {
        font-size: 32px;
    }

    .problem-card {
        padding: 24px 20px;
    }

    .trust-bar {
        gap: 16px;
    }

    .trust-number {
        font-size: 22px;
    }

    .trust-label {
        font-size: 10px;
    }

    .endorsement-card {
        flex-direction: column;
        padding: 24px 20px;
        gap: 20px;
    }

    .endorsement-left {
        min-width: auto;
    }

    .doctor-photo {
        width: 90px;
        height: 90px;
    }

    .doctor-name {
        font-size: 17px;
    }

    .endorsement-quote {
        font-size: 14px;
    }

    .endorsement-quote-mark {
        font-size: 60px;
        position: static;
        margin-bottom: -25px;
        text-align: center;
    }

    .endorsement-verification {
        justify-content: center;
    }

    .quick-grid {
        max-width: 100%;
    }

    .quick-card {
        padding: 20px 16px;
    }

    .quick-duration {
        font-size: 18px;
    }

    .quick-price {
        font-size: 24px;
    }

    .pricing-grid {
        max-width: 100%;
    }

    .pricing-card {
        padding: 32px 20px;
    }

    .payment-methods-bar {
        flex-direction: column;
        gap: 10px;
    }

    .payment-icons {
        justify-content: center;
    }

    .payment-icon {
        width: 44px;
        height: 28px;
    }

    h2 {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .problem-bridge .highlight-text {
        font-size: 22px;
    }

    .cta-block {
        padding: 36px 16px;
    }

    .cta-block p {
        font-size: 15px;
    }

    .cta-trust {
        flex-direction: column;
        gap: 8px;
        font-size: 13px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .comparison-table {
        min-width: 650px;
        font-size: 11px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 8px;
    }

    .method-quote blockquote {
        font-size: 18px;
    }

    .faq-question {
        font-size: 15px;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 16px;
    }

    #hero h1 {
        font-size: 30px;
    }

    .hero-badge {
        font-size: 8px;
        padding: 5px 12px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 14px;
    }

    .pricing-price .amount {
        font-size: 38px;
    }

    h2 {
        font-size: 22px;
    }

    .trust-number {
        font-size: 20px;
    }
}

/* --- FOCUS-VISIBLE STATES --- */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.btn:focus-visible,
.btn-pricing:focus-visible,
.bm-cta:focus-visible,
.nav-cta:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.2);
}

.faq-question:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: -2px;
}

.mobile-toggle:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

.mobile-nav-close:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

/* --- HOVER: HOVER GUARD --- */
@media (hover: hover) {
    .problem-card:hover {
        transform: translateY(-4px);
    }

    .pillar:hover {
        transform: translateY(-6px);
    }

    .benefit-item:hover {
        transform: translateY(-4px);
    }

    .testimonial-card:hover {
        transform: translateY(-4px);
    }

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

    .pricing-card.popular:hover {
        transform: scale(1.03) translateY(-6px);
    }

    .quick-card:hover {
        transform: translateY(-4px);
    }

    .bm-what-you-get li:hover {
        transform: translateX(4px);
    }

    .bm-tag:hover {
        transform: translateY(-2px);
    }

    .bm-cta:hover {
        transform: translateY(-2px);
    }

    .btn-primary:hover {
        transform: translateY(-2px);
    }

    .download-btn:hover {
        transform: translateY(-1px);
    }
}

/* Remove transforms from base hover for touch devices */
@media (hover: none) {
    .problem-card:hover,
    .pillar:hover,
    .benefit-item:hover,
    .testimonial-card:hover,
    .pricing-card:hover,
    .pricing-card.popular:hover,
    .quick-card:hover,
    .bm-what-you-get li:hover,
    .bm-tag:hover,
    .bm-cta:hover,
    .btn-primary:hover,
    .download-btn:hover {
        transform: none;
    }
}

/* --- PREFERS 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;
    }

    html {
        scroll-behavior: auto;
    }

    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .scroll-arrow,
    .bm-brain-icon::before {
        animation: none;
    }
}

/* --- PRINT STYLES --- */
@media print {
    body {
        background: #fff;
        color: #000;
    }

    #neural-canvas,
    .hero-overlay,
    .scroll-indicator,
    .mobile-toggle,
    .mobile-nav-overlay,
    .nav-cta,
    #header {
        display: none !important;
    }

    .section,
    .section-dark,
    #brain-mapping,
    #footer,
    .endorsement-section {
        background: #fff !important;
        color: #000 !important;
    }

    h1, h2, h3, h4, h5, h6,
    .pricing-price .amount,
    .bm-amount,
    .trust-number,
    .pillar-number {
        color: #000 !important;
    }

    p, li, span, cite, blockquote {
        color: #333 !important;
    }

    a {
        color: #000 !important;
        text-decoration: underline;
    }

    .btn, .btn-pricing, .bm-cta {
        border: 1px solid #000 !important;
        background: none !important;
        color: #000 !important;
        box-shadow: none !important;
    }

    .pricing-card,
    .problem-card,
    .pillar,
    .testimonial-card,
    .quick-card,
    .endorsement-card {
        border: 1px solid #ccc !important;
        background: #fff !important;
        break-inside: avoid;
    }

    .pricing-grid,
    .problem-grid,
    .method-pillars,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .bm-brain-icon::before {
        display: none;
    }
}
