:root {
    /* Primary Colors */
    --primary-blue: #0050AA;
    --primary-blue-dark: #003875;
    
    /* Gold Accent Colors */
    --accent-gold: #D4AF37;
    --accent-gold-light: #F2E4C1;
    --accent-gold-dark: #B8941F;
    
    /* Text Colors */
    --text-black: #1A1A1A;
    --text-dark: #2D2D2D;
    --text-medium: #6B7280;
    
    /* Background Colors */
    --background-white: #FFFFFF;
    --background-light: #F9FAFB;
    --background-dark: #1A1A1A;
    
    /* Utility Colors */
    --light-gray: #E5E7EB;
    --success-green: #059669;
    --error-red: #DC2626;
    --warning-yellow: #F59E0B;
    --border-color: #D1D5DB;
    --border-gold: rgba(212, 175, 55, 0.3);
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.5;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    
    /* Transitions */
    --transition-base: all 0.2s ease;
}

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

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--text-black);
    background: var(--background-light);
    min-height: 100vh;
}

/* ==================== Header ==================== */
header {
    background: var(--background-white);
    border-bottom: 1px solid var(--border-color);
    padding: var(--spacing-sm) 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-black);
    position: relative;
    text-decoration: none;
    display: inline-block;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
}

nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

nav a {
    margin-left: var(--spacing-md);
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-base);
    padding: 0.5rem;
}

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

/* ==================== Buttons ==================== */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    font-size: 1rem;
    text-align: center;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: var(--text-black);
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--accent-gold-dark), var(--accent-gold));
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
    transform: translateY(-1px);
}

.btn-secondary {
    background: white;
    color: var(--text-black);
    border: 2px solid var(--accent-gold);
}

.btn-secondary:hover:not(:disabled) {
    background: var(--accent-gold-light);
    border-color: var(--accent-gold-dark);
}

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

.btn-danger:hover:not(:disabled) {
    background: #B91C1C;
}

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

.btn-success:hover:not(:disabled) {
    background: #047857;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* ==================== Cards ==================== */
.card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    border-left: 4px solid var(--accent-gold);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.card h3 {
    color: var(--text-black);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.card.premium {
    background: linear-gradient(135deg, #FFFFFF 0%, var(--accent-gold-light) 100%);
    border: 1px solid var(--border-gold);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--light-gray);
}

/* ==================== Tables ==================== */
table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
}

th {
    background: linear-gradient(135deg, var(--background-dark), #2D2D2D);
    padding: var(--spacing-sm);
    text-align: left;
    font-weight: 700;
    color: var(--accent-gold);
    border-bottom: 2px solid var(--accent-gold);
}

td {
    padding: var(--spacing-sm);
    border-bottom: 1px solid var(--light-gray);
}

tr:hover {
    background: var(--background-light);
}

tr:last-child td {
    border-bottom: none;
}

.table-actions {
    display: flex;
    gap: var(--spacing-xs);
}

/* ==================== Forms ==================== */
.form-group {
    margin-bottom: var(--spacing-md);
}

label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--text-black);
}

input, textarea, select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-base);
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

input[type="checkbox"], input[type="radio"] {
    width: auto;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

/* ==================== Layout ==================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-lg) var(--spacing-md);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.stat-label {
    color: var(--text-medium);
    font-size: 0.875rem;
    margin-top: var(--spacing-xs);
}

/* ==================== Tabs ==================== */
.tabs {
    display: flex;
    gap: var(--spacing-xs);
    border-bottom: 2px solid var(--border-color);
    margin-bottom: var(--spacing-lg);
    overflow-x: auto;
}

.tab-btn {
    padding: var(--spacing-sm) var(--spacing-md);
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-medium);
    border-bottom: 3px solid transparent;
    transition: var(--transition-base);
    white-space: nowrap;
}

.tab-btn:hover {
    color: var(--text-black);
}

.tab-btn.active {
    color: var(--text-black);
    border-bottom-color: var(--accent-gold);
    font-weight: 700;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* ==================== Language Switcher ==================== */
.language-switcher {
    position: relative;
    display: inline-block;
}

.language-switcher select {
    width: auto;
    padding: 0.5rem 2rem 0.5rem 1rem;
    background: white;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
    color: var(--text-black);
}

.language-switcher select:hover {
    border-color: var(--accent-gold);
}

/* ==================== Alerts & Messages ==================== */
.alert {
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-md);
}

