:root {
    --bg-color: #0a0a0a;
    --card-bg: #171717;
    --text-main: #ededed;
    --text-muted: #a1a1aa;
    --accent: #f59e0b; /* Honey/Amber color for Apiary theme */
    --accent-glow: rgba(245, 158, 11, 0.2);
    --border: #333;
    --font-family: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-family);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 70px;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    border-bottom: 1px solid var(--border);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-color);
    z-index: 1000;
    will-change: transform;
    transform: translateZ(0);
}

.logo { font-weight: 800; font-size: 1.25rem; letter-spacing: -0.5px; }

.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

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

.nav-links a {
    margin-left: 2rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.nav-links a:hover { color: #fff; }
.btn-small {
    border: 1px solid var(--border);
    padding: 0.4rem 1rem;
    border-radius: 6px;
}
.btn-small:hover { border-color: var(--accent); color: var(--accent); }

/* HERO SECTION */
.hero {
    text-align: center;
    padding: 6rem 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    background: rgba(255,255,255,0.1);
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    display: inline-block;
    color: var(--accent);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.gradient-text {
    background: linear-gradient(90deg, #fff, #999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.cta-group { display: flex; gap: 1rem; justify-content: center; margin-bottom: 2rem; }

.trust-badges {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.trust-badges span {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-badges span::before {
    content: attr(data-icon);
    color: var(--accent);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #fbbf24);
    color: #000;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover { 
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(245, 158, 11, 0.5);
}

.btn-secondary {
    background: var(--card-bg);
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    border: 2px solid var(--border);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover { 
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
}

/* STATS SECTION */
.stats-section {
    background: linear-gradient(180deg, transparent, rgba(245, 158, 11, 0.03), transparent);
    padding: 4rem 5%;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    line-height: 1;
}

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

/* FEATURES SECTION */
.features-section {
    padding: 5rem 5% 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

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

.feature-item {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: rgba(245, 158, 11, 0.02);
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(245, 158, 11, 0.05);
}

.feature-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
    border-radius: 20px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--text-main);
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* APIS SECTION */
.apis-section {
    padding: 3rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

/* BENTO GRID (APIs) */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #fbbf24);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -15px rgba(245, 158, 11, 0.3);
    border-color: var(--accent);
}

.feature-card {
    grid-column: span 1;
    background: radial-gradient(circle at top right, rgba(245, 158, 11, 0.08), var(--card-bg));
    border: 1px solid rgba(245, 158, 11, 0.2);
}

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

.coming-soon-tag {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1rem;
}

.card-header { font-size: 0.8rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.status-dot.active { background: #10b981; box-shadow: 0 0 8px #10b981; }
.status-dot.beta { background: #3b82f6; }

.card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.5rem; flex-grow: 1; }

.tech-stack { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; }
.tech-stack span {
    font-size: 0.75rem;
    background: rgba(255,255,255,0.05);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    color: var(--text-muted);
}

.api-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.api-stats span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.card-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
}

/* NEWSLETTER SECTION */
.newsletter-section {
    padding: 5rem 5%;
    background: linear-gradient(180deg, var(--bg-color) 0%, var(--card-bg) 100%);
}

.newsletter-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.newsletter-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.newsletter-form {
    max-width: 550px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group input[type="email"] {
    flex: 1;
    padding: 0.9rem 1.2rem;
    background: var(--bg-color);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-main);
    font-size: 0.95rem;
    font-family: var(--font-family);
    transition: all 0.3s ease;
}

.form-group input[type="email"]:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group input[type="email"]::placeholder {
    color: var(--text-muted);
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
}

.form-note a {
    color: var(--accent);
    text-decoration: underline;
}

.form-note a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 3rem 5%;
    }
    
    .newsletter-content h2 {
        font-size: 1.5rem;
    }
    
    .form-group {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .form-group button {
        width: 100%;
    }
}

/* FOOTER */
footer {
    border-top: 1px solid var(--border);
    padding: 3rem 5%;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-brand h4 { 
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.footer-brand p { 
    color: var(--text-muted); 
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.footer-location {
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.footer-section h5 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--text-main);
    font-weight: 600;
}

.footer-links { 
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a { 
    color: var(--text-muted); 
    font-size: 0.9rem;
}

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

/* SUBSCRIPTION BUTTONS */
.subscription-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    margin-top: auto;
}

.btn-subscribe {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
    display: block;
}

.btn-rapidapi {
    background: linear-gradient(135deg, #0066ff, #0052cc);
    color: white;
    box-shadow: 0 2px 8px rgba(0, 102, 255, 0.3);
}

.btn-rapidapi:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.5);
}

.btn-zyla {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

.btn-zyla:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.5);
}

.btn-direct {
    background: linear-gradient(135deg, var(--accent), #fbbf24);
    color: #000;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-direct::before {
    content: '💰 Best Value';
    position: absolute;
    top: -20px;
    right: 10px;
    font-size: 0.7rem;
    background: #10b981;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 700;
}

.btn-direct:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.5);
}

/* DISABLED BUTTON STYLES */
.btn-subscribe:disabled,
.btn-subscribe.disabled {
    background: linear-gradient(135deg, #6b7280, #4b5563) !important;
    color: #9ca3af !important;
    cursor: not-allowed !important;
    opacity: 0.6;
    box-shadow: none !important;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 1.5rem;
}

.btn-subscribe:disabled:hover,
.btn-subscribe.disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

.btn-subscribe:disabled::before {
    display: none;
}

.disabled-text {
    font-size: 0.9rem;
    font-weight: 600;
}

.coming-soon-badge {
    font-size: 0.7rem;
    font-weight: 500;
    color: #d1d5db;
    font-style: italic;
}

/* MODAL STYLES */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.85);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    animation: fadeIn 0.3s ease;
    will-change: opacity;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: var(--card-bg);
    margin: 2% auto;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 16px;
    width: 95%;
    max-width: 1200px;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideIn 0.3s ease;
    position: relative;
    will-change: transform;
    transform: translateZ(0);
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    color: var(--text-muted);
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    z-index: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: var(--accent);
    background: rgba(245, 158, 11, 0.1);
}

.modal-header {
    padding: 2rem 3rem;
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.modal-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--accent), #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.modal-body {
    padding: 2rem 3rem 3rem;
}

/* BILLING TOGGLE */
.billing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(245, 158, 11, 0.05);
    border-radius: 12px;
}

.billing-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
}

.billing-savings {
    color: #10b981;
    font-size: 0.85rem;
    font-weight: 700;
}

.billing-toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.billing-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #4b5563;
    transition: 0.4s;
    border-radius: 30px;
}

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

.billing-toggle input:checked + .toggle-slider {
    background: linear-gradient(135deg, var(--accent), #fbbf24);
}

.billing-toggle input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

.monthly-equivalent {
    font-size: 0.9rem;
    color: #10b981;
    font-weight: 600;
    margin-top: 0.25rem;
}

.pricing-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.pricing-tier {
    background: rgba(245, 158, 11, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-tier:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.2);
}

.pricing-tier.popular {
    border-color: var(--accent);
    background: rgba(245, 158, 11, 0.08);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), #fbbf24);
    color: #000;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.free-trial-badge {
    position: absolute;
    top: -12px;
    right: 1rem;
    background: linear-gradient(135deg, #10b981, #34d399);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
    }
    50% {
        box-shadow: 0 4px 16px rgba(16, 185, 129, 0.5);
    }
}

.free-trial-notice {
    color: #10b981;
    font-size: 0.85rem;
    font-weight: 500;
    margin: -0.5rem 0 0.8rem 0;
    padding: 0.4rem 0.8rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 8px;
    text-align: center;
}

.tier-name {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.tier-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

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

.tier-stats {
    margin: 1rem 0;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.tier-stat {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0.3rem 0;
}

.tier-stat strong {
    color: var(--accent);
    font-weight: 600;
}

.tier-stat-extra {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 0.5rem;
    font-style: italic;
}

.tier-features-section {
    margin: 1.5rem 0;
    flex-grow: 1;
    overflow-y: auto;
    max-height: 400px;
}

.tier-features {
    list-style: none;
    text-align: left;
}

.tier-features li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tier-features li:last-child {
    border-bottom: none;
}

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

.feature-enabled::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: #10b981;
    border-radius: 50%;
    margin-right: 0.5rem;
}

.feature-disabled {
    color: #666;
    opacity: 0.6;
}

.feature-disabled::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: #666;
    border-radius: 50%;
    margin-right: 0.5rem;
}

.tier-button {
    background: linear-gradient(135deg, var(--accent), #fbbf24);
    color: #000;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    margin-top: auto;
}

.tier-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.tier-button-free {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.pricing-benefits {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.pricing-benefits p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.pricing-benefits ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.pricing-benefits li {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* MOBILE */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    .hero { padding: 4rem 1rem; }
    .hero-subtitle { font-size: 1rem; }
    .nav-links { display: none; }
    .cta-group { flex-direction: column; }
    .trust-badges { gap: 1rem; font-size: 0.85rem; }
    .stats-container { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .stat-number { font-size: 2.5rem; }
    .features-grid { grid-template-columns: 1fr; }
    .feature-icon-wrapper { width: 70px; height: 70px; }
    .bento-grid { grid-template-columns: 1fr; padding: 2rem 5%; }
    .footer-content { flex-direction: column; gap: 2rem; }
    .btn-primary, .btn-secondary { padding: 0.8rem 1.5rem; width: 100%; text-align: center; }
    
    .modal-content {
        width: 98%;
        margin: 1% auto;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 1.5rem 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 1.5rem 1rem;
    }
    
    .pricing-tiers {
        grid-template-columns: 1fr;
    }
    
    .pricing-benefits ul {
        grid-template-columns: 1fr;
    }
}