/* Synchrotask Landing Page Styles */
.synchrotask-landing {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #e6f0fa 0%, #d4e4f7 100%);
}

.synchrotask-container {
    width: 90%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.synchrotask-h1 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-size: 3.5rem;
    color: black;
}

.synchrotask-h2 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    color: black;
    text-align: center;
    margin-bottom: 0.5rem;
}

.synchrotask-h3 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    color: black;
}

.synchrotask-p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: black;
}

/* Button Styles */
.synchrotask-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: solid 1px;
}

.synchrotask-btn-primary {
    background-color: white;
    border:solid 1px;
    color: black;
}

    .synchrotask-btn-primary:hover {
        color: white;
        border-color:black;
        background-color: #3498db;
        transform: translateY(-2px);
    }

.synchrotask-btn-secondary {
    background-color: white;
    color: black;
    border:solid 1px;
    margin-left: 15px;
}

    .synchrotask-btn-secondary:hover {
        background-color: #3498db;
        border-color:black;
        color: white;
    }

/* Header Styles */
.synchrotask-header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.synchrotask-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.synchrotask-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.synchrotask-logo-icon {
    background-color: #2563eb;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 12px;
}

.synchrotask-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a365d;
}

.synchrotask-nav-links {
    display: flex;
    list-style: none;
    margin-bottom: 0;
}

    .synchrotask-nav-links li {
        margin-left: 30px;
    }

    .synchrotask-nav-links a {
        text-decoration: none;
        color: #4a5568;
        font-weight: 500;
        transition: color 0.3s;
    }

        .synchrotask-nav-links a:hover {
            color: #2563eb;
        }

.synchrotask-mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #4a5568;
    cursor: pointer;
}

/* Hero Section */
.synchrotask-hero {
    padding-top: 30px;
    padding-bottom: 15px;
    background-color: white;
    overflow: hidden;
}

.synchrotask-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.synchrotask-hero-text {
    flex: 1;
    max-width: 600px;
}

    .synchrotask-hero-text p {
        font-size: 1.3rem;
        margin-bottom: 2.5rem;
        color: #4a5568;
    }

.synchrotask-hero-image {
    flex: 1;
    max-width: 550px;
    text-align: center;
}

.synchrotask-dashboard-preview {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

    .synchrotask-dashboard-preview:hover {
        transform: perspective(1000px) rotateY(0);
    }

/* Features Section */
.synchrotask-features {
    padding: 30px 0;
    background-color: #f8fafc;
}

.synchrotask-section-header {
    max-width: 900px;
    margin: 0 auto 32px;
    text-align: center;
}

.synchrotask-section-header .synchrotask-p {
    color: #3d4a5a;
    margin-bottom: 0;
}

.synchrotask-value {
    padding: 70px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
}

.synchrotask-value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.synchrotask-value-card {
    background: #ffffff;
    border: 1px solid #dbe8fb;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.08);
}

.synchrotask-value-card .synchrotask-h3 {
    font-size: 1.4rem;
}

.synchrotask-value-card .synchrotask-p {
    margin-bottom: 0;
    color: #3f4c5c;
}

.synchrotask-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.synchrotask-feature-card {
    background-color: white;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

    .synchrotask-feature-card:hover {
        transform: translateY(-10px);

    }

.synchrotask-feature-icon {
    background-color: #3498db;
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
}
    .synchrotask-feature-icon:hover {
        background-color: #3498db;
        color: white;
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        font-size: 1.8rem;
        animation: rotateIcon 2s linear infinite;
    }

@keyframes rotateIcon {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.synchrotask-guidelines {
    padding: 80px 0;
    background-color: #ffffff;
}

.synchrotask-guideline-list {
    display: grid;
    gap: 16px;
}

.synchrotask-guideline-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 16px;
    align-items: start;
    background: #f8fbff;
    border: 1px solid #dce8f7;
    border-radius: 12px;
    padding: 22px;
}

.synchrotask-guideline-item .synchrotask-h3 {
    font-size: 1.35rem;
    margin-bottom: 8px;
}

.synchrotask-guideline-item .synchrotask-p {
    margin-bottom: 0;
    color: #435264;
}

.synchrotask-guideline-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 44px;
    border-radius: 30px;
    background-color: #1d4ed8;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.synchrotask-getting-started {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
}

.synchrotask-getting-started .synchrotask-h2,
.synchrotask-getting-started .synchrotask-p {
    color: #ffffff;
}

.synchrotask-getting-started .synchrotask-section-header .synchrotask-p {
    color: #c9d7ff;
}

.synchrotask-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 18px;
}

