/* A.I.M Website Styles - Fixed Version */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    color: #00b894;
    background: rgba(0, 184, 148, 0.1);
}

.nav-signup {
    background: linear-gradient(45deg, #00b894, #a3e935);
    color: #ffffff !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 184, 148, 0.4);
}

.nav-login {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: #ffffff !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(103, 126, 234, 0.4);
}

/* Hero Section with Our Why */
.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

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

.our-why-section {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(64, 224, 208, 0.3);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.our-why-title {
    font-size: 3rem;
    font-weight: 700;
    color: #40E0D0;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.our-why-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.aim-motion-btn {
    background: linear-gradient(135deg, #40E0D0, #00CED1);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(64, 224, 208, 0.3);
}

.aim-motion-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(64, 224, 208, 0.4);
}

.team-section {
    margin-top: 2rem;
}

.team-title {
    font-size: 2rem;
    font-weight: 600;
    color: #40E0D0;
    margin-bottom: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, #00b894, #a3e935);
    color: #ffffff;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 184, 148, 0.4);
}

.btn-secondary {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: #ffffff;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(103, 126, 234, 0.4);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.05);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    align-items: stretch;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card:hover {
    border-color: #00b894;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 184, 148, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-description {
    color: #b0b0b0;
    margin-bottom: 30px;
    flex-grow: 1;
}

.feature-learn-more {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: auto;
}

.feature-learn-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(103, 126, 234, 0.4);
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.pricing-subtitle {
    font-size: 1.1rem;
    color: #b0b0b0;
    text-align: center;
    margin-bottom: 50px;
    font-style: italic;
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 5px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-toggle button {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: transparent;
    color: #b0b0b0;
    border-radius: 45px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.pricing-toggle button.active {
    background: linear-gradient(45deg, #00b894, #a3e935);
    color: #ffffff;
}

.pricing-toggle button:hover {
    color: #ffffff;
}

/* Pricing Categories */
.pricing-category {
    margin-bottom: 80px;
}

.pricing-category-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #00b894, #a3e935);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-category-subtitle {
    text-align: center;
    color: #b0b0b0;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* Pricing Grid - 3 cards per row */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Pricing Cards */
.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 450px;
    backdrop-filter: blur(10px);
}

.pricing-card:hover {
    border-color: #00b894;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 184, 148, 0.2);
}

.pricing-card.popular {
    border-color: #00b894;
    position: relative;
    transform: scale(1.05);
}

.pricing-card.popular::before {
    content: "MOST POPULAR";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #00b894, #a3e935);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #00b894, #a3e935);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.savings-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff6b35;
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-card-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #ffffff;
    text-align: center;
}

.pricing-card-price {
    text-align: center;
    margin-bottom: 20px;
}

.pricing-card-price .price {
    font-size: 3rem;
    font-weight: 700;
    color: #00b894;
    display: block;
}

.pricing-card-price .per {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.pricing-card-description {
    color: #b0b0b0;
    margin-bottom: 25px;
    text-align: center;
    font-size: 0.9rem;
}

.pricing-card-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-card-features li {
    padding: 8px 0;
    color: #e0e0e0;
    position: relative;
    padding-left: 25px;
}

.pricing-card-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00b894;
    font-weight: bold;
}

.btn-get-started {
    background: linear-gradient(45deg, #00b894, #a3e935);
    color: #ffffff;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: auto;
}

.btn-get-started:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 184, 148, 0.4);
}

/* CTA Section - Fixed to be horizontal */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    width: 100%;
    clear: both;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    padding: 15px 30px;
    border: 2px solid #ffffff;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline:hover {
    background: #ffffff;
    color: #667eea;
    transform: translateY(-2px);
}

.btn-cancel {
    background: #ff4757;
    color: #ffffff;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-cancel:hover {
    background: #ff3742;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.4);
}

/* Footer */
.footer {
    padding: 50px 0;
    background: #0a0a0a;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00b894;
}

.footer-text {
    color: #666;
    font-size: 0.9rem;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.modal-content {
    background: #1a1a2e;
    padding: 40px;
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.modal-content h2 {
    color: #00b894;
    margin-bottom: 20px;
    text-align: center;
}

.modal-content .close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: #b0b0b0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-content .close:hover {
    color: #ffffff;
}

.cancel-options {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.cancel-option {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.cancel-option h3 {
    color: #00b894;
    margin-bottom: 10px;
}

.cancel-option p {
    color: #b0b0b0;
    margin-bottom: 15px;
}

.cancel-note {
    background: rgba(255, 107, 53, 0.1);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #ff6b35;
}

.cancel-note p {
    color: #e0e0e0;
    margin: 0;
    font-size: 0.9rem;
}

/* Admin Indicator */
.admin-indicator {
    position: fixed;
    top: 10px;
    right: 10px;
    background: #ff4757;
    color: white;
    padding: 10px;
    border-radius: 5px;
    z-index: 10000;
    font-size: 12px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.admin-indicator button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 11px;
}

/* Animation Classes */
.animate {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .pricing-card.popular {
        transform: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card {
        min-height: 400px;
        padding: 25px;
    }
    
    .pricing-card-price .price {
        font-size: 2.5rem;
    }
    
    .pricing-category-title {
        font-size: 1.8rem;
    }
    
    .pricing-toggle {
        flex-direction: column;
        max-width: 200px;
        gap: 5px;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .pricing-card {
        min-height: 350px;
        padding: 20px;
    }
    
    .pricing-card-price .price {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pricing-category-title {
        font-size: 1.6rem;
    }
}

/* Thank You Page Styles */
.thank-you-section {
    min-height: 100vh;
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
}

.thank-you-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.thank-you-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #40E0D0;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.thank-you-subtitle {
    font-size: 1.2rem;
    color: #b8c6db;
    margin-bottom: 3rem;
}

.thank-you-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.detail-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(64, 224, 208, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    text-align: left;
}

.detail-card h3 {
    color: #40E0D0;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.detail-card p {
    color: #b8c6db;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.next-steps {
    list-style: none;
    padding: 0;
}

.next-steps li {
    color: #ffffff;
    margin-bottom: 0.8rem;
    padding-left: 0;
    line-height: 1.5;
}

.support-info {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(64, 224, 208, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.support-info h3 {
    color: #40E0D0;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.support-info p {
    color: #b8c6db;
    margin-bottom: 1.5rem;
}

.support-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    color: #40E0D0;
    border: 2px solid #40E0D0;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background: #40E0D0;
    color: #1a1a2e;
    transform: translateY(-2px);
}

.btn-secondary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.next-steps {
    background: rgba(0, 184, 148, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(0, 184, 148, 0.3);
    margin-bottom: 40px;
}

.next-steps h3 {
    color: #00b894;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.next-steps ol {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
    color: #e0e0e0;
}

.next-steps li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Terms of Service Page */
.terms {
    padding: 120px 0 80px;
    max-width: 800px;
    margin: 0 auto;
}

.terms h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #00b894;
    text-align: center;
}

.terms h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: #ffffff;
}

.terms h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: #00b894;
}

.terms p {
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 15px;
}

.terms ul {
    color: #e0e0e0;
    margin-bottom: 20px;
    padding-left: 30px;
}

.terms li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.refund-highlight {
    background: rgba(255, 107, 53, 0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #ff6b35;
    margin: 20px 0;
}

.refund-highlight h4 {
    color: #ff6b35;
    margin-bottom: 10px;
}

.refund-highlight p {
    margin: 0;
    font-weight: 500;
}

/* Clear any potential layout issues */
.pricing, .cta, .footer {
    clear: both;
    width: 100%;
    display: block;
}

/* Ensure no grid layout affects main sections */
body > * {
    display: block;
    width: 100%;
}

/* Override any potential grid layouts */
.pricing-section-wrapper,
.cta-section-wrapper {
    display: block !important;
    width: 100% !important;
    grid-column: unset !important;
}

