/* ==========================================================================
   CSS VARIABLES & THEME
   ========================================================================== */
:root {
    /* Colors */
    --c-bg-dark: #0B0C1E;
    --c-surface: #12142B;
    --c-surface-hover: #1A1C36;
    --c-gold: #C9A84C;
    --c-gold-soft: #E8C97A;
    --c-text-primary: #F0EDE6;
    --c-text-muted: #8B8FA8;
    --c-success: #4CAF82;
    --c-border: rgba(201, 168, 76, 0.2);
    --c-border-light: rgba(255, 255, 255, 0.05);
    
    /* Gradients */
    --grad-gold: linear-gradient(135deg, var(--c-gold-soft), var(--c-gold));
    --grad-dark: linear-gradient(180deg, rgba(11, 12, 30, 0) 0%, rgba(11, 12, 30, 1) 100%);
    
    /* Typography */
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'DM Sans', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;
    
    /* Effects */
    --shadow-gold: 0 0 20px rgba(201, 168, 76, 0.2);
    --shadow-gold-lg: 0 0 40px rgba(201, 168, 76, 0.4);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --radius-md: 12px;
    --radius-lg: 24px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--c-bg-dark);
    color: var(--c-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--c-bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--c-surface-hover);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--c-gold);
}

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

.site-wrapper {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
}

a {
    color: var(--c-text-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: var(--space-lg);
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(201, 168, 76, 0.1);
}

.section-title.left-align {
    text-align: left;
}

/* ==========================================================================
   COMPONENTS
   ========================================================================== */
/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-smooth);
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--grad-gold);
    color: var(--c-bg-dark);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    box-shadow: var(--shadow-gold-lg);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--c-gold-soft);
    border: 1px solid var(--c-gold);
}

.btn-outline:hover {
    background: rgba(201, 168, 76, 0.1);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.shimmer-btn {
    position: relative;
    overflow: hidden;
}

.shimmer-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-20deg);
    animation: shimmer 3s infinite;
}

/* Icons */
.lucide {
    width: 1.2em;
    height: 1.2em;
}

/* Badges */
.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.gold-badge {
    background: var(--grad-gold);
    color: var(--c-bg-dark);
    box-shadow: var(--shadow-gold);
}

.purple-badge {
    background: linear-gradient(135deg, #9D7AEC, #6C4AC4);
    color: white;
    box-shadow: 0 0 20px rgba(157, 122, 236, 0.4);
}

/* ==========================================================================
   LAYOUT SECTIONS
   ========================================================================== */

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    transition: background-color var(--transition-fast), padding var(--transition-fast);
    padding: 1.5rem 0;
}

.header.scrolled {
    background-color: rgba(11, 12, 30, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--c-border-light);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--c-gold-soft);
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    font-size: 0.9rem;
    font-weight: 500;
}

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

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--space-xl);
    padding-bottom: var(--space-lg);
    text-align: center;
    position: relative;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
}

.floating-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--c-border-light);
    font-size: 0.85rem;
    margin-bottom: var(--space-md);
    backdrop-filter: blur(4px);
    animation: float 4s ease-in-out infinite;
}

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

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: var(--space-sm);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--c-text-muted);
    margin-bottom: var(--space-md);
    max-width: 600px;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: var(--space-lg);
}

.hero-quote {
    margin-top: -1rem; /* pull up closer to CTAs */
    margin-bottom: var(--space-xl);
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-quote blockquote {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
    color: var(--c-gold-soft);
    letter-spacing: 1px;
}

.hero-quote cite {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--c-text-muted);
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-graphic {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.zodiac-wheel {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.orb {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--c-gold-soft) 0%, rgba(201, 168, 76, 0) 70%);
    box-shadow: var(--shadow-gold-lg);
    animation: pulse 4s infinite alternate;
}

.ring {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 1px solid var(--c-border);
    animation: spin 30s linear infinite;
}

.ring::before, .ring::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--c-gold);
    border-radius: 50%;
    box-shadow: var(--shadow-gold);
}

