
:root {

    --gradient-start: #D946EF;
    --gradient-mid-purple: #8B5CF6;
    --gradient-mid-blue: #3B82F6;
    --gradient-end: #22D3EE;



    --accent: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid-purple), var(--gradient-mid-blue), var(--gradient-end));


    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 5rem;
    --space-xxl: 7rem;


    --topbar-height: 80px;

    --font: 'Inter', system-ui, sans-serif;
}

[data-theme="light"] {
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-tertiary: #f3f4f6;
    --bg-card: #ffffff;
    --text-primary: #111827;
    --text-secondary: #6b7280;
    --border-color: #e5e7eb;
    --border-light: #f3f4f6;

    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-600: #4b5563;
    --gray-900: #111827;
}

[data-theme="dark"] {
    --bg-primary: #0a0a0a;
    --bg-secondary: #171717;
    --bg-tertiary: #1f1f1f;
    --bg-card: #262626;
    --text-primary: #f5f5f5;
    --text-secondary: #a3a3a3;
    --border-color: #333333;
    --border-light: #404040;

    --gray-50: #262626;
    --gray-100: #2a2a2a;
    --gray-200: #333333;
    --gray-300: #404040;
    --gray-400: #737373;
    --gray-600: #a3a3a3;
    --gray-900: #f5f5f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding-top: var(--topbar-height);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.container.narrow {
    max-width: 800px;
}


h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    margin-bottom: var(--space-md);
}

h2 {
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    margin-bottom: var(--space-md);
}

h3 {
    font-size: 1.375rem;
    margin-bottom: var(--space-sm);
}

h4 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

p {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    line-height: 1.7;
    max-width: 65ch;
    margin-left: auto;
    margin-right: auto;
}

.lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.section-intro {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto var(--space-lg);
    text-align: center;
}

a {
    color: var(--gradient-mid-blue);
    text-decoration: none;
    transition: opacity 0.2s;
}

a:hover {
    opacity: 0.7;
}

strong {
    color: var(--text-primary);
    font-weight: 600;
}

.btn-invest,
.btn-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    border: none;
}

.btn-invest {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.btn-invest:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
    opacity: 1;
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--text-primary);
    opacity: 1;
}


.side-nav {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: var(--topbar-height);
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 var(--space-lg);
    z-index: 1000;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-img {
    max-width: 50px;
    height: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    background: var(--accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: var(--space-lg);
    margin: 0;
    justify-content: center;
}

.nav-links a {
    font-size: 0.9375rem;
    color: var(--gray-600);
    font-weight: 500;
    display: block;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gray-900);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    opacity: 1;
}

.nav-ctas {
    display: flex;
    flex-direction: row;
    gap: var(--space-sm);
    align-items: center;
    justify-content: flex-end;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    background: var(--accent);
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    white-space: nowrap;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
    opacity: 1;
}

.nav-cta-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    box-shadow: none;
}

.nav-cta-secondary:hover {
    background: var(--bg-card);
    border-color: var(--text-primary);
    box-shadow: none;
}

.theme-toggle {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.625rem;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
}

.theme-toggle:hover {
    background: var(--bg-card);
    border-color: var(--text-primary);
}


.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--space-md);
    z-index: 1001;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.mobile-logo {
    display: flex;
    align-items: center;
    height: 70px;
}

.mobile-nav .logo-img {
    max-width: 90px;
    height: auto;
}

.mobile-nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-theme-toggle:hover {
    background: var(--bg-secondary);
    border-color: var(--accent-primary);
}

.mobile-theme-toggle svg {
    color: var(--text-primary);
}

.menu-toggle {
    width: 32px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

.menu-toggle.active span:first-child {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:last-child {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-secondary);
    padding: var(--space-xl) var(--space-md);
    z-index: 1000;
    overflow-y: auto;
    transition: background-color 0.3s ease;
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.mobile-nav-links a {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--gray-600);
}

.mobile-nav-links a:hover {
    color: var(--gray-900);
}

.mobile-ctas {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) var(--space-lg);
    background: var(--accent);
    color: white;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
}

.mobile-cta-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.mobile-cta-secondary:hover {
    background: var(--bg-card);
    border-color: var(--text-primary);
}


.hero {
    padding: var(--space-xl) 0 var(--space-xl);
    text-align: center;
    background: var(--bg-primary);
}

.hero h1 {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0;
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto var(--space-lg);
    color: var(--gray-600);
}

.hero-trust-indicators {
    max-width: 700px;
    margin: 0 auto var(--space-lg);
}

.trust-bullets {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-sm);
    text-align: left;
}

