:root {
    --primary-color: #1d4ed8;
    --primary-dark: #1e3a8a;
    --secondary-color: #64748b;
    --accent-color: #10b981;
    --danger-color: #ef4444;
    --bg-color: #f8fafc;
    --card-bg: #ffffff;
    --text-color: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

.navbar {
    background: var(--card-bg);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.brand-icon {
    display: inline-flex;
    align-items: center;
    font-size: 18px;
    line-height: 1;
}

.brand-icon svg {
    display: block;
}

.brand-text {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.brand-footer {
    justify-content: center;
    margin-bottom: 0.35rem;
    color: var(--text-color);
}

.brand-footer .brand-icon {
    font-size: 16px;
}

.brand-footer .brand-text {
    font-size: 16px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo {
    text-decoration: none;
    color: var(--primary-color);
}

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

.nav-logo .brand-icon {
    color: var(--primary-color);
}

.nav-tagline {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 0.01em;
    white-space: nowrap;
    display: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.25rem;
    align-items: center;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
    font-size: 0.88rem;
    line-height: 1;
}

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

.plan-selector form {
    display: inline;
}

.plan-selector select {
    padding: 0.35rem 0.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 0.375rem;
    background: var(--card-bg);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    outline: none;
}

.plan-selector select:hover {
    background: var(--primary-color);
    color: white;
}

.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    min-height: calc(100vh - 200px);
}

.hero {
    text-align: center;
    padding: 4rem 0 3rem;
}

.hero h1 {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
    color: var(--text-color);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subheadline {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 1rem;
    line-height: 1.6;
}

.hero-supporting {
    font-size: 0.95rem;
    color: var(--secondary-color);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.5;
}

.elevator-pitch {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.built-for {
    padding: 2.5rem 0 1rem;
    text-align: center;
}

.built-for h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.built-for-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.built-for-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1.25rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-align: left;
    box-shadow: var(--shadow);
}

.built-for-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.built-for-card p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

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

.btn-secondary {
    background: var(--card-bg);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-color);
}

.btn-copy {
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-copy:hover {
    background: #059669;
}

.btn-danger {
    background: var(--danger-color);
    color: white;
}

.btn-danger:hover {
    background: #dc2626;
}

.features {
    padding: 3rem 0;
}

.features h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.library, .category-page, .prompt-detail, .roi-page, .pricing-page, .about-page, .search-page {
    padding: 1rem 0;
}

.subtitle {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.category-card h2 {
    font-size: 1.25rem;
}

.category-card .arrow {
    color: var(--primary-color);
    font-weight: 500;
}

.breadcrumb {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

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

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

.prompt-card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.2s;
}

.prompt-card:hover {
    box-shadow: var(--shadow-lg);
}

.prompt-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.prompt-content, .customize-section, .result-section {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}

.prompt-box {
    background: var(--bg-color);
    padding: 1rem;
    border-radius: 0.5rem;
    margin: 1rem 0;
    position: relative;
}

.prompt-box.customized {
    background: #ecfdf5;
    border: 1px solid var(--accent-color);
}

.notes-box {
    background: #fef3c7;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
}

.notes-box h3 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

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

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

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.back-btn {
    margin-top: 1rem;
}

.roi-form-section {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.totals-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.total-card {
    background: var(--bg-color);
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
}

.total-card.highlight {
    background: var(--primary-color);
    color: white;
}

.total-label {
    display: block;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.total-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.roi-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

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

.roi-table th {
    background: var(--bg-color);
    font-weight: 600;
}

.roi-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.empty-state {
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
}

.about-content {
    max-width: 800px;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

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

.step h3 {
    margin-bottom: 0.5rem;
}

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

.about-section p {
    margin-bottom: 1rem;
}

.cta-section {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.footer {
    display: none;
}

.site-footer {
    background: var(--card-bg);
    border-top: 1px solid var(--border-color);
    padding: 1.25rem 0;
    margin-top: 3rem;
}

.site-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-left .brand-footer {
    margin-bottom: 0;
}

.footer-center p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-right a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-right a:hover {
    text-decoration: underline;
}

.footer-sep {
    color: var(--border-color);
}

@media (max-width: 768px) {
    .site-footer-inner {
        flex-direction: column;
        text-align: center;
    }
    .footer-right {
        justify-content: center;
    }
}

.search-form {
    margin-bottom: 2rem;
}

.search-bar {
    display: flex;
    gap: 0.75rem;
    max-width: 600px;
}

.search-bar input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
}

.search-bar input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.result-count {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.card-category {
    display: inline-block;
    background: var(--bg-color);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

/* Feature Matrix Table */
.feature-matrix-wrapper {
    overflow-x: auto;
    margin-bottom: 2rem;
}

.feature-matrix {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.feature-matrix th,
.feature-matrix td {
    padding: 0.75rem 1rem;
    text-align: center;
    border: 1px solid var(--border-color);
}

.feature-matrix th {
    background: #1e293b;
    color: white;
    font-weight: 600;
    vertical-align: bottom;
    padding: 1rem;
}

.feature-matrix .feature-col {
    text-align: left;
    min-width: 200px;
}

.feature-matrix .tier-col {
    min-width: 140px;
}

.feature-matrix .tier-highlight {
    background: var(--primary-dark);
}

.feature-matrix .tier-price {
    display: block;
    font-size: 0.85rem;
    font-weight: 400;
    margin-top: 0.25rem;
    opacity: 0.85;
}

.feature-matrix .feature-name {
    text-align: left;
    font-weight: 500;
}

.feature-matrix .tier-value {
    font-size: 0.85rem;
}

.feature-matrix .tier-highlight-cell {
    background: rgba(37, 99, 235, 0.04);
}

.feature-matrix .alt-row {
    background: var(--bg-color);
}

.feature-matrix .alt-row .tier-highlight-cell {
    background: rgba(37, 99, 235, 0.08);
}

.feature-matrix .coming-soon-cell {
    color: var(--text-muted);
    font-style: italic;
}

.check-icon {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.x-icon {
    color: var(--danger-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.coming-soon-pill {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.65rem;
    font-weight: 500;
    padding: 0.15rem 0.5rem;
    border-radius: 1rem;
    margin-top: 0.25rem;
}

.pricing-cta-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.pricing-notes {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
    max-width: 700px;
    margin: 0 auto;
}

.pricing-notes p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-notes p:last-child {
    margin-bottom: 0;
}

/* Free Notice */
.free-notice {
    background: #fef3c7;
    border: 1px solid #fbbf24;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.free-notice a {
    color: var(--primary-color);
    font-weight: 600;
}

/* Locked Prompts */
.locked-prompt {
    opacity: 0.7;
    position: relative;
    cursor: default;
}

.locked-prompt:hover {
    box-shadow: var(--shadow);
    transform: none;
}

.locked-prompt h3 {
    color: var(--text-muted);
}

.locked-badge,
.pro-lock-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #4b5563;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.4rem 0.6rem 0.3rem;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    line-height: 1;
    gap: 0.15rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.locked-badge .lock-icon,
.pro-lock-badge .lock-icon {
    font-size: 0.85rem;
    color: #f59e0b;
}

.locked-badge .lock-text,
.pro-lock-badge .lock-text {
    font-size: 0.6rem;
    color: white;
}

/* Gated Section */
.gated-section {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.lock-icon-large {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #4b5563;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 1.2rem 1.5rem 1rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    line-height: 1;
    gap: 0.3rem;
}

.lock-icon-large .lock-icon {
    font-size: 2rem;
    color: #f59e0b;
}

.lock-icon-large .lock-text {
    font-size: 0.85rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gated-section h1 {
    margin-bottom: 1rem;
}

.gated-description {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.gated-note {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.gated-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Limit Reached */
.limit-reached-section {
    margin-bottom: 1.5rem;
}

.limit-reached-box {
    background: #fef2f2;
    border: 1px solid var(--danger-color);
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
}

.limit-reached-box h2 {
    color: var(--danger-color);
    margin-bottom: 0.75rem;
}

.limit-reached-box p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* Upgrade Page */
.upgrade-page {
    padding: 1rem 0;
}

.upgrade-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.upgrade-price {
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-period {
    font-size: 1.25rem;
    color: var(--text-muted);
}

.upgrade-benefits {
    margin-bottom: 3rem;
}

.upgrade-benefits h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.benefit-card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
}

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.pro-modules-list {
    margin-bottom: 3rem;
}

.pro-modules-list h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.module-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.module-link-card {
    background: var(--card-bg);
    padding: 1.25rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.2s;
    border-left: 4px solid var(--primary-color);
}

.module-link-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.module-link-card h3 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.module-link-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.upgrade-cta-bottom {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
}

.cta-note {
    color: var(--text-muted);
    margin-top: 0.75rem;
    font-size: 0.85rem;
}

/* Pro Module Pages */
.pro-module {
    padding: 1rem 0;
}

.module-content {
    max-width: 800px;
}

.module-description-box {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--text-muted);
}

.module-placeholder {
    background: var(--bg-color);
    border: 2px dashed var(--border-color);
    border-radius: 0.75rem;
    padding: 3rem 2rem;
    text-align: center;
    color: var(--text-muted);
}

.module-variant-note {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: #fef3c7;
    border-radius: 0.5rem;
    display: inline-block;
    font-size: 0.9rem;
}

.module-variant-note a {
    color: var(--primary-color);
    font-weight: 600;
}

/* Locked Categories */
.locked-category {
    opacity: 0.65;
    cursor: default;
    border: 1px dashed var(--border-color);
}

.locked-category:hover {
    box-shadow: var(--shadow);
    transform: none;
}

.locked-category h2 {
    color: var(--text-muted);
}

/* Save Section */
.save-section {
    margin-bottom: 1.5rem;
}

.save-confirmation {
    color: var(--accent-color);
    font-weight: 600;
}

.save-confirmation a {
    color: var(--primary-color);
}

/* Saved Page */
.saved-page {
    padding: 1rem 0;
}

.saved-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.saved-card-content h3 a {
    color: var(--primary-color);
    text-decoration: none;
}

.saved-card-content h3 a:hover {
    text-decoration: underline;
}

/* Usage Meter */
.usage-meter {
    background: var(--card-bg);
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}

.meter-bar {
    background: var(--bg-color);
    border-radius: 0.5rem;
    height: 8px;
    margin-top: 0.5rem;
    overflow: hidden;
}

.meter-fill {
    background: var(--primary-color);
    height: 100%;
    border-radius: 0.5rem;
    transition: width 0.3s;
}

.usage-limit-note {
    color: var(--danger-color);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.module-success-note {
    background: #ecfdf5;
    border: 1px solid var(--accent-color);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    font-weight: 500;
}

.module-variant-pro {
    background: #ecfdf5 !important;
    border: 1px solid var(--accent-color);
}

/* Advanced Prompt Packs */
.advanced-packs-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.section-heading {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.section-subtitle {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.pack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.pack-card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.2s;
    border-left: 4px solid var(--primary-color);
    display: flex;
    flex-direction: column;
}

.pack-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.pack-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.pack-card-header h3 {
    color: var(--primary-color);
    font-size: 1.05rem;
    margin: 0;
}

.pro-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #4b5563;
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 0.35rem 0.5rem 0.25rem;
    border-radius: 0.4rem;
    white-space: nowrap;
    line-height: 1;
    gap: 0.1rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.pro-badge .lock-icon {
    font-size: 0.75rem;
    color: #f59e0b;
}

.pro-badge .lock-text {
    font-size: 0.55rem;
    color: white;
}

.pack-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    flex: 1;
    margin-bottom: 0.75rem;
}

.pack-count {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

.pro-prompt-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
}

/* Playbooks */
.playbooks-page {
    padding: 1rem 0;
}

.playbook-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.playbook-card {
    background: var(--card-bg);
    padding: 1.75rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border-left: 4px solid var(--primary-color);
}

.playbook-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
}

.playbook-card-header h2 {
    font-size: 1.15rem;
    color: var(--primary-color);
    margin: 0;
}

.playbook-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    flex: 1;
}

.playbook-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.playbook-steps-count,
.playbook-time-saved {
    font-weight: 600;
}

.playbook-time-saved {
    color: var(--accent-color);
}

/* Playbook Detail */
.playbook-detail-page {
    padding: 1rem 0;
}

.playbook-summary-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.summary-card {
    background: var(--card-bg);
    padding: 1.25rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
    text-align: center;
}

.summary-card.highlight {
    background: var(--primary-color);
    color: white;
}

.summary-label {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
    opacity: 0.8;
}

.summary-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.progress-bar-container {
    margin-bottom: 2rem;
}

.progress-bar {
    background: var(--bg-color);
    border-radius: 0.5rem;
    height: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.progress-fill {
    background: var(--accent-color);
    height: 100%;
    border-radius: 0.5rem;
    transition: width 0.3s;
}

.progress-label {
    display: block;
    text-align: right;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.playbook-steps-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.playbook-step-card {
    background: var(--card-bg);
    padding: 1.25rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s;
}

.playbook-step-card:hover {
    box-shadow: var(--shadow-lg);
}

.playbook-step-card.step-completed {
    border-left: 4px solid var(--accent-color);
    background: #f0fdf4;
}

.step-indicator {
    flex-shrink: 0;
}

.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}

.step-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-color);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-info {
    flex: 1;
}

.step-info h3 {
    margin-bottom: 0.25rem;
}

.step-info h3 a {
    color: var(--primary-color);
    text-decoration: none;
}

.step-info h3 a:hover {
    text-decoration: underline;
}

.step-info p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

.completed-badge {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 0.25rem;
    margin-top: 0.25rem;
}

.completed-badge.large {
    font-size: 0.85rem;
    padding: 0.3rem 0.75rem;
}

.step-action {
    flex-shrink: 0;
}

.playbook-complete-banner {
    background: #ecfdf5;
    border: 2px solid var(--accent-color);
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.playbook-complete-banner h2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.playbook-complete-banner p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* Playbook Step Page */
.playbook-step-page {
    padding: 1rem 0;
}

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.step-counter {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 0.25rem;
    margin-bottom: 0.5rem;
}

.step-progress-mini {
    display: flex;
    gap: 0.35rem;
    margin-bottom: 2rem;
}

.mini-dot {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--border-color);
}

.mini-dot.done {
    background: var(--accent-color);
}

.mini-dot.current {
    background: var(--primary-color);
}

.step-content-area {
    margin-bottom: 2rem;
}

.step-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.step-actions-right {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Nav Lock Badge */
.nav-lock-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #4b5563;
    padding: 0.15rem 0.25rem;
    border-radius: 0.2rem;
    line-height: 1;
    flex-shrink: 0;
}

.nav-lock-badge .lock-icon {
    font-size: 0.55rem;
    color: #f59e0b;
    line-height: 1;
}

.nav-usage-badge {
    display: inline-flex;
    align-items: center;
    background: #e2e8f0;
    color: #475569;
    font-size: 0.5rem;
    font-weight: 700;
    padding: 0.15rem 0.3rem;
    border-radius: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1;
    flex-shrink: 0;
}

/* Module Pages (Launch Kit, Follow-Up, Calendar) */
.module-page {
    padding: 1rem 0;
}

.module-page h1 {
    margin-bottom: 0.25rem;
}

.module-form-section {
    background: var(--card-bg);
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.module-form-section h2 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.module-form .form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.module-form .form-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.module-form .form-section-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 1.25rem 0 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.module-form .form-group.full-width {
    margin-bottom: 0.75rem;
}

.module-form select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    font-size: 0.9rem;
    background: white;
}

/* Bundle Cards (Launch Kit output) */
.bundle-results,
.sequence-results,
.calendar-results {
    margin-top: 1.5rem;
}

.bundle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.bundle-header-actions {
    display: flex;
    gap: 0.5rem;
}

.bundle-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.bundle-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border-bottom: 1px solid var(--border-color);
}

.bundle-card-header h3 {
    font-size: 0.95rem;
    margin: 0;
    color: var(--primary-color);
}

.bundle-card-body {
    padding: 1rem;
}

.bundle-pre {
    white-space: pre-wrap;
    font-family: inherit;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Sequence Cards (Follow-Up) */
.sequence-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    padding: 1rem;
}

.sequence-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.sequence-day-badge {
    background: var(--primary-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 0.3rem;
}

.sequence-channel {
    background: #e2e8f0;
    color: #475569;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 0.25rem;
}

.sequence-label {
    font-weight: 600;
    font-size: 0.9rem;
}

.sequence-strategy {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 0.75rem;
}

.sequence-card-body {
    margin-bottom: 0.5rem;
}

.sequence-variants {
    margin-top: 0.75rem;
    border-top: 1px solid var(--border-color);
    padding-top: 0.5rem;
}

.sequence-variants summary {
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 500;
    padding: 0.25rem 0;
}

.variant-section {
    margin-top: 0.75rem;
    padding: 0.5rem;
    background: #f8fafc;
    border-radius: 0.5rem;
}

.variant-section h4 {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.variant-block {
    margin-bottom: 0.25rem;
}

/* Calendar Cards */
.calendar-week {
    margin-bottom: 1.5rem;
}

.week-heading {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    padding-bottom: 0.25rem;
    border-bottom: 2px solid var(--primary-color);
}

.calendar-day-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1rem;
    margin-bottom: 0.75rem;
}

.calendar-day-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.calendar-day-num {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary-color);
}

.calendar-day-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.calendar-post-type {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 0.25rem;
    background: #dbeafe;
    color: #1e40af;
}

.post-type-educational { background: #dbeafe; color: #1e40af; }
.post-type-social-proof { background: #dcfce7; color: #166534; }
.post-type-listing-promotion { background: #fef3c7; color: #92400e; }
.post-type-listing-promo { background: #fef3c7; color: #92400e; }
.post-type-market-insight { background: #f3e8ff; color: #6b21a8; }
.post-type-personal-authority { background: #e0e7ff; color: #3730a3; }
.post-type-authority { background: #e0e7ff; color: #3730a3; }
.post-type-community { background: #fce7f3; color: #9d174d; }
.post-type-engagement { background: #fed7aa; color: #9a3412; }

.calendar-day-topic {
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.calendar-day-body {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.calendar-caption p {
    margin: 0.25rem 0 0.5rem;
}

.calendar-cta-line {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.calendar-pro-details {
    margin-top: 0.75rem;
    border-top: 1px solid var(--border-color);
    padding-top: 0.5rem;
}

.calendar-pro-details summary {
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 500;
}

.pro-content-section {
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 0.5rem;
    margin-top: 0.5rem;
}

.hooks-section ol {
    margin: 0.25rem 0 0.75rem 1.25rem;
    font-size: 0.85rem;
}

.variants-section p {
    font-size: 0.85rem;
    margin: 0.25rem 0 0.75rem;
}

.hashtags-text {
    font-size: 0.8rem;
    color: var(--primary-color);
    word-break: break-all;
}

.caption-label {
    font-weight: 400;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.variant-block {
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    background: white;
    border-radius: 0.375rem;
    border: 1px solid var(--border-color);
    position: relative;
}

.variant-block p {
    margin: 0.25rem 0 0.5rem;
}

.btn-xs {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
}

.calendar-distribution-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    padding: 0.75rem 1rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
}

.dist-chip {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 1rem;
}

.dist-educational { background: #dbeafe; color: #1e40af; }
.dist-listing { background: #fef3c7; color: #92400e; }
.dist-social { background: #dcfce7; color: #166534; }
.dist-market { background: #f3e8ff; color: #6b21a8; }
.dist-authority { background: #e0e7ff; color: #3730a3; }
.dist-engagement { background: #fed7aa; color: #9a3412; }

.calendar-exec-details {
    border-top: none;
    margin-top: 0;
    padding-top: 0.25rem;
}

.calendar-exec-details summary {
    color: #6b21a8;
}

.execution-prompt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 0.5rem;
    padding: 0.75rem;
    background: #faf5ff;
    border-radius: 0.5rem;
    border: 1px solid #e9d5ff;
}

.exec-item {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}

.exec-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.exec-item strong {
    font-size: 0.8rem;
    display: block;
    margin-bottom: 0.15rem;
}

.exec-item p {
    font-size: 0.8rem;
    margin: 0;
    color: var(--text-dark);
    line-height: 1.4;
}

.exec-talking-points {
    white-space: normal;
}

@media (max-width: 768px) {
    .execution-prompt-grid {
        grid-template-columns: 1fr;
    }
    .calendar-distribution-bar {
        justify-content: center;
    }
}

/* Usage Meter */
.usage-meter {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
}

.meter-bar {
    background: #e2e8f0;
    border-radius: 0.25rem;
    height: 8px;
    margin-top: 0.5rem;
    overflow: hidden;
}

.meter-fill {
    background: var(--primary-color);
    height: 100%;
    border-radius: 0.25rem;
    transition: width 0.3s ease;
}

.usage-limit-note {
    color: var(--danger-color);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* Psychological Intent & Conversion Tags */
.psych-intent-box {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #1e40af;
}

.conversion-impact-note {
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #166534;
}

.conversion-impact-banner {
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: #166534;
    font-weight: 600;
    text-align: center;
}

.conversion-tag {
    display: inline-block;
    background: #dcfce7;
    color: #166534;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 0.25rem;
    margin-top: 0.25rem;
}

.psych-intent-inline {
    font-size: 0.8rem;
    color: #3b82f6;
    font-style: italic;
    margin-top: 0.25rem;
}

.objective-step {
    border-left: 4px solid #8b5cf6 !important;
    background: #faf5ff;
}

.step-num.objective {
    background: #8b5cf6;
}

.objective-label {
    color: #7c3aed;
    font-weight: 600;
}

.summary-card.accent {
    background: var(--accent-color);
    color: white;
}

.completion-impact {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.05rem;
}

/* Playbook Preview for Free Users */
.playbook-preview-section {
    background: var(--card-bg);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    margin-bottom: 2rem;
    border-top: 4px solid var(--primary-color);
}

.preview-header h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.preview-description {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.preview-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.benefit-icon {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.preview-steps-outline {
    margin-bottom: 1.5rem;
}

.preview-steps-outline h3 {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.preview-step-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.preview-step {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-color);
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
}

.preview-lock {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #4b5563;
    color: white;
    font-size: 0.5rem;
    font-weight: 700;
    padding: 0.3rem 0.4rem 0.2rem;
    border-radius: 0.35rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
    line-height: 1;
    gap: 0.1rem;
}

.preview-lock .lock-icon {
    font-size: 0.65rem;
    color: #f59e0b;
}

.preview-lock .lock-text {
    font-size: 0.45rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.preview-step strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
}

.preview-step p {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin: 0;
}

.preview-cta {
    text-align: center;
    padding-top: 1rem;
}

.preview-cta-note {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.section-divider {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 2rem 0;
}

/* Soft Upsell Banner */
.soft-upsell-banner {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: #1e40af;
    margin-bottom: 1.5rem;
}

.soft-upsell-banner a {
    color: var(--primary-color);
    font-weight: 600;
    margin-left: 0.25rem;
}

/* Gated Nudge */
.gated-nudge {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        gap: 0.75rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }

    .built-for-grid {
        grid-template-columns: 1fr;
    }

    .nav-tagline {
        display: none;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .roi-table {
        font-size: 0.875rem;
    }
    
    .roi-table th, .roi-table td {
        padding: 0.5rem;
    }

    .feature-matrix {
        font-size: 0.8rem;
    }

    .feature-matrix th,
    .feature-matrix td {
        padding: 0.5rem;
    }
}

.voice-saved-banner {
    background: #dcfce7;
    border: 1px solid #86efac;
    color: #166534;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.voice-saved-banner a {
    color: #15803d;
    font-weight: 600;
}

.voice-summary-card {
    background: linear-gradient(135deg, #eff6ff, #f0f9ff);
    border: 1px solid #bfdbfe;
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
}

.voice-summary-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.voice-summary-card p {
    color: var(--text-color);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.voice-preview-section {
    margin-bottom: 2rem;
}

.voice-preview-section h2 {
    margin-bottom: 0.75rem;
}

.voice-preview-box,
.voice-instructions-box {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1rem 1.25rem;
    margin-bottom: 0.5rem;
}

.voice-instructions-note {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.voice-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 1px solid #93c5fd;
    color: #1d4ed8;
    padding: 0.3rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.voice-badge .voice-icon {
    font-size: 0.9rem;
}

.voice-setup-banner {
    background: #fefce8;
    border: 1px solid #fde68a;
    color: #92400e;
    padding: 0.6rem 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.voice-setup-banner a {
    color: #b45309;
    font-weight: 600;
    text-decoration: underline;
}

.voice-addon-block {
    background: linear-gradient(135deg, #f5f3ff, #ede9fe);
    border: 1px solid #c4b5fd;
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
    margin-top: 1.5rem;
}

.voice-addon-block h3 {
    color: #5b21b6;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.voice-addon-block p.voice-addon-note {
    color: #6d28d9;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.voice-addon-content {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
}

textarea {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    font-family: inherit;
    font-size: 0.9rem;
    resize: vertical;
    background: var(--card-bg);
    color: var(--text-color);
}

textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.roi-pro-section {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.roi-pro-section h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.pro-metrics {
    margin-bottom: 1.5rem;
}

.total-card.pro-card {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-color: #93c5fd;
}

.total-sub {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.roi-breakdown {
    margin-top: 1.25rem;
}

.roi-breakdown h4 {
    margin-bottom: 0.75rem;
}

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

.breakdown-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.breakdown-label {
    min-width: 160px;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
}

.breakdown-count {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.8rem;
}

.breakdown-bar-container {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breakdown-bar {
    height: 1.25rem;
    background: linear-gradient(90deg, var(--primary-color), #60a5fa);
    border-radius: 0.25rem;
    min-width: 4px;
    transition: width 0.3s;
}

.breakdown-amount {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-color);
    white-space: nowrap;
}

.btn-xs {
    padding: 0.15rem 0.4rem;
    font-size: 0.7rem;
}

.saved-outputs-page {
    max-width: 900px;
}

.saved-outputs-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.saved-output-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow);
}

.saved-output-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.saved-output-header h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.saved-source-badge {
    display: inline-block;
    background: #f1f5f9;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 0.1rem 0.5rem;
    border-radius: 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.saved-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-left: 0.5rem;
}

.saved-output-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.saved-output-preview summary {
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 500;
}

.saved-output-content {
    margin-top: 0.5rem;
    max-height: 300px;
    overflow-y: auto;
}

.limit-banner {
    background: #fef3c7;
    border: 1px solid #fbbf24;
    color: #92400e;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.limit-banner a {
    color: #b45309;
    font-weight: 700;
}

.save-output-form {
    display: inline;
}

.save-success-msg {
    display: inline-block;
    color: #16a34a;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.5rem;
    padding: 0.4rem 0.75rem;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 0.375rem;
}

.result-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.compliance-warning-box {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    border-radius: 0.75rem;
    padding: 1.25rem;
    margin-top: 1.5rem;
}

.compliance-warning-box h3 {
    color: #b91c1c;
    margin-bottom: 0.5rem;
}

.compliance-clear-box {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 0.75rem;
    padding: 1.25rem;
    margin-top: 1.5rem;
}

.compliance-clear-box h3 {
    color: #16a34a;
    margin-bottom: 0.5rem;
}

.compliance-flag-item {
    background: #fff;
    border: 1px solid #fecaca;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    margin-top: 0.75rem;
}

.flagged-phrase {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.flag-icon {
    font-size: 1.1rem;
}

.compliance-explanation {
    font-size: 0.85rem;
    color: #7f1d1d;
    margin-top: 0.4rem;
    padding-left: 1.6rem;
}

.compliance-suggestion {
    font-size: 0.85rem;
    color: #166534;
    margin-top: 0.3rem;
    padding-left: 1.6rem;
}

.suggestion-text {
    background: #dcfce7;
    padding: 0.15rem 0.4rem;
    border-radius: 0.25rem;
    font-weight: 600;
}

.compliance-page textarea {
    width: 100%;
    min-height: 120px;
}

.toolkit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.toolkit-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.15s, box-shadow 0.15s;
}

.toolkit-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.toolkit-card-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.toolkit-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.toolkit-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.toolkit-form-panel {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-top: 1.5rem;
    box-shadow: var(--shadow);
}

.toolkit-form-panel h2 {
    margin-bottom: 1rem;
}

.deal-acceleration-page .bundle-card {
    margin-top: 1rem;
}

.hero-trust-line {
    margin-top: 1.25rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

.start-here-section {
    max-width: 640px;
    margin: 2rem auto;
}

.start-here-card {
    background: var(--card-bg);
    border: 2px solid var(--primary-color);
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.start-here-card h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.start-here-intro {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.start-here-steps {
    text-align: left;
    max-width: 380px;
    margin: 0 auto 1.25rem;
    padding-left: 1.5rem;
    line-height: 2;
    color: var(--text-color);
}

.start-here-note {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.gated-upgrade-box {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 0.75rem;
    padding: 1.5rem 2rem;
    margin: 1.5rem 0;
    text-align: center;
}

.gated-upgrade-box p {
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 1rem;
}

.gated-section .gated-cta {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1rem;
}

.legal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.legal-page h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.legal-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.15rem;
    margin-top: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.legal-content p {
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

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

.upgrade-after-purchase {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 640px;
}

.upgrade-after-purchase h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.after-purchase-steps {
    padding-left: 1.25rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.after-purchase-steps li {
    margin-bottom: 0.5rem;
}

.upgrade-support-note {
    text-align: center;
    margin: 1.5rem 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.upgrade-support-note a {
    color: var(--primary-color);
}

.upgrade-secondary-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.already-purchased-banner {
    background: #f0f4ff;
    border: 1px solid #c5d4f5;
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    text-align: center;
    margin: 1.5rem auto;
    max-width: 640px;
    font-size: 0.95rem;
    color: var(--text-color);
}

.already-purchased-banner a {
    color: var(--primary-color);
}
