/* Landing Page Specific Styles */

/* Hero Section */
.hero {
    background: var(--primary-color);
    color: var(--white);
    padding: 80px 0;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-point {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.feature-point .icon {
    font-size: 1.1rem;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.hero .btn-primary {
    background: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}

.hero .btn-primary:hover {
    background: #0099D6;
    border-color: #0099D6;
}

.hero .btn-outline {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.hero .btn-outline:hover {
    background: var(--light-color);
    border-color: var(--light-color);
}

.trial-note {
    font-size: 1rem;
    opacity: 1;
    font-style: normal;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-top: 16px;
    font-weight: 500;
}

/* Dashboard Preview */
.dashboard-preview {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto;
}

.preview-header {
    background: #f5f5f5;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e5e5e5;
}

.preview-dots {
    display: flex;
    gap: 6px;
}

.preview-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
}

.preview-dots span:nth-child(1) { background: #ff5f57; }
.preview-dots span:nth-child(2) { background: #ffbd2e; }
.preview-dots span:nth-child(3) { background: #28ca42; }

.preview-title {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

.preview-content {
    display: flex;
    min-height: 300px;
}

.preview-sidebar {
    background: #f8f9fa;
    width: 140px;
    padding: 16px 0;
    border-right: 1px solid #e5e5e5;
}

.sidebar-item {
    padding: 8px 16px;
    font-size: 0.8rem;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sidebar-item.active {
    background: var(--accent-color);
    color: var(--white);
    font-weight: 500;
}

.preview-main {
    flex: 1;
    padding: 20px;
    background: var(--white);
    color: var(--text-color);
}

.timer-display {
    text-align: center;
    margin-bottom: 24px;
}

.timer-time {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-family: monospace;
}

.timer-project {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 16px;
}

.timer-controls {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.timer-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
    font-weight: 500;
}

.timer-btn.stop {
    background: #dc3545;
    color: var(--white);
}

.timer-btn.pause {
    background: #ffc107;
    color: #856404;
}

.recent-entries {
    border-top: 1px solid #e5e5e5;
    padding-top: 16px;
}

.entry {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.8rem;
}

.entry:last-child {
    border-bottom: none;
}

.entry-project {
    color: #333;
}

.entry-time {
    color: var(--accent-color);
    font-weight: 600;
    font-family: monospace;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--light-color);
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 600;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.features .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: var(--white);
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefits-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.benefits-text > p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

.benefits-list {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.benefit-icon {
    background: var(--accent-color);
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 4px;
}

.benefit-item p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.benefits-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.stat-card {
    background: var(--accent-color);
    color: var(--white);
    padding: 32px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.3;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: var(--light-color);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 60px;
    font-weight: 600;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.testimonial-content {
    margin-bottom: 24px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1.1rem;
}

.testimonial-author strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 4px;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-content > p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}

.cta .btn-primary:hover {
    background: #0099D6;
    border-color: #0099D6;
}

.cta .btn-outline {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.cta .btn-outline:hover {
    background: var(--light-color);
    border-color: var(--light-color);
}

.cta-note {
    font-size: 1rem;
    opacity: 1;
    font-style: normal;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 16px;
    font-weight: 500;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--box-shadow);
    }
    
    .nav.active {
        display: flex;
    }
    
    .nav a {
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .benefits-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .benefits-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .stat-card {
        padding: 20px 16px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .features,
    .benefits,
    .testimonials,
    .cta {
        padding: 60px 0;
    }
    
    .section-header h2,
    .benefits-text h2,
    .testimonials h2,
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .dashboard-preview {
        max-width: 100%;
    }
    
    .preview-content {
        min-height: 250px;
    }
    
    .benefits-stats {
        grid-template-columns: 1fr;
    }
}

/* Footer Styling */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px 0;
    border-top: 4px solid var(--accent-color);
}

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

.footer-section h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-logo .logo-consult {
    color: var(--white) !important;
}

.footer-logo .logo-click {
    color: var(--accent-color);
}

.footer-logo .logo-click i {
    color: var(--accent-color);
    margin-left: 0.15em;
    font-size: 0.85em;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer {
        padding: 40px 0 20px 0;
    }
}

/* Pricing Page Styles */
.pricing-hero {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.pricing-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.pricing-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.pricing-plans {
    padding: 80px 0;
    background: #f8f9fa;
}

/* New Single Pricing Card Styles */
.pricing-single-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.trial-banner {
    background: var(--accent-color);
    color: var(--white);
    padding: 30px;
    text-align: center;
}

.trial-banner i {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.trial-banner h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.trial-banner p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin: 0;
}

.pricing-content {
    padding: 40px;
}

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

.pricing-header h2 {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-weight: 400;
}

.main-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 10px;
}

.main-price .currency {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 5px;
}

.main-price .amount {
    font-size: 4rem;
    color: var(--primary-color);
    font-weight: 700;
}

.main-price .period {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-left: 10px;
}

.price-description {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.additional-users {
    background: var(--light-color);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 40px;
    text-align: center;
}

.additional-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 500;
}

.additional-price i {
    font-size: 1.5rem;
}

.features-section h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

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

.features-grid .features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-grid .features li i {
    color: var(--success-color);
    font-size: 1.1rem;
}

.pricing-calculator-simple {
    background: var(--light-color);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 40px;
}

.pricing-calculator-simple h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.calculator-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.calculator-row label {
    font-weight: 500;
}

.calculator-row select {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    background: var(--white);
}

.cta-section {
    text-align: center;
}

.btn-extra-large {
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 600;
}

.guarantee {
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.guarantee i {
    color: var(--success-color);
}

/* Responsive adjustments for pricing */
@media (max-width: 768px) {
    .pricing-single-card {
        margin: 0 15px;
    }
    
    .trial-banner {
        padding: 25px 20px;
    }
    
    .trial-banner i {
        font-size: 2.5rem;
    }
    
    .trial-banner h3 {
        font-size: 1.75rem;
    }
    
    .pricing-content {
        padding: 30px 20px;
    }
    
    .main-price .amount {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .calculator-row {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-extra-large {
        padding: 16px 40px;
        font-size: 1.1rem;
    }
}

/* Additional responsive styles for main features grid */
@media (max-width: 1024px) and (min-width: 769px) {
    .features .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* Ensure proper stacking on smaller screens */
@media (max-width: 640px) {
    .features .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 24px;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
}