.trust-bullets li {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    padding: var(--space-xs) 0;
}

.hero-rating {
    max-width: 900px;
    margin: 0 auto var(--space-lg);
    padding: var(--space-md) var(--space-lg);
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.hero-rating h3 {
    font-size: 1.375rem;
    margin-bottom: var(--space-md);
    text-align: center;
}

.rating-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.stars {
    display: flex;
    gap: 0.5rem;
    font-size: 3rem;
    cursor: pointer;
}

.star {
    color: var(--gray-400);
    transition: color 0.2s ease, transform 0.2s ease;
    user-select: none;
}

.star:hover,
.star.active {
    color: #FFD700;
    transform: scale(1.1);
}

.star.hovered {
    color: #FFD700;
}

#ratingComment {
    width: 100%;
    min-height: 80px;
    padding: var(--space-sm);
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font);
    font-size: 1rem;
    resize: vertical;
    transition: border-color 0.3s ease;
}

#ratingComment:focus {
    outline: none;
    border-color: var(--gradient-mid-purple);
}

.btn-submit-rating {
    padding: 0.875rem 2rem;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.btn-submit-rating:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-submit-rating:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.rating-message {
    font-size: 0.875rem;
    text-align: center;
    margin: 0;
    min-height: 1.5rem;
}

.rating-message.success {
    color: #10b981;
}

.rating-message.error {
    color: #ef4444;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    max-width: 900px;
    margin: 0 auto;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--gray-200);
}

.badge {
    text-align: center;
}

.badge strong {
    display: block;
    font-size: 1.5rem;
    background: var(--accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-xs);
}

