﻿/* === 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;
}

.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;
    }

    .row.reverse {
        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;
    }
}

@media (max-width: 500px) {
    .feature-image-uncontained.mobile-app {
        width: 80%;
    }
}

@media (max-width: 385px) {
    .feature-image-uncontained.mobile-app {
        width: 100%;
    }
}



/* 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);
    }*/


/* //////////////////////////////////// */
/* FOOTER SOCIAL MEDIA */
/* //////////////////////////////////// */

.footer-social {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: #155dee;
        transition: all 0.3s ease;
    }

        .footer-social a:hover {
            background-color: #163cc4;
            transform: scale(120%);
        }

    .footer-social svg {
        width: 20px;
        height: 20px;
        fill: #101828;
        transition: fill 0.3s ease;
    }

    .footer-social a:hover svg {
        fill: #fff);
    }

@media (max-width: 768px) {
    .footer-social {
        gap: 15px;
    }

        .footer-social a {
            width: 35px;
            height: 35px;
        }

        .footer-social svg {
            width: 18px;
            height: 18px;
        }
}


/* =============================================
   FEATURE PAGES — SHARED BASE STYLES
   Applies to: App, Forms, Leave, Messaging,
               Scheduling, Summary, Time,
               Timesheets
   ============================================= */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #fafbff;
    --surface: #ffffff;
    --surface-alt: #f0f4ff;
    --accent: #155dee;
    --accent-dark: #0d3fb3;
    --accent-light: #e8efff;
    --green: #16a34a;
    --green-light: #dcfce7;
    --red: #dc2626;
    --red-light: #fee2e2;
    --amber: #d97706;
    --amber-light: #fef3c7;
    --purple: #7c3aed;
    --purple-light: #ede9fe;
    --text: #0f172a;
    --text-mid: #334155;
    --text-light: #64748b;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(15,23,42,.06);
    --shadow-md: 0 4px 12px rgba(15,23,42,.08);
    --shadow-lg: 0 12px 32px rgba(15,23,42,.1);
    --shadow-xl: 0 24px 48px rgba(15,23,42,.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --font-display: 'Manrope', sans-serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a1628 0%, #132347 40%, #1a3a7a 100%);
    overflow: hidden;
    padding: 6rem 2rem;
}

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 600px 400px at 20% 80%, rgba(21,93,238,.25), transparent), radial-gradient(ellipse 500px 500px at 80% 20%, rgba(124,58,237,.12), transparent);
        pointer-events: none;
    }

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 880px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 100px;
    padding: 6px 18px 6px 8px;
    font-size: .82rem;
    font-weight: 500;
    color: rgba(255,255,255,.7);
    margin-bottom: 2rem;
    backdrop-filter: blur(8px);
    opacity: 0;
    animation: fadeUp .8s ease forwards;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp .8s ease .1s forwards;
}

    .hero h1 em {
        font-style: italic;
        color: #7db4ff;
    }

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,.55);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    opacity: 0;
    animation: fadeUp .8s ease .2s forwards;
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp .8s ease .35s forwards;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .25s, transform .2s, box-shadow .25s;
    text-decoration: none;
}

    .btn-primary:hover {
        background: var(--accent-dark);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(21,93,238,.35);
        color: #fff;
    }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.8);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 100px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: .95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background .25s, color .25s, border-color .25s;
    text-decoration: none;
}

    .btn-ghost:hover {
        background: rgba(255,255,255,.12);
        color: #fff;
        border-color: rgba(255,255,255,.3);
    }

/* ===== SECTIONS ===== */
.section {
    padding: 5rem 2rem;
}

.section-alt {
    background: var(--surface-alt);
}

.section-dark {
    background: linear-gradient(135deg, #0a1628 0%, #132347 100%);
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: .75rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 560px;
    line-height: 1.65;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

    .section-header .section-subtitle {
        margin: 0 auto;
    }

/* ===== STEPS TIMELINE (Scheduling, Time, Forms) ===== */
.steps-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

    .steps-timeline::before {
        content: '';
        position: absolute;
        top: 36px;
        left: calc(16.6% + 24px);
        right: calc(16.6% + 24px);
        height: 2px;
        background: var(--border);
    }

@media (max-width: 768px) {
    .steps-timeline {
        grid-template-columns: 1fr;
    }

        .steps-timeline::before {
            display: none;
        }
}

.step-card {
    text-align: center;
    position: relative;
}

.step-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--surface);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    position: relative;
    z-index: 1;
    transition: all .3s;
}

