/* Global Styles - MinimalRank */
/* DRY - Don't Repeat Yourself */

:root {
    /* Colors */
    --primary: #000000;
    --primary-hover: #1a1a1a;
    --success: #10B981;
    --success-hover: #0F9D6F;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    
    /* Spacing */
    --radius: 8px;
}

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

/* Base */
body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-900);
    background: white;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

h2 {
    font-weight: 900;
    letter-spacing: -0.03em;
}

/* Hero Section - Global */
.hero {
    padding: 80px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Hero Title - Consistent everywhere */
.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 30px;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Hero CTA */
.hero-cta {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.hero-cta .btn-large {
    min-width: 250px;
}

.cta-note {
    margin-top: 12px;
    font-size: 14px;
    color: var(--gray-500);
}

.final-cta .cta-note {
    color: rgba(255,255,255,0.6);
}

/* Text highlight */
.text-green {
    color: var(--success);
}

/* Buttons - Global Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.btn-primary:hover {
    background: var(--success-hover);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--gray-300);
}

.btn-secondary:hover {
    border-color: var(--primary);
}


.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

/* Outline button - Login */
.btn-outline {
    background: transparent;
    color: var(--gray-700);
    border: 2px solid #e5e5e5;
    padding: 8px 16px;
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
}

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

/* Dark button - Start free trial */
.btn-dark {
    background: var(--primary);
    color: white !important;
    padding: 8px 16px;
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid transparent;
    display: inline-block;
}

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

/* Button icon alignment */
.btn .material-symbols-outlined {
    font-size: 20px;
    line-height: 1;
    vertical-align: middle;
}

/* Header - Global */
.header {
    background: white;
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 20px;
    text-decoration: none;
    color: inherit;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

/* Nav actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-actions .language-selector-container {
    display: inline-flex;
}

/* Mobile header actions - hidden by default */
.mobile-header-actions {
    display: none;
}

.nav-actions .btn {
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-width: 1px;
    line-height: 1.5;
}

.nav-actions .btn-primary {
    background: var(--success);
    color: white;
    border-color: transparent;
}

.nav-actions .btn-primary:hover {
    background: var(--success-hover);
    border-color: transparent;
}

.nav-actions .btn-link {
    background: none;
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
}

.nav-actions .btn-link:hover {
    color: var(--primary);
    background: none;
    border-color: var(--gray-400);
}

/* Landing page nav specific spacing */
.header .nav {
    gap: 20px;
}

.nav a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    transition: color 0.2s;
}

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

/* Main navigation centered */
#main-navigation {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* Desktop navigation - always visible in header */
#desktopNav {
    display: flex;
    gap: 20px;
}

/* Mobile navigation - hidden by default */
#mobileNav {
    display: none;
    position: fixed;
    top: 73px; /* Height of header */
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    border-top: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
    z-index: 1000;
}

#mobileNav.active {
    display: flex;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Navigation CTA Button - Dashboard */
.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 10px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    transition: all 0.2s;
}

.nav-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Navigation Highlight Link - Free Audit */
.nav-highlight {
    background: var(--success);
    color: white !important;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.nav-highlight:hover {
    background: var(--success-hover);
}

/* Hide mobile nav actions on desktop */
.mobile-nav-actions {
    display: none;
}

.nav-free-audit:hover {
    background: var(--success-hover);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

/* Footer - Global */
.footer {
    background: var(--primary);
    color: white;
    padding: 60px 0 40px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-brand p {
    margin: 0;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-tagline {
    color: rgba(255,255,255,0.6);
    margin-bottom: 40px;
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

/* Forms - Global */
.form-input {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 16px;
    transition: all 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: var(--success);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* ===============================================
   HERO SECTIONS - UNIFIED STYLES (DRY/KISS)
   =============================================== */
.page-hero,
.about-hero,
.pricing-hero {
    background: var(--gray-50);
    color: var(--gray-900);
    padding: 100px 0 60px 0;
    text-align: center;
}

.page-hero h1,
.about-hero h1,
.pricing-hero h1 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: var(--gray-900);
}

.page-hero p,
.about-hero p,
.pricing-hero p {
    font-size: 20px;
    color: var(--gray-700);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ===============================================
   PAGE SPECIFIC STYLES - ABOUT
   =============================================== */

.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 0;
    background: white;
}

.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 20px;
}

.founder-section {
    background: var(--gray-50);
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
}

.values-section {
    background: var(--gray-50);
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 40px auto 0;
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.value-card {
    text-align: center;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 30px;
}

.value-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--gray-600);
    font-size: 14px;
}

.value-card .material-symbols-outlined {
    font-size: 48px;
    color: var(--gray-700);
    margin-bottom: 16px;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 40px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 40px; }

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 14px;
    color: var(--gray-600);
}

/* Truth Section */
.truth-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.truth-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
}

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

.truth-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
}