.badge span {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.reviews-section {
    background: var(--bg-secondary);
    padding: var(--space-xl) 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.review-card {
    background: var(--bg-card);
    padding: var(--space-lg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.review-stars {
    font-size: 1.25rem;
    color: #FFD700;
    margin-bottom: var(--space-xs);
}

.review-card h3 {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
    text-align: left;
}

.review-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: var(--space-sm);
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.review-author {
    font-size: 0.875rem;
    color: var(--text-primary);
    font-weight: 600;
    margin: 0;
    text-align: left;
}

.rating-section {
    background: var(--bg-primary);
    padding: var(--space-xl) 0;
}


.section {
    padding: var(--space-xl) 0;
    text-align: center;
    background: var(--bg-primary);
}

.section h2,
.section h3,
.section h4,
.section p {
    margin-left: auto;
    margin-right: auto;
}


.about-section {
    background: var(--bg-primary);
}

.about-intro {
    max-width: 900px;
    margin: 0 auto var(--space-lg);
    text-align: center;
}

.two-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
    text-align: center;
}

.two-col .col {
    text-align: center;
}

.two-col .col h3 {
    text-align: center;
}

.two-col .col p {
    margin-left: auto;
    margin-right: auto;
}

.team-highlight {
    background: var(--bg-tertiary);
    padding: var(--space-md);
    border-radius: 8px;
    border-left: 4px solid var(--gradient-mid-purple);
    text-align: center;
}

.team-highlight p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.expertise-list {
    list-style: none;
    margin-top: var(--space-sm);
    text-align: center;
}

.expertise-list li {
    padding: var(--space-xs) 0;
    color: var(--gray-600);
    text-align: center;
}

.expertise-list li:before {
    content: "✓ ";
    color: var(--gradient-mid-purple);
    font-weight: 700;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.value-card {
    padding: var(--space-md);
    background: var(--bg-tertiary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.value-card h4 {
    color: var(--gray-900);
    margin-bottom: var(--space-sm);
    text-align: center;
}

.value-card p {
    margin: 0 auto;
    font-size: 0.9375rem;
    text-align: center;
}


.team-section {
    background: var(--bg-primary);
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: var(--space-lg);
    margin: var(--space-lg) 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.team-member {
    background: var(--bg-secondary);
    padding: var(--space-lg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.3s ease;
}

.team-member:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto var(--space-md);
    border: 4px solid var(--gray-100);
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
    text-align: center;
}

.team-title {
    color: var(--gradient-mid-purple);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: var(--space-md);
    text-align: center;
}

.team-bio {
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: var(--space-md);
    text-align: center;
}

.team-credentials {
    display: flex;
    gap: var(--space-xs);
    flex-wrap: wrap;
    justify-content: center;
}

.team-credentials span {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.invest-section {
    background: var(--bg-primary);
}

.invest-guarantee {
    background: var(--bg-tertiary);
    padding: var(--space-md);
    border-radius: 8px;
    border-left: 4px solid var(--gradient-mid-blue);
    margin: var(--space-lg) 0;
    text-align: center;
}

.invest-guarantee strong {
    display: block;
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
    text-align: center;
}

.invest-guarantee p {
    margin: 0 auto;
    text-align: center;
}

.tier-intro {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0 auto var(--space-md);
    max-width: 700px;
}

.tiers-display {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin: var(--space-lg) 0;
}

.tier-item {
    text-align: center;
    padding: var(--space-md);
    background: var(--bg-tertiary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    min-width: 200px;
}

.tier-ratio {
    font-size: 2rem;
    font-weight: 700;
    background: var(--accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-xs);
}

.tier-label {
    font-size: 0.875rem;
    color: var(--text-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xs);
}

.tier-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

.tier-explanation {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: var(--space-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.step-card {
    background: var(--bg-tertiary);
    padding: var(--space-md);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.step-num {
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto var(--space-md);
}

.step-card h3 {
    font-size: 1.125rem;
    text-align: center;
}

.step-card p {
    margin: 0 auto;
    font-size: 0.9375rem;
    text-align: center;
}

.cta-box {
    text-align: center;
    margin-top: var(--space-lg);
}

.insights-section {
    background: var(--bg-primary);
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.insight-card {
    background: var(--bg-secondary);
    padding: var(--space-md);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: background-color 0.3s ease;
}

.tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    margin-bottom: var(--space-sm);
}

.insight-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    text-align: center;
}

.insight-card p {
    margin: 0 auto var(--space-sm);
    font-size: 0.9375rem;
    text-align: center;
}

.read-more {
    font-weight: 600;
    font-size: 0.9375rem;
}

.community-cta {
    background: var(--bg-secondary);
    padding: var(--space-lg);
    border-radius: 8px;
    text-align: center;
    margin-top: var(--space-lg);
    border: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
}

.community-cta h3 {
    margin: 0 auto var(--space-sm);
    text-align: center;
}

.community-cta p {
    margin: 0 auto var(--space-md);
    text-align: center;
}


.facts-section {
    background: var(--bg-primary);
}

.facts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.facts-grid .fact-block:first-child {
    grid-column: 1;
}

@media (min-width: 768px) {
    .facts-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .facts-grid .fact-block:first-child {
        grid-column: 1 / -1;
    }
}

.fact-block {
    padding: var(--space-md);
    background: var(--bg-tertiary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.fact-block.warning {
    background: #FEF3C7;
    border-color: #F59E0B;
    border-width: 2px;
}

[data-theme="dark"] .fact-block.warning {
    background: #3a2a0a;
    border-color: #d97706;
    color: #fbbf24;
}

[data-theme="dark"] .fact-block.warning h3,
[data-theme="dark"] .fact-block.warning p,
[data-theme="dark"] .fact-block.warning strong {
    color: #fef3c7;
}

.fact-block h3 {
    margin-bottom: var(--space-sm);
    text-align: center;
}

.fact-block p {
    margin: 0 auto var(--space-sm);
    text-align: center;
}

.fact-block p:last-child {
    margin-bottom: 0;
}

.contact-section {
    background: var(--bg-primary);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.method {
    padding: var(--space-md);
    background: var(--bg-secondary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: background-color 0.3s ease;
}

.contact-icon {
    display: block;
    margin: 0 auto var(--space-sm);
    color: var(--gradient-mid-purple);
}

.method strong {
    display: block;
    font-size: 1.125rem;
    margin-bottom: var(--space-xs);
    text-align: center;
}

.method p {
    margin: 0 auto var(--space-xs);
    font-size: 0.9375rem;
    text-align: center;
}

.method a {
    font-weight: 600;
}


.footer {
    padding: var(--space-lg) 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.footer-logo {
    height: 32px;
    width: auto;
}

.footer-brand p {
    margin: 0;
    color: var(--gray-400);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-md);
    border-top: 1px solid var(--gray-200);
}

.footer-bottom p {
    margin: 0;
    margin-bottom: var(--space-xs);
    color: var(--gray-400);
    font-size: 0.875rem;
    text-align: center;
    max-width: 100%;
}

.disclaimer {
    font-size: 0.75rem !important;
}


@media (max-width: 1024px) {
    :root {
        --space-lg: 2.5rem;
        --space-xl: 4rem;
        --space-xxl: 5rem;
    }

    .side-nav .nav-links {
        display: none;
    }

    .side-nav {
        padding: 0 var(--space-md);
    }

    .mobile-nav {
        display: flex;
    }

    .hero {
        padding: var(--space-xl) 0;
    }
}

@media (max-width: 768px) {
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        --space-md: 1.5rem;
        --space-lg: 2rem;
        --space-xl: 3rem;
    }
    
    .tiers-display {
        flex-direction: column;
        align-items: center;
    }
    
    .mobile-nav .logo-img {
        max-width: 70px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

:focus-visible {
    outline: 2px solid var(--gradient-mid-purple);
    outline-offset: 2px;
}

.tos-section {
    padding: var(--space-xl) 0;
    min-height: calc(100vh - var(--topbar-height));
}

.tos-section h1 {
    font-size: 2.5rem;
    margin-bottom: var(--space-xs);
    background: var(--accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tos-updated {
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-bottom: var(--space-lg);
}

.tos-content {
    margin-top: var(--space-lg);
}

.tos-content h2 {
    font-size: 1.5rem;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.tos-content h3 {
    font-size: 1.25rem;
    margin-top: var(--space-md);
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.tos-content p {
    margin-bottom: var(--space-md);
    color: var(--text-secondary);
    line-height: 1.7;
}

.tos-content ul {
    margin: var(--space-md) 0;
    padding-left: var(--space-lg);
}

.tos-content ul li {
    margin-bottom: var(--space-sm);
    color: var(--text-secondary);
    line-height: 1.7;
}

.tos-content a {
    color: var(--gradient-mid-blue);
    text-decoration: none;
    font-weight: 500;
}

.tos-content a:hover {
    text-decoration: underline;
}

.tos-acknowledgment {
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    background: var(--bg-secondary);
    border-left: 4px solid var(--gradient-mid-purple);
    border-radius: 8px;
}

.tos-acknowledgment h2 {
    margin-top: 0;
}

.tos-acknowledgment strong {
    color: var(--text-primary);
}

.live-chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    font-family: var(--font);
}

.chat-toggle {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid-purple));
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(217, 70, 239, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.chat-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2), 0 12px 32px rgba(217, 70, 239, 0.3);
}

.chat-toggle:active {
    transform: scale(0.95);
}

.notification-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    border: 2px solid var(--bg-primary);
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 400px;
    height: 600px;
    max-height: calc(100vh - 120px);
    background: var(--bg-card);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--border-color);
    animation: chatSlideIn 0.3s ease-out;
}

@keyframes chatSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.chat-header {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid-purple));
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.chat-header-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.chat-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.chat-status {
    margin: 0;
    font-size: 13px;
    opacity: 0.9;
}

.chat-close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 8px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background 0.2s ease;
}

.chat-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: var(--bg-secondary);
}

.chat-message {
    display: flex;
    gap: 12px;
    animation: messageSlideIn 0.3s ease-out;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bot-message {
    align-self: flex-start;
}

.user-message {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.message-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-message .message-avatar {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.message-content {
    max-width: 70%;
    background: var(--bg-card);
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.user-message .message-content {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid-purple));
    color: white;
}

.message-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: inherit;
}

.bot-message .message-content p {
    color: var(--text-primary);
}

.message-time {
    font-size: 11px;
    color: var(--text-secondary);
    margin-top: 4px;
    opacity: 0.7;
}

.email-prompt {
    padding: 20px;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
}

.email-prompt p {
    margin: 0 0 12px 0;
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 500;
}

.email-prompt input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font);
    background: var(--bg-secondary);
    color: var(--text-primary);
    margin-bottom: 12px;
    transition: border-color 0.2s ease;
}

.email-prompt input:focus {
    outline: none;
    border-color: var(--gradient-mid-purple);
}

.submit-email-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid-purple));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.submit-email-btn:hover {
    opacity: 0.9;
}

.submit-email-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.chat-input-container {
    display: flex;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
}

.chat-input-container textarea {
    flex: 1;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font);
    background: var(--bg-secondary);
    color: var(--text-primary);
    resize: none;
    max-height: 120px;
    transition: border-color 0.2s ease;
}

.chat-input-container textarea:focus {
    outline: none;
    border-color: var(--gradient-mid-purple);
}

.chat-send-btn {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid-purple));
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
    flex-shrink: 0;
}

.chat-send-btn:hover {
    opacity: 0.9;
}

.chat-send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-secondary);
    animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        opacity: 0.3;
        transform: translateY(0);
    }
    30% {
        opacity: 1;
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .live-chat-widget {
        bottom: 16px;
        right: 16px;
    }

    .chat-window {
        width: calc(100vw - 32px);
        height: calc(100vh - 100px);
        max-height: calc(100vh - 100px);
        bottom: 76px;
        right: -8px;
    }

    .chat-toggle {
        width: 56px;
        height: 56px;
    }
}
