:root {
    --primary: #8b5cf6;
    /* Genie Purple */
    --primary-hover: #7c3aed;
    --secondary: #fbbf24;
    --background: #1e293b;
    /* Soft Slate Blue */
    --surface: #334155;
    /* Lighter Slate */
    --surface-light: #475569;
    --text-main: #F8FAFC;
    --text-muted: #E2E8F0;
    --border: #475569;
    --error: #EF4444;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text-main);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Background gradient effect */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% -20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

header {
    padding: 2rem 5%;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    position: relative;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    z-index: 1001;
    position: static !important;
    float: none !important;
}

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

/* Global Navigation Styles */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    position: static !important;
    float: none !important;
}

.menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.side-nav {
    position: fixed !important;
    top: 0;
    left: auto !important;
    right: -300px !important;
    width: 300px;
    height: 100vh;
    background: var(--surface) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    padding-top: 80px;
    transition: right 0.3s ease;
    z-index: 1001;
}

.side-nav.active {
    right: 0 !important;
    left: auto !important;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.nav-links li a {
    display: block;
    padding: 1rem 2rem;
    color: var(--text-main) !important;
    background: var(--surface);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: background 0.2s, color 0.2s;
    border-left: 4px solid transparent;
}

.nav-links li a:hover {
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary);
    border-left: 4px solid var(--primary);
}

/* About Page Specific Styles */
.about-hero {
    text-align: center;
    padding: 6rem 5% 1rem;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-hero span {
    color: var(--primary);
}

.about-hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    text-align: justify;
}

.about-section {
    padding: 4rem 5%;
}

.alt-bg {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.content-container {
    max-width: 800px;
    margin: 0 auto;
}

.about-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Level Cards Grid */
.level-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.level-card {
    background: rgba(15, 23, 42, 0.5);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    text-align: center;
}

.level-card .emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.level-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.level-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
    text-align: center;
}

