/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
    padding-top: 70px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
    margin-right: 1rem;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #4a6cfd;
}

.toggle-container {
    display: flex;
    align-items: center;
}

.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

/* Main Content Styles */
main {
    min-height: 70vh;
}

section {
    padding: 4rem 5%;
}

h1, h2, h3 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 70vh;
    background: linear-gradient(135deg, #4a6cfd, #6e8fff);
    color: white;
    padding: 2rem;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn.primary {
    background-color: white;
    color: #ff5a5f;
}

.btn.primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
}

.btn.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Features Section */
.features {
    background-color: #f9f9f9;
}

.feature-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 2.5rem;
    color: #4a6cfd;
    margin-bottom: 1rem;
}

/* Image Gallery */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.image-description {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover .image-description {
    opacity: 1;
    transform: translateY(0);
}

/* Workflow Section */
.workflow {
    background-color: #f9f9f9;
}

.workflow-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #4a6cfd;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    margin: 0 auto 1rem;
}

/* Testimonials */
.testimonial-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.testimonial-author {
    font-weight: 600;
    text-align: right;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #4a6cfd, #6e8fff);
    color: white;
    text-align: center;
}

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

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Download Section */
.download {
    text-align: center;
    padding: 4rem 5%;
    background-color: #f0f4ff;
}

.download h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.download p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.download-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.download-btn i {
    font-size: 4rem;
    color: #4a6cfd;
    margin-bottom: 1rem;
}

.download-btn span {
    font-size: 1.2rem;
    font-weight: 600;
}

.version-info {
    margin-top: 2rem;
    color: #666;
}

/* Money Back Section */
.money-back {
    background: linear-gradient(135deg, #34c759, #32d74b);
    color: white;
    text-align: center;
    padding: 3rem 5%;
}

.price-note {
    font-size: 0.9rem;
    color: #777;
    margin-top: 0.5rem;
}

.price-savings {
    font-size: 1rem;
    font-weight: 700;
    color: #34c759;
    margin-top: 0.5rem;
}

/* Dashboard Preview Section */
.dashboard-preview {
    background-color: #f9f9f9;
    padding: 4rem 5%;
}

.dashboard-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.dashboard-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.preview-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.dashboard-features {
    flex: 1;
    min-width: 300px;
}

.dashboard-features ul {
    padding-left: 0;
}

.dashboard-features li {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
}

.dashboard-features li i {
    color: #ff5a5f;
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* License Management Section */
.license-management {
    padding: 4rem 5%;
    background-color: #fff;
}

.license-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto 0;
}

.license-feature {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.license-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.license-feature i {
    font-size: 3rem;
    color: #ff5a5f;
    margin-bottom: 1.5rem;
}

/* Login CTA Section */
.login-cta {
    padding: 4rem 5%;
    background: linear-gradient(to right, #f9f9f9 50%, #eef2ff 50%);
}

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

.login-info, .register-info {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    border-radius: 10px;
}

.login-info {
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.register-info {
    background-color: #eef2ff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.login-info h2, .register-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: left;
}

.login-info p, .register-info p {
    margin-bottom: 1.5rem;
}

/* Feature Icon */
.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

/* Pricing Styles */
.pricing-header {
    text-align: center;
    padding: 3rem 5%;
    background: linear-gradient(135deg, #ff5a5f, #ff7e82);
    color: white;
}

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

.pricing-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

.pricing-card.popular {
    transform: scale(1.05);
    z-index: 1;
    border: 2px solid #4a6cfd;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #4a6cfd;
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-bottom-left-radius: 10px;
}

.pricing-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #4a6cfd;
    margin-top: 1rem;
}

.currency, .period {
    font-size: 1rem;
    vertical-align: text-top;
}

.pricing-features {
    padding: 2rem;
}

.pricing-features ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.pricing-features ul li i {
    margin-right: 1rem;
    font-size: 1.2rem;
}

.pricing-features ul li i.fa-check {
    color: #4a6cfd;
}

.pricing-features ul li i.fa-times {
    color: #e74c3c;
}

.pricing-footer {
    padding: 2rem;
    text-align: center;
}

/* Feature Comparison Table */
.compare-features {
    padding: 4rem 5%;
    background-color: #f9f9f9;
}

.table-responsive {
    overflow-x: auto;
}

.features-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
}

.features-table th, .features-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.features-table th {
    background-color: #ff5a5f;
    color: white;
}

.features-table tr:nth-child(even) {
    background-color: #f5f5f5;
}

/* FAQ Section */
.faq {
    padding: 4rem 5%;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Enterprise CTA */
.enterprise-cta {
    background-color: #f0f4ff;
    text-align: center;
}

/* Payment Methods */
.payment-info {
    text-align: center;
    padding: 2rem 5%;
    background-color: white;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.payment-methods i {
    font-size: 3rem;
    color: #555;
}

/* Footer Styles */
footer {
    background-color: #2d2d2d;
    color: white;
    padding: 3rem 5% 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #4a6cfd;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #444;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: #4a6cfd;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
}

/* Responsive Styles */
@media (max-width: 768px) {
    nav {
        display: none;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .button-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .workflow-steps {
        flex-direction: column;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-brand {
    display: flex;
    align-items: center;
}

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

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}

/* Responsive design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
}