.ring::before { top: -5px; left: 50%; transform: translateX(-50%); }
.ring::after { bottom: -5px; left: 50%; transform: translateX(-50%); }

.ring-2 {
    width: 300px;
    height: 300px;
    border: 1px dashed var(--c-border-light);
    animation: spin 40s linear infinite reverse;
}

/* How It Works */
.how-it-works {
    padding: var(--space-xl) 0;
    position: relative;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.step-card {
    background: var(--c-surface);
    padding: var(--space-lg) var(--space-md);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--c-border-light);
    transition: transform var(--transition-smooth);
}

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

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
    background: rgba(201, 168, 76, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--c-gold);
}

.step-icon .lucide {
    width: 32px;
    height: 32px;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    font-family: var(--font-body);
}

.step-card p {
    color: var(--c-text-muted);
}

/* Pricing */
.pricing {
    padding: var(--space-xl) 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    align-items: center;
}

.pricing-card {
    background: var(--c-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--c-border-light);
    padding: var(--space-lg) var(--space-md);
    position: relative;
    transition: all var(--transition-smooth);
}

.pricing-card:hover {
    border-color: var(--c-border);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    transform: translateY(-5px);
}

.pricing-card.highlighted {
    background: linear-gradient(180deg, var(--c-surface-hover) 0%, var(--c-surface) 100%);
    border: 1px solid var(--c-gold);
    box-shadow: var(--shadow-gold);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.highlighted:hover {
    transform: scale(1.05) translateY(-5px);
}

.card-header {
    text-align: center;
    border-bottom: 1px solid var(--c-border-light);
    padding-bottom: var(--space-md);
    margin-bottom: var(--space-md);
}

.card-header h3 {
    font-family: var(--font-body);
    font-size: 1.5rem;
    color: var(--c-text-muted);
    margin-bottom: var(--space-xs);
}

.pricing-card.highlighted .card-header h3 {
    color: var(--c-gold-soft);
}

.price {
    font-size: 4rem;
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.price span {
    font-size: 2rem;
    vertical-align: top;
}

.coverage {
    color: var(--c-text-muted);
    font-size: 0.9rem;
}

.features-list {
    margin-bottom: var(--space-lg);
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.features-list li .lucide {
    color: var(--c-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.delivery-time {
    text-align: center;
    font-size: 0.85rem;
    color: var(--c-text-muted);
    margin-bottom: var(--space-md);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.highlight-text {
    color: var(--c-gold-soft);
}

/* What You Will Know */
.what-you-will-know {
    padding: var(--space-xl) 0;
    background: radial-gradient(circle at top right, rgba(201, 168, 76, 0.05) 0%, transparent 60%);
    position: relative;
}

.what-you-will-know .subtitle {
    color: var(--c-text-muted);
    font-size: 1.1rem;
    margin-bottom: var(--space-xl);
}

.subsection-title {
    text-align: center;
    font-size: 2rem;
    color: var(--c-gold-soft);
    margin-bottom: var(--space-lg);
    font-family: var(--font-display);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.feature-card {
    background: var(--c-surface);
    border: 1px solid var(--c-border-light);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
    border-color: var(--c-gold-dark);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.feature-icon .lucide {
    color: var(--c-gold);
}

.feature-card h4 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--c-text-primary);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--c-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.closing-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: var(--space-lg);
    background: var(--c-surface);
    border: 1px solid var(--c-border-light);
    border-radius: var(--radius-lg);
}

.closing-cta p {
    font-size: 1.1rem;
    color: var(--c-text-primary);
    margin-bottom: 0.5rem;
}

.closing-cta .highlight-text {
    color: var(--c-gold-soft);
    font-weight: 500;
}

.mt-4 {
    margin-top: 1.5rem;
}

/* Order Form Section */
.order-section {
    padding: var(--space-xl) 0;
    background: radial-gradient(circle at center, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
}

.form-container {
    max-width: 800px;
}

.form-wrapper {
    background: var(--c-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--c-border-light);
    padding: var(--space-lg);
    box-shadow: var(--shadow-card);
}

.form-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-lg);
    position: relative;
}

.progress-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--c-border-light);
    z-index: 0;
    transform: translateY(-50%);
}

.progress-step {
    background: var(--c-surface);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--c-text-muted);
    z-index: 1;
    border: 1px solid var(--c-border-light);
    transition: all var(--transition-fast);
}

.progress-step.active {
    background: var(--c-surface-hover);
    color: var(--c-gold-soft);
    border-color: var(--c-gold);
    box-shadow: 0 0 15px rgba(201, 168, 76, 0.2);
}

.progress-step.completed {
    background: var(--c-success);
    color: white;
    border-color: var(--c-success);
}

.form-step {
    display: none;
    animation: fadeIn var(--transition-smooth);
}

.form-step.active {
    display: block;
}

.step-title {
    font-family: var(--font-body);
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--c-border-light);
}

/* Form Plan Selection */
.plan-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: var(--space-lg);
}

