﻿/* Integrated Feature Pages CSS - Updated to Match Landing Theme */

main {
    overflow: hidden;
}

/* //////////////////////////////////// */
/* THEME - Updated to match landing.css */
/* //////////////////////////////////// */

:root {
    --background: #ffffff;
    --sec-background: #eff4ff;
    --element-background: #ffffff;
    --accent: #155dee;
    --accent-hover: #163cc4;
    --secondary: #155dee;
    --secondary-dark: #163cc4;
    --border: #d2d2d2;
    --text: #101828;
    --faded-text: #344054;
    --accent-text: #ffffff;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --border-radius-sm: 0.25rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 0.75rem;
    --border-radius-xl: 1rem;
    --error: #dc3545;
}

/* Container System - Full Width Approach */
.container {
    width: 100%;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-hover);
}

/* === FEATURE PAGE BASE === */
.feature-page {
    position: relative;
    width: 100%;
}

.feature-page section {
    position: relative;
    padding: 4rem 2rem;
    width: 100%;
}

/* === HERO SECTION === */
.feature-hero {
    position: relative;
    padding: 8rem 0 6rem;
    background: #eff4ff;
    color: var(--text);
    margin-bottom: 0;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    animation: floatUp 1s ease-out;
}

.feature-hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text);
    line-height: 1.3;
}

.feature-hero .text-blue {
    color: var(--accent);
}

.feature-hero p {
    font-size: 1.25rem;
    color: var(--faded-text);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    opacity: 0;
    animation: floatUp 1s ease-out 0.3s forwards;
}

.mobile-logos {
    position: absolute;
    top: 65%;
    width: 400px;
    height: auto;
    transform: translateY(-50%);
    z-index: 1;
}

.apple-logo {
    left: 50px;
    fill: #000;
    opacity: 0.05;
}

.android-logo {
    fill: #9fc037;
    right: 50px;
    opacity: 0.25;
}

/* === FEATURE OVERVIEW SECTION === */
.feature-overview {
    padding: 4rem 2rem;
    background-color: var(--element-background);
    position: relative;
}

.row {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 20px 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.col-lg-6 {
    flex: 1;
    min-width: 0;
}

.feature-image {
    position: relative;
    margin-bottom: 2rem;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    transition: all 0.5s ease;
    border: 4px solid #101828;
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.feature-image.screenshot img {
    border: 4px solid var(--text);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.feature-image.cutOff {
    position: relative;
}

.feature-image.cutOff::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent), 0 0 20px var(--accent);
    border-radius: 2px;
}

.feature-content {
    padding: 2rem 0;
}

.feature-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--accent);
    line-height: 1.3;
}

.feature-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--faded-text);
    line-height: 1.6;
}

/* Feature Highlights */
.feature-highlights {
    margin-top: 3rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem 0;
}

.highlight-icon {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: var(--sec-background);
    border: 1px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.card-link svg {
    width: 15px;
    fill: #155dee;
    margin-right: 5px;
}

.highlight-icon svg, .card-icon svg, .usecase-icon svg, .related-icon svg {
    fill: #155dee;
    width: 40px;
}

.showcase-icon svg {
    fill: #155dee;
    width: 30px;
}

.highlight-icon i {
    color: var(--accent);
    font-size: 1.4rem;
}

.highlight-text h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.highlight-text p {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: var(--faded-text);
    line-height: 1.6;
}

/* === FEATURE DETAILS SECTION === */
.feature-details {
    background-color: var(--sec-background);
    padding: 4rem 2rem;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text);
    line-height: 1.3;
}

    .section-header p {
        font-size: 1.1rem;
        max-width: 700px;
        margin: 0 auto;
        color: var(--faded-text);
        line-height: 1.6;
    }

