/*
 * ReaLearn Platform Stylesheet
 * Implementing Brand Guidelines from brand.md
 */

/* ==================== ROOT VARIABLES ==================== */
:root {
    /* Brand Colors - from brand.md */
    --primary-color: #0A2540;        /* Deep Blue - The Expert */
    --accent-color: #00C49A;         /* Vibrant Teal - The Progressive */
    --background-color: #FFFFFF;     /* Clean White */
    --secondary-bg: #F4F7F6;         /* Light Gray */
    --text-color: #222222;           /* Dark Text */
    --text-color-light: #4A5568;     /* For subtle text */
    --text-color-muted: #64748B;     /* Muted text for dark bg */

    /* Typography */
    --font-primary: 'Inter', Arial, sans-serif;

    /* Font Weights */
    --weight-regular: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;
    --weight-extrabold: 800;

    /* Line Heights (Science of Learning - 1.5x) */
    --line-height-body: 1.6;

    /* Spacing */
    --section-padding: 5rem;
    --container-max: 1200px;
    --container-narrow: 800px;
}

/* ==================== GLOBAL STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: var(--line-height-body);
    color: var(--text-color);
    background-color: var(--background-color);
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==================== CONTAINER ==================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==================== TYPOGRAPHY ==================== */
h1 {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: var(--weight-extrabold);
    color: var(--primary-color);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: var(--weight-bold);
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h3 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: var(--weight-semibold);
    color: var(--primary-color);
    line-height: 1.3;
}

h4 {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: var(--weight-bold);
    color: var(--primary-color);
    line-height: 1.4;
}

p {
    margin-bottom: 1rem;
    max-width: 75ch;
}

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

.text-large {
    font-size: 1.125rem;
}

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

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

.text-accent {
    color: var(--accent-color);
}

strong {
    font-weight: var(--weight-bold);
}

/* ==================== LINKS ==================== */
a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: var(--weight-bold);
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background-color: #00a883;
    color: white;
}

.btn-white {
    background-color: white;
    color: var(--primary-color);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
}

.btn-dark {
    background-color: var(--primary-color);
    color: white;
}

.btn-dark:hover {
    background-color: #081c30;
    color: white;
}

.btn-outline {
    background-color: white;
    color: var(--text-color-light);
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.btn-outline:hover {
    background-color: var(--secondary-bg);
    color: var(--text-color);
}

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

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

/* ==================== NAVIGATION ==================== */
.nav {
    background-color: white;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

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

.nav-logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.nav-logo-link:hover {
    opacity: 0.9;
}

.nav-logo-img {
    height: 2rem;
    width: auto;
    border-radius: 0.25rem;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: var(--weight-bold);
    color: var(--primary-color);
}

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

.nav-back {
    font-size: 0.875rem;
    font-weight: var(--weight-medium);
    color: var(--text-color-light);
}

.nav-back:hover {
    color: var(--primary-color);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: var(--weight-medium);
    color: var(--text-color-light);
}

.nav-link:hover {
    color: var(--accent-color);
}

/* ==================== HERO SECTION ==================== */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a5f 100%);
    color: white;
    padding: 5rem 2rem 6rem;
}

.hero-container {
    max-width: var(--container-narrow);
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: var(--weight-medium);
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.hero-title {
    color: white;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle strong {
    color: white;
}

.hero-cta {
    margin-bottom: 1rem;
}

.hero-guarantee {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
}

/* ==================== SECTIONS ==================== */
.section {
    padding: var(--section-padding) 0;
}

.section-white {
    background-color: var(--background-color);
}

.section-gray {
    background-color: var(--secondary-bg);
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.section-dark {
    background-color: var(--primary-color);
    color: white;
    border-top: 1px solid #1e3a5f;
    border-bottom: 1px solid #1e3a5f;
}

.section-dark h2 {
    color: white;
}

.section-light {
    background-color: var(--secondary-bg);
    border-top: 1px solid #e2e8f0;
}

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

.section-label {
    display: block;
    font-size: 0.875rem;
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

/* ==================== INNOVATION SECTION ==================== */
.innovation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.innovation-content h2 {
    margin-bottom: 1.5rem;
}

.innovation-content > p {
    margin-bottom: 2rem;
}

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

.benefit-item {
    display: flex;
    gap: 1rem;
}

.benefit-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background-color: rgba(0, 196, 154, 0.15);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.25rem;
}

.benefit-text h4 {
    color: white;
    margin-bottom: 0.25rem;
}

.benefit-text p {
    font-size: 0.875rem;
    color: var(--text-color-muted);
    margin-bottom: 0;
}

/* Certificate Card */
.cert-card {
    background-color: #1e3a5f;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
}

.cert-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(34, 197, 94, 0.1);
    color: #4ade80;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: var(--weight-bold);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.cert-status-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.cert-content {
    text-align: center;
    margin-top: 2rem;
}

.cert-badge {
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, #7c3aed 100%);
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 196, 154, 0.3);
}

.cert-content h3 {
    color: white;
    margin-bottom: 0.25rem;
}

.cert-subtitle {
    font-size: 0.875rem;
    color: var(--text-color-muted);
    margin-bottom: 1.5rem;
}

.cert-details {
    background-color: var(--primary-color);
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: left;
}

.cert-detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
}