.budget-heading {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* User Guide & Support Grid */
.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.user-guide,
.contact-form-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.contact-form .btn-primary {
    margin-top: auto;
}

.guide-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guide-steps li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.step-num {
    background: var(--primary);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.guide-steps strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.guide-steps span {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Contact Form */
.support-email {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.support-email a {
    color: var(--primary);
    text-decoration: none;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: white;
    font-family: 'Inter', sans-serif;
}

/* Fix browser autofill styling across all inputs */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus {
    transition: background-color 5000s ease-in-out 0s, color 5000s ease-in-out 0s;
    -webkit-text-fill-color: white !important;
    -webkit-box-shadow: 0 0 0px 1000px #2a364b inset !important;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.submit-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background: var(--primary-hover);
}

/* Secure Checkout Trust Banner */
.secure-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    margin-top: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
}

.secure-icon {
    color: #fbbf24;
    /* Soft Gold */
    flex-shrink: 0;
}

.secure-text {
    display: flex;
    gap: 6px;
    align-items: baseline;
    font-size: 0.85rem;
}

.secure-text strong {
    color: var(--text-main);
    font-weight: 600;
}

.secure-subtext {
    color: var(--text-muted);
    font-weight: 400;
}

@media (max-width: 768px) {
    .secure-text {
        flex-direction: column;
        align-items: center;
        gap: 2px;
    }
}

/* Media Queries for About Page */
@media (max-width: 768px) {
    .level-cards {
        grid-template-columns: 1fr;
    }

    .support-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 1rem;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: 0;
    font-weight: 800;
}

.highlight {
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.hero-content p {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

.form-card {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    width: 100%;
    max-width: 580px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    text-align: left;
}

.form-card h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.subtitle {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

input[type="text"],
input[type="number"],
select {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: var(--surface-light);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.2s ease;
}

/* Custom Google Places Autocomplete Dropdown Styling */
.pac-container {
    background-color: var(--surface-light);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    margin-top: 5px;
    padding: 5px 0;
}

.pac-item {
    color: var(--text-main);
    padding: 10px 15px;
    cursor: pointer;
    border-top: 1px solid var(--border);
    font-size: 1rem;
    transition: background-color 0.2s ease;
}

.pac-item:first-child {
    border-top: none;
}

.pac-item:hover,
.pac-item-selected {
    background-color: var(--primary);
    color: white;
}

.pac-item-query {
    color: var(--text-main);
    font-size: 1rem;
    font-weight: 600;
}

.pac-item:hover .pac-item-query,
.pac-item-selected .pac-item-query {
    color: white;
}

.pac-matched {
    font-weight: 800;
}

/* Hide the location pins */
.pac-icon {
    display: none !important;
}

/* Hide "powered by Google" */
.pac-logo::after {
    display: none !important;
}

.pac-logo,
.hdpi.pac-logo {
    background-image: none !important;
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    accent-color: var(--primary);
    cursor: pointer;
}

.checkbox-group label {
    margin: 0;
    cursor: pointer;
    font-weight: 400;
}

/* Tier Selection Styling */
.tier-selection {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

.tier-card {
    cursor: pointer;
    background: rgba(15, 23, 42, 0.6);
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 1.25rem;
    text-align: left;
    transition: all 0.2s ease;
    display: flex;
    width: 100%;
}

.tier-content {
    display: grid;
    grid-template-columns: 100px 1fr;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.tier-card input {
    display: none;
}

.tier-card:hover {
    border-color: rgba(139, 92, 246, 0.5);
}

.tier-card.selected {
    border: 3px solid var(--primary);
    background: rgba(139, 92, 246, 0.1);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
}

.tier-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.tier-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.tier-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    list-style: none;
    padding: 0;
    margin: 0;
}

.tier-features li:not(.tier-upgrade-item)::before {
    content: '✓';
    color: var(--primary);
    margin-right: 8px;
    font-weight: bold;
}

.tier-upgrade-text {
    font-style: italic;
    opacity: 0.8;
}

.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: #ffffff;
    /* White text for purple button */
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    color: #ffffff;
    background: transparent;
    border: 2px solid var(--primary);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.1s;
    cursor: pointer;
}

.btn-secondary-outline:hover {
    background: rgba(139, 92, 246, 0.1);
    transform: translateY(-1px);
}

.btn-secondary-outline:active {
    transform: translateY(0);
}

.btn-secondary {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--surface-light);
    color: var(--text-main);
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-secondary:hover {
    background: #475569;
}

.secure-checkout {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-muted);
}

/* Success Page Specific */
.success-page .success-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    padding: 2rem;
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    max-width: 480px;
    width: 100%;
}

.hidden {
    display: none !important;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--surface-light);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 2rem auto;
}

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

.progress-bar {
    width: 100%;
    height: 6px;
    background: var(--surface-light);
    border-radius: 3px;
    margin: 2rem 0 1rem 0;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: var(--primary);
    border-radius: 3px;
    animation: fillProgress 15s ease-in-out forwards;
}

@keyframes fillProgress {
    0% {
        width: 0%;
    }

    20% {
        width: 30%;
    }

    50% {
        width: 60%;
    }

    80% {
        width: 90%;
    }

    100% {
        width: 95%;
    }

    /* Leaves a tiny bit until success */
}

.status-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.5;
    min-height: 3rem;
    margin-top: 1rem;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem auto;
}

.error {
    color: var(--error);
    margin-top: 1rem;
    font-size: 0.875rem;
}

/* Admin Dashboard Specific */
.admin-page {
    flex-direction: row;
}

.admin-sidebar {
    width: 250px;
    background: var(--surface);
    border-right: 1px solid var(--border);
    padding: 2rem 1rem;
}

.admin-sidebar nav ul {
    list-style: none;
    margin-top: 2rem;
}

.admin-sidebar nav li a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
}

.admin-sidebar nav li.active a,
.admin-sidebar nav li a:hover {
    background: var(--surface-light);
    color: var(--text-main);
}

.admin-main {
    flex: 1;
    padding: 2rem 3rem;
}

.admin-header h1 {
    font-size: 1.875rem;
    margin-bottom: 2rem;
}

.table-container {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.data-table th {
    background: var(--surface-light);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge.paid {
    background: rgba(16, 185, 129, 0.1);
    color: var(--secondary);
}

.badge.pending {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

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

/* --- New Marketing Layout Styles --- */

/* Split Hero Layout */
.hero-split {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 6rem 5%;
    max-width: 1280px;
    margin: 0 auto;
    gap: 4rem;
}

.hero-copy {
    flex: 1;
    min-width: 300px;
}

.hero-copy h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: 0;
    font-weight: 800;
}

.hero-copy p {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.hero-description-box {
    background: var(--surface-light);
    border: 1px solid var(--border);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: left;
    margin-bottom: 2rem;
    color: var(--text-main);
    font-size: 1.125rem;
    line-height: 1.6;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
    color: var(--text-main);
}

.benefit-item .check {
    color: var(--secondary);
    font-weight: bold;
}

.hero-form {
    flex: 1;
    display: flex;
    justify-content: center;
    max-width: 500px;
}

/* Social Proof Banner */
.social-proof {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 3rem 5%;
    text-align: center;
}

.proof-title {
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 5rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -1px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Marketing Sections Generic */
.features-section,
.preview-section {
    padding: 6rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.125rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem;
    transition: transform 0.2s, background 0.2s;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: var(--surface-light);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

/* Peek Inside Sample Document */
.sample-document {
    background: white;
    color: #1a1a1a;
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.doc-header {
    background: #f1f5f9;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.doc-header h4 {
    font-size: 1.125rem;
    font-weight: 700;
}

.doc-badge {
    background: #ef4444;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.watermark-overlay {
    position: sticky;
    top: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 0;
    z-index: 0;
    pointer-events: none;
    overflow: visible;
}

.watermark-overlay span {
    font-size: 15rem;
    font-weight: 900;
    font-family: 'Inter', sans-serif;
    color: rgba(148, 163, 184, 0.15);
    transform: rotate(-35deg);
    white-space: nowrap;
    user-select: none;
}


.doc-body {
    padding: 2.5rem;
    font-family: 'Times New Roman', serif;
    /* PDF feel */
}

.doc-body h5 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #334155;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 0.5rem;
}

.mock-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 2rem;
    padding-left: 1rem;
    border-left: 3px solid #cbd5e1;
    font-style: italic;
}

.mock-list {
    list-style-type: none;
    padding: 0;
}

.mock-list li {
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    color: #475569;
}

.mock-list li strong {
    color: var(--primary);
}

/* Testimonial Styles */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial {
    max-width: 800px;
    margin: 4rem auto 0 auto;
    background: var(--surface-light);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    position: relative;
}

.testimonial::before {
    content: '"';
    font-size: 6rem;
    color: rgba(139, 92, 246, 0.2);
    position: absolute;
    top: -1rem;
    left: 1rem;
    font-family: serif;
    line-height: 1;
}

.quote {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.author {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.author strong {
    color: var(--primary);
    font-size: 1.05rem;
}

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

.paywall-teaser {
    position: relative;
    overflow: hidden;
    max-height: 45000px;

    /* Page Break Divider */
    .page-break {
        height: 20px;
        background-color: #f1f5f9;
        margin: 4rem -2.5rem;
        border-top: 1px solid #cbd5e1;
        border-bottom: 1px solid #cbd5e1;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .page-break::after {
        content: attr(data-page);
        background: #f1f5f9;
        padding: 0 15px;
        color: #94a3b8;
        font-size: 0.8rem;
        font-family: sans-serif;
        letter-spacing: 0.5px;
    }

    .paywall-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        /* Replaced dark gradient with a subtle semi-transparent white fade that lets the blur show through */
        background: linear-gradient(to bottom, rgba(23, 23, 23, 0) 0%, rgba(23, 23, 23, 0.4) 100%);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        padding-bottom: 2rem;
        padding-top: 10rem;
        /* Creates clicking area for the gradient */
        z-index: 10;
        pointer-events: none;
        /* Let the scroll pass through the gradient */
    }

    .paywall-overlay .unlock-box {
        pointer-events: auto;
        /* Re-enable clicking on the actual button */
    }

    .blurred-text {
        filter: blur(4px);
        opacity: 0.6;
        user-select: none;
        -webkit-user-select: none;
        pointer-events: none;
    }

    .unlock-box {
        background: var(--surface-light);
        border: 1px solid var(--primary);
        padding: 2.5rem 3rem;
        border-radius: 12px;
        text-align: center;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        z-index: 20;
        max-width: 500px;
        margin: 0 auto;
    }

    .unlock-box .lock-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
        display: block;
    }

    .unlock-box h4 {
        color: white;
        margin-bottom: 0.5rem;
        font-size: 1.25rem;
    }

    .unlock-box p {
        color: var(--text-muted);
        font-size: 0.95rem;
        margin: 0 auto 1.25rem auto;
        line-height: 1.5;
    }
}

/* Footer Adjustments */
footer {
    padding: 2rem 5%;
    background: var(--surface);
    border-top: 1px solid var(--border);
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center;
    flex-wrap: nowrap !important;
    gap: 1rem;
}

.footer-content p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

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

.legal-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

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

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
        padding-top: 2rem;
        gap: 2rem;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-copy h1 {
        font-size: 2.5rem;
    }

    .benefits-list {
        align-items: center;
    }

    .stats-row {
        gap: 2rem;
    }

    /* Form Mobile Adjustments */
    .form-card {
        padding: 1.5rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    /* Pricing Tiers Mobile Adjustments */
    .tier-selection {
        grid-template-columns: 1fr;
    }

    /* Grids Mobile Adjustments */
    .testimonial-grid,
    .level-cards,
    .support-grid {
        grid-template-columns: 1fr !important;
    }

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

    header {
        justify-content: space-between;
    }

    /* Footer Mobile Adjustments */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .legal-links {
        justify-content: center;
        width: 100%;
        padding-top: 1.5rem;
        border-top: 1px solid var(--border);
    }
}

/* FAQ Page Styles */
.faq-page {
    padding: 6rem 5% 4rem;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.faq-header h1 span {
    color: var(--primary);
}

.faq-header p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.faq-category h2 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item[open] {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.faq-item summary {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-main);
    cursor: pointer;
    position: relative;
    list-style: none;
    /* Hide default arrow in firefox/chrome */
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

/* Hide default marker in Safari */
.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    content: '\2212';
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
}

.faq-content p {
    margin-bottom: 0;
}