.detail-cards {
    margin-top: 3rem;
    padding: 20px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

    .detail-cards .row {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        align-items: stretch;
    }

.detail-card {
    background: var(--element-background);
    border: 1px solid var(--accent);
    border-radius: 5px;
    padding: 2rem;
    height: 100%;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: var(--sec-background);
    border: 1px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.card-icon i {
    color: var(--accent);
    font-size: 1.8rem;
}

.detail-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text);
    transition: color 0.3s ease;
}

.detail-card p {
    font-size: 1rem;
    margin-bottom: 0;
    color: var(--faded-text);
    line-height: 1.6;
}

/* === FEATURE SHOWCASE SECTION === */
.feature-showcase {
    padding: 4rem 2rem;
    background-color: var(--element-background);
    position: relative;
}

.showcase-grid {
    margin-top: 3rem;
    padding: 20px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

    .showcase-grid .row {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
        align-items: stretch;
    }

.showcase-item {
    background-color: var(--sec-background);
    border: 1px solid var(--accent);
    border-radius: 5px;
    display: flex;
    align-items: flex-start;
    transition: all 0.2s ease;
    padding: 2rem;
    height: 100%;
}

.showcase-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.showcase-icon {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    background: var(--sec-background);
    border: 1px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.showcase-item:hover .showcase-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.showcase-icon i {
    color: var(--accent);
    font-size: 1.2rem;
}

.showcase-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text);
    transition: color 0.3s ease;
}

.showcase-item:hover .showcase-content h3 {
    color: var(--accent);
}

.showcase-content p {
    font-size: 1rem;
    margin-bottom: 0;
    color: var(--faded-text);
    line-height: 1.6;
}

/* === FEATURE BENEFITS SECTION === */
.feature-benefits {
    padding: 4rem 2rem;
    background-color: var(--sec-background);
    position: relative;
    text-align: center;
}

.feature-benefits .row {
    gap: 3rem;
    display: block;
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: 5px;
    transition: all 0.2s ease;
    background-color: var(--element-background);
    border: 1px solid var(--accent);
}

.benefits-list li svg {
    fill: var(--accent);
    width: 20px !important;
    height: 20px !important;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.benefits-list span {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--faded-text);
}

.benefits-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    transition: all 0.5s ease;
}

.benefits-image:hover img {
    transform: scale(1.02);
}

/* === USE CASES SECTION === */
.feature-usecases {
    padding: 4rem 2rem;
    background-color: var(--element-background);
    position: relative;
}

.usecases-grid {
    margin-top: 3rem;
    padding: 20px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

    .usecases-grid .row {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
        align-items: stretch;
    }

.usecase-card {
    background-color: var(--sec-background);
    border: 1px solid var(--accent);
    border-radius: 5px;
    padding: 2rem;
    height: 100%;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

    .usecase-card:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

.usecase-icon {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: var(--element-background);
    border: 1px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.usecase-card:hover .usecase-icon {
    transform: scale(1.1);
}

.usecase-icon i {
    color: var(--accent);
    font-size: 1.8rem;
}

.usecase-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
    transition: color 0.3s ease;
}

.usecase-card:hover h3 {
    color: var(--accent);
}

.usecase-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

    .usecase-list li {
        position: relative;
        padding-left: 2rem;
        margin-bottom: 0.5rem;
        font-size: 1rem;
        transition: all 0.3s ease;
        line-height: 1.6;
        color: var(--faded-text);
    }

        .usecase-list li:before {
            content: '•';
            position: absolute;
            left: 0;
            top: 0;
            font-size: 1.2rem;
            color: var(--accent);
            font-weight: bold;
        }

/* === DEMO SECTION === */
.feature-demo {
    padding: 4rem 2rem;
    background-color: var(--sec-background);
}

.demo-container {
    max-width: 1200px;
    margin: 3rem auto 0;
}


.demo-card {
    background-color: var(--element-background);
    border: 1px solid var(--accent);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 2rem;
    height: 100%;
    transition: all 0.2s ease;
}

.demo-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.image-caption {
    padding: 1.5rem;
    background: var(--element-background);
    border-radius: 0 0 5px 5px;
    margin-top: -8px;
}

    .image-caption h4 {
        margin-bottom: 0.5rem;
        color: var(--accent);
        font-size: 1.2rem;
    }

    .image-caption p {
        margin-bottom: 0;
        font-size: 1rem;
        color: var(--faded-text);
        line-height: 1.5;
    }

.feature-demo .feature-image {
    margin-bottom: 2rem;
}

    .feature-demo .feature-image img {
        border-radius: 5px 5px 0 0;
    }

/* === TESTIMONIAL SECTION === */
.feature-testimonial {
    padding: 4rem 2rem;
    background: linear-gradient(to bottom, var(--element-background), var(--sec-background));
    position: relative;
}

.testimonial-card {
    background: var(--element-background);
    border: 1px solid var(--accent);
    border-radius: 5px;
    padding: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.quote-icon {
    color: var(--accent);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    opacity: 0.8;
}

.testimonial-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-style: italic;
    line-height: 1.7;
    position: relative;
    color: var(--faded-text);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1.5rem;
    border: 2px solid var(--accent);
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-image {
    transform: scale(1.05);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--text);
}

.author-info p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--faded-text);
}