.plan-option input {
    display: none;
}

.plan-card-mini {
    background: var(--c-bg-dark);
    border: 1px solid var(--c-border-light);
    border-radius: var(--radius-md);
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.plan-option input:checked + .plan-card-mini {
    border-color: var(--c-gold);
    background: rgba(201, 168, 76, 0.05);
}

.plan-option input:checked + .plan-card-mini.glow {
    box-shadow: var(--shadow-gold);
}

.plan-card-mini h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 1.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--c-gold-soft);
}

/* Form Inputs */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: var(--space-lg);
}

.full-width { grid-column: span 2; }
.half-width { grid-column: span 1; }

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--c-text-primary);
}

.optional {
    color: var(--c-text-muted);
    font-size: 0.8rem;
}

.field-note {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.8rem;
    color: var(--c-text-muted);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"],
select {
    width: 100%;
    background: var(--c-bg-dark);
    border: 1px solid var(--c-border-light);
    color: var(--c-text-primary);
    padding: 1rem;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

input:focus, select:focus {
    outline: none;
    border-color: var(--c-gold);
    box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.2);
}

::placeholder {
    color: var(--c-text-muted);
}

.phone-input {
    display: flex;
    gap: 0.5rem;
}

.code-select {
    width: 80px !important;
    text-align: center;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
}

.form-actions.split {
    justify-content: space-between;
}

/* Order Summary */
.order-summary {
    background: var(--c-bg-dark);
    border: 1px solid var(--c-border-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: var(--space-md);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.summary-row.total {
    border-top: 1px solid var(--c-border-light);
    margin-top: 1rem;
    padding-top: 1rem;
    font-size: 1.25rem;
}

.summary-row.total strong {
    color: var(--c-gold-soft);
    font-size: 1.5rem;
}

.payment-info {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.secure-note {
    color: var(--c-success);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.payment-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--c-text-muted);
    font-size: 0.9rem;
}

.delivery-note {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--c-text-muted);
}

/* Sample Report */
.sample-report {
    padding: var(--space-xl) 0;
    background: var(--c-surface);
    border-top: 1px solid var(--c-border-light);
    border-bottom: 1px solid var(--c-border-light);
}

.sample-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.report-features {
    margin: var(--space-md) 0;
}

.report-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.report-features li .lucide {
    color: var(--c-gold-soft);
}

.sample-visual {
    position: relative;
    perspective: 1000px;
}

.frosted-report {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 500px;
    box-shadow: var(--shadow-card);
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform var(--transition-smooth);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.frosted-report:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

.mock-header {
    border-bottom: 1px solid var(--c-border-light);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mock-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--c-gold);
    opacity: 0.5;
}

.mock-title {
    width: 60%;
    height: 20px;
    background: var(--c-border-light);
    border-radius: 4px;
}

.mock-chart {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid var(--c-border-light);
    margin: 0 auto 2rem;
    position: relative;
}

.mock-chart::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--c-border-light);
}

