/* Global Styles */
:root {
    --primary-color: #FF9900;
    --secondary-color: #1A1A1A;
    --text-color: #333;
    --light-gray: #F5F5F5;
    --gradient-start: #FFF5E6;
    --gradient-end: #E6F7FF;
    --orbit-color-1: #4FC3F7; /* Light blue */
    --orbit-color-2: #4CAF50; /* Green */
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    padding-top: 76px;
}

/* Navbar Styles */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 600;
    color: var(--secondary-color);
    text-decoration: none;
}

.navbar-brand img {
    transition: transform 0.2s ease-in-out;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    color: var(--text-color) !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s ease-in-out;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-buttons .btn {
    padding: 0.75rem 1.5rem;
}

/* Circle Animation */
.hero-image {
    position: relative;
    width: 100%;
    height: 400px;
}

.circle-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
}

.main-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    background: #FFE082;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sun-center {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(255, 153, 0, 0.2);
}

.sun-center i {
    font-size: 2rem;
    color: var(--primary-color);
}

.orbit {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.orbit-outer {
    animation: rotate 20s linear infinite;
}

.orbit-inner {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    animation: rotate 15s linear infinite;
}

.planet {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.planet-1 {
    background-color: var(--orbit-color-1);
    top: 50%;
    left: -15px;
    transform: translateY(-50%);
}

.planet-2 {
    background-color: var(--orbit-color-2);
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Button Styles */
.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 0.75rem 1.5rem;
    transition: all 0.2s ease-in-out;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 153, 0, 0.2);
}

.btn-outline-dark {
    border: 2px solid var(--secondary-color);
    padding: 0.75rem 1.5rem;
    transition: all 0.2s ease-in-out;
}

.btn-outline-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Section Styles */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Applications Section */
.applications-section {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.app-card {
    background: linear-gradient(135deg, #FFB938 0%, #FF7A00 100%);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    padding: 2rem;
    color: white;
}

.app-card.free {
    background: white;
    border: 1px solid #E5E7EB;
    color: var(--text-color);
}

.app-icon {
    margin-bottom: 1.5rem;
    position: relative;
}

.app-icon i {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.75rem;
    border-radius: 12px;
    display: inline-block;
    width: 48px;
    height: 48px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.app-card.free .app-icon i {
    color: #10B981;
    background: #ECFDF5;
}

.app-card:nth-child(2) .app-icon i { /* Business Plan Builder */
    color: #3B82F6;
    background: #EFF6FF;
}

.app-card:nth-child(3) .app-icon i { /* Financial Forecaster */
    color: #8B5CF6;
    background: #F5F3FF;
}

.app-card:nth-child(4) .app-icon i { /* Compliance Checker */
    color: #F59E0B;
    background: #FFFBEB;
}

.app-card:nth-child(5) .app-icon i { /* Marketing Magic */
    color: #EC4899;
    background: #FDF2F8;
}

.app-card:nth-child(6) .app-icon i { /* Operational Optimizer */
    color: #6366F1;
    background: #EEF2FF;
}

.app-card:nth-child(7) .app-icon i { /* HR Hub */
    color: #14B8A6;
    background: #F0FDFA;
}

.app-card:nth-child(8) .app-icon i { /* Customer Success Station */
    color: #F97316;
    background: #FFF7ED;
}

.app-card:nth-child(9) .app-icon i { /* Growth Gear */
    color: #EF4444;
    background: #FEF2F2;
}

.app-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.app-card.free h3 {
    color: #1F2937;
}

.app-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.app-card.free p {
    color: #6B7280;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.feature-list li {
    color: rgba(255, 255, 255, 0.9);
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.app-card.free .feature-list li {
    color: #6B7280;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.9);
}

.app-card.free .feature-list li::before {
    color: #10B981;
}

.btn-access {
    display: inline-block;
    width: 100%;
    padding: 0.875rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.2s ease;
}

.btn-access:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateY(-2px);
}

.app-card.free .btn-access {
    background: #10B981;
    border: none;
    color: white;
}

.app-card.free .btn-access:hover {
    background: #059669;
}

.tag-free {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #ECFDF5;
    color: #10B981;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    position: absolute;
    top: 0;
    right: 0;
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 0;
    background-color: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card {
    background: white;
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.2);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary-color);
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background-color: white;
    padding: 3rem 0;
    border-top: 1px solid #eee;
}

/* Gradient Button */
.gradient-button {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%) !important;
    color: white !important;
    border: none !important;
    transition: all 0.2s ease-in-out !important;
}

.gradient-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Dropdown Menu */
.dropdown-menu {
    border-radius: 0.5rem;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
}

.dropdown-item:hover {
    background-color: var(--light-gray);
}

.dropdown-item.text-danger:hover {
    background-color: #fee2e2;
}

/* Alert Styles */
.alert {
    border-radius: 0.5rem;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.alert-success {
    background-color: #ecfdf5;
    color: #065f46;
}

.alert-danger {
    background-color: #fef2f2;
    color: #991b1b;
}

/* Form Styles */
.form-control {
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease-in-out;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.1);
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
}

/* Card Styles */
.card {
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease-in-out;
}

.card:hover {
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .circle-container {
        width: 250px;
        height: 250px;
    }
    
    .app-grid,
    .pricing-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-image {
        height: 300px;
        margin-top: 2rem;
    }
    
    .circle-container {
        width: 200px;
        height: 200px;
    }
    
    .app-grid,
    .pricing-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .navbar-nav {
        margin-top: 1rem;
    }
}