/* === FAQ SECTION === */
.feature-faq {
    padding: 4rem 2rem;
    background-color: var(--element-background);
    position: relative;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.2s ease;
    background: var(--sec-background);
    border: 1px solid var(--accent);
}

    .faq-item:hover {
        box-shadow: var(--shadow-sm);
    }

.faq-question {
    background: var(--sec-background);
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

    .faq-question:hover {
        background: var(--element-background);
    }

    .faq-question h3 {
        font-size: 1.1rem;
        margin-bottom: 0;
        color: var(--text);
        transition: color 0.3s ease;
        padding-right: 1rem;
    }

.faq-item:hover .faq-question h3 {
    color: var(--accent);
}

.toggle-icon svg {
    fill: #101828;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.faq-answer {
    padding: 1.5rem;
    border-top: 1px solid var(--accent);
    background: var(--element-background);
    display: none;
}

.faq-answer p {
    font-size: 1rem;
    margin-bottom: 0;
    color: var(--faded-text);
    line-height: 1.6;
}

/* === RELATED FEATURES SECTION === */
.related-features {
    padding: 4rem 2rem;
    background-color: var(--sec-background);
    position: relative;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 20px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.related-card {
    background: var(--element-background);
    border: 1px solid var(--accent);
    border-radius: 5px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.2s ease;
    position: relative;
    padding: 2rem;
    min-height: 200px;
}

    .related-card:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
        text-decoration: none;
        color: inherit;
    }

.related-icon {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: var(--sec-background);
    border: 1px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.related-card:hover .related-icon {
    transform: scale(1.05);
}

.related-icon i {
    color: var(--accent);
    font-size: 1.5rem;
}

.related-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text);
    transition: color 0.3s ease;
}

.related-card:hover h3 {
    color: var(--accent);
}

.related-card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    color: var(--faded-text);
    line-height: 1.6;
}

.card-link {
    display: flex;
    align-items: center;
    border-radius: 0.25rem;
    border: 1px dashed var(--accent);
    padding: 0.5rem 1rem;
    font-size: 1rem;
    color: var(--accent);
    margin-top: auto;
    transition: all 0.15s ease;
    width: fit-content;
}

    .card-link:hover {
        background-color: #D8E4FF;
        text-decoration: none;
        color: var(--accent);
    }

    .card-link i {
        font-size: 0.9rem;
        margin-left: 0.5rem;
        transition: transform 0.3s ease;
    }

.related-card:hover .card-link i {
    transform: translateX(4px);
}

/* === CTA SECTION === */
.feature-cta {
    padding: 4rem 2rem;
    background: var(--accent);
    position: relative;
    overflow: hidden;
}