.cert-detail-row span:first-child {
    color: var(--text-color-muted);
}

.cert-value {
    color: white;
    font-family: monospace;
}

.cert-value-success {
    color: #4ade80;
}

.cert-progress {
    width: 100%;
    height: 0.375rem;
    background-color: #1e3a5f;
    border-radius: 9999px;
    margin-top: 0.5rem;
}

.cert-progress-bar {
    height: 100%;
    background-color: #22c55e;
    border-radius: 9999px;
}

.cert-mastery {
    font-size: 0.625rem;
    color: var(--text-color-muted);
    text-align: center;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

/* ==================== TRACKS SECTION ==================== */
.tracks-section {
    margin-bottom: 4rem;
}

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

.tracks-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.tracks-title i {
    color: var(--accent-color);
}

.tracks-title-secondary {
    color: var(--text-color-light);
}

.tracks-title-secondary i {
    color: var(--text-color-light);
}

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

.track-card {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    position: relative;
    transition: transform 0.3s ease;
}

.track-card:hover {
    transform: translateY(-3px);
}

.track-active {
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 14px rgba(0, 196, 154, 0.15);
}

.track-disabled {
    opacity: 0.7;
    background-color: #f8fafc;
    border-style: dashed;
    pointer-events: none;
}

.track-disabled .track-icon {
    color: #94a3b8;
}

.track-badge {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.25rem 0.75rem;
    font-size: 0.625rem;
    font-weight: var(--weight-bold);
    border-bottom-left-radius: 0.5rem;
    border-top-right-radius: 1rem;
}

.track-badge-active {
    background-color: var(--accent-color);
    color: white;
}

.track-badge-soon {
    background-color: #e2e8f0;
    color: var(--text-color-light);
}

.track-badge-next {
    background-color: #dbeafe;
    color: #1d4ed8;
}

.track-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.track-card h3 {
    margin-bottom: 1rem;
}

.track-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.track-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-color-light);
    margin-bottom: 0.75rem;
}

.track-list li:last-child {
    margin-bottom: 0;
}

.track-list li i {
    margin-top: 0.25rem;
    color: #22c55e;
}

.track-list-locked li {
    opacity: 0.5;
}

.track-list-locked li i {
    color: var(--text-color-light);
}

/* ==================== PRICING SECTION ==================== */
.pricing-section h2 {
    color: white;
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    margin-bottom: 3rem;
}

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

.price-card {
    background-color: #1e3a5f;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.price-card:hover {
    border-color: var(--accent-color);
    transform: scale(1.02);
}

.price-card-featured {
    background-color: white;
    color: var(--text-color);
    border: 2px solid var(--accent-color);
    transform: translateY(-1rem);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.price-card-featured:hover {
    transform: translateY(-1rem) scale(1.02);
}

.price-featured-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--accent-color);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.price-header {
    margin-bottom: 1rem;
}

.price-header h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.price-card-featured .price-header h3 {
    color: var(--primary-color);
}

.price-desc {
    font-size: 0.875rem;
    color: var(--text-color-muted);
    margin-bottom: 0;
}

.price-card-featured .price-desc {
    color: var(--text-color-light);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: var(--weight-bold);
    color: white;
    margin-bottom: 1.5rem;
}

.price-card-featured .price-amount {
    color: var(--primary-color);
}

.price-amount span {
    font-size: 1rem;
    font-weight: normal;
    color: var(--text-color-muted);
}

