--- START OF FILE responsive.css ---

body, html {
    background: var(--bg-main, #dce0e4) !important;
}
/* Pricing Page Custom Styles */

.heading-main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px 40px 16px;
    min-height: 100vh;
    background: var(--bg-main, #dce0e4);
}

.heading-hero {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
}
.heading-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--theme-text-heading, #333);
    font-family: 'Inter', sans-serif;
}
.heading-subtitle {
    color: var(--text-secondary, #5f5f5f);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.pricing-table {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.pricing-card {
    background: var(--bg-panel, #ecf0f1);
    border: 1.5px solid var(--theme-border-color, #b2b8bd);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    flex: 1 1 300px;
    max-width: 340px;
    min-width: 260px;
    margin: 0 0 24px 0;
    padding: 32px 24px 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.pricing-card-featured {
    border: 2.5px solid var(--theme-accent-primary, #f9a825);
    box-shadow: 0 4px 16px rgba(249,168,37,0.10);
    position: relative;
    z-index: 1;
    background: #eafbe7; /* subtle light green */
}
.pricing-card h2 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--theme-text-heading, #333);
    font-family: 'Inter', sans-serif;
}
.pricing-amount {
    font-size: 2.1rem;
    font-weight: bold;
    color: var(--theme-accent-primary, #f9a825);
    margin-bottom: 18px;
}
.pricing-period {
    font-size: 1.1rem;
    color: var(--text-secondary, #5f5f5f);
    font-weight: normal;
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    width: 100%;
}
.pricing-features li {
    font-size: 0.9rem;
    color: var(--text-secondary, #5f5f5f);
    padding: 7px 0;
    border-bottom: 1px solid var(--bg-control, #dadddf);
}
.pricing-features li:last-child {
    border-bottom: none;
}
.btn-pricing-select {
    display: inline-block;
    background: #00c72b;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    padding: 10px 28px;
    border-radius: 6px;
    border: none;
    text-decoration: none;
    margin-top: auto;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
    cursor: pointer;
}
.btn-pricing-select:hover {
    background: #00e426;
    color: #ffffff;
}

.h3-subtext {
    font-size: 0.85rem;
    color: #00aa32;
    font-weight: normal;
}

/* Pricing Toggle Styles */
.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    border-radius: 24px;
    margin-bottom: 32px;
    gap: 0;
}
.toggle-btn {
    border: none;
    outline: none;
    background: var(--bg-control-light, #f2f4f6);
    color: var(--theme-text-heading, #333);
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    padding: 10px 32px;
    cursor: pointer;
    border-radius: 24px 0 0 24px;
    margin: 0;
    transition: background 0.2s, color 0.2s;
    font-weight: 500;
}
.toggle-btn:last-child {
    border-radius: 0 24px 24px 0;
    border-left: 1px solid var(--theme-border-color, #b2b8bd);
}
.toggle-btn.active {
    background: var(--theme-accent-primary, #f9a825);
    color: var(--theme-text-dark, #1c1c1c);
    font-weight: bold;
    z-index: 1;
}
.save-badge {
    background: var(--text-accent, #fbc02d);
    color: var(--text-byline, #b45309);
    font-size: 0.9em;
    font-weight: bold;
    border-radius: 10px;
    padding: 2px 8px;
    margin-left: 8px;
    vertical-align: middle;
}
@media (max-width: 600px) {
    .toggle-btn {
        padding: 8px 12px;
        font-size: 1rem;
    }
}

/* Responsive styles */
@media (max-width: 900px) {
    .pricing-table {
        gap: 12x;
    }
    .pricing-card {
        max-width: 100%;
        min-width: 220px;
        padding: 24px 10px 20px 10px;
    }
}
@media (max-width: 700px) {
    .pricing-table {
        flex-direction: column;
        align-items: center;
    }
    .pricing-card {
        width: 100%;
        max-width: 420px;
        margin-bottom: 18px;
    }
    .heading-main {
        padding: 80px 4px 24px 4px;
    }
}
/* Tablet and Mobile Navigation */
@media (max-width: 768px) {
    /* Hide desktop navigation and auth buttons */
    .main-nav {
        display: none;
    }
    
    .auth-buttons {
        display: none;
    }
    
    /* Show hamburger button */
    .hamburger-btn {
        display: flex;
    }
    
    /* Show mobile menu when active */
    .mobile-menu {
        display: block;
    }
    
    /* Adjust header for mobile */
    .main-header {
        padding: 0 15px;
        justify-content: space-between;
    }
}

@media (max-width: 500px) {
    .main-header {
        padding: 0 10px;
    }
    
    .header-logo-img {
        height: 28px !important;
    }
    
    .heading-hero h1 {
        font-size: 1.3rem;
    }
}