.alert-success {
    background: #D1FAE5;
    color: #065F46;
    border: 1px solid #10B981;
}

.alert-error {
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #EF4444;
}

.alert-warning {
    background: #FEF3C7;
    color: #92400E;
    border: 1px solid #F59E0B;
}

.alert-info {
    background: #DBEAFE;
    color: #1E3A8A;
    border: 1px solid #3B82F6;
}

/* ==================== Badges ==================== */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-success {
    background: var(--success-green);
    color: white;
}

.badge-warning {
    background: var(--warning-yellow);
    color: white;
}

.badge-danger {
    background: var(--error-red);
    color: white;
}

.badge-info {
    background: var(--primary-blue);
    color: white;
}

.badge-secondary {
    background: var(--light-gray);
    color: var(--text-dark);
}

/* ==================== Modal ==================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--light-gray);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-medium);
}

/* ==================== Loading Spinner ==================== */
.spinner {
    border: 3px solid var(--light-gray);
    border-top: 3px solid var(--accent-gold);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-xl);
}

/* ==================== Utility Classes ==================== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-muted { color: var(--text-medium); }
.text-small { font-size: 0.875rem; }
.text-large { font-size: 1.25rem; }
.mt-1 { margin-top: var(--spacing-sm); }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }
.p-1 { padding: var(--spacing-sm); }
.p-2 { padding: var(--spacing-md); }
.hidden { display: none; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: var(--spacing-sm); }
.gap-2 { gap: var(--spacing-md); }

/* ==================== Landing Page Sections ==================== */

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    color: white;
    padding: 1rem 0;
    text-align: center;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.urgency-banner strong {
    font-weight: 700;
    font-size: 1.1rem;
    margin-left: 0.5rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #003875, #0050AA);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

.trust-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    max-width: 600px;
    margin: 2rem auto 0;
}

.trust-badge h3 {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.trust-badge p {
    font-size: 1rem;
    margin: 0;
}

/* Calculator Section */
.calculator-section {
    background: white;
    border: 2px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin: 2rem auto;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.2);
}

.calculator-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-black);
}

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

.calculator-results {
    background: linear-gradient(135deg, var(--accent-gold-light), #FFFFFF);
    border: 2px solid var(--accent-gold);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.calculator-results h3 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-black);
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    border-radius: var(--radius-sm);
    background: white;
}

.result-item.highlight {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    font-weight: 700;
    font-size: 1.2rem;
}

.result-item.advantage {
    background: #D1FAE5;
    border: 2px solid var(--success-green);
}

.calculator-section > .btn {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

/* Comparison Table */
.comparison-section {
    background: white;
    border-radius: var(--radius-md);
    padding: 2rem;
}

.comparison-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.table-responsive {
    overflow-x: auto;
    margin-bottom: 1.5rem;
}

.comparison-section table {
    min-width: 600px;
}

.comparison-section .highlight {
    background: linear-gradient(135deg, var(--accent-gold-light), white);
    font-weight: 700;
}

.comparison-section .positive {
    color: var(--success-green);
    font-weight: 700;
}

.comparison-section .disclaimer {
    font-size: 0.875rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.comparison-section .highlight-message {
    background: var(--accent-gold-light);
    border-left: 4px solid var(--accent-gold);
    padding: 1rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

/* Live Ticker */
.live-ticker-section {
    background: linear-gradient(135deg, #1A1A1A, #2D2D2D);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-md);
}

.live-ticker-section h2 {
    text-align: center;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.ticker-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 2rem;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ticker-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 0.5s ease;
}

.ticker-name {
    font-weight: 700;
    color: var(--accent-gold);
}

.ticker-action {
    color: white;
}

.ticker-time {
    color: var(--text-medium);
    font-size: 0.875rem;
}

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

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

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
}

.stat-item .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

/* Features Section */
.features-section {
    padding: 3rem 0;
}

.features-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.stat-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    transition: var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-gold);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-black);
}

.stat-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

.stat-card .rate {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin: 0.5rem 0;
}