.cta-card {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

    .cta-card h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        color: white;
        line-height: 1.3;
    }

    .cta-card p {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 2rem;
        line-height: 1.6;
    }

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    text-decoration: none;
    position: relative;
    border: none;
    cursor: pointer;
    min-width: 150px;
}

.btn-primary {
    background-color: white;
    color: var(--accent);
}

    .btn-primary:hover {
        background-color: #f8f9fa;
        color: var(--accent-hover);
        transform: translateY(-2px);
    }

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

    .btn-secondary:hover {
        border-color: white;
        background-color: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }

/* Workflow Steps */
.feature-workflow {
    padding: 4rem 2rem;
    background-color: var(--element-background);
    position: relative;
}

.workflow-container {
    max-width: 1000px;
    margin: 3rem auto 0;
}

.workflow-steps {
    position: relative;
    padding-left: 80px;
}

    .workflow-steps:before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 35px;
        width: 3px;
        background: var(--accent);
        z-index: 0;
    }

.workflow-step {
    position: relative;
    margin-bottom: 3rem;
    background-color: var(--sec-background);
    border: 1px solid var(--accent);
    border-radius: 5px;
    padding: 2rem;
    transition: all 0.2s ease;
}

    .workflow-step:hover {
        transform: translateX(10px);
        box-shadow: var(--shadow-md);
    }

    .workflow-step:last-child {
        margin-bottom: 0;
    }

.step-number {
    position: absolute;
    left: -80px;
    top: 20px;
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.4rem;
    z-index: 1;
    transition: all 0.3s ease;
}








































.workflow-step:hover .step-number {
    transform: scale(1.1) rotate(10deg);
    box-shadow: var(--shadow-lg);
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.workflow-step:hover .step-content h3 {
    color: var(--accent);
}

.step-content p {
    font-size: 1.1rem;
    margin-bottom: 0;
    line-height: 1.7;
}

/* Comparison Table Styles */
.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 3rem;
    border-radius: 4px;
}

.comparison-table {
    width: 100%;
    min-width: 805px;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border: 3px solid #101828;
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem 2rem;
    text-align: left;
    border: 1px solid #155dee;
}

.comparison-table th {
    background-color: #b6ccfb;
    font-weight: 600;
    color: var(--text);
    font-size: 1.2rem;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr {
    background-color: #eff4ff;
}

.comparison-table tr:hover {
    background-color: #d9e5ff;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    font-weight: 600;
    color: var(--text);
}

.comparison-table td:last-child {
    background-color: rgba(70, 130, 180, 0.05);
}

.text-success {
    color: #10b981;
}

.text-warning {
    color: #f59e0b;
}

.text-danger {
    color: #ef4444;
}

/* Animations */
@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes floatUp {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes gradientMove {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 200% 0%;
    }
}

/* Shine effect for feature images */
.feature-image .shine-effect {
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    opacity: 0;
    transform: rotate(30deg);
    background: linear-gradient( to right, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 77%, rgba(255, 255, 255, 0.5) 92%, rgba(255, 255, 255, 0.0) 100% );
    z-index: 2;
    pointer-events: none;
}

.feature-image:hover .shine-effect {
    animation: shine 1s forwards;
}

.comparison-table td, .comparison-table th {
    text-align: center;
    vertical-align: middle;
}

.comparison-table td svg {
    display: inline-block;
    margin: auto;
    vertical-align: middle;
    width: 20px;
    margin: 0 3px 2px 0;
}

.timesheets-bad svg {
    fill: #c92f29;


}

.timesheets-med svg {
    fill: #f7b900;
}

.timesheets-good svg {
    fill: #55c937;
}

@keyframes shine {
    to {
        opacity: 1;
        left: 130%;
    }
}

@media (max-width: 1200px) {
    .feature-hero h1 {
        font-size: 3.5rem;
    }

    .feature-hero p {
        font-size: 1.3rem;
    }

    .section-header h2,
    .feature-content h2,
    .cta-card h2 {
        font-size: 2.5rem;
    }

    .detail-cards .row,
    .showcase-grid .row,
    .usecases-grid .row {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2.5rem;
    }

    .related-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2.5rem;
    }
}

