/* ============================================ */
/* VARIÁVEIS - PALETA MONOCROMÁTICA (APENAS CLARO) */
/* ============================================ */
:root {
    --primary: #111111;
    --primary-dark: #000000;
    --primary-light: #2a2a2a;
    --secondary: #333333;
    --accent: #555555;
    --success: #555555;
    --warning: #888888;
    --danger: #999999;
    --info: #666666;
    --text-primary: #1a1a1a;
    --text-secondary: #555555;
    --text-tertiary: #888888;
    --bg-page: #f9fafb;
    --bg-card: #ffffff;
    --bg-sidebar: rgba(255, 255, 255, 0.85);
    --bg-glass: rgba(255, 255, 255, 0.75);
    --border-light: rgba(0, 0, 0, 0.06);
    --border-medium: rgba(0, 0, 0, 0.1);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.06);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.08);
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.04);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-3xl: 32px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', sans-serif;
}

/* ============================================ */
/* RESET E BASE */
/* ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-page);
    background-image: radial-gradient(circle at 25% 40%, rgba(0, 0, 0, 0.008) 0%, transparent 50%),
                      repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.006) 0px, rgba(0, 0, 0, 0.006) 2px, transparent 2px, transparent 8px);
    color: var(--text-primary);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.app-container {
    display: flex;
    min-height: 100vh;
}

/* ============================================ */
/* GLASS SIDEBAR */
/* ============================================ */
.glass-sidebar {
    width: 280px;
    background: var(--bg-sidebar);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-right: 0.5px solid var(--border-light);
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    z-index: 100;
    transition: var(--transition);
}

.sidebar-brand {
    padding: 32px 24px;
    text-align: center;
    border-bottom: 0.5px solid var(--border-light);
}

.brand-logo {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    display: block;
}

.brand-tagline {
    font-size: 0.7rem;
    color: var(--text-tertiary);
    margin-top: 4px;
}

.sidebar-nav {
    flex: 1;
    padding: 24px 16px;
}

.nav-section {
    margin-bottom: 24px;
}

.nav-title {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-tertiary);
    margin-bottom: 12px;
    padding-left: 12px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.nav-item:hover {
    background: rgba(0, 0, 0, 0.03);
    color: var(--text-primary);
}

.nav-item.active {
    background: #111111;
    color: white;
}

.nav-item i {
    font-size: 1.25rem;
}

