/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #f8f8f7;
    --container-bg: #ffffff;
    --text-color: #37352f;
    --text-secondary: #6b6b6b;
    --heading-color: #000000;
    --section-heading-color: #0066cc;
    --border-color: rgba(0, 0, 0, 0.06);
    --shadow-color: rgba(0, 0, 0, 0.06);
    --blockquote-bg: linear-gradient(135deg, #f7f6f3 0%, #fafafa 100%);
    --feature-bg: #fefefe;
    --button-bg: linear-gradient(135deg, #000000 0%, #2d2d2d 100%);
    --button-hover-bg: linear-gradient(135deg, #1a1a1a 0%, #3d3d3d 100%);
    --highlight-blue: #4d9fff;
    --highlight-orange: #ffb74d;
    --highlight-green: #66bb6a;
    --highlight-red: #ef5350;
    --highlight-blue-shadow: rgba(0, 102, 204, 0.2);
    --highlight-blue-shadow-light: rgba(0, 102, 204, 0.1);
    --stat-highlight-bg: #f0f8ff;
    --strengths-bg: #e8f5e8;
    --weaknesses-bg: #fff3e0;
    --week-header-bg: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    --report-header-bg: linear-gradient(135deg, #37352f 0%, #2d2d2d 100%);
    --report-header-text: #ffffff;
    --note-grid-line: rgba(200, 150, 0, 0.15);
    --note-grid-space: transparent;
    --note-text-color: #2e2e2e;
    --note-link-color: #1976d2;
    --note-text-shadow: rgba(255, 255, 255, 0.8);
}

[data-theme="dark"] {
    --bg-color: #1a1a1a;
    --container-bg: #2d2d2d;
    --text-color: #e6e6e6;
    --text-secondary: #c0c0c0;
    --heading-color: #ffffff;
    --section-heading-color: #4d9fff;
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-color: rgba(0, 0, 0, 0.3);
    --blockquote-bg: linear-gradient(135deg, #3a3a3a 0%, #404040 100%);
    --feature-bg: #353535;
    --button-bg: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    --button-hover-bg: linear-gradient(135deg, #e0e0e0 0%, #d0d0d0 100%);
    --highlight-blue: #4d9fff;
    --highlight-orange: #ffb74d;
    --highlight-green: #66bb6a;
    --highlight-red: #ef5350;
    --highlight-blue-shadow: rgba(77, 159, 255, 0.2);
    --highlight-blue-shadow-light: rgba(77, 159, 255, 0.1);
    --stat-highlight-bg: #1a2332;
    --strengths-bg: #1a2e1a;
    --weaknesses-bg: #2a1f0f;
    --week-header-bg: linear-gradient(135deg, #4d9fff 0%, #0066cc 100%);
    --report-header-bg: linear-gradient(135deg, #4a4a4a 0%, #5a5a5a 100%);
    --report-header-text: #e6e6e6;
    --note-grid-line: rgba(255, 230, 150, 0.3);
    --note-grid-space: rgba(255, 210, 100, 0.15);
    --note-text-color: #e6e6e6;
    --note-link-color: #82c0ff;
    --note-text-shadow: rgba(59, 59, 59, 0.8);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    font-size: 16px;
    background-color: var(--bg-color);
    transition: background-color 0.3s ease, color 0.3s ease;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Container */
.container {
    background-color: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Typography */
.header-content {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 50px;
    width: auto;
}

h1 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: color 0.3s ease;
}

h2 {
    font-size: 1.875rem;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 0px;
    margin-bottom: 28px;
    color: var(--heading-color);
    position: relative;
    transition: color 0.3s ease;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--heading-color);
    transition: color 0.3s ease;
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 12px;
    margin-bottom: 12px;
    color: var(--heading-color);
    transition: color 0.3s ease;
}

h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 16px;
    margin-bottom: 8px;
    color: var(--heading-color);
    transition: color 0.3s ease;
}

p {
    margin-bottom: 16px;
    color: var(--text-color);
    transition: color 0.3s ease;
}

/* Links */
a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Lists */
ol,
ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

ol li,
ul li {
    margin-bottom: 8px;
}

ol li strong {
    font-weight: 600;
    color: var(--heading-color);
}

/* Theme Toggle */
.theme-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.2s ease;
    color: white;
    backdrop-filter: blur(10px);
}

.theme-toggle:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Hero */
.hero {
    min-height: 100vh;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #2D1B69 0%, #11047A 50%, #5B2C87 100%);
    color: white;
}

.hero-content {
    max-width: 680px;
    padding: 40px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero h1 {
    margin-top: 8px;
    margin-bottom: 24px;
    font-size: 2rem;
    color: white;
}

.hero h2 {
    margin-top: 8px;
    margin-bottom: 12px;
    font-size: 2rem;
    color: white;
}

.hero .subheading {
    font-size: 1.05rem;
    max-width: 48ch;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    margin-top: 48px;
}

.secondary-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 4px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    background-color: transparent;
    color: var(--heading-color);
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.15);
    font-weight: 600;
    min-height: 60px;
}

.hero .secondary-cta {
    border: 3px solid rgba(255, 255, 255, 0.3);
    color: white;
    box-shadow: 6px 6px 0px rgba(139, 92, 246, 0.4);
}

.secondary-cta:hover {
    background-color: var(--feature-bg);
    text-decoration: none;
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.2);
}

.hero .secondary-cta:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px rgba(139, 92, 246, 0.5);
}


.hero-quote {
    margin: 0 auto;
    padding: 0 24px 40px 24px;
    max-width: 500px;
    background: none;
    border: none;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    font-size: 1rem;
    line-height: 1.5;
}

.hero-quote cite {
    display: block;
    margin-top: 8px;
    font-style: normal;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

/* Landing page sections */
section {
    width: 100%;
    padding: 60px 0;
    margin-bottom: 0;
}

.section-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Alternating section backgrounds */
.intro {
    background: linear-gradient(135deg, #f8f9ff 0%, #fff8f3 100%);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .intro {
    background: linear-gradient(135deg, #1a1d2e 0%, #2a1f1a 100%);
}

.intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.intro .section-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2D1B69 0%, #8B5CF6 50%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.intro p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-color);
}

.intro p:first-of-type {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.intro strong {
    font-weight: 600;
    color: var(--text-color);
    font-size: 1rem;
}

.intro p:last-of-type {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 2rem;
    color: var(--text-color);
}

[data-theme="dark"] .intro h2 {
    background: linear-gradient(135deg, #8B5CF6 0%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.what-you-get {
    background-color: var(--container-bg);
    border-top: 3px solid var(--border-color);
    border-bottom: 3px solid var(--border-color);
}

.testimonials {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f2ff 100%);
}

[data-theme="dark"] .testimonials {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.how-it-works {
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f4 100%);
}

[data-theme="dark"] .how-it-works {
    background: linear-gradient(135deg, #2a2a2a 0%, #333333 100%);
}

.pricing {
    background-color: var(--container-bg);
    border-top: 3px solid var(--border-color);
    border-bottom: 3px solid var(--border-color);
}

.faq {
    background: linear-gradient(135deg, #fafbfc 0%, #f5f6f7 100%);
}

[data-theme="dark"] .faq {
    background: linear-gradient(135deg, #1f1f1f 0%, #2c2c2c 100%);
}

.about {
    background-color: var(--container-bg);
    border-top: 3px solid var(--border-color);
    border-bottom: 3px solid var(--border-color);
}

.cta-final {
    background: linear-gradient(135deg, #2D1B69 0%, #11047A 50%, #5B2C87 100%);
    color: white;
    text-align: center;
    padding-top: 48px;
    border-top: 3px solid var(--border-color);
}


.cta-final h2 {
    color: white;
}

.cta-final p {
    color: rgba(255, 255, 255, 0.9);
}

.cta-final .cta-button {
    background: linear-gradient(135deg, #8B5CF6 0%, #06B6D4 100%) !important;
    color: white !important;
    box-shadow: 6px 6px 0px rgba(139, 92, 246, 0.4);
}

.cta-final .cta-button:hover {
    background: linear-gradient(135deg, #7C3AED 0%, #0891B2 100%) !important;
    box-shadow: 8px 8px 0px rgba(139, 92, 246, 0.5);
    transform: translate(-2px, -2px);
}

/* Force final CTA button to stay fixed colors in dark theme */
[data-theme="dark"] .cta-final .cta-button {
    background: linear-gradient(135deg, #8B5CF6 0%, #06B6D4 100%) !important;
    color: white !important;
}

[data-theme="dark"] .cta-final .cta-button:hover {
    background: linear-gradient(135deg, #7C3AED 0%, #0891B2 100%) !important;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.testimonial {
    background: var(--feature-bg);
    border: 3px solid var(--border-color);
    border-radius: 4px;
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    position: relative;
}

.testimonial:hover {
    transform: translate(-2px, -2px);
    box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.15);
}

.testimonial-summary {
    padding: 24px;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.testimonial-summary::-webkit-details-marker {
    display: none;
}

.testimonial-content {
    margin-bottom: 16px;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.5;
    color: var(--text-color);
    margin: 0;
    font-size: 0.95rem;
}

.testimonial-author {
    padding-top: 12px;
    border-top: 2px solid var(--border-color);
    text-align: right;
}

.testimonial-author strong {
    color: var(--heading-color);
    font-size: 1rem;
    font-weight: 600;
}

.testimonial[open] .testimonial-summary {
    display: none;
}

.testimonial-expanded {
    padding: 24px;
    animation: slideDown 0.3s ease-out;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-expanded .testimonial-content {
    margin-bottom: 16px;
}

.testimonial-expanded p {
    font-style: italic;
    line-height: 1.5;
    color: var(--text-color);
    margin: 0;
    font-size: 0.95rem;
}

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

.feature {
    padding: 28px;
    background: var(--feature-bg);
    border: 3px solid var(--border-color);
    border-radius: 4px;
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
    position: relative;
}

.feature-highlight {
    margin-top: 40px;
    border: 3px solid #06B6D4;
    background: var(--feature-bg);
    box-shadow: 8px 8px 0px rgba(6, 182, 212, 0.3);
}

.feature:hover {
    transform: translate(-2px, -2px);
    box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.2);
}

.feature-highlight:hover {
    transform: translate(-2px, -2px);
    box-shadow: 10px 10px 0px rgba(6, 182, 212, 0.4);
}

.feature h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--heading-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature p {
    margin-bottom: 0;
    line-height: 1.6;
    color: var(--text-color);
}

/* Pricing */
.pricing-card {
    background-color: var(--container-bg);
    border: 3px solid var(--border-color);
    border-radius: 4px;
    padding: 32px;
    margin: 24px auto;
    max-width: 350px;
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
}

.pricing-card .cta-button {
    display: block;
    margin: 24px auto 0 auto;
}

.pricing-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.2);
}

.original-price {
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    color: var(--text-color);
    opacity: 0.6;
    display: inline-block;
    margin-right: 4px;
    font-size: 1.25rem;
}

.current-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--heading-color);
    display: inline;
}

.pricing-card h3 {
    margin-top: 0;
    color: var(--heading-color);
}

/* Checklist styles */
.checklist {
    list-style: none;
    padding-left: 0;
}

.checklist li {
    margin-bottom: 8px;
    color: var(--text-color);
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--button-bg);
    color: var(--container-bg);
    padding: 14px 28px;
    border-radius: 4px;
    border: 3px solid transparent;
    font-weight: 600;
    text-decoration: none;
    margin-top: 24px;
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
    position: relative;
    min-height: 60px;
}

.hero .cta-button {
    background: linear-gradient(135deg, #8B5CF6 0%, #06B6D4 100%);
    color: white;
    box-shadow: 6px 6px 0px rgba(139, 92, 246, 0.4);
    margin-top: 0;
}

.cta-button:hover {
    background: var(--button-hover-bg);
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.25);
    transform: translate(-2px, -2px);
    text-decoration: none;
}

.hero .cta-button:hover {
    background: linear-gradient(135deg, #7C3AED 0%, #0891B2 100%);
    box-shadow: 8px 8px 0px rgba(139, 92, 246, 0.5);
    transform: translate(-2px, -2px);
}

[data-theme="dark"] .cta-button {
    color: #1a1a1a;
}

[data-theme="dark"] .hero .cta-button {
    color: white;
}

.cta-button:active {
    transform: translateY(0);
}

/* FAQ */
.faq-item {
    margin-bottom: 16px;
    border: 3px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--feature-bg);
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.faq-item:hover {
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.15);
    transform: translate(-2px, -2px);
}

.faq-item summary {
    padding: 20px 24px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--heading-color);
    cursor: pointer;
    list-style: none;
    user-select: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

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

.faq-item[open] summary::after {
    transform: rotate(45deg);
    color: var(--heading-color);
}

.faq-content {
    padding: 0 24px 24px 24px;
    animation: slideDown 0.3s ease-out;
}

.faq-item:not([open]) .faq-content {
    animation: slideUp 0.3s ease-in;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

.faq-content p {
    margin-bottom: 12px;
}

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

/* Final CTA section */

.contact {
    margin-top: 24px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Responsive adjustments for landing page */
@media (max-width: 768px) {

    .header-content {
        padding: 10px 10px;
    }

    .section-content {
        padding: 0 20px;
    }

    .pricing-card {
        padding: 24px;
    }

    .hero-content {
        padding: 40px 20px;
    }

    .hero h2 {
        font-size: 1.6rem;
    }

    .hero .subheading {
        font-size: 1rem;
    }

    .hero-ctas {
        flex-direction: column;
        margin-top: 48px;
    }


    .hero-quote {
        margin: 0 auto;
        padding: 0 20px 30px 20px;
        font-size: 0.95rem;
    }

    /* Intro section mobile adjustments */
    .intro h2 {
        font-size: 2rem;
    }

    .intro p:first-of-type {
        font-size: 1rem;
    }

    .intro p {
        font-size: 1rem;
    }

    .intro strong {
        font-size: 1rem;
    }

    .intro p:last-of-type {
        font-size: 1rem;
    }

    /* Testimonials mobile adjustments */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .testimonial-expanded {
        min-height: unset;
        flex-direction: column;
    }

    /* Features grid mobile adjustments */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }

    .feature {
        padding: 20px;
    }

    .feature-highlight {
        margin-top: 30px;
    }
}

/* Success Page Styles */
.success-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2D1B69 0%, #11047A 50%, #5B2C87 100%);
    color: white;
    text-align: center;
}

.success-content {
    max-width: 600px;
    padding: 40px 24px;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 24px;
}

.success-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: white;
}

.success-message {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.success-steps-card {
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.15);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    padding: 32px;
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.success-step {
    margin-bottom: 24px;
}

.success-step:last-child {
    margin-bottom: 0;
}

.success-step h3 {
    margin: 0 0 8px 0;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.success-step p {
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
}

.success-contact p {
    color: rgba(200, 200, 200, 0.95);
}

.success-steps-card .success-contact {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.success-steps-card .success-contact a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: underline;
    font-weight: 600;
}

.success-steps-card .success-contact a:hover {
    color: white;
    text-decoration: underline;
}

.success-steps-card .success-footer {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.success-steps-card .success-footer p {
    margin: 8px 0;
    color: rgba(255, 255, 255, 0.95);
}

.success-cta {
    margin-top: 40px;
}

/* Mobile adjustments for success page */
@media (max-width: 768px) {
    .success-hero h1 {
        font-size: 2rem;
    }

    .success-content {
        padding: 30px 20px;
    }

    .success-steps-card {
        padding: 24px;
        text-align: center;
    }

    .success-icon {
        font-size: 3rem;
    }
}

/* Header link styling for terms page */
.header-content h1 a {
    text-decoration: none;
    color: inherit;
    transition: text-decoration 0.2s ease;
}

.header-content h1 a:hover {
    text-decoration: underline;
}

/* Simple footer for index page */
.simple-footer {
    background: #1a0d3e;
    border-top: 3px solid var(--border-color);
    padding: 32px 0;
    text-align: center;
    width: 100%;
    margin: 0;
}

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

.simple-footer p {
    margin: 0;
    font-size: 0.95rem;
    text-align: center;
}

.simple-footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s ease;
}

.simple-footer a:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* Terms Page Styles */
.terms-page {
    min-height: 100vh;
    padding: 100px 0 40px 0;
    /* Add top padding for fixed header */
    background-color: var(--bg-color);
}

.terms-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.terms-header {
    text-align: center;
    margin-bottom: 48px;
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff8f3 100%);
    border: 3px solid var(--border-color);
    border-radius: 4px;
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .terms-header {
    background: linear-gradient(135deg, #1a1d2e 0%, #2a1f1a 100%);
}

.terms-header h1 {
    margin: 0 0 16px 0;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2D1B69 0%, #8B5CF6 50%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="dark"] .terms-header h1 {
    background: linear-gradient(135deg, #8B5CF6 0%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.terms-last-updated {
    font-size: 0.95rem;
    color: var(--text-color);
    opacity: 0.8;
    margin: 0 0 16px 0;
    font-style: italic;
}

.terms-intro {
    font-size: 1.1rem;
    color: var(--text-color);
    margin: 0;
    font-weight: 500;
}

.terms-content {
    background: var(--container-bg);
    border: 3px solid var(--border-color);
    border-radius: 4px;
    padding: 40px;
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.1);
}

.terms-section {
    margin-bottom: 48px;
}

.terms-section:last-child {
    margin-bottom: 0;
}

.terms-section h2 {
    margin: 0 0 24px 0;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--heading-color);
    padding-bottom: 12px;
    border-bottom: 3px solid var(--border-color);
}

.terms-section h3 {
    margin: 32px 0 16px 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--heading-color);
}

.terms-section p {
    margin: 0 0 16px 0;
    line-height: 1.7;
    color: var(--text-color);
    font-size: 1rem;
}

.terms-section p:last-child {
    margin-bottom: 0;
}

.terms-list {
    margin: 16px 0;
    padding-left: 0;
    list-style: none;
}

.terms-list li {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
    color: var(--text-color);
}

.terms-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--heading-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.terms-list li strong {
    color: var(--heading-color);
    font-weight: 600;
}

.terms-section a {
    color: var(--heading-color);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s ease;
}

.terms-section a:hover {
    color: #8B5CF6;
    text-decoration: underline;
}

/* Mobile adjustments for terms page */
@media (max-width: 768px) {
    .terms-container {
        padding: 0 20px;
    }

    .terms-header {
        padding: 30px 20px;
        margin-bottom: 32px;
    }

    .terms-header h1 {
        font-size: 2rem;
    }

    .terms-content {
        padding: 24px;
    }

    .terms-section {
        margin-bottom: 32px;
    }

    .terms-section h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .terms-section h3 {
        font-size: 1.2rem;
        margin: 24px 0 12px 0;
    }
}

/* Disclaimer text styles */
.disclaimer-text {
    font-size: 0.85rem;
    margin: 12px 0 0 0;
    opacity: 0.8;
    font-style: italic;
}

/* Hero section disclaimer - white/light for contrast */
.hero-ctas .disclaimer-text {
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    flex-basis: 100%;
    text-align: center;
    order: 10;
}

[data-theme="dark"] .hero-ctas .disclaimer-text {
    color: #e6e6e6;
}

/* Other disclaimers - inherit text color with margin */
.pricing-card .disclaimer-text {
    margin-top: 16px;
}

.cta-final .disclaimer-text,
.cta-final .section-content .disclaimer-text {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.8) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Force final CTA disclaimer to stay white in dark theme */
[data-theme="dark"] .cta-final .disclaimer-text,
[data-theme="dark"] .cta-final .section-content .disclaimer-text {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Additional high-specificity rule to override theme inheritance */
.cta-final .section-content p.disclaimer-text,
[data-theme="dark"] .cta-final .section-content p.disclaimer-text {
    color: rgba(255, 255, 255, 0.8) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}