.mock-chart::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--c-border-light);
}

.mock-line {
    height: 12px;
    background: var(--c-border-light);
    border-radius: 4px;
    margin-bottom: 1rem;
    width: 100%;
}

.mock-line.short {
    width: 70%;
}

.view-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 12, 30, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
    backdrop-filter: blur(2px);
}

.frosted-report:hover .view-overlay {
    opacity: 1;
}

.view-overlay span {
    background: var(--c-surface);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--c-gold);
    color: var(--c-gold-soft);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: var(--space-md);
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--c-bg-dark);
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    border-radius: var(--radius-lg);
    border: 1px solid var(--c-border);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-gold-lg);
    animation: scaleIn var(--transition-fast);
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--c-text-muted);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.close-modal:hover {
    color: white;
}

.modal-header {
    padding: 2rem;
    border-bottom: 1px solid var(--c-border-light);
}

.modal-header h3 {
    font-family: var(--font-body);
}

.modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex-grow: 1;
}

.mock-pdf {
    background: #ffffff;
    color: #333;
    padding: 3rem;
    border-radius: 8px;
    font-family: 'Times New Roman', Times, serif;
}

.pdf-header {
    text-align: center;
    border-bottom: 2px solid #ddd;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.pdf-header h4 {
    font-size: 1.8rem;
    color: #111;
    margin-bottom: 0.5rem;
}

.pdf-section {
    margin-bottom: 2rem;
}

.pdf-section h5 {
    font-size: 1.2rem;
    color: #222;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blurred-text-light {
    color: transparent;
    text-shadow: 0 0 8px rgba(0,0,0,0.6);
    user-select: none;
    line-height: 1.8;
}

.modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--c-border-light);
    text-align: right;
    background: var(--c-surface);
    border-bottom-left-radius: var(--radius-lg);
    border-bottom-right-radius: var(--radius-lg);
}

/* Testimonials */
.testimonials {
    padding: var(--space-xl) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.testimonial-card {
    background: var(--c-surface);
    padding: var(--space-lg) var(--space-md);
    border-radius: var(--radius-lg);
    border: 1px solid var(--c-border-light);
}

.stars {
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.quote {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--c-text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--c-bg-dark);
    border: 1px solid var(--c-gold);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    color: var(--c-gold-soft);
}

.author-info strong {
    display: block;
    font-family: var(--font-body);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--c-text-muted);
}

/* FAQ */
.faq-section {
    padding: var(--space-xl) 0;
    background: var(--c-surface);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

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

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

.faq-question .lucide {
    transition: transform var(--transition-fast);
    color: var(--c-gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth);
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--c-text-muted);
}

.faq-item.active .faq-question .lucide {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* About Section */
.about {
    padding: var(--space-xl) 0;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.about-image {
    display: flex;
    justify-content: center;
}

.astrologer-avatar {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-surface), var(--c-surface-hover));
    border: 2px solid var(--c-gold);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-gold-lg);
}

.astrologer-avatar .lucide {
    width: 64px;
    height: 64px;
    color: var(--c-gold-soft);
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--c-gold-soft);
}

.about-text h3 {
    font-family: var(--font-body);
    font-size: 1.5rem;
    color: var(--c-text-primary);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--c-text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--c-surface);
    border: 1px solid var(--c-border-light);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--c-text-primary);
}

.badge-tag .lucide {
    color: var(--c-gold);
}

