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

:root {
    --primary-navy: #0B1F3B;
    --primary-gold: #D4AF37;
    --secondary-navy: #1a2f4a;
    --light-navy: #2a3f5a;
    --accent-gold: #f4d03f;
    --text-light: #ffffff;
    --text-dark: #2c3e50;
    --text-muted: #7f8c8d;
    --background-light: #f8f9fa;
    --bg-light: #f8f9fa;
    --border-color: #e9ecef;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --error-color: #e74c3c;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.1rem; }

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Utility Classes */
.hidden { display: none !important; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-content {
    text-align: center;
    color: var(--text-light);
}

.loading-content .logo h1 {
    font-size: 4rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.loading-content .logo p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(212, 175, 55, 0.3);
    border-top: 4px solid var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 2rem auto;
}

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

/* Login Section */
.login-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9998;
}

.login-container {
    background: var(--text-light);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    max-width: 400px;
    width: 90%;
    text-align: center;
}

.login-header h1 {
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

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

.login-form .form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.login-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.login-form input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.login-form input:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.login-form button {
    width: 100%;
    margin-top: 1rem;
}

.login-footer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.login-footer a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
}

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

/* Navigation */
.navbar {
    background: var(--primary-navy);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

.nav-logo h2 {
    color: var(--primary-gold);
    margin: 0;
    font-size: 1.8rem;
}

.nav-logo span {
    color: var(--text-light);
    font-size: 0.9rem;
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-gold);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-gold);
}

/* Buttons */
.btn-primary, .btn-hero {
    background: var(--primary-gold);
    color: var(--primary-navy);
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover, .btn-hero:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--primary-navy);
}

.btn-hero {
    font-size: 1.2rem;
    padding: 1rem 2rem;
    border-radius: 8px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
    color: var(--text-light);
    padding: 8rem 0 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 100vh;
}

.hero-content {
    padding-left: 2rem;
}

