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

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-tertiary: rgba(255, 255, 255, 0.5);
    --accent-blue: #60A5FA;
    --accent-purple: #A78BFA;
    --accent-cyan: #22D3EE;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

/* Navigation */
.glass-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    backdrop-filter: blur(20px) saturate(180%);
    background: rgba(10, 10, 15, 0.75);
    border-bottom: 1px solid var(--glass-border);
}

.nav-content { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.logo { display: flex; align-items: center; gap: 0.75rem; font-weight: 600; font-size: 1.25rem; }
.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-links a {
    color: var(--text-secondary); text-decoration: none; font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--text-primary); }
.nav-actions { display: flex; gap: 1rem; }

/* Buttons */
.btn-secondary, .btn-primary {
    padding: 0.625rem 1.5rem; border-radius: 2rem; text-decoration: none;
    font-weight: 500; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1); color: var(--text-primary);
}
.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: white; box-shadow: 0 4px 20px rgba(96, 165, 250, 0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(96, 165, 250, 0.6); }

/* Hero */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: 80px; overflow: hidden; }
.hero-background { position: absolute; inset: 0; overflow: hidden; }
.gradient-orb {
    position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}
.orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, var(--accent-blue) 0%, transparent 70%); top: -200px; left: -200px; }
.orb-2 { width: 500px; height: 500px; background: radial-gradient(circle, var(--accent-purple) 0%, transparent 70%); bottom: -150px; right: -150px; animation-delay: 5s; }
.orb-3 { width: 400px; height: 400px; background: radial-gradient(circle, var(--accent-cyan) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%, -50%); animation-delay: 10s; }

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-50px, 50px) scale(0.9); }
}

.hero-content { position: relative; z-index: 1; max-width: 900px; text-align: center; margin: 0 auto; }
.badge {
    display: inline-block; padding: 0.5rem 1.5rem; border-radius: 2rem;
    background: rgba(96, 165, 250, 0.1); backdrop-filter: blur(10px);
    border: 1px solid rgba(96, 165, 250, 0.3); margin-bottom: 2rem;
}
.badge-text {
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; font-weight: 600;
}
.hero-title { font-size: 4.5rem; font-weight: 700; line-height: 1.1; margin-bottom: 1.5rem; letter-spacing: -0.02em; }
.gradient-text {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple), var(--accent-cyan));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-description { font-size: 1.25rem; color: var(--text-secondary); margin-bottom: 3rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; margin-bottom: 4rem; }
.btn-hero-primary, .btn-hero-secondary {
    padding: 1rem 2.5rem; border-radius: 2rem; text-decoration: none;
    font-weight: 600; font-size: 1.1rem; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-hero-primary { background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple)); color: white; box-shadow: 0 8px 30px rgba(96, 165, 250, 0.4); }
.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1); color: var(--text-primary);
    display: flex; align-items: center; gap: 0.5rem;
}
.hero-stats {
    display: flex; gap: 4rem; justify-content: center; padding: 2rem;
    border-radius: 2rem; background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.05);
}
.stat-item { text-align: center; }
.stat-value {
    font-size: 2.5rem; font-weight: 700;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { color: var(--text-tertiary); font-size: 0.9rem; }

/* Features Section */
.features-section { padding: 8rem 0; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-title { font-size: 3rem; font-weight: 700; margin-bottom: 1rem; }
.section-description { font-size: 1.25rem; color: var(--text-secondary); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; }
.feature-card {
    padding: 2.5rem; border-radius: 2rem;
    background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(96, 165, 250, 0.2);
    border-color: rgba(96, 165, 250, 0.3);
}
.feature-icon {
    width: 56px; height: 56px; border-radius: 2rem;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.2), rgba(167, 139, 250, 0.2));
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem; color: var(--accent-blue);
}
.feature-title { font-size: 1.5rem; font-weight: 600; margin-bottom: 1rem; }
.feature-description { color: var(--text-secondary); line-height: 1.7; }

/* How It Works */
.how-it-works { padding: 8rem 0; background: var(--bg-secondary); }
.steps-container { display: flex; align-items: center; gap: 2rem; justify-content: center; }
.step-card {
    padding: 3rem 2rem; border-radius: 2rem;
    background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border); text-align: center; flex: 1; max-width: 300px;
}
.step-number {
    font-size: 3rem; font-weight: 700; margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.step-title { font-size: 1.5rem; font-weight: 600; margin-bottom: 1rem; }
.step-description { color: var(--text-secondary); }
.step-connector {
    width: 60px; height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    opacity: 0.5;
}

/* CTA Section */
.cta-section { padding: 8rem 0; }
.cta-card {
    padding: 5rem 3rem; border-radius: 2rem; text-align: center;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(167, 139, 250, 0.1));
    backdrop-filter: blur(20px); border: 1px solid rgba(96, 165, 250, 0.2);
}
.cta-title { font-size: 3rem; font-weight: 700; margin-bottom: 1.5rem; }
.cta-description { font-size: 1.25rem; color: var(--text-secondary); margin-bottom: 3rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; }
.btn-cta-primary, .btn-cta-secondary {
    padding: 1rem 2.5rem; border-radius: 2rem; text-decoration: none;
    font-weight: 600; font-size: 1.1rem; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-cta-primary { background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple)); color: white; box-shadow: 0 8px 30px rgba(96, 165, 250, 0.4); }