/* Footer */
.footer {
    background: var(--c-surface);
    border-top: 1px solid var(--c-border-light);
    padding-top: var(--space-lg);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-brand p {
    color: var(--c-text-muted);
    margin-top: 1rem;
    max-width: 300px;
}

.footer h4 {
    font-family: var(--font-body);
    color: var(--c-gold-soft);
    margin-bottom: 1.5rem;
}

.footer-links, .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a, .footer-contact a {
    color: var(--c-text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.footer-bottom {
    border-top: 1px solid var(--c-border-light);
    padding: 1.5rem 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--c-text-muted);
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: var(--c-text-muted);
}

/* Thank You Page Specifics */
.thank-you-page {
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.minimal-header {
    position: relative;
    padding: 2rem 0;
}

.center-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.success-section {
    flex-grow: 1;
    display: flex;
    align-items: center;
    padding: var(--space-lg) 0;
}

.success-card {
    background: var(--c-surface);
    border: 1px solid var(--c-border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--shadow-card);
}

.success-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(76, 175, 130, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 2rem;
}

.success-icon {
    width: 40px;
    height: 40px;
    color: var(--c-success);
}

.success-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.success-message {
    font-size: 1.1rem;
    color: var(--c-text-muted);
    margin-bottom: 2rem;
}

.next-steps {
    text-align: left;
    background: var(--c-bg-dark);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
}

.next-steps h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--c-gold-soft);
}

.next-steps ul li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    color: var(--c-text-primary);
}

.next-steps ul li .lucide {
    color: var(--c-text-muted);
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    100% { transform: scale(1.05); opacity: 1; box-shadow: 0 0 60px rgba(201, 168, 76, 0.6); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes shimmer {
    100% { left: 200%; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite alternate;
}

/* Fade In Utilities */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.staggered-1 { transition-delay: 0.1s; }
.staggered-2 { transition-delay: 0.2s; }
.staggered-3 { transition-delay: 0.3s; }
.staggered-4 { transition-delay: 0.4s; }
.staggered-5 { transition-delay: 0.5s; }

/* ==========================================================================
   PAGE TEMPLATES (Legal / About)
   ========================================================================== */
.page-template {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.page-content {
    flex-grow: 1;
    padding: calc(var(--space-xl) + 80px) 0 var(--space-xl) 0; /* Accommodate fixed header */
    max-width: 800px;
    margin: 0 auto;
}

.page-header {
    text-align: center;
    margin-bottom: var(--space-lg);
    border-bottom: 1px solid var(--c-border-light);
    padding-bottom: var(--space-md);
}

.page-header .section-title {
    margin-bottom: 0;
}

.text-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--c-text-primary);
}

.text-content p {
    margin-bottom: 1.5rem;
}

.text-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--c-gold-soft);
    margin: 2.5rem 0 1rem;
}

.text-content h3 {
    font-family: var(--font-body);
    font-size: 1.3rem;
    color: var(--c-text-primary);
    margin: 2rem 0 1rem;
}

.text-content ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--c-text-muted);
}

.text-content ul li {
    margin-bottom: 0.5rem;
}

.text-content a {
    color: var(--c-gold);
    text-decoration: underline;
}

.text-content a:hover {
    color: var(--c-gold-soft);
}

.text-center-large {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.4rem;
    color: var(--c-gold-soft);
    font-family: var(--font-display);
    margin-bottom: 2rem !important;
}

.alert-box {
    background: rgba(201, 168, 76, 0.1);
    border-left: 4px solid var(--c-gold);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.alert-box p {
    margin-bottom: 0;
    color: var(--c-text-primary);
}

/* ==========================================================================
   MEDIA QUERIES
   ========================================================================== */
@media (max-width: 992px) {
    .steps-grid, .pricing-grid, .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-container, .sample-content {
        grid-template-columns: 1fr;
    }
    
    .about-text {
        text-align: center;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .sample-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }
    
    .steps-grid, .pricing-grid, .testimonials-grid, .plan-options, .form-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.highlighted {
        transform: scale(1);
    }
    
    .pricing-card.highlighted:hover {
        transform: translateY(-5px);
    }
    
    .half-width {
        grid-column: span 2;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links, .footer-contact {
        align-items: center;
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        gap: 1rem;
    }
    
    .success-actions {
        flex-direction: column;
    }
}