.active-pulse {
    position: absolute;
    right: 16px;
    width: 6px;
    height: 6px;
    background: #555555;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.user-profile {
    padding: 20px 24px;
    border-top: 0.5px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-profile img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.user-info {
    flex: 1;
}

.user-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.user-email {
    font-size: 0.7rem;
    color: var(--text-tertiary);
}

.user-profile i {
    color: var(--text-tertiary);
    cursor: pointer;
    transition: var(--transition);
}

.user-profile i:hover {
    color: var(--text-primary);
}

/* ============================================ */
/* MAIN CONTENT */
/* ============================================ */
.main-content {
    flex: 1;
    margin-left: 280px;
    padding: 24px 32px;
}

/* ============================================ */
/* TOPBAR */
/* ============================================ */
.smart-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 0.5px solid var(--border-light);
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

.breadcrumb .active {
    color: var(--text-primary);
    font-weight: 500;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.notifications {
    position: relative;
    cursor: pointer;
}

.notifications i {
    font-size: 1.25rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.notifications i:hover {
    color: var(--text-primary);
}

.notifications .badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #555555;
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: var(--radius-full);
}

.user-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

/* ============================================ */
/* HERO SECTION */
/* ============================================ */
.plans-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 48px 0;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, #1a1a1a 0%, #444444 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-cta {
    display: inline-block;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #111111;
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.cta-primary:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hero-graphics {
    flex: 1;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.floating-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 0.5px solid var(--border-light);
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 2rem;
    color: #444444;
    margin-bottom: 12px;
}

.floating-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.card1 { animation-delay: 0s; }
.card2 { animation-delay: 0.5s; }
.card3 { animation-delay: 1s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ============================================ */
/* PLANS SECTION */
/* ============================================ */
.plans-section {
    padding: 48px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-tertiary);
    margin-bottom: 16px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-description {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Billing Options */
.billing-options {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.billing-options .option {
    padding: 12px 28px;
    background: transparent;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.billing-options .option:hover {
    border-color: var(--border-medium);
    color: var(--text-primary);
}

.billing-options .option.active {
    background: #111111;
    color: white;
    border-color: #111111;
}

/* Plans Category */
.plans-category {
    margin-bottom: 60px;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 32px;
    padding-bottom: 12px;
    border-bottom: 0.5px solid var(--border-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.pricing-card {
    background: var(--bg-card);
    border-radius: var(--radius-2xl);
    padding: 32px 24px;
    border: 0.5px solid var(--border-light);
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-medium);
}

.pricing-card.current-plan {
    border: 1px solid #333333;
    box-shadow: var(--shadow-md);
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.price {
    font-size: 1.75rem;
    font-weight: 800;
    color: #444444;
    margin-bottom: 16px;
}

.pricing-card p {
    color: var(--text-tertiary);
    margin-bottom: 24px;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-card li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-card li i {
    color: #555555;
    font-size: 1rem;
}

.cta {
    display: inline-block;
    width: 100%;
    padding: 14px 24px;
    background: #111111;
    color: white;
    text-align: center;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.cta:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
}

.cta.disabled {
    background: var(--text-tertiary);
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.current-plan-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #333333;
    color: white;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Custom Plan */
.custom-plan {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.01) 100%);
    border-radius: var(--radius-2xl);
    padding: 48px;
    text-align: center;
    margin-top: 48px;
    border: 0.5px solid var(--border-light);
}

.custom-content i {
    font-size: 3rem;
    color: #444444;
    margin-bottom: 20px;
}

.custom-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.custom-content p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.custom-cta {
    padding: 14px 32px;
    background: #333333;
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.custom-cta:hover {
    background: #444444;
    transform: translateY(-2px);
}

/* ============================================ */
/* FEATURES TABLE */
/* ============================================ */
.features-section {
    padding: 48px 0;
}

.features-table {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 0.5px solid var(--border-light);
    overflow-x: auto;
}

.table-header {
    display: grid;
    grid-template-columns: 200px repeat(8, 1fr);
    background: rgba(0, 0, 0, 0.02);
    border-bottom: 0.5px solid var(--border-light);
    min-width: 1000px;
}

.table-header .feature-name {
    padding: 16px 20px;
    font-weight: 600;
    color: var(--text-primary);
}

.feature-plans {
    display: contents;
}

.feature-plans span {
    padding: 16px 12px;
    text-align: center;
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.feature-row {
    display: grid;
    grid-template-columns: 200px repeat(8, 1fr);
    border-bottom: 0.5px solid var(--border-light);
    min-width: 1000px;
}

.feature-row:last-child {
    border-bottom: none;
}

.feature-row .feature-name {
    padding: 16px 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.feature-values {
    display: contents;
}

.feature-values span {
    padding: 16px 12px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.feature-values i {
    font-size: 1rem;
}

.feature-values i.ri-checkbox-circle-line {
    color: #555555;
}

.feature-values i.ri-close-circle-line {
    color: #999999;
}

/* ============================================ */
/* PARTNERS SECTION */
/* ============================================ */
.partners-section {
    padding: 48px 0;
    background: rgba(0, 0, 0, 0.01);
    border-radius: var(--radius-2xl);
    margin-top: 24px;
}

.partners-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.partners-description {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.partners-benefits {
    list-style: none;
    text-align: left;
    margin: 24px 0;
    padding: 24px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: var(--radius-lg);
}

.partners-benefits li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
}

.partners-benefits i {
    color: #555555;
}

.saiba-mais-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    color: #555555;
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.saiba-mais-link:hover {
    color: #111111;
    gap: 8px;
}

/* ============================================ */
/* PLAN CTA (reutilizável) */
/* ============================================ */
.plan-cta {
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.plan-cta.primary {
    background: #111111;
    color: white;
}

.plan-cta.primary:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
}

.plan-cta.outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-medium);
}

.plan-cta.outline:hover {
    background: rgba(0, 0, 0, 0.02);
    border-color: #333333;
    transform: translateY(-2px);
}

/* ============================================ */
/* STRIPE BADGE */
/* ============================================ */
.stripe-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.03);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    margin-top: 20px;
    border: 0.5px solid var(--border-light);
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.stripe-badge i {
    color: #555555;
}

/* ============================================ */
/* MODAL STYLES */
/* ============================================ */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
}

.modal-content {
    background: var(--bg-card);
    margin: 5% auto;
    padding: 32px;
    border: 0.5px solid var(--border-light);
    border-radius: var(--radius-2xl);
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: var(--shadow-xl);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    color: var(--text-secondary);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: var(--danger);
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header i {
    font-size: 3rem;
    color: #444444;
    margin-bottom: 15px;
}

.modal-header h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.modal-body {
    color: var(--text-secondary);
    line-height: 1.6;
}

.modal-footer {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
}

/* Partnership Modal */
.partnership-modal,
.partnership-terms-modal {
    max-width: 700px;
}

.terms-checkbox {
    margin: 20px 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: var(--radius-lg);
    border: 0.5px solid var(--border-light);
}

.terms-checkbox input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #111111;
}

.terms-checkbox label {
    color: var(--text-primary);
    font-size: 0.9rem;
    cursor: pointer;
}

.terms-checkbox a {
    color: #555555;
    text-decoration: none;
}

.terms-checkbox a:hover {
    text-decoration: underline;
    color: #111111;
}

.terms-note {
    background: rgba(136, 136, 136, 0.1);
    padding: 15px;
    border-radius: var(--radius-md);
    border-left: 3px solid #888888;
    margin: 20px 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Analysis Info */
.analysis-info {
    background: rgba(0, 0, 0, 0.02);
    padding: 20px;
    border-radius: var(--radius-lg);
    margin: 20px 0;
    border-left: 3px solid #555555;
}

.analysis-info strong {
    color: #555555;
    display: block;
    margin-bottom: 10px;
    font-size: 1rem;
}

/* ============================================ */
/* ALERT MESSAGES */
/* ============================================ */
.messages-container {
    margin-bottom: 24px;
}

.alert {
    padding: 14px 20px;
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideInDown 0.3s ease-out;
}

.alert-success {
    background: rgba(85, 85, 85, 0.1);
    border-left: 3px solid #555555;
    color: #555555;
}

.alert-error {
    background: rgba(136, 136, 136, 0.1);
    border-left: 3px solid #888888;
    color: #888888;
}

.alert-warning {
    background: rgba(153, 153, 153, 0.1);
    border-left: 3px solid #999999;
    color: #999999;
}

.alert-info {
    background: rgba(102, 102, 102, 0.1);
    border-left: 3px solid #666666;
    color: #666666;
}

.alert i {
    font-size: 1.2rem;
}

.alert-content {
    flex: 1;
}

.alert-close {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 1.1rem;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.alert-close:hover {
    opacity: 1;
}

@keyframes slideInDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ============================================ */
/* LOADING OVERLAY */
/* ============================================ */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.3s, visibility 0.3s;
}

.loading.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border-light);
    border-top-color: #333333;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================ */
/* TOOLTIP */
/* ============================================ */
.tooltip {
    position: absolute;
    background: #111111;
    color: white;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    white-space: nowrap;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    pointer-events: none;
}

/* ============================================ */
/* MANAGE SUBSCRIPTION LINK */
/* ============================================ */
.manage-subscription-link {
    text-align: center;
    margin-top: 32px;
}

/* ============================================ */
/* RESPONSIVE */
/* ============================================ */
@media (max-width: 1024px) {
    .glass-sidebar {
        transform: translateX(-100%);
        position: fixed;
        z-index: 200;
    }
    
    .glass-sidebar.active {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .plans-hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-graphics {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .main-content {
        padding: 16px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .billing-options .option {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
    
    .floating-card {
        padding: 12px;
    }
    
    .floating-card i {
        font-size: 1.5rem;
    }
    
    .custom-plan {
        padding: 32px 24px;
    }
    
    .modal-footer {
        flex-direction: column;
    }
    
    .modal-footer .plan-cta {
        width: 100%;
        justify-content: center;
    }
    
    .partners-benefits {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .billing-options {
        flex-direction: column;
        align-items: stretch;
    }
    
    .billing-options .option {
        text-align: center;
    }
    
    .pricing-card {
        padding: 24px 20px;
    }
    
    .price {
        font-size: 1.5rem;
    }
    
    .category-title {
        font-size: 1.25rem;
    }
    
    .modal-content {
        padding: 24px;
        margin: 20% auto;
    }
    
    .modal-header h3 {
        font-size: 1.25rem;
    }
    
    .modal-header i {
        font-size: 2rem;
    }
    
    .current-plan-badge {
        top: -10px;
        right: 10px;
        font-size: 0.65rem;
        padding: 4px 10px;
    }
    
    .stripe-badge {
        font-size: 0.7rem;
    }
}