.truth-card .material-symbols-outlined {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 16px;
}

.truth-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.truth-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 80px 0;
}

.features h2,
.comparison h2,
.pricing h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 48px;
}

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

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

.feature-card .material-symbols-outlined {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--gray-600);
}

/* Comparison Section */
.comparison {
    padding: 80px 0;
    background: var(--gray-50);
}

.comparison-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.comparison-table th {
    background: var(--gray-100);
    padding: 20px;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 20px;
    border-top: 1px solid var(--gray-200);
}

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

.comparison-table strong {
    color: var(--success);
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.pricing-card {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.pricing-card.featured {
    border-color: var(--success);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    text-align: left;
}

.pricing-card li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    color: var(--gray-700);
}

.pricing-card li .material-symbols-outlined {
    color: var(--success);
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-card li .material-symbols-outlined[data-icon="close"],
.pricing-card li span:contains("close") {
    color: var(--gray-400);
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
}

.price-note {
    font-size: 14px;
    color: var(--gray-600);
    margin-top: -10px;
    margin-bottom: 20px;
}

.annual-badge {
    font-size: 14px;
    color: var(--gray-600);
    margin: -8px 0 16px 0;
}

.price {
    font-size: 48px;
    font-weight: 700;
    margin: 20px 0;
}

.price small {
    font-size: 18px;
    font-weight: 400;
    color: var(--gray-600);
}

/* Mobile Menu Button */
.menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-btn .material-symbols-outlined {
    font-size: 24px;
}

/* Final CTA */
.final-cta {
    background: var(--gray-900);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.final-cta p {
    font-size: 20px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive - Tablets */
@media (max-width: 1024px) {
    /* Hide desktop nav on tablets */
    #desktopNav {
        display: none;
    }
    
    /* Show hamburger menu on tablets */
    .menu-btn {
        display: block;
    }
    
    #main-navigation {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        border-top: 1px solid var(--gray-200);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
    }
    
    #main-navigation.active {
        display: flex;
    }
    
    #main-navigation a {
        padding: 12px 16px;
        border-bottom: 1px solid var(--gray-100);
        width: 100%;
    }
    
    #main-navigation a:last-child {
        border-bottom: none;
    }
    
    /* Hide desktop nav actions on tablets too */
    .nav-actions {
        display: none;
    }
    
    /* Show mobile header actions on tablets */
    .mobile-header-actions {
        display: flex !important;
        align-items: center;
        gap: 12px;
        margin-left: auto;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }
    
    .header-actions {
        display: flex;
        gap: 8px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    /* Hide desktop nav and nav actions on mobile */
    #desktopNav {
        display: none;
    }
    
    .nav-actions {
        display: none;
    }
    
    /* Show mobile header actions */
    .mobile-header-actions {
        display: flex !important;
        align-items: center;
        gap: 12px;
        margin-left: auto;
    }
    
    /* Ensure language selector is visible in mobile header */
    .mobile-header-actions .language-selector-container {
        display: flex !important;
        align-items: center;
    }
    
    .nav {
        gap: 16px;
    }
    
    .menu-btn {
        display: block;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        border-top: 1px solid var(--gray-200);
        box-shadow: var(--shadow);
        z-index: 1000;
    }
    
    .nav a {
        padding: 12px 0;
        border-bottom: 1px solid var(--gray-100);
    }
    
    .nav a:last-of-type {
        border-bottom: none;
    }
    
    .nav.active {
        display: flex;
    }
    
    /* Mobile nav actions */
    .mobile-nav-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--gray-200);
    }
    
    .mobile-nav-actions .btn {
        width: 100%;
        text-align: center;
        padding: 12px 16px;
    }
    
    .mobile-nav-actions .btn-primary {
        background: var(--success);
        color: white !important;
        border-color: transparent;
    }
    
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
}