.btn-cta-secondary { background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1); color: var(--text-primary); }

/* Footer */
.footer { padding: 4rem 0 2rem; background: var(--bg-secondary); border-top: 1px solid var(--glass-border); }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { display: flex; align-items: center; gap: 0.75rem; font-weight: 600; font-size: 1.25rem; margin-bottom: 1rem; }
.footer-description { color: var(--text-tertiary); line-height: 1.7; }
.footer-title { font-weight: 600; margin-bottom: 1.5rem; font-size: 1.1rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: var(--text-tertiary); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--text-primary); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; border-top: 1px solid var(--glass-border); color: var(--text-tertiary); }
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
    width: 40px; height: 40px; border-radius: 2rem;
    background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-tertiary); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-social a:hover { background: rgba(255, 255, 255, 0.1); color: var(--text-primary); }

/* Page Hero */
.page-hero { padding: 12rem 0 6rem; text-align: center; background: var(--bg-secondary); }
.page-title { font-size: 3.5rem; font-weight: 700; margin-bottom: 1rem; }
.page-description { font-size: 1.25rem; color: var(--text-secondary); }

/* Feature Details */
.features-detail { padding: 6rem 0; }
.feature-detail-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.feature-detail-card {
    padding: 2.5rem; border-radius: 2rem;
    background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}
.feature-detail-card h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.feature-list { list-style: none; margin-top: 1.5rem; }
.feature-list li { padding: 0.5rem 0; color: var(--text-secondary); }

/* Solutions */
.solutions-section { padding: 6rem 0; }
.solutions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.solution-card {
    padding: 3rem; border-radius: 2rem; text-align: center;
    background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}
.solution-card h3 { font-size: 1.75rem; margin-bottom: 1rem; }
.solution-card p { color: var(--text-secondary); margin-bottom: 2rem; }
.btn-solution {
    display: inline-block; padding: 0.75rem 1.5rem; border-radius: 2rem;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: white; text-decoration: none; font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Pricing */
.pricing-section { padding: 6rem 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; align-items: start; }
.pricing-card {
    padding: 3rem; border-radius: 2rem; position: relative;
    background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border); text-align: center;
}
.pricing-card.featured {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(167, 139, 250, 0.1));
    border-color: rgba(96, 165, 250, 0.3);
    transform: scale(1.05);
}
.popular-badge {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    padding: 0.5rem 1.5rem; border-radius: 2rem;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: white; font-size: 0.875rem; font-weight: 600;
}
.pricing-tier { font-size: 1.5rem; font-weight: 600; margin-bottom: 1rem; }
.pricing-amount { margin-bottom: 1rem; }
.currency { font-size: 1.5rem; color: var(--text-secondary); }
.price { font-size: 3.5rem; font-weight: 700; }
.price-custom { font-size: 2.5rem; font-weight: 700; }
.period { color: var(--text-secondary); }
.pricing-description { color: var(--text-secondary); margin-bottom: 2rem; }
.pricing-features { list-style: none; margin-bottom: 2rem; text-align: left; }
.pricing-features li { padding: 0.75rem 0; color: var(--text-secondary); border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.btn-pricing, .btn-pricing-featured {
    display: block; width: 100%; padding: 1rem; border-radius: 2rem;
    text-decoration: none; font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-pricing {
    background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1); color: var(--text-primary);
}
.btn-pricing-featured {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: white; box-shadow: 0 4px 20px rgba(96, 165, 250, 0.4);
}

/* About */
.about-content { padding: 6rem 0; }
.about-section { margin-bottom: 4rem; }
.about-section h2 { font-size: 2rem; margin-bottom: 1.5rem; }
.about-section p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 1rem; }
.about-values { margin-top: 6rem; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 3rem; }
.value-card {
    padding: 2rem; border-radius: 2rem;
    background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border); text-align: center;
}
.value-card h3 { font-size: 1.25rem; margin-bottom: 1rem; }

/* Contact */
.contact-section { padding: 6rem 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; }
.contact-info h2 { font-size: 2rem; margin-bottom: 2rem; }
.contact-item { margin-bottom: 2rem; }
.contact-item h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--accent-blue); }
.contact-item p { color: var(--text-secondary); line-height: 1.7; }
.contact-form {
    padding: 3rem; border-radius: 2rem;
    background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}
.contact-form h2 { font-size: 2rem; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 1rem; border-radius: 1rem;
    background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary); font-family: inherit; font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--accent-blue);
    box-shadow: 0 0 20px rgba(96, 165, 250, 0.3);
}
.btn-submit {
    width: 100%; padding: 1rem; border-radius: 2rem; border: none;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: white; font-weight: 600; font-size: 1.1rem; cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(96, 165, 250, 0.6); }

