/* Landing Page Styles - Exact Match */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* Root Variables */
:root {
    --primary-blue: #2563eb;
    --primary-green: #10b981;
    --primary-yellow: #f59e0b;
    --hero-purple: #4c1d95;
    --hero-purple-dark: #312e81;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --bg-dark: #1f2937;
    --border-light: #e5e7eb;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    background: var(--bg-white) !important;
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
}

.navbar-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    text-decoration: none;
}

.brand-accent {
    color: var(--primary-green);
}

.brand-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-gray);
    margin-left: 0.5rem;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    margin: 0 1rem;
    padding: 0.5rem 0 !important;
}

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

.btn-login {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    color: var(--text-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
}

.btn-login:hover {
    background: var(--bg-light);
    color: var(--text-dark);
}

.btn-login-green {
    background: var(--bg-white);
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-login-green:hover {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

/* Hero Section */
.hero-section {
    padding: 0;
    background: linear-gradient(135deg, #4c1d95 0%, #312e81 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-image-overlay {
    position: absolute;
    top: -20%;
    right: -35%;
    width: 100%;
    height: 140%;
    transform: rotate(-20deg);
    opacity: 0.85;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(1.1) contrast(1.05);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 120px;
    padding-bottom: 80px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    color: white;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-weight: 400;
}

.btn-contact-sales {
    background: #10b981;
    color: white;
    padding: 1rem 2.25rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-contact-sales:hover {
    background: #059669;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
    line-height: 1.2;
}

.feature-card {
    padding: 2rem 1rem;
    text-align: center;
}

.feature-icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.feature-icon-svg {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.blue-icon {
    background: var(--primary-blue);
    color: white;
}

.yellow-icon {
    background: var(--primary-yellow);
    color: white;
}

.green-icon {
    background: var(--primary-green);
    color: white;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-desc {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Awesome Features Section */
.awesome-features-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.awesome-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.feature-list .feature-item {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-dark);
}

.feature-icon-sm {
    width: 24px;
    height: 24px;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.stats-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.text-blue {
    color: var(--primary-blue) !important;
}

/* Tools Section */
.tools-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.tool-item {
    margin-bottom: 5rem;
}

.tool-screenshot {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tool-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.tool-desc {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tool-features {
    list-style: none;
    padding: 0;
}

.tool-features li {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.tool-features .fas {
    color: var(--primary-green);
}

.mini-tool-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.mini-tool-card h5 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.mini-tool-card p {
    color: var(--text-gray);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.stars i {
    color: #fbbf24;
    margin-right: 0.25rem;
}

.testimonial-text {
    font-size: 1.125rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.author-company {
    color: var(--text-gray);
    font-size: 0.875rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.accordion-item {
    border: 1px solid var(--border-light);
    border-radius: 8px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background: var(--bg-white);
    border: none;
    font-weight: 600;
    color: var(--text-dark);
    padding: 1.25rem 1.5rem;
    font-size: 1.125rem;
}

.accordion-button:not(.collapsed) {
    background: var(--bg-white);
    color: var(--text-dark);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 1.5rem;
    background: var(--bg-white);
    color: var(--text-gray);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.footer-desc {
    color: #d1d5db;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-heading {
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: white;
}

.footer-divider {
    border-color: #374151;
    margin: 2rem 0 1.5rem;
}

.footer-copyright {
    color: #d1d5db;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.social-links a {
    color: #d1d5db;
    font-size: 1.25rem;
    margin-right: 1rem;
    text-decoration: none;
}

.social-links a:hover {
    color: var(--primary-blue);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-image-overlay {
        right: -45%;
        width: 110%;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-image-overlay {
        right: -55%;
        width: 120%;
        opacity: 0.7;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .hero-image-overlay {
        right: -65%;
        width: 130%;
        opacity: 0.6;
    }
    
    .btn-contact-sales {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .hero-image-overlay {
        right: -75%;
        width: 140%;
        opacity: 0.5;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation enhancements */
.hero-content {
    animation: fadeInUp 1s ease-out;
}

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