.hero-content h1 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.hero-content h2 {
    color: var(--text-light);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero-visual {
    padding-right: 2rem;
}

.performance-snapshot {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.performance-snapshot h3 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.product-example {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-gold);
}

.product-item h4 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.product-item p {
    color: var(--text-light);
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.roi {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Sections */
.how-it-works,
.performance-section,
.pricing-section,
.faq-section {
    padding: 5rem 0;
}

.how-it-works {
    background: var(--text-light);
}

.performance-section {
    background: var(--background-light);
}

.pricing-section {
    background: var(--text-light);
}

.faq-section {
    background: var(--background-light);
}

/* How It Works Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: var(--text-light);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 250px;
}

.step h3 {
    text-align: center;
    margin: 1rem 0;
    color: var(--text-dark);
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-gold);
    color: var(--primary-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    align-self: center;
}

/* Performance Chart */
.chart-container {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem auto;
    max-width: 800px;
}

.performance-news {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-top: 2rem;
}

.performance-news h3 {
    color: var(--primary-navy);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* News Section */
.news-section {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.news-section h3 {
    color: var(--primary-navy);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.news-articles {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.news-article {
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
    background: var(--background-light);
}

.news-article:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

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

.article-category {
    background: var(--primary-gold);
    color: var(--primary-navy);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-date {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.news-article h4 {
    color: var(--primary-navy);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    font-weight: 600;
}

.news-article p {
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.news-article p:first-of-type {
    color: var(--text-dark);
    font-weight: 500;
}

.article-preview {
    color: var(--text-muted) !important;
    font-style: italic;
    margin-bottom: 1rem !important;
}

.read-more-btn {
    background: var(--primary-navy);
    color: var(--text-light);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.read-more-btn:hover {
    background: var(--primary-gold);
    color: var(--primary-navy);
    transform: translateY(-1px);
}

/* News Section */
.news-section {
    background: var(--bg-light);
    padding: 6rem 0;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.news-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--text-light);
    border: 2px solid var(--border-color);
    color: var(--text-dark);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--primary-navy);
}

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

.news-card {
    background: var(--text-light);
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-gold);
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem 0;
    margin-bottom: 1rem;
}

.article-category {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-category.new-drops {
    background: #e8f5e8;
    color: #2d5a2d;
}

.article-category.market-analysis {
    background: #e3f2fd;
    color: #1565c0;
}

.article-category.profit-spotlight {
    background: #fff3e0;
    color: #e65100;
}

.article-date {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.news-card h3 {
    color: var(--primary-navy);
    font-size: 1.3rem;
    margin: 0 1.5rem 1rem;
    line-height: 1.4;
    font-weight: 600;
}

.article-metrics {
    display: flex;
    gap: 1rem;
    margin: 0 1.5rem 1rem;
    flex-wrap: wrap;
}

.metric {
    background: var(--background-light);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--text-dark);
    font-weight: 500;
}

.roi {
    background: var(--success-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
}

.article-excerpt {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 1.5rem 1.5rem;
    font-size: 0.95rem;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid var(--border-color);
    background: var(--background-light);
}

.read-time {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
}

.news-cta {
    background: var(--text-light);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.news-cta h3 {
    color: var(--primary-navy);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

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

.newsletter-signup {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-gold);
}

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

/* Pricing Layout */
.pricing-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
    align-items: stretch;
}

.pricing-card {
    background: var(--text-light);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 2px solid var(--primary-gold);
}

.pricing-card.featured:hover {
    transform: translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gold);
    color: var(--primary-navy);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 10;
}

.pricing-card h3 {
    color: var(--primary-navy);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.plan-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.price-breakdown {
    text-align: left;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.price-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.price-label {
    color: var(--text-dark);
    font-weight: 500;
    flex: 1;
}

.price-value {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 1rem;
}

.price-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    flex: 1;
    text-align: right;
}

.pricing-note {
    background: var(--background-light);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-note p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* What's Included */
.whats-included {
    background: var(--text-light);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
}

.whats-included h3 {
    color: var(--primary-navy);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.included-list {
    list-style: none;
    padding: 0;
}

.included-list li {
    padding: 1rem 0;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 2rem;
}

.included-list li:last-child {
    border-bottom: none;
}

.included-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Guarantee Section */
.guarantee-section {
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-gold));
    color: var(--text-light);
    padding: 3rem;
    border-radius: 15px;
    margin-top: 3rem;
    text-align: center;
}

.guarantee-section h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.guarantee-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.guarantee-note {
    font-size: 1rem;
    opacity: 0.9;
    font-style: italic;
}

/* FAQ Container */
.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--text-light);
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    text-align: center;
}

.faq-question:hover {
    background: var(--background-light);
}

.faq-question h3 {
    color: #000000;
    font-size: 1.4rem;
    margin: 0;
    font-weight: 600;
    text-align: center;
    flex: 1;
}

.faq-icon {
    font-size: 1.8rem;
    color: var(--primary-gold);
    font-weight: bold;
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    display: none;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 1rem 2rem 2rem; /* Added top padding to shift text down */
    display: block;
}

.faq-answer p {
    color: #000000;
    line-height: 1.7;
    margin: 0;
    font-size: 1.1rem;
    text-align: center;
}

.faq-answer strong {
    color: #000000;
    font-weight: 600;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-content {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-muted);
}

.close:hover {
    color: var(--text-dark);
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.meeting-type-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

.meeting-type-options .checkbox-label {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: var(--background-light);
    border: 2px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.meeting-type-options .checkbox-label:hover {
    border-color: var(--primary-gold);
    background: rgba(255, 215, 0, 0.1);
}

.meeting-type-options .checkbox-label input[type="radio"] {
    display: none;
}

.radio-custom {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-navy);
    border-radius: 50%;
    margin-right: 1rem;
    position: relative;
    background: white;
    transition: all 0.3s ease;
}

.meeting-type-options .checkbox-label input[type="radio"]:checked + .radio-custom {
    border-color: var(--primary-gold);
    background: var(--primary-gold);
}

.meeting-type-options .checkbox-label input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.meeting-type-options .checkbox-label input[type="radio"]:checked ~ span {
    color: var(--primary-navy);
    font-weight: 600;
}

.validation-error {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

/* Payment Section */
.payment-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.payment-option {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid transparent;
    text-align: center;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.payment-option h4 {
    color: var(--primary-navy);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.payment-option .price {
    color: var(--primary-gold);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.payment-option .btn-primary {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

@media (min-width: 768px) {
    .payment-options {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Client Dashboard */
.client-dashboard {
    padding: 2rem 0;
    min-height: 100vh;
    background: var(--background-light);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--primary-gold);
}

.dashboard-header h1 {
    color: var(--primary-navy);
    font-size: 2.5rem;
    margin: 0;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-info span {
    color: var(--text-dark);
    font-size: 1.1rem;
}

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

.dashboard-section h2 {
    color: var(--primary-navy);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 500;
}

.purchases-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.purchase-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 5px solid var(--primary-gold);
}

.purchase-info h4 {
    color: var(--primary-navy);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.purchase-info p {
    color: var(--text-dark);
    margin: 0;
}

.purchase-details {
    text-align: right;
}

.purchase-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.purchase-profit {
    font-size: 1.1rem;
    font-weight: 600;
    color: #28a745;
}

.account-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.account-actions .btn-primary,
.account-actions .btn-secondary {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .dashboard-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .purchase-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .purchase-details {
        text-align: center;
    }
    
    .account-actions {
        flex-direction: column;
        align-items: center;
    }
}

.validation-error.show {
    display: block;
}

/* Footer */
.footer {
    background: var(--primary-navy);
    color: white;
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand h3 {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
}

.footer-legal {
    text-align: right;
}

.footer-legal p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0.25rem 0;
    line-height: 1.4;
}

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

.form-group input.error,
.form-group textarea.error {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* Success and Loading Messages */
.success-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 10000;
    max-width: 500px;
    text-align: center;
    border: 2px solid #10b981;
}

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

.success-message h3 {
    color: #10b981;
    margin-bottom: 1rem;
}

.success-message .account-details {
    background: #f0f9ff;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    text-align: left;
}

.success-message ul {
    text-align: left;
    margin: 1rem 0;
}

.loading-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 10000;
    text-align: center;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f4f6;
    border-top: 4px solid #1e3a8a;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

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

/* Media Coverage Section */
.media-coverage-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 5rem 0;
}

.media-coverage-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.media-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

.media-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.media-item.featured {
    border: 2px solid var(--accent-gold);
    background: linear-gradient(135deg, #fff 0%, #fefce8 100%);
}

.media-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.media-logo {
    margin-bottom: 1.5rem;
    height: 40px;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 30px;
    width: auto;
    object-fit: contain;
}

.wsj-logo {
    background: #000;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: inline-block;
}

.wsj-text {
    font-family: 'Times New Roman', serif;
}

.logo-placeholder {
    font-size: 2rem;
    color: var(--accent-gold);
}

.media-content h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    line-height: 1.4;
}

.media-excerpt {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.media-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.media-source {
    font-weight: 600;
    color: var(--text-dark);
}

.media-date {
    color: var(--text-light);
}

.read-article-btn {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--text-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.read-article-btn:hover {
    background: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Investment Chart Styles */
.investment-chart-container {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.investment-chart-container h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-align: center;
}

.chart-wrapper {
    position: relative;
    margin: 1rem 0;
    background: white;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 300px;
}

#investmentChart {
    max-height: 250px !important;
}

.chart-legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 2px;
    display: inline-block;
}

.legend-color.pokemon {
    background: #fbbf24; /* Yellow/Gold for Pokémon */
}

.legend-color.meta {
    background: #3b82f6; /* Blue for Meta */
}

.legend-color.baseball {
    background: #ef4444; /* Red for Baseball */
}

.legend-color.sp500 {
    background: #374151; /* Dark gray for S&P 500 */
}

.chart-note {
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin: 2rem 0;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.875rem 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: left;
    white-space: nowrap;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.badge-icon {
    font-size: 1.4rem;
    min-width: 24px;
    text-align: center;
}

/* Why Trust Us Section */
.why-trust-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 5rem 0;
}

.why-trust-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.trust-content {
    display: flex;
    justify-content: center;
    align-items: start;
}

.founder-story {
    display: flex;
    gap: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    max-width: 1200px;
    margin: 0 auto;
}

.founder-image {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--primary-gold);
}

.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.founder-info h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.founder-title {
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.founder-story-text {
    margin-bottom: 2rem;
    line-height: 1.6;
}

.founder-story-text p {
    margin-bottom: 1rem;
    color: #000000 !important;
}

.founder-credentials {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.credential {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.credential-icon {
    font-size: 1.2rem;
}

.trust-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.stat-item .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #000000 !important;
    background-color: transparent !important;
    margin-bottom: 0.5rem;
    text-shadow: none !important;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive Design for Media Coverage */
@media (max-width: 768px) {
    .media-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .media-item {
        padding: 1.5rem;
    }
    
    .media-sidebar {
        gap: 1rem;
    }
    
    .media-coverage-section {
        padding: 3rem 0;
    }
    
    .chart-wrapper {
        height: 250px;
    }
    
    #investmentChart {
        max-height: 200px !important;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .trust-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .founder-story {
        flex-direction: column;
        text-align: center;
    }
    
    .founder-credentials {
        align-items: center;
    }
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

/* Call Scheduling Modal */
.call-description {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.calendar-container {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

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

.calendar-nav {
    background: var(--primary-navy);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.calendar-nav:hover {
    background: var(--secondary-navy);
}

.calendar-header h3 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.3rem;
}

.calendar-grid {
    width: 100%;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 1rem;
}

.day-header {
    text-align: center;
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 0.5rem;
}

.calendar-dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendar-date {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    border: 2px solid transparent;
}

.calendar-date:hover {
    background: var(--primary-gold);
    color: var(--primary-navy);
    transform: scale(1.05);
}

.calendar-date.other-month {
    color: var(--text-muted);
    opacity: 0.5;
}

.calendar-date.today {
    background: var(--primary-gold);
    color: var(--primary-navy);
    font-weight: 700;
}

.calendar-date.past {
    color: var(--text-muted);
    opacity: 0.3;
    cursor: not-allowed;
}

.calendar-date.past:hover {
    background: transparent;
    color: var(--text-muted);
    transform: none;
}

.time-slots {
    margin-bottom: 2rem;
}

.time-slots h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem;
}

.time-slot {
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--text-dark);
}

.time-slot:hover {
    border-color: var(--primary-gold);
    background: var(--primary-gold);
    color: var(--primary-navy);
}

.time-slot.active {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--primary-navy);
    font-weight: 600;
}

.selected-slot {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.selected-slot p {
    margin: 0;
    color: var(--text-dark);
}

#confirm-call-btn:disabled {
    background: var(--text-muted);
    cursor: not-allowed;
    opacity: 0.6;
}

#confirm-call-btn:disabled:hover {
    background: var(--text-muted);
    transform: none;
}

/* Dashboard Styles */
.dashboard-header {
    background: var(--primary-navy);
    color: var(--text-light);
    padding: 2rem 0;
    margin-bottom: 2rem;
}

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

.dashboard-nav {
    background: var(--text-light);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.dashboard-nav .nav-btn {
    background: none;
    border: none;
    padding: 0.75rem 1.5rem;
    margin: 0 0.5rem;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.dashboard-nav .nav-btn.active,
.dashboard-nav .nav-btn:hover {
    background: var(--primary-gold);
    color: var(--primary-navy);
}

.dashboard-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.dashboard-view {
    display: none;
}

.dashboard-view.active {
    display: block;
}

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

.overview-card {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.overview-card .value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin: 1rem 0;
}

.progress-bar {
    width: 100%;
    height: 20px;
    background: var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    margin: 1rem 0;
}

.progress-fill {
    height: 100%;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

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

.data-table {
    background: var(--text-light);
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.data-table table {
    width: 100%;
    border-collapse: collapse;
}

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

.data-table th {
    background: var(--background-light);
    font-weight: 600;
    color: var(--primary-navy);
}

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

.positive { color: var(--success-color); }
.negative { color: var(--error-color); }

.activity-feed {
    background: var(--text-light);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.activity-item.success .activity-icon {
    background: var(--success-color);
    color: var(--text-light);
}

.activity-item.decline .activity-icon {
    background: var(--error-color);
    color: var(--text-light);
}

/* Messages */
.message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 2rem;
    border-radius: 8px;
    color: var(--text-light);
    font-weight: 500;
    z-index: 3000;
    animation: slideIn 0.3s ease;
}

.message-success {
    background: var(--success-color);
}

.message-error {
    background: var(--error-color);
}

.message-info {
    background: var(--primary-navy);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 6rem 0 2rem;
    }
    
    .hero-content,
    .hero-visual {
        padding: 0 1rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .chart-container {
        height: 350px;
        padding: 1.5rem;
        margin: 2rem auto;
    }
    
    .performance-news {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .pricing-plans {
        grid-template-columns: 1fr;
    }
    
    .guarantee-section {
        padding: 2rem;
    }
    
    .guarantee-section h3 {
        font-size: 1.6rem;
    }
    
    .faq-container {
        margin: 2rem 1rem 0;
    }
    
    .faq-question {
        padding: 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1.2rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem;
    }
    
    .news-article {
        padding: 1rem;
    }
    
    .article-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .login-container {
        padding: 2rem;
        margin: 1rem;
    }
    
    .modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .calendar-grid {
        font-size: 0.9rem;
    }
    
    .time-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
}