/* Demo */
.demo-section { padding: 12rem 0 6rem; }
.demo-container { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.demo-info h1 { font-size: 3rem; font-weight: 700; margin-bottom: 1.5rem; }
.demo-benefits { list-style: none; margin-top: 2rem; }
.demo-benefits li { padding: 1rem 0; color: var(--text-secondary); font-size: 1.1rem; }
.demo-form {
    padding: 3rem; border-radius: 2rem;
    background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}
.demo-form h2 { font-size: 1.75rem; margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { margin-top: 1rem; font-size: 0.875rem; color: var(--text-tertiary); text-align: center; }

/* Login */
.login-section { padding: 12rem 0; min-height: 100vh; display: flex; align-items: center; }
.login-container { max-width: 480px; margin: 0 auto; }
.login-form {
    padding: 3rem; border-radius: 2rem;
    background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border); text-align: center;
}
.login-form .logo { justify-content: center; margin-bottom: 2rem; }
.login-form h2 { font-size: 2rem; margin-bottom: 0.5rem; }
.login-subtitle { color: var(--text-secondary); margin-bottom: 2rem; }
.form-options { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; font-size: 0.9rem; }
.checkbox-label { display: flex; align-items: center; gap: 0.5rem; color: var(--text-secondary); }
.forgot-link { color: var(--accent-blue); text-decoration: none; }
.divider { position: relative; text-align: center; margin: 2rem 0; }
.divider::before, .divider::after {
    content: ''; position: absolute; top: 50%; width: 45%; height: 1px;
    background: var(--glass-border);
}
.divider::before { left: 0; }
.divider::after { right: 0; }
.divider span { background: var(--bg-primary); padding: 0 1rem; color: var(--text-tertiary); }
.btn-social {
    width: 100%; padding: 1rem; border-radius: 2rem;
    background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1); color: var(--text-primary);
    display: flex; align-items: center; justify-content: center; gap: 0.75rem;
    font-weight: 500; cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-social:hover { background: rgba(255, 255, 255, 0.1); }
.signup-prompt { margin-top: 2rem; color: var(--text-secondary); }
.signup-prompt a { color: var(--accent-blue); text-decoration: none; font-weight: 600; }

/* Legal Pages */
.legal-content { padding: 12rem 0 6rem; max-width: 900px; margin: 0 auto; }
.legal-content h1 { font-size: 3rem; margin-bottom: 1rem; }
.updated-date { color: var(--text-tertiary); margin-bottom: 3rem; }
.legal-section { margin-bottom: 3rem; }
.legal-section h2 { font-size: 1.75rem; margin-bottom: 1rem; color: var(--accent-blue); }
.legal-section p { color: var(--text-secondary); line-height: 1.8; }

/* Careers */
.careers-content { padding: 6rem 0; }
.careers-intro { text-align: center; margin-bottom: 4rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.careers-intro h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.careers-intro p { color: var(--text-secondary); font-size: 1.1rem; }
.jobs-section h2 { font-size: 2rem; margin-bottom: 2rem; }
.job-listings { display: grid; gap: 2rem; }
.job-card {
    padding: 2.5rem; border-radius: 2rem;
    background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}
.job-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.job-location { color: var(--text-tertiary); margin-bottom: 1rem; font-size: 0.9rem; }
.job-card p { color: var(--text-secondary); margin-bottom: 1.5rem; }
.btn-apply {
    display: inline-block; padding: 0.75rem 2rem; border-radius: 2rem;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: white; text-decoration: none; font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Blog */
.blog-content { padding: 6rem 0; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.blog-card {
    padding: 2.5rem; border-radius: 2rem;
    background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}
.blog-card h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.blog-meta { color: var(--text-tertiary); font-size: 0.875rem; margin-bottom: 1rem; }
.blog-card p { color: var(--text-secondary); margin-bottom: 1.5rem; }
.read-more { color: var(--accent-blue); text-decoration: none; font-weight: 600; }

/* Security */
.security-content { padding: 6rem 0; }
.security-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-bottom: 4rem; }
.security-card {
    padding: 2.5rem; border-radius: 2rem; text-align: center;
    background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}
.security-card h3 { font-size: 1.25rem; margin-bottom: 1rem; }
.security-cta { text-align: center; padding: 4rem 2rem; }
.security-cta h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.security-cta p { color: var(--text-secondary); margin-bottom: 2rem; }

/* JavaScript */
.script-js { display: none; }

/* Responsive */
@media (max-width: 768px) {
    .nav-links, .nav-actions { display: none; }
    .hero-title { font-size: 2.5rem; }
    .hero-stats { flex-direction: column; gap: 2rem; }
    .features-grid { grid-template-columns: 1fr; }
    .steps-container { flex-direction: column; }
    .step-connector { width: 2px; height: 60px; }
    .footer-content { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .demo-container { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: scale(1); }
}