/* Graph Section */
.graph-section {
    background: white;
    border-radius: var(--radius-md);
    padding: 2rem;
    margin: 2rem 0;
}

.graph-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.graph-container {
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.graph-container canvas {
    width: 100%;
    height: 300px;
}

.graph-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.graph-legend div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.graph-legend span {
    display: inline-block;
    width: 20px;
    height: 4px;
    border-radius: 2px;
}

/* Rates Section */
.rates-section {
    background: linear-gradient(135deg, var(--accent-gold-light), white);
    border-radius: var(--radius-md);
    padding: 3rem 2rem;
    text-align: center;
}

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

.rates-section > p {
    color: var(--text-medium);
    margin-bottom: 2rem;
}

/* Maturity Calendar */
.maturity-calendar-section {
    background: white;
    border-radius: var(--radius-md);
    padding: 2rem;
}

.maturity-calendar-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.maturity-calendar-section > p {
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.maturity-calendar-section .highlight {
    background: linear-gradient(135deg, var(--accent-gold-light), white);
    font-weight: 700;
}

.maturity-calendar-section .positive {
    color: var(--success-green);
    font-weight: 700;
}

.maturity-calendar-section > p:nth-last-of-type(1) {
    text-align: center;
    font-weight: 600;
    background: var(--accent-gold-light);
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.maturity-calendar-section > .btn {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

/* Liquidity Panel */
.liquidity-section {
    background: var(--background-light);
    border-radius: var(--radius-md);
    padding: 2rem;
}

.liquidity-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.liquidity-option {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
}

.liquidity-option.better {
    background: linear-gradient(135deg, var(--accent-gold-light), white);
    border-color: var(--accent-gold);
    position: relative;
}

.liquidity-option h3 {
    color: var(--text-black);
    margin-bottom: 1rem;
}

.liquidity-option h4 {
    color: var(--text-dark);
    margin: 1.5rem 0 0.75rem;
}

.liquidity-option ul {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0;
}

.liquidity-option ul li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
}

.liquidity-option ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.25rem;
}

.visual-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--success-green);
    text-align: center;
    margin: 1.5rem 0;
}