.step-card:hover .step-icon {
    border-color: var(--accent);
    box-shadow: 0 0 0 6px var(--accent-light);
}

    .step-icon svg {
        width: 28px;
        fill: var(--accent);
    }

.step-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: .5rem;
}

.step-card p {
    font-size: .9rem;
    color: var(--text-mid);
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto;
}

/* ===== SHOWCASE LAYOUT (Scheduling, Leave, App, Summary, Timesheets) ===== */
.showcase-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

    .showcase-layout.reverse .showcase-info {
        order: 2;
    }

    .showcase-layout.reverse .showcase-visual {
        order: 1;
    }

@media (max-width: 900px) {
    .showcase-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

        .showcase-layout.reverse .showcase-info,
        .showcase-layout.reverse .showcase-visual {
            order: unset;
        }
}

.showcase-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 100px;
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 1.25rem;
}

    .showcase-tag.blue {
        background: var(--accent-light);
        color: var(--accent);
    }

    .showcase-tag.green {
        background: var(--green-light);
        color: var(--green);
    }

    .showcase-tag.amber {
        background: var(--amber-light);
        color: var(--amber);
    }

    .showcase-tag.purple {
        background: var(--purple-light);
        color: var(--purple);
    }

.showcase-info h3 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.showcase-info p {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.showcase-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.showcase-point {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: border-color .25s, box-shadow .25s;
}

    .showcase-point:hover {
        border-color: var(--accent);
        box-shadow: var(--shadow-sm);
    }

.point-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

    .point-icon svg {
        width: 14px;
        fill: var(--accent);
    }

.point-text {
    font-size: .92rem;
    color: var(--text-mid);
    line-height: 1.55;
}

    .point-text strong {
        color: var(--text);
        font-weight: 600;
    }

/* ===== KEYFRAMES ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes float-left {
    0%, 100% { transform: rotate(-6deg) translateY(0); }
    50% { transform: rotate(-6deg) translateY(-15px); }
}

@keyframes float-right {
    0%, 100% { transform: rotate(5deg) translateY(0); }
    50% { transform: rotate(5deg) translateY(-12px); }
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: .4; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

.reveal-left {
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
    will-change: opacity, transform;
}

    .reveal-left.visible {
        opacity: 1;
        transform: translateX(0);
    }

.reveal-right {
    opacity: 0;
    transform: translateX(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
    will-change: opacity, transform;
}

    .reveal-right.visible {
        opacity: 1;
        transform: translateX(0);
    }

.reveal-scale {
    opacity: 0;
    transform: scale(0.94);
    transition: opacity 0.5s ease, transform 0.5s ease;
    will-change: opacity, transform;
}

    .reveal-scale.visible {
        opacity: 1;
        transform: scale(1);
    }

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

.stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.45s ease, transform 0.45s ease;
    will-change: opacity, transform;
}

.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.07s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.14s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.21s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.28s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.35s; }

.stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 600px) {
    .hero {
        min-height: 70vh;
        padding: 4rem 1.5rem;
    }

    .section {
        padding: 3.5rem 1.5rem;
    }
}




/* =============================================
    RELATED FEATURES
============================================= */

.forms-related {
    padding: 5rem 1.5rem;
    background: var(--element-background);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media(max-width:900px) {
    .related-grid {
        grid-template-columns: 1fr
    }
}

.related-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    text-decoration: none;
    transition: box-shadow .3s ease, border-color .3s ease, transform .3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

    .related-card:hover {
        box-shadow: var(--shadow-lg);
        transform: translateY(-4px);
    }

.related-icon {
    width: 44px;
    height: 44px;
    background: var(--accent-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .related-icon svg {
        width: 22px;
        height: 22px;
        fill: var(--accent)
    }

.related-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
}

.related-card p {
    font-size: 0.9rem;
    color: var(--faded-text);
    line-height: 1.6;
    flex: 1;
}

.card-arrow {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--accent);
    margin-top: 0.25rem;
}

    .card-arrow svg {
        width: 14px;
        height: 14px;
        fill: var(--accent)
    }