/* ============================================
   Financial Dashboard - Landing Page Styles
   ============================================ */

/* CSS Variables */
:root {
    --color-bg-dark: #0f0f1a;
    --color-bg-card: #1e1e2e;
    --color-bg-card-hover: #2a2a3e;
    --color-primary: #3b82f6;
    --color-primary-hover: #2563eb;
    --color-success: #10b981;
    --color-danger: #ef4444;
    --color-warning: #f59e0b;
    --color-text-primary: #ffffff;
    --color-text-secondary: #9ca3af;
    --color-text-muted: #6b7280;
    --color-border: rgba(255, 255, 255, 0.1);
    --color-border-hover: rgba(255, 255, 255, 0.2);

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.3);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* ============================================
   Navigation
   ============================================ */
.navbar {
    background: linear-gradient(180deg, rgba(15, 15, 26, 0.98) 0%, rgba(15, 15, 26, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-text-primary) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-icon {
    color: var(--color-primary);
    font-size: 1.5rem;
}

.nav-link {
    color: var(--color-text-secondary) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--color-text-primary) !important;
}

.btn-cta {
    background: var(--color-primary);
    border: none;
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.btn-cta:hover {
    background: var(--color-primary-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-1px);
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title-accent {
    display: block;
    background: linear-gradient(135deg, var(--color-primary) 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

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

.btn-cta-main {
    background: var(--color-primary);
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.btn-cta-main:hover {
    background: var(--color-primary-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-cta-secondary {
    border: 1px solid var(--color-border);
    padding: 1rem 2rem;
    font-weight: 500;
    font-size: 1.1rem;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.btn-cta-secondary:hover {
    border-color: var(--color-text-secondary);
    background: rgba(255, 255, 255, 0.05);
}

.hero-trust {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-trust i {
    color: var(--color-success);
}

/* ============================================
   Preview Section
   ============================================ */
.preview-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, #12121f 100%);
}

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
}

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

/* Preview Widget */
.preview-widget {
    background: linear-gradient(145deg, var(--color-bg-card), #252538);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    min-height: 220px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.preview-widget:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

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

.widget-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    font-weight: 600;
}

.widget-badge {
    font-size: 0.65rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    background: rgba(59, 130, 246, 0.2);
    color: var(--color-primary);
    font-weight: 600;
    text-transform: uppercase;
}

.widget-badge.badge-buy,
.widget-badge.badge-bullish {
    background: rgba(16, 185, 129, 0.2);
    color: var(--color-success);
}

.widget-badge.badge-sell,
.widget-badge.badge-bearish {
    background: rgba(239, 68, 68, 0.2);
    color: var(--color-danger);
}

.widget-badge.badge-neutral {
    background: rgba(156, 163, 175, 0.2);
    color: var(--color-text-secondary);
}

.widget-badge.badge-warning {
    background: rgba(245, 158, 11, 0.2);
    color: var(--color-warning);
}

.widget-body {
    position: relative;
}

.widget-detail {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: 1rem;
}

.widget-label {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.widget-label.sentiment-greed {
    color: var(--color-success);
}

.widget-label.sentiment-fear {
    color: var(--color-danger);
}

/* Gauge */
.gauge-container {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.gauge {
    width: 100px;
    height: 50px;
    position: relative;
    overflow: hidden;
}

.gauge::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: conic-gradient(
        from 180deg,
        var(--color-danger) 0deg,
        var(--color-warning) 90deg,
        var(--color-success) 180deg
    );
    mask: radial-gradient(circle at center, transparent 35px, black 36px);
    -webkit-mask: radial-gradient(circle at center, transparent 35px, black 36px);
}

.gauge-fill {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--color-bg-card);
    clip-path: polygon(50% 50%, 100% 50%, 100% 100%, 0 100%, 0 50%);
    transform: rotate(calc((var(--gauge-value) / 100) * 180deg - 180deg));
    transform-origin: center;
}

.gauge-value {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: 1.75rem;
    font-weight: 700;
}

/* Rotation List */
.rotation-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.rotation-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
}

.rotation-rank {
    width: 20px;
    height: 20px;
    background: rgba(59, 130, 246, 0.2);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

.rotation-symbol {
    font-family: var(--font-mono);
    font-weight: 600;
    flex: 1;
}

.rotation-score {
    font-family: var(--font-mono);
    color: var(--color-text-secondary);
    font-size: 0.85rem;
}

.rotation-signal {
    font-size: 0.65rem;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-weight: 600;
}

.signal-buy {
    background: rgba(16, 185, 129, 0.2);
    color: var(--color-success);
}

.signal-sell {
    background: rgba(239, 68, 68, 0.2);
    color: var(--color-danger);
}

/* Flow Stats */
.flow-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.flow-stat {
    flex: 1;
    text-align: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
}

.flow-stat.bullish {
    border-left: 3px solid var(--color-success);
}

.flow-stat.bearish {
    border-left: 3px solid var(--color-danger);
}

.flow-label {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

.flow-value {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 600;
}

.flow-stat.bullish .flow-value {
    color: var(--color-success);
}

.flow-stat.bearish .flow-value {
    color: var(--color-danger);
}

.flow-alert {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    color: var(--color-warning);
}

.flow-alert i {
    color: var(--color-warning);
}

/* Valuation Metrics */
.valuation-metrics {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

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

.metric-label {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

.metric-value {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 600;
}

.valuation-score {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

.score-value {
    font-family: var(--font-mono);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

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

/* Correlation */
.correlation-alert {
    text-align: center;
}

.correlation-pair {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.corr-symbol {
    font-family: var(--font-mono);
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

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

.correlation-value {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 700;
}

.correlation-value.negative {
    color: var(--color-danger);
}

.correlation-value.positive {
    color: var(--color-success);
}

.correlation-change {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.correlation-change i {
    color: var(--color-danger);
}

/* Strategy */
.strategy-highlight {
    text-align: center;
    margin-bottom: 1rem;
}

.strategy-name {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin-bottom: 0.5rem;
}

.strategy-return {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 700;
}

.strategy-return.positive {
    color: var(--color-success);
}

.strategy-return.negative {
    color: var(--color-danger);
}

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

.strategy-comparison {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
}

.comparison-value.positive {
    color: var(--color-success);
    font-weight: 600;
}

/* Widget Overlay (for locked content) */
.widget-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(15, 15, 26, 0.95));
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.preview-widget:hover .widget-overlay {
    opacity: 1;
}

.widget-overlay span {
    font-size: 0.8rem;
    color: var(--color-primary);
    font-weight: 500;
}

/* Preview CTA */
.preview-cta {
    margin-top: 2rem;
}

/* ============================================
   Features Section
   ============================================ */
.features-section {
    padding: 80px 0;
    background: var(--color-bg-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.75rem;
    color: var(--color-primary);
}

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

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

/* ============================================
   Social Proof Section
   ============================================ */
.proof-section {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, #12121f 100%);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.proof-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.proof-number {
    font-family: var(--font-mono);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.proof-label {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

/* ============================================
   Pricing Section
   ============================================ */
.pricing-section {
    padding: 80px 0;
    background: var(--color-bg-dark);
}

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

.pricing-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: var(--color-primary);
    transform: scale(1.02);
}

.pricing-card.featured:hover {
    transform: scale(1.04);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price-original {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    text-decoration: line-through;
}

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

.price-period {
    color: var(--color-text-secondary);
}

.price-note {
    font-size: 0.8rem;
    color: var(--color-warning);
    margin-top: 0.5rem;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    font-size: 1rem;
}

.pricing-features li .bi-check {
    color: var(--color-success);
}

.pricing-features li .bi-x {
    color: var(--color-text-muted);
}

.pricing-features li.disabled {
    color: var(--color-text-muted);
}

.pricing-cta .btn {
    font-weight: 600;
}

.pricing-guarantee {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

.pricing-guarantee i {
    color: var(--color-success);
    font-size: 1.25rem;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, #12121f 100%);
}

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

.accordion-item {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border) !important;
    border-radius: var(--radius-md) !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background: var(--color-bg-card) !important;
    color: var(--color-text-primary) !important;
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: var(--color-bg-card-hover) !important;
}

.accordion-button::after {
    filter: invert(1);
}

.accordion-body {
    background: var(--color-bg-card);
    color: var(--color-text-secondary);
    padding: 0 1.5rem 1.25rem;
}

/* ============================================
   Final CTA Section
   ============================================ */
.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #12121f 0%, var(--color-bg-dark) 100%);
}

.final-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta-section p {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ============================================
   Footer
   ============================================ */
.footer-section {
    padding: 60px 0 30px;
    background: var(--color-bg-dark);
    border-top: 1px solid var(--color-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-brand .brand-icon {
    font-size: 1.25rem;
}

.footer-tagline {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.footer-links h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

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

.disclaimer {
    max-width: 600px;
    margin: 0 auto;
    font-size: 0.75rem !important;
}

/* ============================================
   Modals
   ============================================ */
.modal-content {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}

.modal-header {
    border-bottom: 1px solid var(--color-border);
    padding: 1.5rem;
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.modal-body {
    padding: 1.5rem;
}

.modal-description {
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text-primary);
    padding: 0.75rem 1rem;
    transition: all 0.2s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
    color: var(--color-text-primary);
}

.form-control::placeholder {
    color: var(--color-text-muted);
}

.form-check-input {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--color-border);
}

.form-check-input:checked {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.form-check-label {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

.form-check-label a {
    color: var(--color-primary);
}

.forgot-link {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

.forgot-link:hover {
    color: var(--color-primary);
}

.modal-divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
    color: var(--color-text-muted);
}

.modal-divider::before,
.modal-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--color-border);
}

.modal-divider span {
    padding: 0 1rem;
    font-size: 0.85rem;
}

.modal-switch {
    text-align: center;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.modal-switch a {
    color: var(--color-primary);
    font-weight: 500;
}

.modal-back {
    text-align: center;
    margin-top: 1.5rem;
}

.modal-back a {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.modal-terms {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.8rem;
    margin-top: 1rem;
    margin-bottom: 0;
}

.modal-terms a {
    color: var(--color-text-secondary);
}

/* Trial Benefits */
.trial-benefits {
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.trial-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.trial-benefit i {
    color: var(--color-success);
}

/* Success Modal */
.success-icon {
    font-size: 4rem;
    color: var(--color-success);
    margin-bottom: 1rem;
}

/* ============================================
   Responsive Styles
   ============================================ */
@media (max-width: 1024px) {
    .preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-trust {
        flex-direction: column;
        gap: 0.75rem;
    }

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

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

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

    .pricing-card.featured {
        transform: none;
        order: -1;
    }

    .proof-grid {
        gap: 2rem;
    }

    .proof-stat {
        flex: 0 0 calc(50% - 1rem);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .final-cta-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-cta-main,
    .btn-cta-secondary {
        width: 100%;
    }

    .proof-number {
        font-size: 2rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.preview-widget {
    animation: fadeInUp 0.5s ease forwards;
}

.preview-widget:nth-child(1) { animation-delay: 0.1s; }
.preview-widget:nth-child(2) { animation-delay: 0.2s; }
.preview-widget:nth-child(3) { animation-delay: 0.3s; }
.preview-widget:nth-child(4) { animation-delay: 0.4s; }
.preview-widget:nth-child(5) { animation-delay: 0.5s; }
.preview-widget:nth-child(6) { animation-delay: 0.6s; }

/* Button hover effects */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}