.price-card-featured .price-amount span {
    color: var(--text-color-light);
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    text-align: left;
    flex-grow: 1;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.price-card-featured .price-features li {
    color: var(--text-color-light);
}

.price-features li:last-child {
    margin-bottom: 0;
}

.price-features li i {
    color: #4ade80;
}

.price-card-featured .price-features li i {
    color: var(--accent-color);
}

.price-guarantee {
    font-size: 0.75rem;
    color: var(--text-color-muted);
    margin-top: 0.75rem;
    margin-bottom: 0;
}

.price-card-featured .price-guarantee {
    color: var(--text-color-light);
}

/* Waitlist CTA */
.waitlist-cta {
    padding: 2rem 0;
    text-align: center;
}

.waitlist-note {
    font-size: 0.875rem;
    color: var(--text-color-muted);
    margin-top: 1rem;
    margin-bottom: 0;
    text-align: center;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
}

.pricing-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* ==================== FOOTER ==================== */
.footer {
    padding: 3rem 0;
    border-top: 1px solid #e2e8f0;
    color: var(--text-color-light);
    background-color: var(--secondary-bg);
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-left {
    flex: 0 0 auto;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: var(--weight-bold);
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

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

.footer-copyright {
    font-size: 0.9rem;
    color: var(--text-color-light);
    margin: 0 0 0.5rem 0;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--text-color-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* ==================== MODALS ==================== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(10, 37, 64, 0.75);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-exit {
    background-color: rgba(10, 37, 64, 0.95);
}

.modal-content {
    background-color: white;
    border-radius: 1rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-large {
    max-width: 800px;
}

.modal-small {
    max-width: 450px;
    border-top: 4px solid var(--accent-color);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    background-color: var(--secondary-bg);
}

.modal-header h3 {
    margin-bottom: 0;
}

.modal-subtitle {
    font-size: 0.875rem;
    color: var(--text-color-light);
    margin-top: 0.25rem;
    margin-bottom: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--text-color-light);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s ease;
}

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

.modal-close-absolute {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.modal-body {
    padding: 2rem;
    overflow-y: auto;
}

.modal-body h4 {
    margin-bottom: 0.5rem;
}

.modal-body > p {
    color: var(--text-color-light);
    font-size: 0.875rem;
}

.modal-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.modal-times {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    max-width: 300px;
    margin: 1.5rem auto;
}

.time-slot {
    background-color: var(--secondary-bg);
    border: 1px solid transparent;
    padding: 0.5rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.time-slot:hover {
    background-color: rgba(0, 196, 154, 0.1);
    color: var(--accent-color);
}

.modal-note {
    font-size: 0.75rem;
    color: var(--text-color-muted);
    margin-top: 2rem;
    margin-bottom: 0;
    text-align: center;
}

.modal-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

/* Science Modal */
.science-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.science-item {
    display: flex;
    gap: 1rem;
}

.science-item > i {
    flex-shrink: 0;
    font-size: 1.25rem;
    color: var(--accent-color);
    margin-top: 0.25rem;
}

.science-item h4 {
    margin-bottom: 0.5rem;
}

.science-item p {
    font-size: 0.875rem;
    color: var(--text-color-light);
    margin-bottom: 0;
}

/* Exit Modal */
.exit-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(0, 196, 154, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.exit-dismiss {
    background: none;
    border: none;
    font-size: 0.75rem;
    color: var(--text-color-light);
    text-decoration: underline;
    cursor: pointer;
    margin-top: 1rem;
    transition: color 0.2s ease;
}

.exit-dismiss:hover {
    color: var(--text-color);
}

/* Waitlist Modal */
.modal-waitlist {
    max-width: 540px;
    width: 100%;
}

.waitlist-modal-body {
    padding: 1rem;
    display: flex;
    justify-content: center;
}

.waitlist-iframe {
    width: 540px;
    height: 305px;
    max-width: 100%;
    border: none;
    display: block;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {
    .innovation-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

@media (max-width: 768px) {
    :root {
        --section-padding: 3rem;
    }

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .nav-back {
        display: none;
    }

    .hero {
        padding: 3rem 1.5rem 4rem;
    }

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

    .container,
    .container-narrow {
        padding: 0 1.5rem;
    }

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

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

    .price-card-featured {
        transform: none;
    }

    .price-card-featured:hover {
        transform: scale(1.02);
    }

    .footer .container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

    .footer-links {
        justify-content: center;
    }

    .modal-content {
        width: 95%;
        max-height: 85vh;
    }

    .modal-times {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.875rem;
    }

    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .track-card {
        padding: 1.5rem;
    }

    .price-card {
        padding: 1.5rem;
    }
}

/* ==================== PRINT STYLES ==================== */
@media print {
    body {
        background-color: var(--background-color);
    }

    .nav,
    .modal {
        display: none;
    }

    .hero {
        background: var(--primary-color);
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .section-dark {
        background: var(--primary-color);
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    a {
        color: var(--text-color);
    }

    a[href]:after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
    }
}