/* Billing Toggle Styles for Index Page */
.billing-toggle .switch input[type="checkbox"]:checked + .slider {
    background-color: #10b981 !important;
}

.billing-toggle .switch .slider {
    background-color: #d1d5db !important;
}

.billing-toggle .switch:hover .slider {
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.3);
}

.switch .slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}

.switch input:checked + .slider:before {
    transform: translateX(28px);
}

/* ===============================================
   COMMON SECTION STYLES (DRY/KISS)
   =============================================== */
.section-gray {
    background: var(--gray-50);
    padding: 80px 0;
}

.section-gray-compact {
    background: var(--gray-50);
    padding: 40px 0;
}

.section-white {
    background: white;
    padding: 80px 0;
}

/* ===============================================
   PAGE SPECIFIC STYLES - PRICING
   =============================================== */

.billing-toggle-section {
    padding: 40px 0;
    text-align: center;
    background: var(--gray-50);
}

.pricing-cards-section {
    padding: 60px 0;
    background: var(--gray-50);
}

.comparison-section {
    padding: 80px 0;
    background: white;
}

.comparison-table {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

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

.comparison-table th {
    background: var(--gray-100);
    padding: 16px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid var(--gray-200);
}

.comparison-table td {
    padding: 16px;
    border-bottom: 1px solid var(--gray-100);
}

.comparison-table tr:hover {
    background: var(--gray-50);
}

.feature-category {
    background: var(--gray-50);
    font-weight: 600;
    color: var(--gray-700);
}

.faq-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 24px;
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.faq-answer {
    color: var(--gray-600);
    line-height: 1.6;
}

.tracking-info {
    display: inline-block;
    padding: 4px 8px;
    background: var(--gray-100);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
}

.tracking-monthly {
    background: #FEE2E2;
    color: #DC2626;
}

.tracking-weekly {
    background: #D1FAE5;
    color: #059669;
}

.tracking-daily {
    background: #DBEAFE;
    color: #1E40AF;
}

/* ===============================================
   PRICING COMPONENT STYLES
   =============================================== */

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card-detailed {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: all 0.3s;
}

.pricing-card-detailed.featured {
    border-color: #10B981;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #10B981;
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.plan-description {
    color: var(--gray-600);
    margin-bottom: 24px;
    font-size: 14px;
}

.plan-price {
    margin-bottom: 32px;
}

.price-amount {
    font-size: 48px;
    font-weight: 900;
}

.price-currency {
    font-size: 24px;
    font-weight: 600;
    vertical-align: top;
}

.price-period {
    color: var(--gray-600);
    font-size: 16px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 14px;
}

.plan-features .check {
    color: #10B981;
    margin-right: 12px;
    flex-shrink: 0;
}

.plan-features .x {
    color: var(--gray-400);
    margin-right: 12px;
    flex-shrink: 0;
}

.plan-cta {
    width: 100%;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: block;
}

.tracking-info {
    display: inline-block;
    padding: 4px 8px;
    background: var(--gray-100);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
}

.tracking-monthly {
    background: #FEE2E2;
    color: #DC2626;
}

.tracking-weekly {
    background: #D1FAE5;
    color: #059669;
}