/* Trial Section */
.trial-section {
    background: linear-gradient(135deg, #003875, #0050AA);
    color: white;
    border-radius: var(--radius-md);
    padding: 3rem 2rem;
    text-align: center;
}

.trial-section h2 {
    margin-bottom: 2rem;
}

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

.trial-point {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}

.trial-point .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.trial-point p {
    font-size: 1rem;
    line-height: 1.5;
}

/* Cancellation Section */
.cancellation-section {
    background: white;
    border: 2px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
}

.cancellation-section h2 {
    color: var(--text-black);
    margin-bottom: 1rem;
}

.cancellation-section h3 {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cancellation-section p {
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.cancellation-section .compliance {
    background: var(--accent-gold-light);
    padding: 1rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    margin-top: 1.5rem;
}

/* How It Works */
.how-it-works-section {
    background: var(--background-light);
    border-radius: var(--radius-md);
    padding: 3rem 2rem;
}

.how-it-works-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.step-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    position: relative;
    text-align: center;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-black);
}

.step-card h3 {
    margin: 1rem 0 0.75rem;
    color: var(--text-black);
}

.step-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Reminder Section */
.reminder-section {
    background: white;
    border-radius: var(--radius-md);
    padding: 2rem;
}

.reminder-section h2 {
    text-align: center;
    color: var(--text-black);
    margin-bottom: 0.5rem;
}

.reminder-section h3 {
    text-align: center;
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.reminder-section > p {
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.reminder-section ul {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.reminder-section ul li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: var(--text-dark);
}

.reminder-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: 700;
    font-size: 1.25rem;
}

.reminder-section .badge {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: var(--text-black);
    padding: 1rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* ECB Timeline */
.ecb-section {
    background: linear-gradient(135deg, var(--background-dark), #2D2D2D);
    color: white;
    border-radius: var(--radius-md);
    padding: 3rem 2rem;
}

.ecb-section h2 {
    text-align: center;
    color: var(--accent-gold);
    margin-bottom: 2rem;
}

.ecb-timeline {
    max-width: 800px;
    margin: 0 auto 2rem;
    position: relative;
}

.ecb-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent-gold);
}

.timeline-event {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-date {
    min-width: 100px;
    font-weight: 700;
    color: var(--accent-gold);
    padding-left: 50px;
}

.timeline-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-md);
    padding: 1rem;
}

.timeline-content strong {
    display: block;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: white;
    margin: 0;
}

.ecb-section .impact {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.ecb-section .message {
    text-align: center;
    color: white;
    margin-bottom: 2rem;
}

.ecb-section .btn {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

/* FAQ Section */
.faq-section {
    background: white;
    border-radius: var(--radius-md);
    padding: 3rem 2rem;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item:hover {
    border-color: var(--accent-gold);
}

.faq-question {
    padding: 1.5rem;
    font-weight: 600;
    color: var(--text-black);
    cursor: pointer;
    position: relative;
    user-select: none;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--accent-gold);
    transition: var(--transition-base);
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
    color: var(--text-medium);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

/* Mobile Visualizer */
.mobile-visualizer {
    background: var(--background-light);
    border-radius: var(--radius-md);
    padding: 3rem 2rem;
    overflow: hidden;
}

.mobile-visualizer h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.mobile-cards {
    display: flex;
    gap: 2rem;
    transition: transform 0.3s ease;
    margin-bottom: 1.5rem;
}

.mobile-card {
    min-width: 100%;
    background: white;
    border: 2px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
}

.mobile-card h3 {
    color: var(--text-black);
    margin-bottom: 1rem;
}

.mobile-card .amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin: 1rem 0;
}

.mobile-card p {
    color: var(--text-medium);
}

.mobile-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition-base);
}

.dot.active {
    background: var(--accent-gold);
    width: 32px;
    border-radius: 6px;
}

/* Email Signup */
.email-signup-section {
    background: linear-gradient(135deg, #003875, #0050AA);
    color: white;
    border-radius: var(--radius-md);
    padding: 3rem 2rem;
    text-align: center;
}

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

.email-signup-section p {
    margin-bottom: 2rem;
    opacity: 0.95;
}

.email-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.email-form input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 0.875rem 1.25rem;
}

.email-form button {
    padding: 0.875rem 2rem;
    white-space: nowrap;
}

.email-signup-section .privacy {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-top: 1rem;
}

.email-signup-section .message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--radius-sm);
}

.email-signup-section .message.success {
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.5);
}

.email-signup-section .message.error {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.5);
}

/* CTA Bottom */
.cta-bottom-section {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    padding: 4rem 0;
    text-align: center;
    color: var(--text-black);
}

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

.cta-bottom-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-bottom-section .btn {
    background: var(--background-dark);
    color: var(--accent-gold);
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

.cta-bottom-section .btn:hover {
    background: #2D2D2D;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    background: var(--background-dark);
    color: white;
    padding: 3rem 0 1.5rem;
}

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

.footer-grid h3, .footer-grid h4 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.footer-grid p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    color: rgba(255, 255, 255, 0.6);
}

/* ==================== Responsive Design ==================== */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    nav {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    nav a {
        margin: 0 var(--spacing-xs);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .modal-content {
        width: 95%;
        padding: var(--spacing-md);
    }
    
    table {
        font-size: 0.875rem;
    }
    
    th, td {
        padding: var(--spacing-xs);
    }
    
    /* Landing Page Responsive */
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .calculator-form {
        grid-template-columns: 1fr;
    }
    
    .result-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .liquidity-grid {
        grid-template-columns: 1fr;
    }
    
    .trial-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .ticker-stats {
        grid-template-columns: 1fr;
    }
    
    .email-form {
        flex-direction: column;
    }
    
    .email-form input[type="email"] {
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .timeline-event {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .timeline-date {
        padding-left: 0;
    }
    
    .ecb-timeline::before {
        display: none;
    }
}

@media (max-width: 480px) {
    :root {
        --font-size-base: 14px;
    }
    
    .container {
        padding: var(--spacing-md) var(--spacing-sm);
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
}

/* ==================== Print Styles ==================== */
@media print {
    header, nav, .btn, .tabs {
        display: none;
    }
    
    body {
        background: white;
    }
    
    .card {
        border: 1px solid #000;
        break-inside: avoid;
    }
}