* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Rubik', sans-serif;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: white;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    opacity: 0.95;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #6c757d;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2c3e50;
}

.btn-schedule {
    background: linear-gradient(135deg, #ba4270, #d63384);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(186, 66, 112, 0.3);
}

.btn-schedule:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(186, 66, 112, 0.4);
}

/* Main Content */
.main-content {
    background: #f8f9fa;
    padding: 60px 0 80px;
    position: relative;
}

.main-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 300px;
    height: 300px;
    background: #e9ecef;
    border-radius: 50%;
    z-index: 1;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 60px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

/* Pricing Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: white;
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.plan-name {
    font-size: 20px;
    font-weight: 700;
    color: #ba4270;
    margin-bottom: 15px;
}

.plan-desc {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 25px;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 40px;
}

/* Features List */
.features-list {
    list-style: none;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #2c3e50;
}

.feature-item.gray {
    color: #adb5bd;
}

.check-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 10px;
    font-weight: bold;
}

.check-icon.green {
    background: #28a745;
    color: white;
}

.check-icon.green::after {
    content: '✓';
}

.check-icon.gray {
    background: #e9ecef;
}

/* Request Button */
.request-btn {
    width: 100%;
    padding: 12px 20px;
    background: transparent;
    border: 2px solid #e9ecef;
    border-radius: 20px;
    color: #6c757d;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.request-btn:hover {
    background: #2c3e50;
    color: white;
    border-color: #2c3e50;
}

/* Ready to start section */
.ready-section {
    background: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.ready-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
}

.email-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

.email-input:focus {
    border-color: #ba4270;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    margin-top: 60px;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #ba4270, #d63384);
    transform: scale(1.1) rotate(360deg);
}

.feature-icon::before {
    content: '';
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 6px;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
}

.cta-form {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-nav {
    display: flex;
    gap: 40px;
}

.footer-nav a {
    color: #b8c5d1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    background-color: #ba4270;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-hero h1 {
        font-size: 2.5rem;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .nav-links {
        display: none;
    }

    .cta-form {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .plan-card {
        padding: 30px 20px;
    }

    .plan-price {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .pricing-hero {
        padding: 60px 0 40px;
    }

    .pricing-hero h1 {
        font-size: 2rem;
    }

    .pricing-plans {
        padding: 60px 0 80px;
    }

    .container {
        padding: 0 15px;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .plan-title {
        font-size: 1.5rem;
    }

    .plan-price {
        font-size: 2rem;
    }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Animation Classes */
.pricing-hero h1 {
    animation: slideInLeft 1s ease;
}

.plan-card {
    animation: fadeInUp 1s ease;
}

.plan-card:nth-child(2) { 
    animation-delay: 0.2s; 
}

.plan-card:nth-child(3) { 
    animation-delay: 0.4s; 
}

/* Focus States for Accessibility */
.btn-request:focus,
.btn-schedule:focus,
.email-input:focus,
.nav-links a:focus,
.footer-nav a:focus {
    outline: 2px solid #ba4270;
    outline-offset: 2px;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .plan-description,
    .feature-item span {
        color: #333;
    }
    
    .footer-nav a {
        color: #ddd;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}