@media (max-width: 992px) {
    .feature-page section {
        padding: 60px 20px 0 20px;
    }

    .feature-hero {
        padding: 120px 0 80px;
        min-height: 50vh;
    }

    .feature-hero h1 {
        font-size: 3rem;
    }

    .row {
        flex-direction: column;
        gap: 3rem;
    }

    .feature-content {
        text-align: center;
        padding: 2rem 0;
    }

    .feature-comparison {
        margin-bottom: 4rem;
    }

    .highlight-item {
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .workflow-steps {
        padding-left: 70px;
    }

    .step-number {
        left: -70px;
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }

    .showcase-grid .row,
    .detail-cards .row,
    .usecases-grid .row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .demo-container .row {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {

    .benefits-list {
        grid-template-columns: 1fr;
        text-align:center;
    }

    .feature-hero h1 {
        font-size: 2.5rem;
    }

    .feature-hero p {
        font-size: 1.2rem;
    }

    .section-header h2,
    .feature-content h2,
    .cta-card h2 {
        font-size: 2rem;
    }

    .feature-page section {
        padding: 60px 20px;
    }

    .testimonial-card {
        padding: 2.5rem 2rem;
    }

    .testimonial-content p {
        font-size: 1.2rem;
    }

    .highlight-item {
        flex-direction: column;
        text-align: center;
    }

    .highlight-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .showcase-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .showcase-icon {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }

    .workflow-step {
        padding: 2rem 1.5rem;
    }

    .related-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .benefits-list li {
        padding: 1rem;
    }

    .detail-card,
    .usecase-card,
    .related-card {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .feature-hero h1 {
        font-size: 2rem;
    }

    .feature-hero p {
        font-size: 1.1rem;
    }

    .feature-page section {
        padding: 60px 10px;
    }

    .feature-page section.no-padding {
        padding: 0;
    }

    .feature-content {
        padding: 0px 10px;
    }

    .feature-image {
        margin: 0 3px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2,
    .feature-content h2,
    .cta-card h2 {
        font-size: 1.8rem;
    }

    .detail-card h3,
    .showcase-content h3,
    .usecase-card h3 {
        font-size: 1.3rem;
    }

    .benefits-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-content p,
    .section-header p,
    .detail-card p,
    .showcase-content p,
    .usecase-list li {
        font-size: 1rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .author-image {
        width: 60px;
        height: 60px;
    }

    .workflow-steps {
        padding-left: 60px;
    }

    .step-number {
        left: -60px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .workflow-step {
        padding: 1.5rem 1rem;
    }

    .detail-card,
    .usecase-card,
    .related-card {
        padding: 1.5rem;
    }

    .demo-container .row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .faq-question,
    .faq-answer {
        padding: 1.5rem;
    }

    .cta-card {
        padding: 2rem 1rem;
    }
}

@media (max-width: 400px) {
    .feature-hero h1 {
        font-size: 1.8rem;
    }

    .section-header h2,
    .feature-content h2,
    .cta-card h2 {
        font-size: 1.6rem;
    }

    .detail-card,
    .usecase-card,
    .related-card {
        padding: 1rem;
    }

    .testimonial-card {
        padding: 1.5rem 1rem;
    }

    .workflow-step {
        padding: 1rem;
    }
}

.download-img-cont img {
    height: 80px;
}

@media (max-width: 650px) {
    .download-img-cont img {
        width: 40vw;
        height: 12vw;
    }
}

@media (max-width: 390px) {
    .download-img-cont img {
        width: 35vw;
        height: 10vw;
    }
}

/* Custom scrollbar for better aesthetics */
/*::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--sec-background);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--accent-hover);
    }*/