.synchrotask-step-card {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    padding: 24px;
    backdrop-filter: blur(3px);
}

.synchrotask-step-badge {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    background-color: #60a5fa;
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 14px;
}

.synchrotask-step-card .synchrotask-h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.synchrotask-step-card .synchrotask-p {
    color: #dbe7ff;
    margin-bottom: 0;
}

.synchrotask-faq {
    padding: 80px 0;
    background-color: #f8fafc;
}

.synchrotask-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.synchrotask-faq-item {
    background-color: #ffffff;
    border-radius: 14px;
    border: 1px solid #dfe7f4;
    padding: 26px;
}

.synchrotask-faq-item .synchrotask-h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.synchrotask-faq-item .synchrotask-p {
    margin-bottom: 0;
    color: #425164;
}

/* CTA Section */
.synchrotask-cta {
    padding: 70px 0;
    background-color: white;
    text-align: center;
}

    .synchrotask-cta p {
        max-width: 700px;
        margin: 0 auto 0.5rem;
        font-size: 1.2rem;
    }

/* Footer */
.synchrotask-footer {
    background-color: black;
    color: white;
    padding: 70px 0 30px;
}

.synchrotask-footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.synchrotask-footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

    .synchrotask-footer-column h3 {
        color: white;
        font-size: 1.3rem;
        margin-bottom: 25px;
    }

.synchrotask-footer-links {
    list-style: none;
    padding-left: 0;
}

    .synchrotask-footer-links li {
        margin-bottom: 12px;
    }

    .synchrotask-footer-links a {
        color: white;
        text-decoration: none;
        transition: color 0.3s;
    }

        .synchrotask-footer-links a:hover {
            color: white;
        }

.synchrotask-copyright {
    text-align: center;
    border-top: 1px solid #2d3748;
    color: #a0aec0;
    font-size: 0.9rem;
}

/* Keep original welcome section styling */
.text-center {
    padding: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .synchrotask-h1 {
        font-size: 2.8rem;
    }

    .synchrotask-h2 {
        font-size: 2.2rem;
    }

    .synchrotask-hero-content {
        flex-direction: column;
    }

    .synchrotask-hero-text {
        text-align: center;
        margin-bottom: 50px;
    }

    .synchrotask-hero-image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .synchrotask-nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

        .synchrotask-nav-links.show {
            display: flex;
        }

        .synchrotask-nav-links li {
            margin: 10px 0;
        }

    .synchrotask-mobile-menu-btn {
        display: block;
    }

    .synchrotask-btn-secondary {
        margin-left: 0;
        margin-top: 15px;
        display: inline-block;
    }

    .synchrotask-hero {
        padding: 150px 0 80px;
    }

    .synchrotask-guideline-item {
        grid-template-columns: 1fr;
    }

    .synchrotask-guideline-number {
        width: 90px;
    }
}

@media (max-width: 576px) {
    .synchrotask-h1 {
        font-size: 2.3rem;
    }

    .synchrotask-h2 {
        font-size: 1.9rem;
    }

    .synchrotask-hero {
        padding: 130px 0 60px;
    }

    .synchrotask-features,
    .synchrotask-guidelines,
    .synchrotask-getting-started,
    .synchrotask-faq,
    .synchrotask-cta,
    .synchrotask-value {
        padding: 70px 0;
    }

    .synchrotask-btn-secondary {
        display: block;
        margin-top: 15px;
    }
}
